/*
Theme Name: SY Theme
Description: Şükrü Yazar Klinik için sıfırdan yazılmış, WPBakery/3. parti page-builder bağımlılığı olmayan blok (Full Site Editing) teması. Header/footer/site ayarları Site Editor üzerinden yönetilir.
Author: Şükrü Yazar Klinik
Version: 1.9.77
Requires at least: 6.5
Requires PHP: 8.0
Text Domain: sy-theme
*/

:root {
	/* Sol+sağ toplam kenar boşluğu (artınca içerik kenarlardan açılır). */
	--page-inline-space: 112px;
	/* Site-wide content shell (header logo → randevu). */
	--page-max-width: 1560px;
	/* Sabit header yüksekliği (breakpoint’lerle uyumlu). */
	--sy-header-offset: 84px;

	/* Brand accent — gold */
	--sy-gold: #cca668;
	--sy-gold-strong: #b8924f;
	--sy-gold-soft: #e0c48a;
	--sy-gold-deep: #a07a3e;
	--sy-gold-glow: rgba(204, 166, 104, .28);
}

@media (max-width: 1180px) {
	:root { --page-inline-space: 64px; }
}

@media (max-width: 900px) {
	:root { --page-inline-space: 48px; }
}

@media (max-width: 520px) {
	:root { --page-inline-space: 36px; }
}

@media (max-width: 380px) {
	:root { --page-inline-space: 28px; }
}

.wp-block-post-content > .sy-hero,
.wp-block-post-content > .sy-about,
.wp-block-post-content > .sy-trust,
.wp-block-post-content > .sy-publications,
.wp-block-post-content > .sy-press,
.wp-block-post-content > .sy-services,
.wp-block-post-content > .sy-journey,
.wp-block-post-content > .sy-faq,
.wp-block-post-content > .sy-contact,
.wp-block-post-content > .sy-about-page,
.wp-block-post-content > .sy-hizmet-cta-band,
.wp-block-post-content > .sy-site-cta-band,
.wp-block-post-content > .wp-block-sy-hero,
.wp-block-post-content > .wp-block-sy-about,
.wp-block-post-content > .wp-block-sy-trust,
.wp-block-post-content > .wp-block-sy-publications,
.wp-block-post-content > .wp-block-sy-press,
.wp-block-post-content > .wp-block-sy-services,
.wp-block-post-content > .wp-block-sy-journey,
.wp-block-post-content > .wp-block-sy-faq,
.wp-block-post-content > .wp-block-sy-contact,
.wp-block-post-content > .wp-block-sy-about-page,
.entry-content > .sy-hero,
.entry-content > .sy-about,
.entry-content > .sy-trust,
.entry-content > .sy-publications,
.entry-content > .sy-press,
.entry-content > .sy-services,
.entry-content > .sy-journey,
.entry-content > .sy-faq,
.entry-content > .sy-contact,
.entry-content > .sy-about-page,
.entry-content > .sy-hizmet-cta-band,
.entry-content > .sy-site-cta-band {
	margin-block: 0 !important;
}

.sy-hero + .sy-about,
.sy-about + .sy-trust,
.sy-trust + .sy-publications,
.wp-block-sy-hero + .wp-block-sy-about,
.wp-block-sy-about + .wp-block-sy-trust,
.wp-block-sy-trust + .wp-block-sy-publications {
	margin-top: 0 !important;
}

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

html {
	overflow-x: clip;
}

@media (prefers-reduced-motion: no-preference) {
	html {
		scroll-behavior: smooth;
	}
}

/* In-page anchors (#kariyer vb.) sticky header altında kalsın */
#kariyer,
#hakkimda,
#surec,
#tedaviler,
#sy-article-body,
#sy-article-start {
	scroll-margin-top: calc(var(--sy-header-offset, 84px) + 20px);
}

.sy-article-body-anchor {
	scroll-margin-top: calc(var(--sy-header-offset, 84px) + 20px);
}

body {
	overflow-x: clip;
	max-width: 100%;
}

/* ---------- Header shell (tüm sayfalarda sabit) ---------- */
.wp-block-template-part:has(.sy-header) {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	width: 100%;
	max-width: 100%;
	background: #021938;
	box-shadow: 0 12px 28px rgba(1, 16, 53, .24);
}

/* WP admin bar: html margin-top 32/46px; sabit header top:0 kalınca arada boşluk oluşur */
body.admin-bar .wp-block-template-part:has(.sy-header) {
	top: 32px;
}

@media screen and (max-width: 782px) {
	body.admin-bar .wp-block-template-part:has(.sy-header) {
		top: 46px;
	}
}

/* İç sayfalar: içerik sabit header’ın altında kalmasın (anasayfa hero kendi offset’ini kullanır) */
body:not(.home):not(.front-page) .wp-site-blocks {
	padding-top: var(--sy-header-offset);
}

body.home .sy-hero,
body.front-page .sy-hero {
	min-height: 100svh;
}

.sy-header {
	position: relative;
	z-index: 5;
	box-sizing: border-box;
	height: 84px;
	width: min(calc(100% - var(--page-inline-space)), var(--page-max-width));
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	background: transparent;
	border-bottom: 1px solid rgba(224, 240, 255, .16);
	color: #f6fbff;
}

.sy-brand-logo {
	flex: 0 0 auto;
	min-width: 0;
}

.sy-brand-logo .custom-logo-link,
.sy-brand-logo a {
	display: block;
	line-height: 0;
}

.sy-brand-logo img,
.sy-brand-logo .custom-logo {
	display: block;
	width: 200px;
	height: auto;
	max-height: 46px;
	object-fit: contain;
	object-position: left center;
}

/* ---------- Nav (desktop) ---------- */
.sy-nav {
	flex: 1 1 auto;
	min-width: 0;
	justify-content: center !important;
	gap: clamp(10px, 1.05vw, 20px) !important;
}

.sy-nav .wp-block-navigation__container {
	gap: clamp(10px, 1.05vw, 20px);
}

/* Rafine nav + hover underline (mockup) + ince ayırıcılar */
.sy-nav a,
.sy-nav .wp-block-navigation-item__content {
	position: relative;
	color: rgba(233, 244, 255, .88) !important;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .01em;
	text-decoration: none;
	white-space: nowrap;
	transition: color .2s ease;
}

.sy-nav .wp-block-navigation-item:not(:first-child) > .wp-block-navigation-item__content::before,
.sy-nav .wp-block-navigation-item:not(:first-child) > a::before {
	content: "";
	position: absolute;
	left: calc(-0.55em - 1px);
	top: 50%;
	width: 1px;
	height: 12px;
	transform: translateY(-50%);
	background: rgba(225, 242, 255, .22);
	pointer-events: none;
}

.sy-nav a::after,
.sy-nav .wp-block-navigation-item__content::after {
	content: "";
	position: absolute;
	left: 0;
	right: 100%;
	bottom: -8px;
	height: 1px;
	background: #39b4ff;
	transition: right .2s ease;
}

.sy-nav a:hover,
.sy-nav .wp-block-navigation-item__content:hover {
	color: #fff !important;
}

.sy-nav a:hover::after,
.sy-nav .wp-block-navigation-item__content:hover::after,
.sy-nav .current-menu-item > a::after,
.sy-nav .current-menu-item > .wp-block-navigation-item__content::after {
	right: 0;
}

/* Aktif sayfa vurgusu */
.sy-nav .current-menu-item > a,
.sy-nav .current-menu-item > .wp-block-navigation-item__content {
	color: #fff !important;
}

/* Desktop Hizmetler dropdown */
.sy-nav .wp-block-navigation__submenu-container {
	min-width: 240px;
	padding: 10px 0 !important;
	border: 1px solid #dfeaf5 !important;
	border-radius: 12px !important;
	background: #021938 !important;
	box-shadow: 0 16px 36px rgba(4, 36, 91, .28) !important;
}

.sy-nav .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
	color: rgba(246, 251, 255, .92) !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	padding: 10px 18px !important;
	white-space: nowrap;
}

.sy-nav .wp-block-navigation__submenu-container .wp-block-navigation-item__content:hover {
	color: #fff !important;
	background: rgba(77, 186, 255, .14);
}

.sy-nav .wp-block-navigation-submenu__toggle {
	color: rgba(246, 251, 255, .91);
}

.sy-nav .wp-block-navigation-submenu__toggle svg {
	stroke: currentColor;
}

/* ---------- Mobil menü aç butonu (native WP navigation toggle) ---------- */
.sy-nav .wp-block-navigation__responsive-container-open,
.sy-nav .wp-block-navigation__responsive-container-open.always-shown {
	display: none !important; /* masaüstü: satır içi; ≤1500’de hamburger */
	width: 34px;
	height: 34px;
	place-items: center;
	color: rgba(246, 251, 255, .91);
}
.sy-nav .wp-block-navigation__responsive-container-open svg {
	width: 22px;
	height: 22px;
}
.sy-nav .wp-block-navigation__toggle_button_label {
	display: none;
}

.sy-nav .wp-block-navigation__responsive-container-close {
	display: none !important;
}

.sy-nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content::before,
.sy-nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content::after,
.sy-nav .wp-block-navigation__responsive-container.is-menu-open a::before,
.sy-nav .wp-block-navigation__responsive-container.is-menu-open a::after {
	display: none !important;
}

/* Header asla iki satıra düşmesin — sığmazsa hamburger (≤1500) */
.sy-header {
	flex-wrap: nowrap !important;
}
@media (min-width: 1501px) {
	.sy-nav:not(:has(.is-menu-open)),
	.sy-nav:not(:has(.is-menu-open)) .wp-block-navigation__container {
		flex-wrap: nowrap !important;
	}
}

/*
 * Masaüstü (≥1501) + menü KAPALI: satır içi nav (Blog + Teknolojiler dahil).
 * Menü AÇIKken (is-menu-open) tam ekran overlay korunur — resize ile kapanmaz.
 */
@media (min-width: 1501px) {
	.sy-nav .wp-block-navigation__responsive-container:not(.is-menu-open),
	.sy-nav .wp-block-navigation__responsive-container.hidden-by-default:not(.is-menu-open) {
		display: block !important;
		position: static !important;
		inset: auto !important;
		width: auto !important;
		height: auto !important;
		max-height: none !important;
		max-width: none !important;
		overflow: visible !important;
		background: transparent !important;
		padding: 0 !important;
		margin: 0 !important;
		z-index: auto !important;
	}

	.sy-nav .wp-block-navigation__responsive-container:not(.is-menu-open) .wp-block-navigation__responsive-close,
	.sy-nav .wp-block-navigation__responsive-container:not(.is-menu-open) .wp-block-navigation__responsive-dialog {
		position: static !important;
		width: auto !important;
		height: auto !important;
	}

	.sy-nav .wp-block-navigation__responsive-container:not(.is-menu-open) .wp-block-navigation__responsive-container-content {
		display: block !important;
		padding: 0 !important;
		max-width: none !important;
		margin: 0 !important;
		gap: 0 !important;
		width: auto !important;
	}

	.sy-nav .wp-block-navigation__responsive-container:not(.is-menu-open) .wp-block-navigation__container {
		display: flex !important;
		flex-direction: row !important;
		flex-wrap: nowrap !important;
		align-items: center !important;
		gap: clamp(10px, 1.05vw, 20px) !important;
		width: auto !important;
	}

	.sy-nav .wp-block-navigation__responsive-container:not(.is-menu-open) .sy-mega-brand,
	.sy-nav .wp-block-navigation__responsive-container:not(.is-menu-open) .sy-mega-deck,
	.sy-nav .wp-block-navigation__responsive-container:not(.is-menu-open) .sy-mega-cta,
	.sy-nav .wp-block-navigation__responsive-container:not(.is-menu-open) .sy-mega-search {
		display: none !important;
	}
}

/* ---------- Tam ekran mega menü — açık olduğu sürece her genişlikte ---------- */
.sy-nav .wp-block-navigation__responsive-container.is-menu-open {
	background:
		radial-gradient(ellipse 70% 50% at 85% -10%, rgba(77, 186, 255, .18), transparent 55%),
		radial-gradient(ellipse 55% 40% at 0% 100%, rgba(8, 105, 194, .16), transparent 50%),
		#021938 !important;
	color: #fff;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	position: fixed !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	z-index: 100000 !important;
}
.sy-nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close {
	display: grid !important;
	top: max(16px, env(safe-area-inset-top));
	right: max(16px, env(safe-area-inset-right));
	width: 48px;
	height: 48px;
	place-items: center;
	border-radius: 50%;
	border: 1px solid rgba(225, 242, 255, .28);
	background: rgba(255, 255, 255, .08);
	backdrop-filter: blur(8px);
	color: #fff;
	z-index: 3;
}
.sy-nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close svg {
	width: 22px;
	height: 22px;
}
.sy-nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
	display: flex !important;
	flex-direction: column;
	gap: 22px;
	padding: max(72px, calc(env(safe-area-inset-top) + 56px)) 28px max(40px, env(safe-area-inset-bottom));
	max-width: 980px;
	margin: 0 auto;
	width: 100%;
	box-sizing: border-box;
}

.sy-nav .wp-block-navigation__responsive-container.is-menu-open .sy-mega-brand {
	order: 0;
	text-align: center;
	padding: 0 12px 4px;
	animation: sy-mega-rise .45s ease both;
}
.sy-mega-brand-name {
	margin: 0;
	color: #fff;
	font-size: clamp(20px, 2.8vw, 30px);
	font-weight: 800;
	letter-spacing: .04em;
	text-transform: uppercase;
	line-height: 1.15;
}
.sy-mega-brand-sub {
	margin: 10px 0 0;
	color: rgba(126, 207, 255, .92);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	line-height: 1.3;
	white-space: nowrap;
}
.sy-mega-brand-sub::before,
.sy-mega-brand-sub::after {
	content: "";
	display: inline-block;
	width: 22px;
	height: 1px;
	margin: 0 10px;
	vertical-align: middle;
	background: linear-gradient(90deg, transparent, rgba(77, 186, 255, .7), transparent);
}

/* Mega menü arama tetikleyici */
.sy-nav .wp-block-navigation__responsive-container.is-menu-open .sy-mega-search {
	order: 1;
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	margin: 0 0 18px;
	padding: 14px 18px;
	border: 1px solid rgba(225, 242, 255, .28);
	border-radius: 999px;
	background: rgba(255, 255, 255, .08);
	backdrop-filter: blur(10px);
	color: rgba(225, 241, 255, .78);
	font-size: 14px;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
	animation: sy-mega-rise .45s ease both;
}
.sy-mega-search svg {
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
	color: #7ecfff;
}

/* Nav buttons — always after brand + search */
.sy-nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container {
	order: 2;
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-auto-rows: 1fr;
	gap: 10px !important;
	align-items: stretch !important;
	width: 100%;
	flex-wrap: unset !important;
	animation: sy-mega-rise .5s ease .04s both;
}
.sy-nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item {
	width: 100%;
	height: 100%;
	margin: 0 !important;
	display: flex !important;
}
.sy-nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
	display: flex !important;
	align-items: center;
	justify-content: center;
	flex: 1 1 auto;
	width: 100%;
	min-height: 58px;
	height: 100%;
	padding: 14px 12px !important;
	border: 1px solid rgba(190, 224, 255, .28);
	border-radius: 12px;
	background: rgba(255, 255, 255, .07);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
	color: #fff !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	letter-spacing: -.01em;
	line-height: 1.2;
	text-align: center;
	text-decoration: none !important;
	white-space: normal !important;
	transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.sy-nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content:hover,
.sy-nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content:focus {
	background: rgba(77, 186, 255, .2);
	border-color: rgba(126, 207, 255, .7);
	color: #fff !important;
	transform: translateY(-1px);
}
.sy-nav .wp-block-navigation__responsive-container.is-menu-open .sy-nav-tech-link .wp-block-navigation-item__content,
.sy-nav .wp-block-navigation__responsive-container.is-menu-open .sy-nav-blog-link .wp-block-navigation-item__content {
	min-height: 58px;
	font-size: 14px !important;
	font-weight: 700 !important;
	background: rgba(255, 255, 255, .07);
	border-style: solid;
}
.sy-nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-submenu__toggle,
.sy-nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-icon {
	display: none !important;
}

.sy-nav .wp-block-navigation__responsive-container.is-menu-open .sy-mega-deck {
	order: 3;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	animation: sy-mega-rise .55s ease .08s both;
}
.sy-mega-panel {
	padding: 16px;
	border: 1px solid rgba(190, 224, 255, .16);
	border-radius: 16px;
	background: rgba(255, 255, 255, .05);
	backdrop-filter: blur(10px);
}
.sy-mega-panel-label {
	margin: 0 0 12px;
	color: #7ecfff;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .2em;
	text-transform: uppercase;
}
.sy-mega-video {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 12px;
	aspect-ratio: 16 / 10;
	background: #0a2c69;
}
.sy-mega-video img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .5s ease;
}
.sy-mega-video:hover img {
	transform: scale(1.05);
}
.sy-mega-play {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	background: linear-gradient(180deg, rgba(4, 21, 54, .15), rgba(4, 21, 54, .45));
	color: #fff;
}
.sy-mega-play svg {
	width: 48px;
	height: 48px;
	padding: 13px;
	border-radius: 50%;
	background: rgba(23, 139, 234, .92);
	box-shadow: 0 10px 28px rgba(4, 36, 91, .35);
}
.sy-mega-about-text {
	margin: 0;
	color: rgba(230, 243, 255, .82);
	font-size: 14px;
	line-height: 1.65;
}
.sy-mega-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 14px;
	color: #9fd8ff;
	font-size: 14.5px;
	font-weight: 800;
	text-decoration: none;
	border-bottom: 1px solid rgba(159, 216, 255, .45);
	padding-bottom: 2px;
}
.sy-mega-more:hover {
	color: #fff;
	border-bottom-color: #fff;
}
.sy-mega-contact {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 12px;
}
.sy-mega-contact li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0;
}
.sy-mega-dot {
	flex: 0 0 auto;
	width: 8px;
	height: 8px;
	margin-top: 7px;
	border-radius: 50%;
	background: #4dbaff;
	box-shadow: 0 0 0 3px rgba(77, 186, 255, .18);
}
.sy-mega-contact a {
	color: rgba(236, 246, 255, .9);
	font-size: 14.5px;
	line-height: 1.45;
	text-decoration: none;
	font-weight: 600;
}
.sy-mega-contact a:hover {
	color: #fff;
}
.sy-mega-social {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 16px;
}
.sy-mega-social a {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid rgba(225, 242, 255, .28);
	color: rgba(236, 246, 255, .92);
	background: rgba(255, 255, 255, .06);
	transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.sy-mega-social a:hover {
	background: rgba(77, 186, 255, .2);
	border-color: rgba(126, 207, 255, .55);
	color: #fff;
}
.sy-mega-social svg {
	width: 15px;
	height: 15px;
	display: block;
}

.sy-nav .wp-block-navigation__responsive-container.is-menu-open .sy-mega-cta {
	order: 4;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: center;
	gap: 12px;
	min-width: min(100%, 300px);
	padding: 15px 26px;
	border-radius: 999px;
	background: #cca668;
	color: #fff !important;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: .04em;
	text-decoration: none !important;
	box-shadow: 0 14px 36px rgba(160, 122, 62, .28);
	animation: sy-mega-rise .6s ease .12s both;
	transition: transform .2s ease, box-shadow .2s ease;
}
.sy-mega-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 40px rgba(160, 122, 62, .36);
	color: #fff !important;
}

@keyframes sy-mega-rise {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 820px) {
	.sy-nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container {
		grid-template-columns: 1fr 1fr;
	}
	.sy-nav .wp-block-navigation__responsive-container.is-menu-open .sy-mega-deck {
		grid-template-columns: 1fr;
	}
	.sy-nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
		padding-inline: 20px;
		gap: 18px;
	}

	/* Alt başlık: tek satır, sığacak kadar — fazla küçültme */
	.sy-mega-brand-sub {
		font-size: 12.5px;
		letter-spacing: .1em;
	}
	.sy-mega-brand-sub::before,
	.sy-mega-brand-sub::after {
		width: 14px;
		margin: 0 7px;
	}
}

@media (max-width: 420px) {
	.sy-nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
		min-height: 54px;
		font-size: 14.5px !important;
		padding: 12px 10px !important;
	}

	.sy-mega-brand-sub {
		font-size: 12px;
		letter-spacing: .08em;
	}
	.sy-mega-brand-sub::before,
	.sy-mega-brand-sub::after {
		width: 12px;
		margin: 0 6px;
	}
}

@media (max-width: 360px) {
	.sy-mega-brand-sub {
		font-size: 12px;
		letter-spacing: .05em;
	}
	.sy-mega-brand-sub::before,
	.sy-mega-brand-sub::after {
		width: 10px;
		margin: 0 5px;
	}
}

/* ---------- Actions ---------- */
.sy-header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	flex: 0 0 auto;
	min-width: 0;
	order: 4;
}

.sy-search-button {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	padding: 0;
	cursor: pointer;
	color: rgba(246, 251, 255, .91);
	border: 1px solid rgba(225, 242, 255, .40);
	border-radius: 50%;
	background: rgba(255, 255, 255, .06);
	transition: background .2s ease, border-color .2s ease;
}

.sy-search-button:hover {
	background: rgba(255, 255, 255, .14);
	border-color: #fff;
}

.sy-search-button svg {
	width: 16px;
	height: 16px;
	display: block;
}

.sy-header-appointment {
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 0 18px;
	color: #fff;
	border: 1px solid #cca668;
	border-radius: 8px;
	background: #cca668;
	font-size: 13.5px;
	font-weight: 800;
	letter-spacing: .05em;
	text-decoration: none;
	box-shadow: 0 8px 20px rgba(160, 122, 62, .22);
	transition: background .2s ease, transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.sy-header-appointment:hover {
	filter: brightness(1.06);
	transform: translateY(-1px);
	color: #fff;
	box-shadow: 0 12px 26px rgba(160, 122, 62, .3);
}

.sy-header-appointment span {
	display: grid;
	place-items: center;
	padding: 0;
}

/* ---------- Language switcher (tüm ekranlar) ---------- */
.sy-lang {
	display: block;
	position: relative;
	flex: 0 0 auto;
	z-index: 6;
	/* Desktop: logo + nav’dan sonra, aksiyonların solunda */
	order: 3;
}

.sy-lang-current {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 36px;
	padding: 0 10px;
	margin: 0;
	cursor: pointer;
	color: #f6fbff;
	border: 1px solid rgba(225, 242, 255, .34);
	border-radius: 8px;
	background: rgba(255, 255, 255, .06);
	font: inherit;
	font-size: 13.5px;
	font-weight: 800;
	letter-spacing: .06em;
	line-height: 1;
	transition: background .2s ease, border-color .2s ease;
}

.sy-lang-current:hover,
.sy-lang.is-open .sy-lang-current {
	background: rgba(255, 255, 255, .12);
	border-color: rgba(225, 242, 255, .55);
}

.sy-lang-flag {
	font-size: 15px;
	line-height: 1;
}

.sy-lang-code {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .08em;
}

.sy-lang-caret {
	display: block;
	opacity: .75;
	transition: transform .2s ease;
}

.sy-lang.is-open .sy-lang-caret {
	transform: rotate(180deg);
}

.sy-lang-list {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	z-index: 30;
	min-width: 100%;
	margin: 0;
	padding: 6px;
	list-style: none;
	border: 1px solid rgba(207, 233, 255, .28);
	border-radius: 10px;
	background: #021938;
	box-shadow: 0 14px 36px rgba(1, 14, 47, .4);
}

.sy-lang-list a {
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 38px;
	padding: 0 10px;
	color: rgba(246, 251, 255, .9);
	border-radius: 7px;
	text-decoration: none;
	font-size: 13.5px;
	font-weight: 800;
	letter-spacing: .06em;
	transition: background .15s ease, color .15s ease;
}

.sy-lang-list a:hover {
	background: rgba(77, 186, 255, .12);
	color: #fff;
}

/* ---------- Breakpoints ---------- */
@media (max-width: 1180px) {
	.sy-brand-logo img,
	.sy-brand-logo .custom-logo {
		width: 200px;
		max-height: 46px;
	}

	.sy-nav,
	.sy-nav .wp-block-navigation__container {
		gap: 18px !important;
	}

	.sy-nav a,
	.sy-nav .wp-block-navigation-item__content {
		font-size: 14px;
	}

	.sy-header-actions {
		min-width: 210px;
	}
}

/* Kırılma 1500: rafine nav (14px) 8 link + logo + randevu'e kadar
   tek satıra sığıyor (ölçüldü). Bu yüzden 1500px'e kadar satır içi nav;
   altında hamburger + mega menü. Böylece 1366/1440 laptop'larda menü açık. */
@media (max-width: 1500px) {
	:root {
		--sy-header-offset: 72px;
	}

	.sy-header {
		height: 72px;
		background: transparent;
		justify-content: flex-start;
		gap: 12px;
		/* Taşmayı kesme — hamburger sağda kalsın */
		overflow: visible;
	}

	.sy-brand-logo {
		margin-right: auto !important;
		flex: 1 1 auto;
		min-width: 0;
		max-width: calc(100% - 128px);
	}

	.sy-brand-logo img,
	.sy-brand-logo .custom-logo {
		width: auto;
		max-width: 100%;
		max-height: 42px;
	}

	/* Hamburger açıkken arama + RANDEVU AL gizlenir (mega menüde CTA var).
	   Buton + logo dar ekranda hamburger'i viewport dışına itiyordu. */
	.sy-header-actions {
		display: none !important;
	}

	.sy-lang {
		display: block;
		order: 1;
		margin-left: 0;
		margin-right: 2px;
	}

	.sy-nav {
		flex: 0 0 auto;
		flex-shrink: 0;
		justify-content: flex-end !important;
		order: 2;
		margin-left: 0;
	}

	.sy-nav .wp-block-navigation__responsive-container-open,
	.sy-nav .wp-block-navigation__responsive-container-open.always-shown {
		display: grid !important;
		position: relative;
		flex-shrink: 0;
		z-index: 2;
	}

	.sy-nav .wp-block-navigation__responsive-container:not(.is-menu-open) {
		display: none !important;
	}

	.sy-nav .wp-block-navigation__responsive-container-open svg {
		display: none;
	}
	.sy-nav .wp-block-navigation__responsive-container-open::before,
	.sy-nav .wp-block-navigation__responsive-container-open::after {
		content: "";
		position: absolute;
		left: 50%;
		width: 20px;
		height: 2px;
		background: currentColor;
		transform: translateX(-50%);
	}
	.sy-nav .wp-block-navigation__responsive-container-open::before {
		top: 11px;
		box-shadow: 0 6px 0 currentColor;
	}
	.sy-nav .wp-block-navigation__responsive-container-open::after {
		top: 23px;
	}
}

@media (max-width: 520px) {
	:root {
		--sy-header-offset: 64px;
	}

	.sy-header {
		height: 64px;
		background: transparent;
		border-bottom-color: rgba(224, 240, 255, .08);
		gap: 8px;
	}

	.sy-brand-logo img,
	.sy-brand-logo .custom-logo {
		max-height: 36px;
	}

	.sy-lang-current {
		min-height: 34px;
		padding: 0 8px;
		gap: 5px;
	}

	.sy-lang-flag {
		font-size: 14px;
	}

	.sy-lang-code {
		font-size: 12.5px;
	}
}

@media (max-width: 380px) {
	.sy-brand-logo img,
	.sy-brand-logo .custom-logo {
		max-height: 32px;
	}
}

/* ---------- Footer ---------- */
.sy-footer {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	/* Acıbadem tarzı üst çizgi + yumuşak gölge */
	border-top: 2px solid #5aa9dc;
	background:
		radial-gradient(circle at 12% 0%, rgba(77, 186, 255, .07), transparent 38%),
		radial-gradient(circle at 88% 100%, rgba(23, 139, 234, .05), transparent 36%),
		radial-gradient(circle at 50% 40%, rgba(204, 166, 104, .03), transparent 42%),
		#021938;
	color: rgba(236, 246, 255, .88);
	box-shadow:
		0 -10px 24px rgba(4, 36, 91, .07),
		inset 0 16px 22px -16px rgba(0, 10, 30, .45);
}

.sy-footer-shell {
	position: relative;
	z-index: 1;
	width: min(calc(100% - var(--page-inline-space)), var(--page-max-width));
	margin: 0 auto;
	padding: 0;
}

.sy-footer-main {
	display: grid;
	grid-template-columns: minmax(200px, 1.25fr) minmax(130px, 0.85fr) minmax(130px, 0.85fr) minmax(160px, 0.95fr) minmax(200px, 260px);
	gap: clamp(24px, 3vw, 40px);
	align-items: start;
	padding: 52px 0 36px;
	border-bottom: 1px solid rgba(159, 208, 246, .10);
}

.sy-footer-col {
	min-width: 0;
}

.sy-footer-col-brand {
	display: flex;
	flex-direction: column;
}

.sy-footer-logo img,
.sy-footer-logo .custom-logo {
	display: block;
	width: 240px;
	max-width: 100%;
	height: auto;
	margin-bottom: 16px;
}

.sy-footer-tagline {
	max-width: 300px;
	margin: 0 0 18px;
	color: rgba(236, 246, 255, .82);
	font-size: 15px;
	line-height: 1.65;
}

.sy-footer-cta {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	width: fit-content;
	gap: 10px;
	margin: 0 0 20px;
	padding-bottom: 6px;
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: .03em;
	text-decoration: none;
	border-bottom: 1px solid #cca668;
	transition: color .2s ease, border-color .2s ease, gap .2s ease;
}

.sy-footer-cta svg {
	width: 15px;
	height: 15px;
}

.sy-footer-cta:hover {
	color: #e0c48a;
	border-bottom-color: #e0c48a;
	gap: 13px;
}

.sy-footer-social {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.sy-footer-social a {
	width: 38px;
	height: 38px;
	display: grid;
	place-items: center;
	color: #e8f4ff;
	border: 1px solid rgba(159, 208, 246, .22);
	background: rgba(77, 186, 255, .04);
	border-radius: 50%;
	transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.sy-footer-social a:hover {
	background: var(--wp--preset--color--blue);
	border-color: var(--wp--preset--color--blue);
	color: #fff;
	transform: translateY(-2px);
}

.sy-footer-social svg {
	width: 16px;
	height: 16px;
}

.sy-footer-heading {
	margin: 0 0 16px;
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.sy-footer-panel {
	margin: 0;
	border: 0;
	background: transparent;
}

.sy-footer-panel > summary {
	list-style: none;
	cursor: default;
}

.sy-footer-panel > summary::-webkit-details-marker {
	display: none;
}

.sy-footer-acc-icon {
	display: none;
}

.sy-footer-nav {
	display: grid;
	gap: 11px;
}

.sy-footer-nav a,
.sy-footer-nav .wp-block-navigation-item__content {
	padding: 0;
	color: rgba(236, 246, 255, .88) !important;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: color .2s ease;
}

.sy-footer-nav a:hover,
.sy-footer-nav .wp-block-navigation-item__content:hover {
	color: #7ecfff !important;
	padding-left: 0;
}

.sy-footer-contact-list {
	display: grid;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.sy-footer-contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 15px;
	line-height: 1.5;
	color: rgba(236, 246, 255, .9);
}

.sy-footer-contact-list svg {
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
	margin-top: 2px;
	color: #7ecfff;
}

.sy-footer-contact-list a {
	color: inherit;
	text-decoration: none;
}

.sy-footer-contact-list a:hover {
	color: var(--wp--preset--color--blue);
}

.sy-footer-col-map {
	align-self: stretch;
}

.sy-footer-map-link {
	display: flex;
	flex-direction: column;
	gap: 10px;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.sy-footer-map {
	flex: 1 1 auto;
	overflow: hidden;
	min-height: 168px;
	border: 1px solid rgba(159, 208, 246, .28);
	border-radius: 14px;
	background: #0a2c69;
	box-shadow: 0 14px 36px rgba(0, 0, 0, .28);
	pointer-events: none;
}

.sy-footer-map iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 168px;
	border: 0;
}

.sy-footer-map-caption {
	color: rgba(236, 246, 255, .78);
	font-size: 13.5px;
	font-weight: 600;
	line-height: 1.4;
	transition: color .2s ease;
}

.sy-footer-map-link:hover .sy-footer-map-caption {
	color: #7ecfff;
}

/* Trust row — four equal value cards */
.sy-footer-trust {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	padding: 28px 0 8px;
}

.sy-footer-trust-item {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	align-items: center;
	gap: 16px;
	min-height: 108px;
	padding: 22px 20px;
	border: 1px solid rgba(159, 208, 246, .16);
	border-radius: 12px;
	background:
		linear-gradient(160deg, rgba(255, 255, 255, .04), rgba(77, 186, 255, .03) 48%, rgba(2, 25, 56, .35));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, .04),
		0 10px 24px rgba(0, 0, 0, .18);
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
	transition: border-color .25s ease, background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.sy-footer-trust-item:hover {
	border-color: rgba(126, 207, 255, .32);
	background:
		linear-gradient(160deg, rgba(255, 255, 255, .06), rgba(77, 186, 255, .05) 48%, rgba(2, 25, 56, .4));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, .06),
		0 14px 30px rgba(0, 0, 0, .22);
	transform: translateY(-2px);
}

.sy-footer-trust-icon {
	display: block;
	width: 48px;
	height: 48px;
	color: #7ecfff;
	filter: drop-shadow(0 0 8px rgba(77, 186, 255, .12));
}

.sy-footer-trust-icon.is-accent {
	color: #e0c48a;
	filter: drop-shadow(0 0 8px rgba(204, 166, 104, .12));
}

.sy-footer-trust-text {
	min-width: 0;
}

.sy-footer-trust-text strong {
	display: block;
	margin: 0 0 6px;
	color: #fff;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: -.015em;
	line-height: 1.25;
}

.sy-footer-trust-text p {
	margin: 0;
	color: rgba(225, 241, 255, .82);
	font-size: 14.5px;
	font-weight: 500;
	line-height: 1.45;
}

.sy-footer-disclaimer {
	padding: 22px 0;
	margin: 0;
	color: rgba(225, 241, 255, .62);
	font-size: 13.5px;
	line-height: 1.7;
	border-bottom: 1px solid rgba(159, 208, 246, .14);
}

.sy-footer-bottom {
	align-items: center;
	justify-content: space-between !important;
	gap: 20px !important;
	padding: 18px 0 28px;
	color: rgba(225, 241, 255, .72);
	font-size: 14.5px;
	flex-wrap: wrap;
}

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

.sy-footer-bottom a {
	color: rgba(236, 246, 255, .88);
	text-decoration: none;
}

.sy-footer-bottom a:hover {
	color: #7ecfff;
}

/* Desktop: kolonlar üstten hizalı (logo ↔ başlıklar) */

@media (max-width: 1180px) {
	.sy-footer-main {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 28px 22px;
	}

	.sy-footer-col-brand {
		grid-column: 1 / -1;
		align-items: center;
		text-align: center;
		padding: 0 12px 28px;
		margin-bottom: 4px;
		border-bottom: 1px solid rgba(207, 233, 255, .1);
	}

	.sy-footer-logo {
		display: flex;
		justify-content: center;
		width: 100%;
	}

	.sy-footer-logo img,
	.sy-footer-logo .custom-logo {
		margin: 0 auto 16px;
	}

	.sy-footer-tagline {
		max-width: 540px;
		margin: 0 auto 18px;
	}

	.sy-footer-cta {
		margin: 0 auto 18px;
	}

	.sy-footer-social {
		justify-content: center;
	}

	.sy-footer-col-map {
		grid-column: 1 / -1;
	}

	.sy-footer-map {
		min-height: 220px;
	}

	.sy-footer-map iframe {
		min-height: 220px;
	}

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

/* Tablet geniş: logo + metin yatay */
@media (max-width: 1180px) and (min-width: 900px) {
	.sy-footer-col-brand {
		display: grid;
		grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
		grid-template-areas:
			"logo tagline"
			"logo cta"
			"logo social";
		column-gap: 36px;
		row-gap: 12px;
		align-items: center;
		justify-items: start;
		text-align: left;
		padding-left: 0;
		padding-right: 0;
	}

	.sy-footer-logo {
		grid-area: logo;
		justify-content: center;
		align-self: center;
	}

	.sy-footer-logo img,
	.sy-footer-logo .custom-logo {
		margin: 0;
	}

	.sy-footer-tagline {
		grid-area: tagline;
		max-width: 46ch;
		margin: 0;
		text-align: left;
	}

	.sy-footer-cta {
		grid-area: cta;
		margin: 0;
		justify-self: start;
	}

	.sy-footer-social {
		grid-area: social;
		justify-content: flex-start;
	}
}

@media (max-width: 760px) {
	.sy-footer-main {
		grid-template-columns: 1fr;
		gap: 16px;
		padding: 40px 0 24px;
	}

	.sy-footer-col-brand,
	.sy-footer-col-map,
	.sy-footer-panel-wrap {
		grid-column: 1 / -1;
	}

	.sy-footer-map {
		min-height: 200px;
	}

	.sy-footer-map iframe {
		min-height: 200px;
	}

	.sy-footer-panel {
		overflow: hidden;
		border: 1px solid rgba(159, 208, 246, .16);
		border-radius: 12px;
		background:
			linear-gradient(160deg, rgba(255, 255, 255, .035), rgba(77, 186, 255, .025));
	}

	.sy-footer-panel > summary.sy-footer-heading {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		margin: 0;
		padding: 16px 18px;
		cursor: pointer;
		user-select: none;
		transition: background .2s ease;
	}

	.sy-footer-panel > summary.sy-footer-heading:hover {
		background: rgba(77, 186, 255, .05);
	}

	.sy-footer-acc-icon {
		display: grid;
		place-items: center;
		flex: 0 0 auto;
		width: 28px;
		height: 28px;
		border-radius: 50%;
		color: rgba(126, 207, 255, .85);
		background: rgba(77, 186, 255, .06);
		border: 1px solid rgba(159, 208, 246, .2);
		transition: transform .25s ease, background .2s ease;
	}

	.sy-footer-acc-icon svg {
		width: 14px;
		height: 14px;
	}

	.sy-footer-panel[open] > summary .sy-footer-acc-icon {
		transform: rotate(180deg);
		background: rgba(204, 166, 104, .08);
		border-color: rgba(204, 166, 104, .28);
		color: #cca668;
	}

	.sy-footer-panel[open] > summary.sy-footer-heading {
		border-bottom: 1px solid rgba(159, 208, 246, .1);
	}

	.sy-footer-panel .sy-footer-nav,
	.sy-footer-panel .sy-footer-contact-list {
		padding: 14px 18px 18px;
	}

	.sy-footer-trust {
		gap: 12px;
		padding-top: 18px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sy-footer-trust-item {
		min-height: 96px;
		padding: 18px 16px;
		gap: 14px;
		grid-template-columns: 42px minmax(0, 1fr);
	}

	.sy-footer-trust-icon {
		width: 42px;
		height: 42px;
	}
}

@media (max-width: 520px) {
	.sy-footer-trust {
		grid-template-columns: 1fr;
	}

	.sy-footer-trust-text strong {
		font-size: 14.5px;
	}

	.sy-footer-bottom {
		flex-direction: column;
		align-items: flex-start !important;
		gap: 10px !important;
	}
}

/* Hizmet single */
.sy-hizmet-main {
	max-width: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}

/* ============================================================
   Entry hero — blog + hizmet/tedavi
   Klinik özet: etiket/değer şeridi (pill/chip yok).
   ============================================================ */
.sy-entry-hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: clamp(36px, 4.2vw, 64px) 0 0;
	color: #0a2c69;
	background:
		radial-gradient(circle at 90% 10%, rgba(77, 186, 255, .16), transparent 34%),
		radial-gradient(circle at 8% 90%, rgba(21, 141, 232, .08), transparent 40%),
		linear-gradient(118deg, #f8fbff 0%, #eef5ff 48%, #e7f1ff 100%);
	border-bottom: 1px solid #dce8f6;
}

.sy-entry-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: .4;
	background-image: radial-gradient(rgba(10, 44, 105, .06) .7px, transparent .7px);
	background-size: 22px 22px;
	mask-image: linear-gradient(115deg, #000 0%, transparent 55%);
}

.sy-entry-hero-shell {
	position: relative;
	z-index: 1;
	width: min(calc(100% - var(--page-inline-space)), var(--page-max-width));
	margin: 0 auto;
	padding-bottom: 0;
}

.sy-entry-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
	gap: clamp(28px, 3.2vw, 52px);
	align-items: center;
	padding-bottom: clamp(36px, 4vw, 56px);
}

.sy-entry-hero-copy {
	max-width: none;
}

.sy-entry-hero-crumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 0 0 28px;
	color: #6a7d98;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
}

.sy-entry-hero-crumbs a {
	color: #0f7cc6;
	text-decoration: none;
	transition: color .2s ease;
}

.sy-entry-hero-crumbs a:hover {
	color: #158de8;
}

.sy-entry-hero-crumbs-sep {
	color: #b7c6da;
	font-weight: 500;
}

.sy-entry-hero-crumbs-current {
	color: #0a2c69;
	font-weight: 700;
}

.sy-entry-hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 14px;
	color: #cca668;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .22em;
	text-transform: uppercase;
	line-height: 1;
}

.sy-entry-hero-eyebrow::before {
	content: "";
	width: 32px;
	height: 2px;
	border-radius: 99px;
	background: linear-gradient(90deg, #a07a3e, #cca668);
}

.sy-entry-hero-title {
	margin: 0;
	color: #092d70;
	font-size: clamp(32px, 3.8vw, 52px);
	font-weight: 800;
	letter-spacing: -.034em;
	line-height: 1.06;
}

.sy-entry-hero-lead {
	margin: 20px 0 0;
	max-width: 40em;
	color: #4a5b74;
	font-size: clamp(15px, 1.15vw, 17px);
	font-weight: 450;
	line-height: 1.7;
}

/* Blog meta — iki ayrı pill, solda mavi ikon noktası */
.sy-entry-hero-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
}

.sy-entry-hero-meta li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 38px;
	padding: 0 12px 0 10px;
	border: 1px solid #d5e6f6;
	border-radius: 999px;
	background: #fff;
	box-shadow: 0 6px 16px rgba(4, 36, 91, .05);
	color: #0a2c69;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
}

.sy-entry-hero-meta-ic {
	display: grid;
	place-items: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #eaf4ff;
	color: #1183d8;
	flex: 0 0 auto;
}

.sy-entry-hero-meta-ic svg {
	width: 13px;
	height: 13px;
}

.sy-entry-hero-meta-text {
	white-space: nowrap;
}

/* Klinik özet — dikey çizgili etiket/değer; ikonlu pill değil */
.sy-entry-hero-facts {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	column-gap: 0;
	margin: 36px 0 0;
	padding: 28px 0 0;
	border-top: 1px solid #d5e4f4;
}

.sy-entry-hero-fact {
	padding: 0 24px 0 0;
	margin: 0;
	border-right: 1px solid #d7e4f3;
}

.sy-entry-hero-fact:last-child {
	border-right: 0;
	padding-right: 0;
}

.sy-entry-hero-fact:not(:first-child) {
	padding-left: 24px;
}

.sy-entry-hero-fact dt {
	margin: 0 0 10px;
	color: #7a8aa3;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	line-height: 1.2;
}

.sy-entry-hero-fact dd {
	margin: 0;
	color: #0a2c69;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: -.015em;
	line-height: 1.45;
}

.sy-entry-hero-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 14px;
	margin-top: 40px;
}

.sy-entry-hero-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 48px;
	padding: 0 20px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none !important;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.sy-entry-hero-btn svg {
	width: 16px;
	height: 16px;
}

.sy-entry-hero-btn--primary {
	color: #fff !important;
	background: #cca668;
	box-shadow: 0 12px 26px rgba(160, 122, 62, .22);
}

.sy-entry-hero-btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 32px rgba(160, 122, 62, .28);
	color: #fff !important;
}

.sy-entry-hero-btn--ghost {
	color: #0a3978 !important;
	background: #fff;
	border: 1px solid rgba(12, 90, 167, .34);
}

.sy-entry-hero-btn--ghost:hover {
	transform: translateY(-2px);
	border-color: #1689d8;
	color: #0753a0 !important;
}

.sy-entry-hero-visual {
	position: relative;
	width: 100%;
	min-width: 0;
}

.sy-entry-hero-visual-frame {
	position: relative;
	/* 4/3'ten biraz daha yatay; max-height yok — hero ile birlikte dolu kalsın */
	aspect-ratio: 3 / 2;
	overflow: hidden;
	border-radius: 22px;
	background:
		radial-gradient(circle at 78% 12%, rgba(77, 186, 255, .32), transparent 52%),
		linear-gradient(150deg, #021938 0%, #0a3f8f 100%);
	box-shadow:
		0 28px 56px rgba(4, 36, 91, .18),
		0 6px 18px rgba(4, 36, 91, .07),
		inset 0 0 0 1px rgba(255, 255, 255, .42);
}

.sy-entry-hero-visual-frame img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 28%;
}

.sy-entry-hero-visual-veil {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(105deg, rgba(247, 251, 255, .28) 0%, rgba(247, 251, 255, 0) 40%),
		linear-gradient(180deg, transparent 68%, rgba(2, 25, 56, .18) 100%);
}

.sy-entry-hero-fallback {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	color: rgba(126, 207, 255, .55);
	font-size: 64px;
	font-weight: 800;
	letter-spacing: .04em;
}

@media (max-width: 1100px) {
	.sy-entry-hero-grid {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.sy-entry-hero-visual-frame {
		aspect-ratio: 16 / 11;
		border-radius: 18px;
		max-width: 640px;
	}

	.sy-entry-hero-facts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		row-gap: 18px;
	}

	.sy-entry-hero-fact:nth-child(2n) {
		border-right: 0;
		padding-right: 0;
	}

	.sy-entry-hero-fact:nth-child(n + 3) {
		padding-top: 18px;
		border-top: 1px solid #e2ecf7;
	}
}

@media (max-width: 560px) {
	.sy-entry-hero-title {
		font-size: clamp(28px, 8.5vw, 36px);
	}

	.sy-entry-hero-btn {
		width: 100%;
	}

	.sy-entry-hero-facts {
		grid-template-columns: 1fr 1fr;
	}
}

/* Legacy crumbs (kept if referenced elsewhere) */
.sy-hizmet-crumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin: 0 0 28px;
	color: #6a7d98;
	font-size: 14.5px;
	font-weight: 600;
	line-height: 1.4;
}

.sy-hizmet-crumbs a {
	color: #0f7cc6;
	text-decoration: none;
	transition: color .2s ease;
}

.sy-hizmet-crumbs a:hover {
	color: #158de8;
}

.sy-hizmet-crumbs-sep {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #9bb0c9;
	opacity: .7;
}

.sy-hizmet-crumbs-current {
	color: #3d4d66;
	font-weight: 700;
}

/*
  Body shell = header ile AYNI genişlik (page-max-width).
  Sol: makale (1fr) — sağ: sticky form (~400px).
  Gap dar: homepage hero/contact gibi, ortada boş ada yok.
*/
.sy-hizmet-body {
	padding: clamp(36px, 4vw, 56px) 0 clamp(48px, 5vw, 80px);
	background:
		radial-gradient(circle at 92% 0%, rgba(77, 186, 255, .06), transparent 36%),
		#fff;
}

.sy-hizmet-body-shell {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
	gap: clamp(20px, 2vw, 32px);
	align-items: start;
	width: min(calc(100% - var(--page-inline-space)), var(--page-max-width));
	max-width: 100%;
	margin: 0 auto;
	min-width: 0;
	box-sizing: border-box;
}

/* TOC’lu sayfalar: sağ sütun biraz daha dar (Acıbadem benzeri) */
.sy-hizmet-body-shell:has(.sy-hizmet-aside.has-toc) {
	grid-template-columns: minmax(0, 1fr) minmax(280px, 350px);
}

.sy-hizmet-body-main {
	min-width: 0;
	max-width: 100%;
}

.sy-hizmet-aside {
	position: sticky;
	/* JS --aside-sticky-top: header bottom + gap. */
	top: var(--aside-sticky-top, calc(var(--sy-header-offset, 84px) + 28px));
	align-self: start;
	will-change: top;
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-width: 0;
	max-width: 100%;
}

/*
  TOC: header altına yapışmasın, fazla boşluk da bırakmasın.
*/
.sy-hizmet-aside.has-toc {
	top: max(
		calc(var(--sy-header-offset, 84px) + 28px),
		var(--aside-sticky-top, 0px)
	) !important;
}

/* Medically reviewed banner — Acıbadem-style */
.sy-medical-review {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin: 0 0 28px;
	padding: 16px 20px;
	border: 1px solid #cfe4d6;
	border-radius: 14px;
	background: #eef7f1;
	color: #3d4d66;
}

.sy-medical-review-icon {
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	width: 26px;
	height: 26px;
	margin-top: 1px;
	color: #1f8a5b;
	line-height: 0;
}

.sy-medical-review-icon svg {
	display: block;
	width: 26px;
	height: 26px;
}

.sy-medical-review-copy {
	min-width: 0;
	flex: 1 1 auto;
}

.sy-hizmet-article .sy-medical-review p,
.sy-blog-article .sy-medical-review p,
.sy-medical-review-line,
.sy-medical-review-by {
	margin: 0;
	font-size: 15.5px;
	line-height: 1.45;
}

.sy-medical-review-line {
	color: #3a4658;
	font-weight: 500;
}

.sy-hizmet-article .sy-medical-review .sy-medical-review-by,
.sy-blog-article .sy-medical-review .sy-medical-review-by,
.sy-medical-review-by {
	margin-top: 5px;
}

.sy-medical-review-by a,
.sy-hizmet-article .sy-medical-review-by a,
.sy-blog-article .sy-medical-review-by a {
	color: #0a2c69;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
	text-decoration-thickness: 1px;
}

.sy-medical-review-by a:hover,
.sy-hizmet-article .sy-medical-review-by a:hover,
.sy-blog-article .sy-medical-review-by a:hover {
	color: #158de8;
}

/* Blog TOC — Acıbadem-benzeri kompakt sidebar (iç scroll yok) */
.sy-blog-toc {
	padding: 14px 0 12px;
	border: 1px solid #e6eef6;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 6px 18px rgba(4, 36, 91, .04);
	overflow: hidden;
	max-width: 100%;
	min-width: 0;
}

.sy-blog-toc-label {
	margin: 0 16px 10px;
	color: #8a9bb0;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	line-height: 1.2;
}

.sy-blog-toc-list {
	margin: 0;
	padding: 0;
	list-style: none;
	min-width: 0;
	max-width: 100%;
}

.sy-blog-toc-item {
	margin: 0;
	min-width: 0;
	max-width: 100%;
}

.sy-blog-toc-link {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
	padding: 8px 14px;
	color: #1a3558 !important;
	font-size: 14.5px;
	font-weight: 500;
	line-height: 1.4;
	text-decoration: none !important;
	transition: background .2s ease, color .2s ease;
}

.sy-blog-toc.is-short .sy-blog-toc-link {
	padding: 9px 14px;
	font-size: 15px;
}

.sy-blog-toc.is-long .sy-blog-toc-link {
	padding: 7px 14px;
	font-size: 14px;
	line-height: 1.4;
}

.sy-blog-toc-link:hover {
	background: #f3f7fb;
	color: #021938 !important;
}

.sy-blog-toc-link:hover .sy-blog-toc-num {
	color: #6b849e;
}

/* Aktif: sadece arka plan/renk — bold font-width kayması satır kırmaz */
.sy-blog-toc-link.is-active {
	background: #eef4f9;
	color: #021938 !important;
	font-weight: 500;
}

.sy-blog-toc-num {
	flex: 0 0 auto;
	min-width: 1.35em;
	color: #9aafc4;
	font-size: inherit;
	font-weight: 500;
	font-variant-numeric: tabular-nums;
	line-height: inherit;
}

.sy-blog-toc-link.is-active .sy-blog-toc-num {
	color: #6b849e;
}

.sy-blog-toc-text {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
}

/* Collapse inactive sections only when TOC would overflow the sticky rail */
.sy-blog-toc-sub {
	display: none;
	margin: 0;
	padding: 0 0 2px;
	list-style: none;
}

.sy-blog-toc-item.is-open > .sy-blog-toc-sub,
.sy-blog-toc.is-roomy .sy-blog-toc-sub {
	display: block;
}

.sy-blog-toc-sub .sy-blog-toc-link {
	padding: 7px 16px 7px 42px;
	color: #4a6280 !important;
	font-weight: 450;
}

.sy-blog-toc-sub .sy-blog-toc-link.is-active {
	background: #eef4f9;
	color: #021938 !important;
	font-weight: 450;
}

/* Anchor landing clears sticky header */
.sy-blog-article :is( h2, h3 )[id] {
	scroll-margin-top: calc( var( --sy-header-offset, 84px ) + 24px );
}

.sy-hizmet-aside-book {
	padding: 16px 14px 14px;
	border: 1px solid rgba(207, 233, 255, .42);
	border-radius: 14px;
	background: linear-gradient(145deg, rgba(2, 25, 56, .94), rgba(2, 25, 56, .98));
	box-shadow: 0 14px 36px rgba(1, 16, 53, .22), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.sy-hizmet-aside-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 8px;
	color: #cca668;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .22em;
	text-transform: uppercase;
	line-height: 1;
}

.sy-hizmet-aside-eyebrow::before {
	content: "";
	width: 22px;
	height: 2px;
	border-radius: 99px;
	background: linear-gradient(90deg, #a07a3e, #cca668);
}

.sy-hizmet-aside-eyebrow-light {
	color: #e0c48a;
}

.sy-hizmet-aside-eyebrow-light::before {
	background: linear-gradient(90deg, #a07a3e, #e0c48a);
}

.sy-hizmet-aside-book-title {
	margin: 0;
	color: #fff;
	font-size: clamp(15px, 1.15vw, 17px);
	font-weight: 800;
	letter-spacing: -.03em;
	line-height: 1.2;
}

.sy-hizmet-aside-book-text {
	margin: 5px 0 12px;
	color: rgba(225, 241, 255, .66);
	font-size: 13px;
	line-height: 1.45;
}

.sy-hizmet-aside-fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 9px;
}

.sy-hizmet-aside-form .sy-field {
	position: relative;
	display: grid;
	gap: 4px;
}

.sy-hizmet-aside-form .sy-field.is-full {
	grid-column: 1 / -1;
}

.sy-hizmet-aside-form .sy-field > span {
	color: rgba(230, 243, 255, .7);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .04em;
}

.sy-hizmet-aside-form .sy-field input,
.sy-hizmet-aside-form .sy-field select,
.sy-hizmet-aside-form .sy-field textarea {
	width: 100%;
	min-height: 38px;
	padding: 0 11px;
	color: #f7fbff;
	border: 1px solid rgba(207, 233, 255, .22);
	border-radius: 7px;
	outline: 0;
	background: rgba(255, 255, 255, .045);
	font: inherit;
	font-size: 13.5px;
	transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.sy-hizmet-aside-form .sy-field textarea {
	min-height: 52px;
	padding-top: 9px;
	resize: vertical;
}

.sy-hizmet-aside-form .sy-field select {
	appearance: none;
	cursor: pointer;
	background-image:
		linear-gradient(45deg, transparent 50%, rgba(230, 243, 255, .76) 50%),
		linear-gradient(135deg, rgba(230, 243, 255, .76) 50%, transparent 50%);
	background-position:
		calc(100% - 14px) 16px,
		calc(100% - 9px) 16px;
	background-size: 5px 5px, 5px 5px;
	background-repeat: no-repeat;
}

.sy-hizmet-aside-form .sy-field select option {
	color: #09265c;
	background: #fff;
}

.sy-hizmet-aside-form .sy-field input::placeholder,
.sy-hizmet-aside-form .sy-field textarea::placeholder {
	color: rgba(225, 241, 255, .42);
}

.sy-hizmet-aside-form .sy-field input:focus,
.sy-hizmet-aside-form .sy-field select:focus,
.sy-hizmet-aside-form .sy-field textarea:focus {
	border-color: rgba(77, 186, 255, .7);
	box-shadow: 0 0 0 3px rgba(77, 186, 255, .15);
}

.sy-hizmet-aside-form .sy-field.is-invalid input,
.sy-hizmet-aside-form .sy-field.is-invalid select,
.sy-hizmet-aside-form .sy-field.is-invalid textarea {
	border-color: #ff7b7b;
}

.sy-hizmet-aside-form .sy-hizmet-aside-file.sy-field,
.sy-hizmet-aside-file {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
	grid-column: 1 / -1;
	min-height: 36px;
	padding: 0 11px;
	color: rgba(225, 241, 255, .55);
	border: 1px dashed rgba(207, 233, 255, .32);
	border-radius: 7px;
	background: rgba(255, 255, 255, .03);
	font-size: 13px;
	cursor: pointer;
	transition: border-color .2s ease, color .2s ease;
}

.sy-hizmet-aside-file:hover {
	border-color: #4dbaff;
	color: #fff;
}

.sy-hizmet-aside-file svg {
	width: 14px;
	height: 14px;
	flex: 0 0 auto;
}

.sy-hizmet-aside-file > span {
	flex: 1 1 auto;
	min-width: 0;
	color: inherit;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: normal;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.2;
}

.sy-hizmet-aside-file input {
	position: absolute;
	inset: 0;
	opacity: 0;
	cursor: pointer;
	min-height: 0;
	padding: 0;
	border: 0;
}

.sy-hizmet-aside-consent {
	grid-column: 1 / -1;
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin-top: 0;
	color: rgba(225, 241, 255, .64);
	font-size: 12px;
	line-height: 1.45;
	cursor: pointer;
}

.sy-hizmet-aside-consent input {
	margin-top: 1px;
	flex: 0 0 auto;
	accent-color: #4dbaff;
}

.sy-hizmet-aside-consent.is-invalid span {
	color: #ff9b9b;
}

.sy-hizmet-aside-form .sy-honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.sy-hizmet-aside-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-height: 42px;
	margin-top: 12px;
	padding: 0 14px;
	border: 0;
	border-radius: 9px;
	cursor: pointer;
	color: #fff;
	background: #cca668;
	box-shadow: 0 10px 24px rgba(160, 122, 62, .26);
	font-size: 13.5px;
	font-weight: 800;
	letter-spacing: .04em;
	text-transform: uppercase;
	transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.sy-hizmet-aside-submit:hover {
	transform: translateY(-1px);
	filter: brightness(1.05);
	box-shadow: 0 14px 28px rgba(160, 122, 62, .34);
}

.sy-hizmet-aside-submit:disabled {
	opacity: .7;
	cursor: wait;
	transform: none;
}

.sy-hizmet-aside-submit svg {
	width: 14px;
	height: 14px;
}

.sy-hizmet-aside-status {
	margin: 8px 0 0;
	font-size: 13px;
	line-height: 1.45;
}

.sy-hizmet-aside-status.is-ok {
	color: #8be0b5;
}

.sy-hizmet-aside-status.is-err {
	color: #ff9b9b;
}

/* intl-tel-input — country picker on contact / aside forms */
.sy-iti.iti,
.sy-field .iti {
	display: block;
	width: 100%;
}

.sy-field .iti__tel-input {
	width: 100%;
}

.iti__dropdown-content {
	z-index: 10050;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 16px 40px rgba(4, 36, 91, .18);
	/* Dark forms inherit light text — force readable dropdown */
	color: #0a2a55 !important;
	background: #fff !important;
	--iti-text-color: #0a2a55;
	--iti-dialcode-color: #5a7390;
	--iti-hover-color: #eef5fb;
}

.iti__dropdown-content .iti__search-input {
	color: #0a2a55 !important;
	background: #fff !important;
	border-color: #d5e3f0 !important;
	caret-color: #0a2a55;
}

.iti__dropdown-content .iti__search-input::placeholder {
	color: #8a9bb0 !important;
}

.iti__dropdown-content .iti__country {
	color: #0a2a55 !important;
}

.iti__dropdown-content .iti__country-name,
.iti__dropdown-content .iti__dial-code {
	color: inherit !important;
}

.iti__dropdown-content .iti__country.iti__highlight,
.iti__dropdown-content .iti__country[aria-selected="true"] {
	background: #e8f4ff !important;
	color: #021938 !important;
}

.iti__search-input {
	font: inherit;
}

.sy-hizmet-aside-form .iti {
	--iti-border-color: rgba(207, 233, 255, .22);
	--iti-dialcode-color: rgba(230, 243, 255, .78);
	--iti-arrow-color: rgba(230, 243, 255, .7);
}

.sy-hizmet-aside-form .iti__selected-country {
	background: transparent;
}

.sy-hizmet-aside-form .iti__selected-country:hover,
.sy-hizmet-aside-form .iti__selected-country[aria-expanded="true"] {
	background: rgba(255, 255, 255, .06);
}

.sy-hizmet-aside-form .iti__selected-dial-code {
	color: rgba(230, 243, 255, .88);
	font-size: 14px;
	font-weight: 600;
}

.sy-hizmet-aside-form .iti__tel-input {
	color: #f7fbff;
	border: 1px solid rgba(207, 233, 255, .22);
	border-radius: 7px;
	background: rgba(255, 255, 255, .045);
	min-height: 42px;
	font-size: 14px;
	letter-spacing: .01em;
}

/* Chrome autofill: keep dark field, detect fill via animation */
@keyframes sy-phone-autofill {
	from { opacity: .99; }
	to { opacity: 1; }
}

.sy-hizmet-aside-form .iti__tel-input:-webkit-autofill,
.sy-hizmet-aside-form .iti__tel-input:-webkit-autofill:hover,
.sy-hizmet-aside-form .iti__tel-input:-webkit-autofill:focus,
.sy-contact-form-card .iti__tel-input:-webkit-autofill,
.sy-contact-form-card .iti__tel-input:-webkit-autofill:hover,
.sy-contact-form-card .iti__tel-input:-webkit-autofill:focus,
.sy-consultation-form .iti__tel-input:-webkit-autofill,
.sy-consultation-form .iti__tel-input:-webkit-autofill:hover,
.sy-consultation-form .iti__tel-input:-webkit-autofill:focus {
	animation-name: sy-phone-autofill;
	animation-duration: .001s;
	-webkit-text-fill-color: #f7fbff !important;
	caret-color: #f7fbff;
	box-shadow: 0 0 0 1000px rgba(8, 28, 72, .98) inset !important;
	transition: background-color 99999s ease-out;
	border-color: rgba(207, 233, 255, .22) !important;
}

.sy-hizmet-aside-form .iti__tel-input::placeholder {
	color: rgba(225, 241, 255, .42);
}

.sy-hizmet-aside-form .iti__tel-input:focus {
	border-color: rgba(77, 186, 255, .7);
	box-shadow: 0 0 0 3px rgba(77, 186, 255, .15);
	outline: 0;
}

.sy-field.is-invalid .iti__tel-input {
	border-color: #ff7b7b !important;
}

.sy-contact-form-card .iti__tel-input {
	min-height: 48px;
	border-radius: 10px;
	font-size: 15px;
}

.sy-contact-form-card .iti__selected-dial-code {
	font-size: 15px;
	font-weight: 600;
}

@media (max-width: 1100px) {
	.sy-hizmet-body-shell,
	.sy-hizmet-body-shell:has(.sy-hizmet-aside.has-toc) {
		grid-template-columns: minmax(0, 1fr);
		gap: 24px;
		width: min(calc(100% - var(--page-inline-space)), var(--page-max-width));
		max-width: 100%;
	}

	.sy-hizmet-aside,
	.sy-hizmet-aside.has-toc {
		position: static !important;
		top: auto !important;
		width: 100%;
		max-width: 100%;
		min-width: 0;
	}

	.sy-blog-toc,
	.sy-hizmet-aside-book {
		width: 100%;
		max-width: 100%;
		min-width: 0;
	}
}

@media (max-width: 420px) {
	.sy-hizmet-aside-fields {
		grid-template-columns: 1fr;
	}
}

.sy-hizmet-article {
	width: 100%;
	max-width: none;
	margin: 0;
	color: #3d4d66;
	font-size: 17px;
	line-height: 1.78;
}

.sy-hizmet-article > * {
	max-width: 100%;
}

.sy-hizmet-article > .sy-faq,
.sy-hizmet-article > .wp-block-sy-faq {
	width: 100%;
	max-width: none;
	margin-left: 0;
	margin-right: 0;
}

/* Inline FAQ — kompakt accordion */
.sy-hizmet-article details.sy-faq-item,
.sy-blog-article details.sy-faq-item {
	margin: 0 0 8px;
	padding: 0;
	border: 1px solid #dfeaf5;
	border-radius: 12px;
	background: #f9fcff;
	box-shadow: none;
	overflow: hidden;
}

.sy-hizmet-article details.sy-faq-item[open],
.sy-blog-article details.sy-faq-item[open] {
	border-color: #9fd0f6;
	background: #fff;
	box-shadow: 0 8px 20px rgba(4, 36, 91, .07);
	padding-bottom: 0;
}

.sy-hizmet-article details.sy-faq-item > summary,
.sy-blog-article details.sy-faq-item > summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 14px;
	cursor: pointer;
	list-style: none;
	color: #0a3475;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: -.01em;
	line-height: 1.4;
}

.sy-hizmet-article details.sy-faq-item > summary::-webkit-details-marker,
.sy-blog-article details.sy-faq-item > summary::-webkit-details-marker {
	display: none;
}

.sy-hizmet-article details.sy-faq-item > summary::marker,
.sy-blog-article details.sy-faq-item > summary::marker {
	content: "";
}

.sy-hizmet-article details.sy-faq-item > summary > span:first-child,
.sy-blog-article details.sy-faq-item > summary > span:first-child {
	flex: 1 1 auto;
	min-width: 0;
}

.sy-hizmet-article details.sy-faq-item .sy-faq-toggle,
.sy-blog-article details.sy-faq-item .sy-faq-toggle {
	flex: 0 0 auto;
	width: 30px;
	height: 30px;
	margin-top: 0;
	display: grid;
	place-items: center;
	color: #0752a0;
	border-radius: 50%;
	background: #e8f4ff;
	border: 0;
	box-shadow: none;
	transition: background .25s ease, color .25s ease, transform .3s ease;
}

.sy-hizmet-article details.sy-faq-item[open] .sy-faq-toggle,
.sy-blog-article details.sy-faq-item[open] .sy-faq-toggle {
	background: #0869c2;
	color: #fff;
	transform: rotate(45deg);
}

.sy-hizmet-article details.sy-faq-item .sy-faq-toggle svg,
.sy-blog-article details.sy-faq-item .sy-faq-toggle svg {
	display: block;
	width: 14px;
	height: 14px;
}

.sy-hizmet-article details.sy-faq-item .sy-faq-toggle:not(:has(svg))::before,
.sy-blog-article details.sy-faq-item .sy-faq-toggle:not(:has(svg))::before,
.sy-hizmet-article details.sy-faq-item summary:not(:has(.sy-faq-toggle))::after,
.sy-blog-article details.sy-faq-item summary:not(:has(.sy-faq-toggle))::after {
	content: "+";
	font-size: 18px;
	font-weight: 500;
	line-height: 1;
	color: inherit;
}

.sy-hizmet-article details.sy-faq-item summary:not(:has(.sy-faq-toggle))::after,
.sy-blog-article details.sy-faq-item summary:not(:has(.sy-faq-toggle))::after {
	flex: 0 0 auto;
	width: 30px;
	height: 30px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: #e8f4ff;
	color: #0752a0;
	transition: background .25s ease, color .25s ease, transform .3s ease;
}

.sy-hizmet-article details.sy-faq-item[open] summary:not(:has(.sy-faq-toggle))::after,
.sy-blog-article details.sy-faq-item[open] summary:not(:has(.sy-faq-toggle))::after {
	background: #0869c2;
	color: #fff;
	transform: rotate(45deg);
}

.sy-hizmet-article details.sy-faq-item .sy-faq-answer,
.sy-hizmet-article details.sy-faq-item > p,
.sy-hizmet-article details.sy-faq-item > ul,
.sy-hizmet-article details.sy-faq-item > ol,
.sy-blog-article details.sy-faq-item .sy-faq-answer,
.sy-blog-article details.sy-faq-item > p,
.sy-blog-article details.sy-faq-item > ul,
.sy-blog-article details.sy-faq-item > ol {
	margin: 0;
	padding: 0 22px 22px;
	color: #57667e;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.75;
}

@media (max-width: 640px) {
	.sy-hizmet-article details.sy-faq-item > summary,
	.sy-blog-article details.sy-faq-item > summary {
		padding: 11px 12px;
		font-size: 15px;
		gap: 10px;
	}

	.sy-hizmet-article details.sy-faq-item .sy-faq-answer,
	.sy-hizmet-article details.sy-faq-item > p,
	.sy-blog-article details.sy-faq-item .sy-faq-answer,
	.sy-blog-article details.sy-faq-item > p {
		padding: 0 18px 18px;
		font-size: 15px;
	}
}

/* FAQ üstündeki siyah/gri <hr> çizgisini kaldır */
.sy-hizmet-article hr,
.sy-blog-article hr {
	display: none;
}

/* İçerik linkleri — mavi kutu yok; sade underline */
.sy-hizmet-article a.sy-more-link,
.sy-blog-article a.sy-more-link {
	display: inline;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: none;
	color: #158de8 !important;
	font-size: inherit;
	font-weight: 700;
	text-decoration: underline !important;
	text-underline-offset: 3px;
}

.sy-hizmet-article > p > a:only-child,
.sy-blog-article > p > a:only-child {
	display: inline;
	margin: 0;
	padding: 0;
	border: 0 !important;
	border-radius: 0;
	background: none !important;
	box-shadow: none !important;
	color: #158de8 !important;
	font-weight: 700;
	text-decoration: underline !important;
	text-underline-offset: 3px;
}

.sy-hizmet-article a:where(:not(.sy-entry-hero-btn):not(.sy-hizmet-aside-submit):not(.sy-more-link)),
.sy-blog-article a {
	color: #158de8;
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: 1px;
	background: none;
	padding: 0;
	border: 0;
	border-radius: 0;
}

.sy-hizmet-article a:hover,
.sy-blog-article a:hover {
	color: #0a2c69;
}

/* Hasta soru-cevap kartı — navy/cyan modern (1. fotoğraf ölçüsü)
   Makale p punto + margin kuralları ezmesin. */
.sy-qa-card {
	margin: 28px 0 36px;
	border: 1px solid rgba(10, 44, 105, .14);
	border-radius: 16px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 18px 40px rgba(4, 36, 91, .08);
}

.sy-qa-q {
	padding: 26px 28px 24px;
	background: linear-gradient(135deg, #021938 0%, #0a2c69 55%, #0c3f88 100%);
	color: #f7fbff;
}

.sy-qa-a {
	padding: 24px 28px 26px;
	background: #fff;
	border-top: 1px solid rgba(21, 141, 232, .18);
}

.sy-qa-meta,
.sy-hizmet-article .sy-qa-card p.sy-qa-meta,
.sy-blog-article .sy-qa-card p.sy-qa-meta {
	margin: 0 0 12px !important;
	color: #4dbaff;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .14em;
	line-height: 1.35;
	text-transform: uppercase;
}

.sy-qa-a .sy-qa-meta,
.sy-hizmet-article .sy-qa-a p.sy-qa-meta,
.sy-blog-article .sy-qa-a p.sy-qa-meta {
	color: #158de8;
}

.sy-qa-text,
.sy-hizmet-article .sy-qa-card p.sy-qa-text,
.sy-blog-article .sy-qa-card p.sy-qa-text {
	margin: 0 !important;
	color: rgba(247, 251, 255, .92);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.75;
}

.sy-qa-a .sy-qa-text,
.sy-hizmet-article .sy-qa-a p.sy-qa-text,
.sy-blog-article .sy-qa-a p.sy-qa-text {
	color: #3d4f68;
}

/* Eski içerikteki inline stilli GÖRSEL sarmalayıcılarını nötrle:
   width:100% + padding-bottom + absolute img => devasa/taşan görsel.
   Doğal orana döndür, sütunda ortala, makul boyutta tut. */
.sy-hizmet-article div:has(> img) {
	position: static !important;
	width: auto !important;
	max-width: 100% !important;
	padding: 0 !important;
	aspect-ratio: auto !important;
	overflow: visible !important;
	margin: 30px auto !important;
	text-align: center;
	border-radius: 0 !important;
}
.sy-hizmet-article div:has(> img) > img {
	position: static !important;
	width: auto !important;
	max-width: 100% !important;
	height: auto !important;
	object-fit: contain !important;
}
/* Tüm makale görselleri: doğal oran, sütun içi, yuvarlak + gölge, boy sınırı */
.sy-hizmet-article img,
.sy-blog-article img {
	max-width: 100%;
	height: auto;
	max-height: 620px;
	object-fit: contain;
}

.sy-hizmet-article > .wp-block-heading:first-child,
.sy-hizmet-article > .sy-medical-review + .wp-block-heading,
.sy-blog-article > .sy-medical-review + .wp-block-heading {
	margin-top: 0;
}

.sy-hizmet-article > .sy-faq,
.sy-hizmet-article > .wp-block-sy-faq {
	width: 100%;
	max-width: none;
	margin: 56px 0 0;
	box-sizing: border-box;
}

/*
  Bölüm başlıkları (h2): tek punto.
  FAQ soruları (.sy-article-faq-q): daha kompakt — göçte h2 olarak gelmişti.
  h4 vb. ham başlıklar da bölüm boyutu alır (normalize sonrası çoğu h2 olur).
*/
.sy-hizmet-article :is(h2, h3, h4, h5, h6),
.sy-hizmet-article :is(h2, h3, h4, h5, h6).wp-block-heading {
	color: #0a2c69;
	letter-spacing: -.015em;
	margin-top: 1.25em;
	margin-bottom: .4em;
	font-size: clamp(20px, 1.25vw, 24px);
	font-weight: 700;
	line-height: 1.3;
}

.sy-hizmet-article :is(h2, h3, h4, h5, h6) a {
	color: inherit;
	text-decoration: none;
}

.sy-hizmet-article :is(h2, h3, h4, h5, h6) a:hover {
	color: #0869c2;
}

.sy-hizmet-article :is(h2, h3, h4, h5, h6) + :is(h2, h3, h4, h5, h6) {
	margin-top: .7em;
}

.sy-hizmet-article .sy-article-faq-q,
.sy-blog-article .sy-article-faq-q {
	margin-top: 1.35em;
	margin-bottom: .35em;
	color: #0a2c69;
	font-size: clamp(16.5px, 1.15vw, 18.5px);
	font-weight: 700;
	letter-spacing: -.01em;
	line-height: 1.4;
}

.sy-hizmet-article .sy-article-faq-q + p,
.sy-blog-article .sy-article-faq-q + p {
	margin-top: 0;
}

/* Gövde metni + eski inline/preset font-size artıklarını nötrle */
.sy-hizmet-article :is(p, li, td, th, figcaption) {
	font-size: 1em;
}

.sy-hizmet-article :is(
	.has-small-font-size,
	.has-medium-font-size,
	.has-large-font-size,
	.has-x-large-font-size,
	.has-normal-font-size
) {
	font-size: inherit !important;
}

.sy-hizmet-article [style*="font-size"] {
	font-size: inherit !important;
}

.sy-hizmet-article p {
	margin: 0 0 .75em;
}

.sy-hizmet-article ul,
.sy-blog-article ul {
	list-style: none;
	margin: .35em 0 1em;
	padding: 0;
	display: block;
	border: 0;
}

.sy-hizmet-article ol,
.sy-blog-article ol {
	list-style: none;
	margin: .35em 0 1em;
	padding: 0;
	counter-reset: sy-ol;
	display: block;
	border: 0;
}

.sy-hizmet-article ul > li,
.sy-blog-article ul > li {
	position: relative;
	margin: 0;
	padding: .35em 0 .35em 1.15em;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: #3d4f68;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.65;
}

.sy-hizmet-article ul > li::before,
.sy-blog-article ul > li::before {
	content: "";
	position: absolute;
	left: 0;
	/* padding + ilk satır ortası − nokta yarıçapı (em = li font) */
	top: calc(.35em + (1.65em - 6px) / 2);
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #158de8;
	box-shadow: none;
}

.sy-hizmet-article ol > li,
.sy-blog-article ol > li {
	position: relative;
	counter-increment: sy-ol;
	margin: 0;
	padding: .35em 0 .35em 1.55em;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: #3d4f68;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.65;
}

.sy-hizmet-article ol > li::before,
.sy-blog-article ol > li::before {
	content: counter(sy-ol);
	position: absolute;
	left: 0;
	top: .35em;
	width: 1.3em;
	color: #158de8;
	font-size: inherit;
	font-weight: 800;
	font-variant-numeric: tabular-nums;
	letter-spacing: -.02em;
	line-height: 1.65;
	text-align: right;
}

.sy-hizmet-article ul > li:has(> ul),
.sy-blog-article ul > li:has(> ul) {
	padding: 14px 0 4px;
	border-bottom: 0;
}

.sy-hizmet-article ul > li:has(> ul)::before,
.sy-blog-article ul > li:has(> ul)::before {
	display: none;
}

.sy-hizmet-article ul > li:has(> ul) > strong,
.sy-blog-article ul > li:has(> ul) > strong {
	display: block;
	color: #0a2c69;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: -.02em;
	line-height: 1.45;
}

.sy-hizmet-article ul ul,
.sy-blog-article ul ul,
.sy-hizmet-article ol ul,
.sy-blog-article ol ul {
	margin: 6px 0 4px;
	padding: 0;
	border: 0;
}

.sy-hizmet-article ul ul > li,
.sy-blog-article ul ul > li {
	padding-left: 16px;
	font-size: 14.5px;
}

/* ============================================================
   PREMIUM MAKALE İÇERİĞİ — hizmet + blog ortak
   (video, tablo, görsel, blockquote, liste) — göç edilen
   içeriğin profesyonel görünmesi için.
   ============================================================ */

/* Ortak okunur sütun — body-shell içinde full width (form yanı) */
.sy-blog-article {
	color: #3d4d66;
	font-size: 17px;
	line-height: 1.78;
}
.sy-blog-article > :not(.alignfull):not(.sy-blog-article-media) {
	width: 100%;
	max-width: 100%;
	margin-left: 0;
	margin-right: 0;
}
.sy-blog-article :is(h2, h3, h4, h5, h6),
.sy-blog-article :is(h2, h3, h4, h5, h6).wp-block-heading {
	color: #0a2c69;
	letter-spacing: -.015em;
	margin: 1.5em 0 .45em;
	font-size: clamp(20px, 1.25vw, 24px);
	font-weight: 700;
	line-height: 1.3;
}
.sy-blog-article :is(p, li, td, th, figcaption) { font-size: 1em; }
.sy-blog-article :is(
	.has-small-font-size,
	.has-medium-font-size,
	.has-large-font-size,
	.has-x-large-font-size,
	.has-normal-font-size
) {
	font-size: inherit !important;
}
.sy-blog-article [style*="font-size"] { font-size: inherit !important; }
.sy-blog-article p { margin: 0 0 1em; }

/* ---------- Video / iframe embed (YouTube) ---------- */
/* WP oEmbed: figure > .wp-block-embed__wrapper > iframe (absolute fill).
   Margin/radius/shadow must live on the wrapper — not the absolute iframe
   (iframe margin-top created top gap and zero bottom space). */
.sy-hizmet-article :is(.wp-block-embed, figure.wp-block-embed),
.sy-blog-article :is(.wp-block-embed, figure.wp-block-embed) {
	width: 100% !important;
	max-width: 100%;
	margin: 32px 0 40px !important;
}
.sy-blog-article :is(.wp-block-embed, figure.wp-block-embed) {
	margin-left: 0 !important;
	margin-right: 0 !important;
}
.sy-hizmet-article .wp-block-embed .wp-block-embed__wrapper,
.sy-blog-article .wp-block-embed .wp-block-embed__wrapper {
	position: relative;
	border-radius: 18px;
	overflow: hidden;
	background: #021938;
	box-shadow: 0 30px 64px rgba(4, 36, 91, .22);
}
.sy-hizmet-article .wp-block-embed .wp-block-embed__wrapper iframe,
.sy-blog-article .wp-block-embed .wp-block-embed__wrapper iframe {
	margin: 0 !important;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	background: transparent;
}
/* Heading immediately after embed — keep clear separation */
.sy-hizmet-article figure.wp-block-embed + :is(h2, h3, .wp-block-heading),
.sy-blog-article figure.wp-block-embed + :is(h2, h3, .wp-block-heading) {
	margin-top: .35em;
}
/* Legacy bare <div><iframe> / classic [embed] → <p><iframe> wrappers */
.sy-hizmet-article > div:has(> iframe),
.sy-blog-article > div:has(> iframe),
.sy-hizmet-article > p:has(> iframe),
.sy-blog-article > p:has(> iframe) {
	position: relative;
	display: block;
	width: 100% !important;
	max-width: 100%;
	margin: 32px 0 40px !important;
	aspect-ratio: 16 / 9;
	height: auto !important;
	min-height: 0 !important;
	border: 0;
	border-radius: 18px;
	overflow: hidden;
	background: #021938;
	box-shadow: 0 30px 64px rgba(4, 36, 91, .22);
	box-sizing: border-box;
}
.sy-blog-article > div:has(> iframe),
.sy-blog-article > p:has(> iframe) {
	margin-left: 0 !important;
	margin-right: 0 !important;
}
.sy-hizmet-article > div:has(> iframe) iframe,
.sy-blog-article > div:has(> iframe) iframe,
.sy-hizmet-article > p:has(> iframe) iframe,
.sy-blog-article > p:has(> iframe) iframe {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	border: 0;
	border-radius: inherit;
	box-shadow: none;
}

/* Safety: any leftover fixed-width iframe inside article column */
.sy-blog-article iframe,
.sy-hizmet-article iframe {
	max-width: 100%;
}

/* ---------- Tablolar — hero_8 navy/cyan (core wp-block-table border’ını ezer) ---------- */
.sy-hizmet-article .wp-block-table,
.sy-blog-article .wp-block-table,
.sy-hizmet-article figure.wp-block-table,
.sy-blog-article figure.wp-block-table {
	margin: 18px 0 20px;
	overflow-x: auto;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 16px 36px rgba(4, 36, 91, .07);
}

/* Editörde görünmeyen boş spacer paragrafları — tablo çevresinde ekstra boşluk yaratır */
.sy-hizmet-article p:empty,
.sy-blog-article p:empty,
.sy-hizmet-article h2:empty,
.sy-hizmet-article h3:empty,
.sy-blog-article h2:empty,
.sy-blog-article h3:empty {
	display: none;
	margin: 0;
	padding: 0;
}

.sy-hizmet-article .wp-block-table table,
.sy-blog-article .wp-block-table table,
.sy-hizmet-article table,
.sy-blog-article table {
	width: 100% !important;
	margin: 0;
	border-collapse: separate !important;
	border-spacing: 0 !important;
	font-size: 14.5px;
	line-height: 1.55;
	background: #fff;
	border: 1px solid rgba(10, 44, 105, .12) !important;
	border-radius: 16px;
	overflow: hidden;
}

.sy-hizmet-article .wp-block-table td,
.sy-hizmet-article .wp-block-table th,
.sy-blog-article .wp-block-table td,
.sy-blog-article .wp-block-table th,
.sy-hizmet-article th,
.sy-hizmet-article td,
.sy-blog-article th,
.sy-blog-article td {
	padding: 14px 18px !important;
	border: 0 !important;
	border-bottom: 1px solid rgba(10, 44, 105, .08) !important;
	vertical-align: middle;
	color: #3d4f68;
	background: transparent;
	word-break: normal;
	overflow-wrap: anywhere;
	hyphens: manual;
}

/* Migrated EN content often puts <h2> inside cells — kill article heading styles */
.sy-hizmet-article .wp-block-table :is(h1, h2, h3, h4, h5, h6),
.sy-blog-article .wp-block-table :is(h1, h2, h3, h4, h5, h6),
.sy-hizmet-article table :is(h1, h2, h3, h4, h5, h6),
.sy-blog-article table :is(h1, h2, h3, h4, h5, h6) {
	margin: 0 !important;
	padding: 0 !important;
	font-size: 15px !important;
	font-weight: 800 !important;
	line-height: 1.35 !important;
	letter-spacing: 0 !important;
	text-transform: none !important;
	color: #0a2c69 !important;
	border: 0 !important;
}

.sy-hizmet-article .wp-block-table p,
.sy-blog-article .wp-block-table p,
.sy-hizmet-article table p,
.sy-blog-article table p {
	margin: 0;
}

/* Başlık satırı — thead th/td veya ilk tr th/td */
.sy-hizmet-article .wp-block-table thead th,
.sy-blog-article .wp-block-table thead th,
.sy-hizmet-article .wp-block-table thead td,
.sy-blog-article .wp-block-table thead td,
.sy-hizmet-article .wp-block-table tr:first-child th,
.sy-blog-article .wp-block-table tr:first-child th,
.sy-hizmet-article table thead th,
.sy-blog-article table thead th,
.sy-hizmet-article table thead td,
.sy-blog-article table thead td,
.sy-hizmet-article table tr:first-child th,
.sy-blog-article table tr:first-child th {
	background: linear-gradient(135deg, #021938 0%, #0a2c69 55%, #0c3f88 100%) !important;
	color: #f7fbff !important;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: .04em;
	text-transform: uppercase;
	text-align: left;
	border-bottom: 0 !important;
	white-space: normal;
	line-height: 1.35;
	vertical-align: middle;
}

.sy-hizmet-article .wp-block-table thead :is(a, strong),
.sy-blog-article .wp-block-table thead :is(a, strong),
.sy-hizmet-article table thead :is(a, strong),
.sy-blog-article table thead :is(a, strong) {
	color: inherit !important;
	font-weight: inherit;
	text-decoration: none;
}

.sy-hizmet-article .wp-block-table tbody tr:nth-child(even) td,
.sy-blog-article .wp-block-table tbody tr:nth-child(even) td,
.sy-hizmet-article tbody tr:nth-child(even) td,
.sy-blog-article tbody tr:nth-child(even) td {
	background: #f5f9ff !important;
}

.sy-hizmet-article .wp-block-table tr:last-child td,
.sy-hizmet-article .wp-block-table tr:last-child th,
.sy-blog-article .wp-block-table tr:last-child td,
.sy-blog-article .wp-block-table tr:last-child th,
.sy-hizmet-article tr:last-child td,
.sy-blog-article tr:last-child td {
	border-bottom: 0 !important;
}

/* ---------- Görseller / figure ---------- */
.sy-hizmet-article :is(img, figure img),
.sy-blog-article :is(img, figure img) {
	border-radius: 16px;
	box-shadow: 0 20px 44px rgba(4, 36, 91, .12);
}
.sy-hizmet-article figure,
.sy-blog-article figure {
	margin: 32px auto;
}

/* Tablolar görsel figure margin’ini (32px) almasın — orta boşluk */
.sy-hizmet-article figure.wp-block-table,
.sy-blog-article figure.wp-block-table {
	margin: 18px 0 20px !important;
}

.sy-hizmet-article p:has(+ figure.wp-block-table),
.sy-blog-article p:has(+ figure.wp-block-table) {
	margin-bottom: .55em;
}

.sy-hizmet-article figure.wp-block-table + :is(h2, h3),
.sy-blog-article figure.wp-block-table + :is(h2, h3),
.sy-hizmet-article figure.wp-block-table + p,
.sy-blog-article figure.wp-block-table + p {
	margin-top: .85em;
}

.sy-hizmet-article figure figcaption,
.sy-blog-article figure figcaption {
	margin-top: 10px;
	color: #7688a2;
	font-size: 14.5px;
	text-align: center;
}

/* ---------- Blockquote ---------- */
.sy-hizmet-article blockquote,
.sy-blog-article blockquote {
	margin: 28px auto;
	padding: 20px 26px;
	border-left: 4px solid #1183d8;
	border-radius: 0 14px 14px 0;
	background: linear-gradient(135deg, #f2f8ff, #eaf3ff);
	color: #33455f;
	font-size: 17px;
	line-height: 1.7;
}
.sy-hizmet-article blockquote p:last-child,
.sy-blog-article blockquote p:last-child { margin-bottom: 0; }

/* ---------- Listeler (kart + check / numara) — üstteki kurallar geçerli ---------- */
.sy-hizmet-article .wp-block-list,
.sy-blog-article .wp-block-list {
	padding-left: 0;
}

@media (max-width: 640px) {
	.sy-hizmet-article th,
	.sy-hizmet-article td,
	.sy-blog-article th,
	.sy-blog-article td { padding: 10px 12px; font-size: 14px; }
}

/* Alt CTA band — açık zemin (footer navy ile dip dipe olmasın) */
.sy-hizmet-cta-band {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: clamp(48px, 5vw, 72px) 0;
	color: #0a2c69;
	background:
		radial-gradient(circle at 14% 20%, rgba(77, 186, 255, .10), transparent 36%),
		radial-gradient(circle at 88% 80%, rgba(204, 166, 104, .08), transparent 30%),
		linear-gradient(180deg, #f4f9ff 0%, #eef5fc 100%);
}

.sy-hizmet-cta-band::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 28px;
	pointer-events: none;
	background: linear-gradient(180deg, rgba(90, 169, 220, 0), rgba(90, 169, 220, .18));
}

.sy-hizmet-cta-band-shell {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 28px 40px;
	width: min(calc(100% - var(--page-inline-space)), var(--page-max-width));
	margin: 0 auto;
}

.sy-hizmet-cta-band-copy {
	max-width: 640px;
}

.sy-hizmet-cta-band-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 14px;
	color: #b8924f;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: .22em;
	text-transform: uppercase;
	line-height: 1;
}

.sy-hizmet-cta-band-eyebrow::before {
	content: "";
	width: 32px;
	height: 2px;
	border-radius: 99px;
	background: linear-gradient(90deg, #a07a3e, #cca668);
}

.sy-hizmet-cta-band-title {
	margin: 0;
	color: #092d70;
	font-size: clamp(24px, 2.4vw, 34px);
	font-weight: 800;
	letter-spacing: -.04em;
	line-height: 1.15;
}

.sy-hizmet-cta-band-text {
	margin: 12px 0 0;
	max-width: 480px;
	color: #57667e;
	font-size: 17.5px;
	line-height: 1.65;
}

.sy-hizmet-cta-band-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px 22px;
}

.sy-hizmet-cta-band-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 24px;
	border-radius: 10px;
	color: #fff !important;
	background: #cca668;
	box-shadow: 0 14px 32px rgba(160, 122, 62, .28);
	font-size: 14px;
	font-weight: 800;
	text-decoration: none !important;
	transition: transform .2s ease, box-shadow .2s ease;
}

.sy-hizmet-cta-band-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 36px rgba(160, 122, 62, .36);
	color: #fff !important;
}

.sy-hizmet-cta-band-link {
	color: #0a5aa0 !important;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none !important;
	border-bottom: 1px solid rgba(10, 90, 160, .35);
	padding-bottom: 4px;
	transition: color .2s ease, border-color .2s ease;
}

.sy-hizmet-cta-band-link:hover {
	color: #a07a3e !important;
	border-color: #cca668;
}

@media (max-width: 720px) {
	.sy-hizmet-cta-band-shell {
		flex-direction: column;
		align-items: flex-start;
	}

	.sy-hizmet-cta-band-btn {
		width: 100%;
	}

	.sy-hizmet-cta-band-link {
		display: none;
	}
}

/* Hub / generic pages: full-bleed like homepage, no constrained title box */
.sy-page-main,
.sy-page-content {
	max-width: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}

.sy-page-content > .sy-hizmet-hub,
.sy-page-content > .wp-block-sy-hizmet-hub,
.sy-page-content > .sy-about-page,
.sy-page-content > .wp-block-sy-about-page,
.entry-content > .sy-hizmet-hub,
.entry-content > .wp-block-sy-hizmet-hub,
.entry-content > .sy-about-page,
.entry-content > .wp-block-sy-about-page,
.wp-block-post-content > .sy-hizmet-hub,
.wp-block-post-content > .wp-block-sy-hizmet-hub,
.wp-block-post-content > .sy-about-page,
.wp-block-post-content > .wp-block-sy-about-page {
	max-width: none !important;
	width: 100% !important;
	margin: 0 !important;
}

/* Static page hero + prose + blog */
.sy-page-hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: clamp(52px, 5vw, 84px) 0 clamp(46px, 4.4vw, 72px);
	background:
		radial-gradient(ellipse 58% 78% at 50% 40%, rgba(77, 186, 255, .14), transparent 62%),
		radial-gradient(circle at 5% 46%, rgba(21, 141, 232, .10), transparent 40%),
		radial-gradient(circle at 95% 54%, rgba(21, 141, 232, .08), transparent 40%),
		#021938;
	color: #eaf3ff;
	text-align: center;
	border-bottom: 1px solid rgba(120, 180, 240, .16);
}

.sy-page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	opacity: .45;
	background-image: radial-gradient(rgba(180, 214, 255, .12) .7px, transparent .7px);
	background-size: 24px 24px;
	-webkit-mask-image: radial-gradient(ellipse 78% 82% at 50% 6%, #000, transparent 72%);
	mask-image: radial-gradient(ellipse 78% 82% at 50% 6%, #000, transparent 72%);
}

.sy-page-hero-compact {
	padding: clamp(46px, 4.6vw, 72px) 0 clamp(38px, 3.8vw, 56px);
}

.sy-page-hero-inner {
	position: relative;
	width: min(calc(100% - var(--page-inline-space)), var(--page-max-width));
	margin: 0 auto;
	max-width: 780px;
}

.sy-page-hero-eyebrow {
	display: inline-flex !important;
	align-items: center;
	gap: 14px;
	margin: 0 0 20px !important;
	color: #e0c48a !important;
	font-size: 13.5px !important;
	font-weight: 800 !important;
	letter-spacing: .26em !important;
	text-transform: uppercase;
}

.sy-page-hero-eyebrow::before,
.sy-page-hero-eyebrow::after {
	content: "";
	width: 34px;
	height: 2px;
	border-radius: 99px;
	background: linear-gradient(90deg, transparent, #cca668);
}

.sy-page-hero-eyebrow::after {
	background: linear-gradient(90deg, #cca668, transparent);
}

.sy-page-hero-title {
	margin: 0 !important;
	color: #fff !important;
	font-size: clamp(40px, 5vw, 66px) !important;
	font-weight: 800 !important;
	letter-spacing: -.04em !important;
	line-height: 1.02 !important;
}

.sy-page-hero-desc {
	margin: 22px auto 0 !important;
	max-width: 620px;
	color: rgba(219, 234, 255, .78) !important;
	font-size: 17px !important;
	line-height: 1.72 !important;
}

.sy-legal-article a {
	color: #0875c5;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.sy-academic-pdf {
	padding: 14px 18px;
	border: 1px solid #d7e6f5;
	border-radius: 12px;
	background: #f4f9fd;
}

.sy-reviews-embed {
	width: min(calc(100% - var(--page-inline-space)), 920px);
	margin: 48px auto 72px;
	min-height: 240px;
}

.sy-static-prose {
	padding: 56px 0 72px;
	background: #fff;
}

/* Shell hizası header/hero ile birebir aynı — bu sayfalarda sağda form olmadığı için metin de tam genişlikte akar. */
.sy-static-prose-shell {
	width: min(calc(100% - var(--page-inline-space)), var(--page-max-width));
	margin: 0 auto;
	box-sizing: border-box;
}

.sy-static-prose-shell .sy-academic-pdf {
	max-width: 900px;
}

.sy-static-prose-shell > *:first-child {
	margin-top: 0;
}

.sy-static-prose h2,
.sy-static-prose .sy-static-prose-shell h2 {
	margin: 0 0 16px;
	color: #0a2c69;
	font-size: clamp(24px, 2.2vw, 32px);
	letter-spacing: -.02em;
}

.sy-static-prose h2 + h2,
.sy-static-prose .sy-static-prose-shell h2:not(:first-child) {
	margin-top: 36px;
}

.sy-static-prose p,
.sy-static-prose .sy-static-prose-shell p {
	margin: 0 0 18px;
	color: #3d4d66;
	font-size: 17px;
	line-height: 1.85;
}

/* Fallback if shell missing: still center children to page rhythm */
.sy-static-prose.is-layout-flow > :not(.sy-static-prose-shell),
.sy-static-prose > .wp-block-heading,
.sy-static-prose > p {
	width: min(calc(100% - var(--page-inline-space)), 1120px) !important;
	max-width: 1120px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	box-sizing: border-box;
}

.sy-blog-main {
	max-width: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}

.sy-blog-list-shell {
	width: min(calc(100% - var(--page-inline-space)), var(--page-max-width));
	margin: 0 auto;
	padding: 48px 0 80px;
}

.sy-blog-grid {
	gap: 24px !important;
}

.sy-blog-card {
	height: 100%;
	padding: 0 0 8px;
	border: 1px solid #dfeaf5;
	border-radius: 16px;
	background: #fff;
	overflow: hidden;
	box-shadow: 0 8px 20px rgba(4, 36, 91, .05);
}

.sy-blog-card-media {
	margin: 0 !important;
	aspect-ratio: 16 / 10;
	background:
		radial-gradient(circle at 30% 30%, rgba(77, 186, 255, .22), transparent 45%),
		linear-gradient(145deg, #0a2c69, #178bea 72%, #4dbaff);
}

.sy-blog-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sy-blog-card-meta,
.sy-blog-card-title,
.sy-blog-card-excerpt,
.sy-blog-card-date {
	padding-left: 18px !important;
	padding-right: 18px !important;
}

.sy-blog-card-meta {
	margin: 14px 0 0 !important;
	color: #cca668 !important;
	font-size: 13px !important;
	font-weight: 800 !important;
	letter-spacing: .12em !important;
	text-transform: uppercase;
}

.sy-blog-card-title {
	margin: 10px 0 0 !important;
	font-size: 18px !important;
	font-weight: 800 !important;
	letter-spacing: -.02em !important;
	line-height: 1.3 !important;
	color: #0a2c69 !important;
}

.sy-blog-card-title a {
	color: inherit !important;
	text-decoration: none !important;
}

.sy-blog-card-excerpt {
	margin: 10px 0 0 !important;
	color: #57667e !important;
	font-size: 14px !important;
	line-height: 1.6 !important;
}

.sy-blog-card-date {
	display: block;
	margin: 12px 0 16px !important;
	color: #7a8799 !important;
	font-size: 13.5px !important;
}

.sy-blog-article {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	color: #3d4d66;
	font-size: 17px;
	line-height: 1.85;
}

.sy-blog-article .wp-block-post-content > *,
.sy-blog-article .entry-content > * {
	max-width: 100%;
}

.sy-blog-article :is(h2, h3, h4, h5, h6) {
	color: #0a2c69;
	letter-spacing: -.015em;
	margin-top: 1.35em;
	margin-bottom: .45em;
	font-size: clamp(20px, 1.25vw, 24px);
	font-weight: 700;
	line-height: 1.3;
}

.sy-blog-article :is(h2, h3, h4, h5, h6) + :is(h2, h3, h4, h5, h6) {
	margin-top: .85em;
}

.sy-blog-article p {
	margin: 0 0 .85em;
}

.sy-blog-article ul,
.sy-blog-article ol {
	margin: 0 0 1em;
	padding-left: 1.25em;
}

.sy-blog-article li {
	margin: 0 0 .35em;
}

.sy-blog-article strong {
	color: #0a2c69;
	font-weight: 700;
}

.sy-blog-article .wp-block-image img,
.sy-hizmet-article .wp-block-image img {
	max-width: 100%;
	height: auto;
}

.sy-blog-article-media {
	margin: 0 0 28px !important;
	border-radius: 14px;
	overflow: hidden;
}

.sy-blog-pagination,
.sy-search-pagination {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	margin-top: 40px;
}

.sy-blog-pagination.wp-block-query-pagination {
	justify-content: center !important;
}

.sy-blog-pagination .nav-links,
.sy-search-pagination .nav-links,
.sy-blog-pagination .wp-block-query-pagination-numbers {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0;
}

.sy-blog-pagination .page-numbers,
.sy-search-pagination .page-numbers,
.sy-blog-pagination .wp-block-query-pagination-previous,
.sy-blog-pagination .wp-block-query-pagination-next {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border: 1px solid #d7e5f3;
	border-radius: 12px;
	background: #fff;
	color: #0a2c69 !important;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none !important;
	box-shadow: 0 4px 12px rgba(4, 36, 91, .04);
	transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.sy-blog-pagination .page-numbers:hover,
.sy-search-pagination .page-numbers:hover,
.sy-blog-pagination .wp-block-query-pagination-previous:hover,
.sy-blog-pagination .wp-block-query-pagination-next:hover {
	border-color: #9fc9ef;
	background: #f3f9ff;
	color: #0752a0 !important;
	transform: translateY(-1px);
}

.sy-blog-pagination .page-numbers.current,
.sy-search-pagination .page-numbers.current {
	border-color: transparent;
	background: linear-gradient(160deg, #0a2c69 0%, #0c4f96 100%);
	color: #fff !important;
	box-shadow: 0 10px 22px rgba(8, 82, 160, .22);
	pointer-events: none;
}

.sy-blog-pagination .page-numbers.prev,
.sy-blog-pagination .page-numbers.next,
.sy-search-pagination .page-numbers.prev,
.sy-search-pagination .page-numbers.next,
.sy-blog-pagination .wp-block-query-pagination-previous,
.sy-blog-pagination .wp-block-query-pagination-next {
	font-size: 16px;
	color: #0752a0 !important;
}

.sy-blog-pagination .wp-block-query-pagination-previous-arrow,
.sy-blog-pagination .wp-block-query-pagination-next-arrow {
	display: none;
}

.sy-blog-pagination .page-numbers.dots,
.sy-search-pagination .page-numbers.dots {
	border-color: transparent;
	background: transparent;
	box-shadow: none;
	color: #7a8799 !important;
	min-width: 28px;
	padding: 0;
}

/* ---------- Search overlay (Acıbadem-style) ---------- */
html.sy-search-open,
html.sy-search-open body {
	overflow: hidden;
}

.sy-search-overlay {
	position: fixed;
	inset: 0;
	z-index: 100050;
	display: grid;
	align-content: start;
	justify-items: center;
	padding: max(72px, 8vh) 20px 40px;
	background: rgba(3, 16, 44, .72);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.sy-search-overlay[hidden] {
	display: none !important;
}

.sy-search-overlay-close {
	position: absolute;
	top: max(16px, env(safe-area-inset-top));
	right: max(16px, env(safe-area-inset-right));
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(225, 242, 255, .28);
	border-radius: 50%;
	background: rgba(255, 255, 255, .08);
	color: #fff;
	cursor: pointer;
}

.sy-search-overlay-close svg {
	width: 20px;
	height: 20px;
}

.sy-search-overlay-panel {
	width: min(100%, 720px);
}

.sy-search-overlay-form {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 64px;
	padding: 0 18px 0 20px;
	border: 1px solid rgba(225, 242, 255, .35);
	border-radius: 999px;
	background: rgba(255, 255, 255, .12);
	box-shadow: 0 18px 48px rgba(2, 12, 36, .28);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.sy-search-overlay-icon {
	display: grid;
	place-items: center;
	color: #7ecfff;
}

.sy-search-overlay-icon svg {
	width: 22px;
	height: 22px;
}

.sy-search-overlay-input {
	flex: 1 1 auto;
	min-width: 0;
	height: 64px;
	border: 0;
	outline: none;
	background: transparent;
	color: #f4f9ff;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: -.01em;
	/* Native clear — custom .sy-search-overlay-clear already handles this. */
	-webkit-appearance: none;
	appearance: none;
}

.sy-search-overlay-input::-webkit-search-decoration,
.sy-search-overlay-input::-webkit-search-cancel-button,
.sy-search-overlay-input::-webkit-search-results-button,
.sy-search-overlay-input::-webkit-search-results-decoration {
	-webkit-appearance: none;
	appearance: none;
	display: none;
}

.sy-search-overlay-input::placeholder {
	color: rgba(210, 230, 248, .62);
	font-weight: 500;
}

.sy-search-overlay-clear {
	width: 34px;
	height: 34px;
	display: grid;
	place-items: center;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, .1);
	color: rgba(255, 255, 255, .85);
	cursor: pointer;
}

.sy-search-overlay-clear svg {
	width: 14px;
	height: 14px;
}

.sy-search-overlay-hint {
	margin: 14px 8px 0;
	color: rgba(230, 244, 255, .78);
	font-size: 14.5px;
	font-weight: 500;
}

.sy-search-overlay-results {
	margin-top: 18px;
	overflow: hidden;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 24px 60px rgba(2, 12, 36, .28);
}

.sy-search-overlay-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sy-search-overlay-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 18px;
	border-bottom: 1px solid #e7eef6;
	color: #0a2c69;
	text-decoration: none;
	transition: background .15s ease;
}

.sy-search-overlay-item:last-child {
	border-bottom: 0;
}

.sy-search-overlay-item:hover {
	background: #f3f8fd;
}

.sy-search-overlay-tag {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	padding: 0 10px;
	border-radius: 999px;
	border: 1px solid rgba(8, 117, 197, .18);
	background: rgba(8, 117, 197, .1);
	color: #0a5aa0;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.sy-search-overlay-item[data-kind="blog"] .sy-search-overlay-tag,
.sy-search-overlay-tag.is-blog {
	border-color: rgba(10, 44, 105, .16);
	background: rgba(10, 44, 105, .08);
	color: #0a2c69;
}

.sy-search-overlay-item[data-kind="page"] .sy-search-overlay-tag,
.sy-search-overlay-tag.is-page {
	border-color: rgba(87, 102, 126, .2);
	background: rgba(87, 102, 126, .1);
	color: #4a5a72;
}

.sy-search-overlay-title {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: -.01em;
	line-height: 1.35;
}

.sy-search-page-form {
	margin: 0 0 28px;
}

/* Soft search form on results page */
.sy-search-shell {
	width: min(calc(100% - var(--page-inline-space)), var(--page-max-width));
	margin: 0 auto;
	padding: 36px 0 80px;
}

.sy-search-page-form.wp-block-search,
.sy-search-shell .wp-block-search {
	display: flex;
	align-items: stretch;
	gap: 12px;
	max-width: 720px;
	margin: 0 0 36px;
}

.sy-search-shell .wp-block-search__inside-wrapper {
	display: flex;
	flex: 1 1 auto;
	align-items: stretch;
	gap: 12px;
	width: 100%;
}

.sy-search-shell .wp-block-search__input {
	flex: 1 1 auto;
	min-height: 54px;
	padding: 0 20px !important;
	border: 1px solid #d7e6f5 !important;
	border-radius: 999px !important;
	background: rgba(255, 255, 255, .92) !important;
	box-shadow: 0 10px 28px rgba(4, 36, 91, .06);
	color: #0a2c69 !important;
	font-size: 15px !important;
	font-weight: 600 !important;
}

.sy-search-shell .wp-block-search__input:focus {
	outline: none !important;
	border-color: #e0c48a !important;
	box-shadow: 0 0 0 4px rgba(77, 186, 255, .16);
}

.sy-search-shell .wp-block-search__button {
	flex: 0 0 auto;
	width: 54px !important;
	min-width: 54px !important;
	height: 54px !important;
	padding: 0 !important;
	border: 1px solid rgba(8, 117, 197, .22) !important;
	border-radius: 50% !important;
	background: rgba(8, 117, 197, .1) !important;
	color: #0a5aa0 !important;
	box-shadow: none !important;
}

.sy-search-shell .wp-block-search__button:hover {
	background: rgba(8, 117, 197, .18) !important;
	color: #084f8f !important;
}

.sy-search-shell .wp-block-search__button svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

/* Result cards — min genişlik korunur; daralınca 4→3→2→1 düşer */
.sy-search-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
	gap: 22px;
}

.sy-result-card {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	min-height: 0;
	border-radius: 16px;
	text-decoration: none;
	box-shadow: 0 8px 20px rgba(4, 36, 91, .08);
	transition: transform .25s ease, box-shadow .25s ease;
}

.sy-result-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 32px rgba(4, 36, 91, .14);
}

.sy-result-card-media {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 28% 22%, rgba(77, 186, 255, .28), transparent 42%),
		linear-gradient(160deg, #021938 0%, #0a2c69 48%, #0c4f96 100%);
	background-size: cover;
	background-position: center;
}

.sy-result-card.has-image .sy-result-card-media {
	background-image:
		linear-gradient(180deg, rgba(4, 21, 54, .12) 15%, rgba(4, 21, 54, .78) 100%),
		var(--sy-card-image),
		radial-gradient(circle at 28% 22%, rgba(77, 186, 255, .28), transparent 42%),
		linear-gradient(160deg, #021938 0%, #0a2c69 48%, #0c4f96 100%);
	background-size: cover;
	background-position: center;
}

.sy-result-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 24px;
	padding: 0 10px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, .28);
	background: rgba(255, 255, 255, .14);
	backdrop-filter: blur(8px);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.sy-result-dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #7dd3ff;
}

.sy-result-card.kind-blog .sy-result-dot {
	background: #b8d4ff;
}

.sy-result-card.kind-page .sy-result-dot {
	background: #c5ced8;
}

.sy-result-card-foot {
	position: absolute;
	left: 14px;
	right: 48px;
	bottom: 14px;
	z-index: 2;
	color: #fff;
}

.sy-result-date {
	display: block;
	margin: 0 0 6px;
	color: rgba(230, 244, 255, .78);
	font-size: 13px;
	font-weight: 600;
}

.sy-result-title {
	margin: 0;
	color: #fff;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: -.01em;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.sy-result-arrow {
	position: absolute;
	right: 12px;
	bottom: 12px;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, .28);
	background: rgba(4, 21, 54, .35);
	backdrop-filter: blur(6px);
	color: #fff;
	transition: background .2s ease, transform .2s ease;
}

.sy-result-card:hover .sy-result-arrow {
	background: rgba(8, 117, 197, .75);
	transform: translate(1px, -1px);
}

.sy-result-arrow svg {
	width: 15px;
	height: 15px;
}

.sy-search-empty {
	margin: 12px 0 0;
	color: #57667e;
	font-size: 15px;
	line-height: 1.6;
}

@media (max-width: 640px) {
	.sy-search-overlay {
		padding-top: max(88px, 10vh);
	}

	.sy-search-overlay-form,
	.sy-search-overlay-input {
		min-height: 56px;
		height: 56px;
	}

	.sy-search-overlay-input {
		font-size: 16px;
	}

	.sy-search-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.sy-search-shell {
		padding: 28px 0 56px;
	}

	.sy-result-card-foot {
		left: 12px;
		right: 46px;
		bottom: 12px;
	}

	.sy-result-title {
		font-size: 16px;
	}
}

/* Homepage explore band — Basında Biz */
.sy-home-explore {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: clamp(44px, 4.5vw, 64px) 0 clamp(56px, 5.5vw, 76px);
	background:
		radial-gradient(circle at 50% -10%, rgba(77, 186, 255, .18), transparent 42%),
		radial-gradient(circle at 12% 88%, rgba(21, 141, 232, .10), transparent 34%),
		#021938;
	color: #f7fbff;
}

.sy-home-explore::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, .03) 50%, transparent 100%);
	pointer-events: none;
}

.sy-home-explore-shell {
	position: relative;
	z-index: 1;
	width: min(calc(100% - var(--page-inline-space)), var(--page-max-width));
	margin: 0 auto;
}

.sy-home-explore-intro {
	max-width: 52rem;
	margin: 0 auto 36px;
	text-align: center;
}

/* Match site-wide section eyebrow: left accent only, 36×2 */
.sy-home-explore-eyebrow {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 13px;
	margin: 0 0 14px !important;
	color: #e0c48a !important;
	font-size: 13px !important;
	font-weight: 800 !important;
	letter-spacing: .24em !important;
	text-transform: uppercase;
	line-height: 1 !important;
}

.sy-home-explore-eyebrow::before {
	content: "";
	width: 36px;
	height: 2px;
	border-radius: 99px;
	background: linear-gradient(90deg, #a07a3e, #e0c48a);
}

.sy-home-explore-eyebrow::after {
	content: none;
	display: none;
}

.sy-home-explore-title {
	margin: 0 auto !important;
	max-width: 28ch;
	color: #fff !important;
	font-size: clamp(30px, 3.4vw, 46px) !important;
	font-weight: 800 !important;
	letter-spacing: -.045em !important;
	line-height: 1.1 !important;
	text-wrap: balance;
}

.sy-home-explore-desc {
	margin: 14px auto 0 !important;
	max-width: 40rem;
	color: rgba(225, 241, 255, .78) !important;
	font-size: clamp(17px, 1.25vw, 19px) !important;
	font-weight: 450 !important;
	line-height: 1.7 !important;
}

.sy-home-explore-all {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 18px;
	padding-bottom: 6px;
	color: #7ecfff;
	border-bottom: 1px solid rgba(126, 207, 255, .45);
	font-size: 13.5px;
	font-weight: 800;
	letter-spacing: .04em;
	text-decoration: none;
	transition: color .2s ease, border-color .2s ease, gap .2s ease;
}

.sy-home-explore-all svg {
	width: 14px;
	height: 14px;
}

.sy-home-explore-all:hover {
	color: #fff;
	border-color: #fff;
	gap: 13px;
}

/*
 * Expanding accordion: cards keep order; active grows in place.
 * While resizing: single-line ellipsis (no wrap jitter / “dik sütun”).
 * After settle: feature may wrap a few lines.
 */
.sy-home-explore-stage {
	position: relative;
	display: block;
	padding-top: 56px;
}

.sy-home-explore-navs {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.sy-home-explore-nav {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid rgba(225, 242, 255, .22);
	background: rgba(3, 18, 47, .55);
	color: #e8f4ff;
	cursor: pointer;
	transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.sy-home-explore-nav svg {
	width: 17px;
	height: 17px;
}

.sy-home-explore-nav:hover {
	background: rgba(57, 180, 255, .16);
	border-color: rgba(126, 207, 255, .5);
	color: #fff;
}

.sy-home-explore-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 22px;
}

.sy-home-explore-dot {
	position: relative;
	display: block;
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 99px;
	background: rgba(225, 242, 255, .28);
	cursor: pointer;
	transition: width .16s ease, background .16s ease;
}

/* Görünümü bozmadan dokunma alanını büyüt */
.sy-home-explore-dot::before {
	content: "";
	position: absolute;
	inset: -16px;
}

.sy-home-explore-dot.is-active {
	width: 26px;
	background: #cca668;
}

.sy-home-explore-dot:hover:not(.is-active) {
	background: rgba(225, 242, 255, .5);
}

.sy-home-explore-dot:focus-visible {
	outline: 2px solid #cca668;
	outline-offset: 3px;
}

.sy-home-explore-links {
	display: flex;
	align-items: stretch;
	gap: 12px;
	height: clamp(420px, 48vw, 500px);
}

.sy-home-explore-links.is-resizing {
	pointer-events: none;
}

.sy-home-explore-card {
	position: relative;
	display: flex;
	flex: 0.72 1 0;
	flex-direction: column;
	justify-content: flex-end;
	width: 0;
	min-width: 0;
	min-height: 0;
	border: 1px solid rgba(225, 242, 255, .14);
	border-radius: 20px;
	overflow: hidden;
	color: #fff !important;
	text-decoration: none !important;
	background: #021938;
	box-shadow: 0 18px 40px rgba(1, 12, 40, .24);
	isolation: isolate;
	transition:
		flex .62s cubic-bezier(.22, 1, .36, 1),
		border-color .3s ease,
		box-shadow .3s ease;
}

.sy-home-explore-card.is-feature {
	flex: 2.55 1 0;
	border-color: rgba(126, 207, 255, .35);
	box-shadow: 0 24px 52px rgba(1, 12, 40, .34);
	z-index: 1;
}

.sy-home-explore-card-media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.sy-home-explore-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 20%;
}

.sy-home-explore-card-shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .2) 46%, rgba(0, 0, 0, .88) 100%);
}

.sy-home-explore-card.is-feature .sy-home-explore-card-shade {
	background:
		linear-gradient(180deg, rgba(3, 18, 47, .05) 0%, rgba(3, 18, 47, .2) 44%, rgba(3, 18, 47, .9) 100%),
		linear-gradient(115deg, rgba(3, 18, 47, .4), transparent 58%);
}

/*
 * Copy stays full-bleed at the bottom and ALWAYS single-line.
 * Wrapping while flex width changes is what made text look like a tall
 * “dik” column — we clip with ellipsis instead of reflowing words.
 */
.sy-home-explore-card-content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 5px;
	width: 100%;
	padding: 16px;
	box-sizing: border-box;
	pointer-events: none;
}

.sy-home-explore-card-meta,
.sy-home-explore-card-title,
.sy-home-explore-card-desc {
	display: block;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow-wrap: normal;
	word-break: keep-all;
}

.sy-home-explore-card-meta {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .16em;
	text-transform: uppercase;
	line-height: 1.2;
	color: #7ecfff;
}

.sy-home-explore-card-title {
	/* Locked one-line box — height never grows while the card flexes */
	height: 20px;
	font-size: 15.5px;
	font-weight: 800;
	letter-spacing: -.03em;
	line-height: 20px;
	color: #fff;
}

.sy-home-explore-card-desc {
	height: 18px;
	margin: 0;
	font-size: 15.5px;
	font-weight: 450;
	line-height: 18px;
	color: rgba(225, 241, 255, .72);
	opacity: .7;
	transition: opacity .28s ease;
}

.sy-home-explore-card-go {
	pointer-events: auto;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex: 0 0 auto;
	margin-top: 2px;
	min-height: 32px;
	padding: 0 12px 0 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .12);
	border: 1px solid rgba(225, 242, 255, .28);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .02em;
	transition: background .22s ease, border-color .22s ease, color .22s ease;
}

.sy-home-explore-card-go svg {
	width: 13px;
	height: 13px;
	flex: 0 0 auto;
}

/* After flex settles: still one line — only contrast, never wrap */
.sy-home-explore-card.is-feature.is-settled .sy-home-explore-card-desc {
	opacity: 1;
	color: rgba(225, 241, 255, .88);
}

.sy-home-explore-card.is-feature .sy-home-explore-card-go {
	background: #39b4ff;
	border-color: #39b4ff;
	color: #021938;
}

.sy-home-explore-card:hover .sy-home-explore-card-go {
	background: #39b4ff;
	border-color: #39b4ff;
	color: #021938;
}

.sy-home-explore.is-press .sy-home-explore-title {
	max-width: 28ch;
}

@media (hover: hover) and (pointer: fine) {
	.sy-home-explore-card:hover {
		transform: translateY(-4px);
		border-color: rgba(126, 207, 255, .4);
		box-shadow: 0 28px 52px rgba(1, 12, 40, .34);
	}

	.sy-home-explore-card:hover .sy-home-explore-card-media img {
		transform: scale(1.06);
	}

	.sy-home-explore.is-press .sy-home-explore-card:hover {
		transform: none;
	}

	.sy-home-explore.is-press .sy-home-explore-card:hover .sy-home-explore-card-media img {
		transform: none;
	}

	.sy-home-explore-card:hover .sy-home-explore-card-go {
		background: #39b4ff;
		border-color: #39b4ff;
		color: #021938;
	}
}

@media (max-width: 1100px) {
	.sy-home-explore-links {
		height: 400px;
	}
}

/*
 * Mobile: drop the accordion. Inactive strips were unreadable.
 * One wide card + peek of the next; swipe or arrows to move.
 */
@media (max-width: 900px) {
	.sy-home-explore-stage {
		padding-top: 0;
	}

	.sy-home-explore-navs {
		display: none;
	}

	.sy-home-explore-links {
		height: min(68vw, 400px);
		gap: 12px;
		overflow-x: auto;
		overflow-y: hidden;
		overscroll-behavior-x: contain;
		scroll-snap-type: x mandatory;
		scroll-padding-inline: 0;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		touch-action: pan-x;
	}

	.sy-home-explore-links::-webkit-scrollbar {
		display: none;
	}

	.sy-home-explore-links.is-resizing {
		pointer-events: auto;
	}

	.sy-home-explore-card,
	.sy-home-explore-card.is-feature {
		flex: 0 0 86%;
		width: 86%;
		min-width: 86%;
		scroll-snap-align: start;
		scroll-snap-stop: always;
		border-radius: 18px;
		opacity: 1;
		border-color: rgba(225, 242, 255, .14);
		box-shadow: 0 18px 40px rgba(1, 12, 40, .24);
		transition: none;
	}

	.sy-home-explore-card:not(.is-feature) {
		opacity: 1;
	}

	.sy-home-explore-card.is-feature {
		opacity: 1;
		z-index: 1;
	}

	/* Mobilde aktif kartın sonradan renk değiştirmesini kapat */
	.sy-home-explore-card.is-feature .sy-home-explore-card-shade,
	.sy-home-explore-card .sy-home-explore-card-shade {
		background:
			linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .2) 46%, rgba(0, 0, 0, .88) 100%);
	}

	.sy-home-explore-card-content {
		padding: 16px 16px 18px;
		pointer-events: none;
	}

	.sy-home-explore-card-title {
		height: auto;
		max-height: 2.6em;
		white-space: normal;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		text-overflow: ellipsis;
		font-size: 16px;
		line-height: 1.3;
	}

	.sy-home-explore-card-desc {
		height: auto;
		max-height: 2.8em;
		white-space: normal;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		opacity: 1;
		color: rgba(225, 241, 255, .82);
		line-height: 1.4;
	}

	.sy-home-explore-card-go {
		min-height: 34px;
		padding: 0 14px 0 15px;
		font-size: 13.5px;
	}

	.sy-home-explore-card.is-feature .sy-home-explore-card-go,
	.sy-home-explore-card .sy-home-explore-card-go,
	.sy-home-explore-card:hover .sy-home-explore-card-go,
	.sy-home-explore-card:active .sy-home-explore-card-go,
	.sy-home-explore-card:focus .sy-home-explore-card-go {
		background: rgba(255, 255, 255, .12);
		border-color: rgba(225, 242, 255, .28);
		color: #fff;
	}
}

@media (max-width: 620px) {
	.sy-home-explore {
		padding: 44px 0 56px;
	}

	.sy-home-explore-intro {
		margin-bottom: 24px;
	}

	.sy-home-explore-title {
		max-width: none;
	}

	.sy-home-explore-links {
		height: min(78vw, 360px);
		gap: 10px;
	}

	.sy-home-explore-card,
	.sy-home-explore-card.is-feature {
		flex-basis: 88%;
		width: 88%;
		min-width: 88%;
		border-radius: 16px;
	}

	.sy-home-explore-card-content {
		padding: 14px;
	}

	.sy-home-explore-card-title {
		font-size: 15px;
	}
}

/* Homepage blog teaser */
.sy-home-blog {
	padding: clamp(72px, 8vw, 104px) 0;
	background:
		radial-gradient(circle at 88% 18%, rgba(23, 139, 234, .07), transparent 30%),
		#f7fbff;
	color: #0a2c69;
}

.sy-home-blog-shell {
	width: min(calc(100% - var(--page-inline-space)), var(--page-max-width));
	margin: 0 auto;
}

.sy-home-blog-head {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 18px;
	margin-bottom: 40px;
}

.sy-home-blog-copy {
	flex: 1 1 auto;
	min-width: 0;
	padding-right: 12px;
}

.sy-home-blog-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 13px;
	margin: 0 0 18px;
	color: #cca668;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .24em;
	text-transform: uppercase;
	line-height: 1;
}

.sy-home-blog-eyebrow::before {
	content: "";
	width: 36px;
	height: 2px;
	border-radius: 99px;
	background: linear-gradient(90deg, #a07a3e, #cca668);
}

.sy-home-blog-title {
	margin: 0;
	max-width: none;
	color: #092d70;
	font-size: clamp(28px, 2.6vw, 40px);
	font-weight: 800;
	letter-spacing: -.045em;
	line-height: 1.12;
}

.sy-home-blog-desc {
	margin: 14px 0 0;
	max-width: min(58rem, 100%);
	color: #57667e;
	font-size: 17.5px;
	line-height: 1.7;
}

.sy-home-blog-all {
	flex: 0 0 auto;
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	width: fit-content;
	gap: 10px;
	padding-bottom: 8px;
	border-bottom: 1px solid #0c5aa7;
	color: #0a3978;
	font-size: 14.5px;
	font-weight: 800;
	letter-spacing: .04em;
	text-decoration: none;
	white-space: nowrap;
	transition: color .2s ease, border-color .2s ease, gap .2s ease;
}

.sy-home-blog-all svg {
	width: 15px;
	height: 15px;
}

.sy-home-blog-all:hover {
	color: #a07a3e;
	border-color: #cca668;
	gap: 13px;
}

.sy-home-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.sy-home-blog-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid #dfeaf5;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 8px 20px rgba(4, 36, 91, .05);
	color: inherit;
	text-decoration: none;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.sy-home-blog-card:hover {
	transform: translateY(-4px);
	border-color: #bcdbf5;
	box-shadow: 0 16px 32px rgba(4, 36, 91, .1);
}

.sy-home-blog-card-media {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #edf3f9;
}

.sy-home-blog-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .55s ease;
}

.sy-home-blog-card:hover .sy-home-blog-card-media img {
	transform: scale(1.06);
}

/* Fotoğrafsız kart: boş kapak yok, dolu editorial plaka */
.sy-home-blog-card.is-text {
	min-height: 100%;
	background:
		linear-gradient(180deg, rgba(10, 44, 105, .04) 0%, transparent 42%),
		#fff;
	box-shadow: inset 0 3px 0 0 #cca668, 0 8px 20px rgba(4, 36, 91, .05);
}

.sy-home-blog-card.is-text .sy-home-blog-card-body {
	flex: 1;
	justify-content: flex-start;
	gap: 12px;
	padding: 24px 22px 20px;
}

.sy-home-blog-card.is-text .sy-home-blog-card-title {
	font-size: clamp(18px, 1.35vw, 22px);
	line-height: 1.28;
}

.sy-home-blog-card.is-text .sy-home-blog-card-excerpt {
	font-size: 14px;
	line-height: 1.65;
}

.sy-home-blog-card.is-text .sy-home-blog-card-go {
	margin-top: auto;
	padding-top: 10px;
}

.sy-home-blog-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 10px;
	padding: 18px 20px 20px;
}

.sy-home-blog-card-date {
	color: #cca668;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.sy-home-blog-card-title {
	color: #0a2c69;
	font-size: 17px;
	font-weight: 800;
	letter-spacing: -.02em;
	line-height: 1.3;
}

.sy-home-blog-card-excerpt {
	color: #57667e;
	font-size: 15px;
	line-height: 1.6;
}

.sy-home-blog-card-go {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding-top: 8px;
	color: #0869c2;
	font-size: 14.5px;
	font-weight: 700;
}

.sy-home-blog-card-go svg {
	width: 14px;
	height: 14px;
}

/* Homepage tech spotlight */
.sy-home-tech {
	padding: clamp(72px, 8vw, 100px) 0;
	background: #fff;
	color: #0a2c69;
}

.sy-home-tech-shell {
	width: min(calc(100% - var(--page-inline-space)), var(--page-max-width));
	margin: 0 auto;
}

.sy-home-tech-head {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 18px;
	margin-bottom: 40px;
}

.sy-home-tech-copy {
	flex: 1 1 auto;
	min-width: 0;
	padding-right: 12px;
}

.sy-home-tech-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 13px;
	margin: 0 0 18px;
	color: #cca668;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .24em;
	text-transform: uppercase;
	line-height: 1;
}

.sy-home-tech-eyebrow::before {
	content: "";
	width: 36px;
	height: 2px;
	border-radius: 99px;
	background: linear-gradient(90deg, #a07a3e, #cca668);
}

.sy-home-tech-title {
	margin: 0;
	max-width: none;
	color: #092d70;
	font-size: clamp(28px, 2.6vw, 40px);
	font-weight: 800;
	letter-spacing: -.045em;
	line-height: 1.12;
}

.sy-home-tech-desc {
	margin: 14px 0 0;
	max-width: min(58rem, 100%);
	color: #57667e;
	font-size: 17.5px;
	line-height: 1.7;
}

.sy-home-tech-all {
	flex: 0 0 auto;
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	width: fit-content;
	gap: 10px;
	padding-bottom: 8px;
	border-bottom: 1px solid #0c5aa7;
	color: #0a3978;
	font-size: 14.5px;
	font-weight: 800;
	letter-spacing: .04em;
	text-decoration: none;
	white-space: nowrap;
	transition: color .2s ease, border-color .2s ease, gap .2s ease;
}

.sy-home-tech-all svg {
	width: 15px;
	height: 15px;
}

.sy-home-tech-all:hover {
	color: #a07a3e;
	border-color: #cca668;
	gap: 13px;
}

.sy-home-tech-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.sy-home-tech-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid #dfeaf5;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 8px 20px rgba(4, 36, 91, .04);
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.sy-home-tech-card:hover {
	transform: translateY(-4px);
	border-color: #bcdbf5;
	box-shadow: 0 16px 32px rgba(4, 36, 91, .1);
}

.sy-home-tech-card-media {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #0a2c69;
}

.sy-home-tech-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 28%;
	transform: scale(1.02);
	transform-origin: center center;
	transition: transform .55s ease;
}

.sy-home-tech-card:hover .sy-home-tech-card-media img {
	transform: scale(1.07);
}

.sy-home-tech-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 8px;
	padding: 16px 16px 18px;
}

.sy-home-tech-card-title {
	color: #0a2c69;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: -.02em;
	line-height: 1.25;
}

.sy-home-tech-card-desc {
	color: #57667e;
	font-size: 14px;
	line-height: 1.55;
}

@media (max-width: 980px) {
	.sy-home-blog-grid {
		grid-template-columns: 1fr 1fr;
	}

	.sy-home-tech-grid {
		grid-template-columns: 1fr 1fr;
		gap: 14px;
	}

	.sy-home-blog-head,
	.sy-home-tech-head {
		align-items: flex-start;
		flex-direction: column;
		gap: 18px;
	}
}

@media (max-width: 640px) {
	.sy-home-blog-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.sy-home-blog-head {
		margin-bottom: 22px;
		gap: 14px;
	}

	.sy-home-blog-card,
	.sy-home-blog-card.is-text {
		min-height: 0;
		border-radius: 14px;
	}

	.sy-home-blog-card-body,
	.sy-home-blog-card.is-text .sy-home-blog-card-body {
		gap: 8px;
		padding: 16px 16px 14px;
		min-height: 0;
	}

	.sy-home-blog-card.is-text .sy-home-blog-card-title {
		font-size: 16px;
		line-height: 1.3;
	}

	.sy-home-blog-card.is-text .sy-home-blog-card-excerpt {
		font-size: 14.5px;
		line-height: 1.5;
	}

	.sy-home-blog-card-go,
	.sy-home-blog-card.is-text .sy-home-blog-card-go {
		margin-top: 4px;
		padding-top: 4px;
	}

	.sy-home-tech-grid {
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}

	.sy-home-tech-card {
		border-radius: 14px;
	}

	.sy-home-tech-card-media {
		aspect-ratio: 4 / 3;
	}

	.sy-home-tech-card-body {
		gap: 6px;
		padding: 12px 12px 14px;
	}

	.sy-home-tech-card-title {
		font-size: 14.5px;
	}

	.sy-home-tech-card-desc {
		font-size: 13px;
		line-height: 1.45;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.sy-home-blog,
	.sy-home-tech {
		padding: 48px 0 56px;
	}
}

/* Homepage reviews — editorial scoreboard + quote stage */
.sy-home-reviews {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: 88px 0 96px;
	background:
		radial-gradient(circle at 12% 18%, rgba(204, 166, 104, .10), transparent 34%),
		radial-gradient(circle at 88% 82%, rgba(23, 139, 234, .08), transparent 32%),
		linear-gradient(180deg, #f7fbff 0%, #ffffff 48%, #f4f8fc 100%);
	color: #0a2c69;
}

.sy-home-reviews-shell {
	width: min(calc(100% - var(--page-inline-space)), var(--page-max-width));
	margin: 0 auto;
}

.sy-home-reviews-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 40px;
}

.sy-home-reviews-copy {
	flex: 1 1 auto;
	min-width: 0;
	padding-right: 12px;
}

.sy-home-reviews-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 13px;
	margin: 0 0 18px;
	color: #cca668;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .24em;
	text-transform: uppercase;
	line-height: 1;
}

.sy-home-reviews-eyebrow::before {
	content: "";
	width: 36px;
	height: 2px;
	border-radius: 99px;
	background: linear-gradient(90deg, #a07a3e, #cca668);
}

.sy-home-reviews-title {
	margin: 0;
	max-width: none;
	color: #092d70;
	font-size: clamp(28px, 2.6vw, 40px);
	font-weight: 800;
	letter-spacing: -.045em;
	line-height: 1.12;
}

.sy-home-reviews-desc {
	margin: 14px 0 0;
	max-width: min(58rem, 100%);
	color: #57667e;
	font-size: 17.5px;
	line-height: 1.7;
}

.sy-home-reviews-all {
	flex: 0 0 auto;
	align-self: flex-end;
	display: inline-flex;
	align-items: center;
	width: fit-content;
	gap: 10px;
	padding-bottom: 8px;
	border-bottom: 1px solid #0c5aa7;
	color: #0a3978;
	font-size: 14.5px;
	font-weight: 800;
	letter-spacing: .04em;
	text-decoration: none;
	white-space: nowrap;
	transition: color .2s ease, border-color .2s ease, gap .2s ease;
}

.sy-home-reviews-all svg {
	width: 15px;
	height: 15px;
}

.sy-home-reviews-all:hover {
	color: #a07a3e;
	border-color: #cca668;
	gap: 13px;
}

.sy-home-reviews-board {
	display: grid;
	grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.28fr);
	gap: clamp(22px, 2.4vw, 32px);
	align-items: stretch;
}

.sy-home-reviews-platforms {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sy-home-reviews-platforms > li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.sy-home-reviews-platform {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr) auto;
	align-items: center;
	gap: 14px;
	min-width: 0;
	padding: 16px 18px;
	border: 1px solid #dfeaf5;
	border-radius: 16px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(247, 251, 255, .92));
	box-shadow: 0 8px 22px rgba(4, 36, 91, .05);
	text-decoration: none;
	color: inherit;
	transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.sy-home-reviews-platform:hover {
	transform: translateY(-2px);
	border-color: #bcdbf5;
	box-shadow: 0 14px 30px rgba(4, 36, 91, .1);
}

.sy-home-reviews-platform-mark {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: #eaf5ff;
	overflow: hidden;
}

.sy-home-reviews-platform.is-google .sy-home-reviews-platform-mark {
	background: #fff;
	border: 1px solid #e8eef5;
}

.sy-home-reviews-platform.is-trustindex .sy-home-reviews-platform-mark {
	background: #eefaf3;
}

.sy-home-reviews-platform.is-yandex .sy-home-reviews-platform-mark,
.sy-home-reviews-platform.is-wupdoc .sy-home-reviews-platform-mark {
	padding: 0;
	background: transparent;
	border: 0;
}

.sy-home-reviews-platform-mark svg {
	display: block;
	width: 28px;
	height: 28px;
}

.sy-home-reviews-platform-mark svg.is-tile {
	width: 48px;
	height: 48px;
}

.sy-home-reviews-platform-copy {
	min-width: 0;
	display: grid;
	gap: 3px;
}

.sy-home-reviews-platform-copy strong {
	color: #092d70;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: -.02em;
	line-height: 1.2;
}

.sy-home-reviews-platform-copy small {
	color: #708096;
	font-size: 13.5px;
	font-weight: 500;
	line-height: 1.35;
}

.sy-home-reviews-platform-score {
	display: grid;
	justify-items: end;
	gap: 4px;
	flex: 0 0 auto;
}

.sy-home-reviews-platform-score b {
	color: #092d70;
	font-size: 28px;
	font-weight: 800;
	letter-spacing: -.05em;
	line-height: 1;
}

.sy-home-reviews-stars {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	color: #cca668;
}

.sy-home-reviews-stars svg {
	width: 12px;
	height: 12px;
}

.sy-home-reviews-quotes {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-rows: auto auto;
	gap: 14px;
	min-width: 0;
}

.sy-home-reviews-quote {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-width: 0;
	margin: 0;
	padding: 22px 22px 20px;
	border: 1px solid #dfeaf5;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 10px 24px rgba(4, 36, 91, .05);
}

.sy-home-reviews-quote.is-feat {
	grid-column: 1 / -1;
	grid-row: 1;
	padding: 32px 34px 28px;
	border: 1px solid rgba(159, 208, 246, .28);
	background:
		radial-gradient(circle at 88% 12%, rgba(77, 186, 255, .16), transparent 34%),
		radial-gradient(circle at 12% 88%, rgba(204, 166, 104, .12), transparent 36%),
		#021938;
	color: #f7fbff;
	box-shadow: 0 22px 48px rgba(1, 16, 53, .22);
}

.sy-home-reviews-quote.is-feat::before {
	content: "“";
	position: absolute;
	top: 10px;
	right: 28px;
	color: rgba(224, 196, 138, .35);
	font-size: 96px;
	font-weight: 700;
	line-height: 1;
	pointer-events: none;
}

.sy-home-reviews-quote.is-feat .sy-home-reviews-stars {
	color: #e0c48a;
}

.sy-home-reviews-quote blockquote {
	margin: 0;
	position: relative;
	z-index: 1;
}

.sy-home-reviews-quote blockquote p {
	margin: 0;
	color: #44566f;
	font-size: 16.5px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: -.01em;
}

.sy-home-reviews-quote.is-feat blockquote p {
	max-width: 36rem;
	color: rgba(236, 246, 255, .92);
	font-size: clamp(17px, 1.5vw, 21px);
	font-weight: 500;
	line-height: 1.55;
	letter-spacing: -.02em;
}

.sy-home-reviews-quote figcaption {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 8px;
	position: relative;
	z-index: 1;
	margin-top: auto;
	padding-top: 4px;
}

.sy-home-reviews-quote figcaption strong {
	color: #092d70;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: -.015em;
}

.sy-home-reviews-quote figcaption span {
	color: #7a8799;
	font-size: 14.5px;
	font-weight: 500;
}

.sy-home-reviews-quote.is-feat figcaption strong {
	color: #fff;
}

.sy-home-reviews-quote.is-feat figcaption span {
	color: rgba(225, 241, 255, .62);
}

.sy-home-reviews-quote.is-feat figcaption span::before {
	content: "·";
	margin-right: 8px;
	color: rgba(224, 196, 138, .7);
}

/* Reviews responsive — AFTER base rules so they win */
@media (max-width: 1100px) {
	.sy-home-reviews-board {
		grid-template-columns: minmax(240px, 0.95fr) minmax(0, 1.2fr);
		gap: 18px;
	}

	.sy-home-reviews-platform-score b {
		font-size: 24px;
	}
}

@media (max-width: 980px) {
	.sy-home-reviews-head {
		align-items: flex-start;
		flex-direction: column;
		gap: 18px;
	}

	.sy-home-reviews-all {
		align-self: flex-start;
	}

	.sy-home-reviews-board {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.sy-home-reviews-platforms {
		grid-template-columns: 1fr 1fr;
	}

	.sy-home-reviews-quotes {
		grid-template-columns: 1fr;
	}

	.sy-home-reviews-quote.is-feat {
		grid-column: auto;
		grid-row: auto;
	}
}

@media (max-width: 640px) {
	.sy-home-reviews {
		padding: 56px 0 64px;
	}

	.sy-home-reviews-platforms {
		grid-template-columns: 1fr;
	}

	.sy-home-reviews-platform {
		grid-template-columns: 44px minmax(0, 1fr) auto;
		gap: 12px;
		padding: 14px 14px;
	}

	.sy-home-reviews-platform-mark {
		width: 44px;
		height: 44px;
		border-radius: 12px;
	}

	.sy-home-reviews-platform-mark svg {
		width: 22px;
		height: 22px;
	}

	.sy-home-reviews-platform-mark svg.is-tile {
		width: 44px;
		height: 44px;
	}

	.sy-home-reviews-platform-copy small {
		font-size: 13px;
	}

	.sy-home-reviews-platform-score b {
		font-size: 22px;
	}

	.sy-home-reviews-quote {
		padding: 18px 18px 16px;
	}

	.sy-home-reviews-quote.is-feat {
		padding: 26px 22px 22px;
	}

	.sy-home-reviews-quote.is-feat::before {
		right: 18px;
		font-size: 72px;
	}

	.sy-home-reviews-quote.is-feat blockquote p {
		font-size: 17px;
	}
}

/* ---------- Floating contact (phone + WhatsApp) — desktop & mobile ---------- */
.sy-float {
	display: block;
	position: fixed;
	right: max(16px, env(safe-area-inset-right, 0px));
	bottom: max(16px, env(safe-area-inset-bottom, 0px));
	z-index: 1200;
	opacity: 0;
	transform: translateY(12px);
	pointer-events: none;
	transition: opacity .35s ease, transform .45s cubic-bezier(.2, .8, .2, 1);
}

.sy-float.is-visible {
	opacity: 1;
	transform: none;
	pointer-events: auto;
}

.sy-float-fabs {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
}

.sy-float-fab {
	position: relative;
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border: 0;
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
	box-shadow:
		0 10px 28px rgba(2, 25, 56, .22),
		0 2px 6px rgba(2, 25, 56, .12);
	transition: transform .25s ease, box-shadow .25s ease, background .2s ease;
}

.sy-float-fab svg {
	width: 22px;
	height: 22px;
	position: relative;
	z-index: 1;
}

.sy-float-fab.is-phone {
	background: #0a2c69;
}

.sy-float-fab.is-phone:hover {
	background: #134f96;
	transform: translateY(-2px);
	box-shadow: 0 14px 32px rgba(10, 44, 105, .28);
}

.sy-float-fab.is-wa {
	background: #1fad57;
}

.sy-float-fab.is-wa:hover {
	background: #19a04e;
	transform: translateY(-2px);
	box-shadow: 0 14px 32px rgba(31, 173, 87, .32);
}

.sy-float.is-open .sy-float-fab.is-wa {
	background: #148a42;
}

.sy-float-fab-pulse {
	position: absolute;
	inset: -5px;
	border-radius: 50%;
	border: 1.5px solid currentColor;
	opacity: .35;
	animation: sy-float-pulse 2.4s ease-out infinite;
	pointer-events: none;
}

.sy-float-fab.is-phone .sy-float-fab-pulse {
	color: #0a2c69;
}

.sy-float-fab.is-wa .sy-float-fab-pulse {
	color: #1fad57;
}

@keyframes sy-float-pulse {
	0% { transform: scale(.92); opacity: .4; }
	70% { transform: scale(1.18); opacity: 0; }
	100% { transform: scale(1.18); opacity: 0; }
}

.sy-float-panel {
	position: absolute;
	right: 0;
	bottom: 68px;
	width: min(360px, calc(100vw - 32px));
	overflow: hidden;
	border-radius: 18px;
	background: #fff;
	border: 1px solid rgba(10, 44, 105, .08);
	box-shadow:
		0 24px 60px rgba(2, 25, 56, .18),
		0 4px 14px rgba(2, 25, 56, .08);
	opacity: 0;
	transform: translateY(10px) scale(.98);
	transform-origin: bottom right;
	transition: opacity .22s ease, transform .28s cubic-bezier(.2, .8, .2, 1);
	pointer-events: none;
}

.sy-float-panel.is-shown {
	opacity: 1;
	transform: none;
	pointer-events: auto;
}

.sy-float-panel-head {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 44px 14px 14px;
	background:
		radial-gradient(ellipse 80% 120% at 100% 0%, rgba(204, 166, 104, .22), transparent 50%),
		linear-gradient(135deg, #061830 0%, #0a2c69 58%, #0d3f7a 100%);
	color: #fff;
}

.sy-float-panel-avatar {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(255, 255, 255, .35);
	box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
	flex: 0 0 auto;
}

.sy-float-panel-meta {
	min-width: 0;
	display: grid;
	gap: 3px;
}

.sy-float-panel-title {
	font-size: 14.5px;
	font-weight: 700;
	letter-spacing: -.01em;
	line-height: 1.25;
}

.sy-float-panel-status {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: rgba(255, 255, 255, .78);
	font-size: 13.5px;
	font-weight: 500;
}

.sy-float-panel-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #3dde7a;
	box-shadow: 0 0 0 3px rgba(61, 222, 122, .22);
}

.sy-float-panel-close {
	position: absolute;
	top: 12px;
	right: 12px;
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, .12);
	color: #fff;
	cursor: pointer;
	transition: background .2s ease;
}

.sy-float-panel-close:hover {
	background: rgba(255, 255, 255, .22);
}

.sy-float-panel-close svg {
	width: 14px;
	height: 14px;
}

.sy-float-panel-body {
	min-height: 168px;
	padding: 18px 16px 14px;
	background:
		radial-gradient(circle at 12% 18%, rgba(204, 166, 104, .07), transparent 28%),
		radial-gradient(circle at 88% 70%, rgba(23, 139, 234, .06), transparent 30%),
		repeating-linear-gradient(
			-12deg,
			transparent,
			transparent 11px,
			rgba(10, 44, 105, .025) 11px,
			rgba(10, 44, 105, .025) 12px
		),
		#f3f7fb;
}

.sy-float-typing {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 12px 14px;
	border-radius: 14px 14px 14px 4px;
	background: #fff;
	box-shadow: 0 4px 14px rgba(4, 36, 91, .06);
}

.sy-float-typing[hidden],
.sy-float-bubble[hidden] {
	display: none !important;
}

.sy-float-typing span {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #9aadc4;
	animation: sy-float-dot 1.1s ease-in-out infinite;
}

.sy-float-typing span:nth-child(2) { animation-delay: .15s; }
.sy-float-typing span:nth-child(3) { animation-delay: .3s; }

@keyframes sy-float-dot {
	0%, 80%, 100% { transform: translateY(0); opacity: .45; }
	40% { transform: translateY(-4px); opacity: 1; }
}

.sy-float-bubble {
	max-width: 88%;
	padding: 12px 14px;
	border-radius: 4px 16px 16px 16px;
	background: #fff;
	box-shadow: 0 6px 18px rgba(4, 36, 91, .07);
	animation: sy-float-bubble-in .3s ease;
}

.sy-float-bubble p {
	margin: 0;
	color: #1a3158;
	font-size: 15px;
	line-height: 1.5;
}

@keyframes sy-float-bubble-in {
	from { opacity: 0; transform: translateY(6px); }
	to { opacity: 1; transform: none; }
}

.sy-float-panel-foot {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 12px 12px 14px;
	border-top: 1px solid #e6eef6;
	background: #fff;
}

.sy-float-input {
	flex: 1;
	min-width: 0;
	height: 42px;
	padding: 0 4px;
	border: 0;
	outline: none;
	background: transparent;
	color: #0a2c69;
	font: inherit;
	font-size: 15px;
}

.sy-float-input::placeholder {
	color: #8a9bb0;
}

.sy-float-send {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #1fad57;
	color: #fff;
	cursor: pointer;
	transition: background .2s ease, transform .2s ease;
}

.sy-float-send:hover {
	background: #19a04e;
	transform: scale(1.04);
}

.sy-float-send svg {
	width: 18px;
	height: 18px;
	margin-left: 1px;
}

.sy-float .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;
}

@media (min-width: 901px) {
	.sy-float {
		right: 28px;
		bottom: 28px;
	}

	.sy-float-fabs {
		gap: 14px;
	}

	.sy-float-fab {
		width: 56px;
		height: 56px;
	}

	.sy-float-fab svg {
		width: 24px;
		height: 24px;
	}

	.sy-float-panel {
		bottom: 74px;
		width: min(360px, calc(100vw - 56px));
	}
}

/* —— 404 (Acıbadem-inspired structure, SY brand) —— */
.sy-404 {
	--sy-404-ink: #0a2c69;
	--sy-404-muted: #5a6b86;
	--sy-404-line: #d7e6f5;
	--sy-404-soft: #eef5fb;
	background: #fff;
}

.sy-404-hero {
	padding: clamp(48px, 7vw, 88px) 0 clamp(40px, 5vw, 64px);
	background:
		radial-gradient(ellipse 80% 70% at 100% 0%, rgba(204, 166, 104, 0.18), transparent 55%),
		linear-gradient(180deg, #eef5fb 0%, #f7fbfe 55%, #fff 100%);
}

.sy-404-hero-inner,
.sy-404-popular-inner,
.sy-404-help-inner {
	width: min(calc(100% - var(--page-inline-space)), var(--page-max-width));
	margin: 0 auto;
}

.sy-404-eyebrow {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	margin: 0 0 0.85rem;
	font-family: Manrope, "Avenir Next", sans-serif;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #0875c5;
}

.sy-404-eyebrow span {
	display: block;
	width: 28px;
	height: 2px;
	background: currentColor;
}

.sy-404-eyebrow.is-dark {
	color: #0a5aa0;
}

.sy-404-eyebrow.is-center {
	justify-content: center;
}

.sy-404-title {
	margin: 0 0 0.75rem;
	max-width: 18ch;
	font-family: Manrope, "Avenir Next", sans-serif;
	font-size: clamp(2rem, 4.2vw, 3.15rem);
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 1.08;
	color: var(--sy-404-ink);
}

.sy-404-desc {
	margin: 0 0 1.5rem;
	max-width: 36rem;
	font-family: Manrope, "Avenir Next", sans-serif;
	font-size: 1.05rem;
	line-height: 1.55;
	color: var(--sy-404-muted);
}

.sy-404-search {
	display: flex;
	align-items: stretch;
	gap: 0;
	max-width: 44rem;
	margin: 0 0 1.25rem;
	border: 1px solid var(--sy-404-line);
	border-radius: 999px;
	background: #fff;
	box-shadow: 0 14px 36px rgba(4, 36, 91, 0.08);
	overflow: hidden;
}

.sy-404-search-input {
	flex: 1 1 auto;
	min-width: 0;
	padding: 0 0.25rem 0 1.25rem;
	border: 0;
	outline: none;
	background: transparent;
	font-family: Manrope, "Avenir Next", sans-serif;
	font-size: 0.98rem;
	font-weight: 600;
	color: var(--sy-404-ink);
}

.sy-404-search-input::placeholder {
	color: #8a98ad;
	font-weight: 500;
}

.sy-404-search-submit {
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	margin: 5px;
	padding: 0;
	border: 1px solid rgba(8, 117, 197, 0.18);
	border-radius: 50%;
	background: rgba(8, 117, 197, 0.1);
	color: #0a5aa0;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.sy-404-search-submit svg {
	width: 18px;
	height: 18px;
}

.sy-404-search-submit:hover {
	background: rgba(8, 117, 197, 0.18);
	border-color: rgba(8, 117, 197, 0.3);
	color: #084f8f;
}

.sy-404-quick {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
}

.sy-404-quick a {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	min-height: 40px;
	padding: 0.45rem 0.95rem;
	border: 1px solid var(--sy-404-line);
	border-radius: 999px;
	background: #fff;
	color: #243552;
	font-family: Manrope, "Avenir Next", sans-serif;
	font-size: 0.9375rem;
	font-weight: 700;
	text-decoration: none;
	transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.sy-404-quick a:hover {
	border-color: rgba(204, 166, 104, 0.55);
	color: var(--sy-404-ink);
	background: #fffaf1;
}

.sy-404-quick-home {
	border-color: transparent !important;
	background: #0a2c69 !important;
	color: #fff !important;
	box-shadow: 0 10px 24px rgba(10, 44, 105, 0.22);
}

.sy-404-quick-home:hover {
	background: #0c357d !important;
	color: #fff !important;
}

.sy-404-popular {
	padding: 28px 0 20px;
}

.sy-404-section-title {
	margin: 0 0 1.35rem;
	font-family: Manrope, "Avenir Next", sans-serif;
	font-size: clamp(1.55rem, 2.6vw, 2.1rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--sy-404-ink);
}

.sy-404-section-title.is-center {
	text-align: center;
}

.sy-404-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.1rem;
}

.sy-404-card {
	position: relative;
	display: block;
	min-height: 260px;
	overflow: hidden;
	border-radius: 18px;
	text-decoration: none;
	background: #132844 center / cover no-repeat;
	background-image: linear-gradient(160deg, #0a2c69, #1a3f78);
	box-shadow: 0 14px 32px rgba(4, 36, 91, 0.12);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sy-404-card.has-image {
	background-image:
		linear-gradient(180deg, rgba(7, 20, 40, 0.1) 20%, rgba(7, 20, 40, 0.78) 100%),
		var(--sy-404-card-image);
}

.sy-404-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 40px rgba(4, 36, 91, 0.18);
}

.sy-404-card-tag {
	position: absolute;
	top: 14px;
	left: 14px;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.35rem 0.7rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.94);
	color: #243552;
	font-family: Manrope, "Avenir Next", sans-serif;
	font-size: 0.8125rem;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.sy-404-card-tag span {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--sy-gold);
}

.sy-404-card-foot {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 1.1rem 1.1rem 1.15rem;
}

.sy-404-card-foot strong {
	color: #fff;
	font-family: Manrope, "Avenir Next", sans-serif;
	font-size: 1.15rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.sy-404-card-arrow {
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
	transition: background 0.2s ease, color 0.2s ease;
}

.sy-404-card:hover .sy-404-card-arrow {
	background: var(--sy-gold);
	color: #0a2c69;
}

.sy-404-card-arrow svg {
	width: 18px;
	height: 18px;
}

.sy-404-help {
	padding: 48px 0 72px;
	border-top: 1px solid var(--sy-404-line);
	background: linear-gradient(180deg, #fff 0%, var(--sy-404-soft) 100%);
}

.sy-404-help-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 1.5rem;
}

.sy-404-help-card {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	min-height: 100%;
	padding: 1.25rem 1.2rem 1.15rem;
	border: 1px solid var(--sy-404-line);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 10px 28px rgba(4, 36, 91, 0.05);
	text-decoration: none;
	color: inherit;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.sy-404-help-card:hover {
	border-color: rgba(204, 166, 104, 0.55);
	background: #fffaf3;
	box-shadow: 0 12px 30px rgba(4, 36, 91, 0.1);
}

.sy-404-help-icon {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	margin-bottom: 0.25rem;
	border-radius: 12px;
	background: rgba(8, 117, 197, 0.1);
	color: #0a5aa0;
	transition: background 0.2s ease, color 0.2s ease;
}

.sy-404-help-card:hover .sy-404-help-icon {
	background: rgba(204, 166, 104, 0.2);
	color: var(--sy-gold-deep);
}

.sy-404-help-icon svg {
	width: 20px;
	height: 20px;
}

.sy-404-help-card h3 {
	margin: 0;
	font-family: Manrope, "Avenir Next", sans-serif;
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--sy-404-ink);
}

.sy-404-help-card p {
	margin: 0;
	flex: 1 1 auto;
	font-family: Manrope, "Avenir Next", sans-serif;
	font-size: 0.92rem;
	line-height: 1.5;
	color: var(--sy-404-muted);
}

.sy-404-help-cta {
	margin-top: 0.55rem;
	font-family: Manrope, "Avenir Next", sans-serif;
	font-size: 0.875rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	color: #0a5aa0;
	transition: color 0.2s ease;
}

.sy-404-help-card:hover .sy-404-help-cta {
	color: var(--sy-gold-deep);
}

@media (max-width: 1100px) {
	.sy-404-help-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 820px) {
	.sy-404-cards {
		grid-template-columns: 1fr;
	}

	.sy-404-search {
		flex-wrap: nowrap;
		border-radius: 999px;
	}

	.sy-404-search-submit {
		width: 44px;
		height: 44px;
		min-height: 44px;
	}
}

@media (max-width: 560px) {
	.sy-404-help-grid {
		grid-template-columns: 1fr;
	}
}




/* ============================================================
   Form gönderim durumu — tüm formlarda ortak
   SMTP gönderimi birkaç saniye sürebiliyor; bu sürede buton
   "gönderiliyor" halkasına döner. Saf CSS animasyon: ek istek
   yok, layout kayması (CLS) yok.
   ============================================================ */
.sy-contact-form.is-loading,
.sy-lp-form.is-loading,
.sy-hizmet-aside-form.is-loading,
form.is-loading[data-sy-lp-form] {
	cursor: progress;
}

.is-loading .sy-contact-submit,
.is-loading .sy-lp-form-btn[type="submit"],
.is-loading button[type="submit"] {
	position: relative;
	color: transparent !important;
	pointer-events: none;
}

.is-loading .sy-contact-submit > *,
.is-loading .sy-lp-form-btn[type="submit"] > *,
.is-loading button[type="submit"] > * {
	visibility: hidden;
}

.is-loading .sy-contact-submit::after,
.is-loading .sy-lp-form-btn[type="submit"]::after,
.is-loading button[type="submit"]::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 20px;
	margin: -10px 0 0 -10px;
	border: 2.5px solid rgba(255, 255, 255, .35);
	border-top-color: #fff;
	border-radius: 50%;
	animation: sy-form-spin .7s linear infinite;
}

@keyframes sy-form-spin {
	to { transform: rotate(360deg); }
}

/* Hareketi azalt tercihi: dönme yerine nabız. */
@media (prefers-reduced-motion: reduce) {
	.is-loading .sy-contact-submit::after,
	.is-loading .sy-lp-form-btn[type="submit"]::after,
	.is-loading button[type="submit"]::after {
		animation: sy-form-pulse 1.2s ease-in-out infinite;
	}
	@keyframes sy-form-pulse {
		0%, 100% { opacity: .35; }
		50%      { opacity: 1; }
	}
}

/* ============================================================
   Ortak form onay ekranı (tüm formlarda aynı)
   ============================================================ */
.sy-form-success {
	display: grid;
	justify-items: center;
	text-align: center;
	gap: 0;
	padding: clamp(28px, 4vw, 48px) clamp(20px, 3vw, 40px);
	border-radius: 22px;
	background: linear-gradient(160deg, #0a2c69 0%, #061f4d 100%);
	color: #e9f2ff;
	box-shadow: 0 24px 60px rgba(4, 22, 56, .28);
}

.sy-form-success-icon {
	display: grid;
	place-items: center;
	width: 76px;
	height: 76px;
	margin-bottom: 22px;
	border-radius: 50%;
	color: #fff;
	background: linear-gradient(160deg, #4dbaff, #1782e6);
	box-shadow: 0 0 0 12px rgba(77, 186, 255, .12), 0 10px 26px rgba(23, 130, 230, .35);
	animation: sy-success-pop .45s cubic-bezier(.34, 1.56, .64, 1) both;
}

.sy-form-success-icon svg { width: 34px; height: 34px; }

@keyframes sy-success-pop {
	from { transform: scale(.6); opacity: 0; }
	to   { transform: scale(1);  opacity: 1; }
}

.sy-form-success-eyebrow {
	margin: 0 0 14px;
	color: #6fc2ff;
	font-size: 13.5px;
	font-weight: 800;
	letter-spacing: .22em;
	text-transform: uppercase;
}

.sy-form-success-title {
	margin: 0 0 16px;
	color: #fff;
	font-size: clamp(22px, 2.4vw, 30px);
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: -.02em;
}

.sy-form-success-text {
	margin: 0;
	max-width: 46ch;
	color: rgba(207, 226, 250, .78);
	font-size: 15px;
	line-height: 1.65;
}

.sy-form-success-ref {
	margin: 22px 0 0;
	padding: 12px 26px;
	border: 1px solid rgba(150, 195, 245, .32);
	border-radius: 999px;
	color: #dceaff;
	font-size: 14px;
	font-weight: 600;
}

.sy-form-success-back {
	margin: 20px 0 0;
	padding: 12px 26px;
	border: 1px solid rgba(150, 195, 245, .38);
	border-radius: 999px;
	background: transparent;
	color: #cfe4ff;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: background .2s ease, border-color .2s ease, color .2s ease;
	animation: sy-success-fade .35s ease both;
}

.sy-form-success-back:hover {
	background: rgba(255, 255, 255, .08);
	border-color: #4dbaff;
	color: #fff;
}

.sy-form-success-back[hidden] { display: none; }

@keyframes sy-success-fade {
	from { opacity: 0; transform: translateY(6px); }
	to   { opacity: 1; transform: none; }
}

/* Açık zeminli bölümlerde (iletişim sayfası, LP CTA) kart zaten koyu. */
@media (prefers-reduced-motion: reduce) {
	.sy-form-success-icon,
	.sy-form-success-back { animation: none; }
}


/* ------------------------------------------------------------------
   Mega menü — hover'da beliren çizgi izleri (kesin çözüm).

   İki kademeli yama denedim (katman sabitleme, will-change) ve ikisi de
   işe yaramadı. Sebep tahmin etmeyi bırakıp ARTEFAKTI ÜRETEN ÖZELLİKLERİ
   kaldırıyorum:

   1. backdrop-filter — bulanık katman her karede arka planı yeniden
      örnekliyor; kenarlarda dikiş izi bırakıyor.
   2. Tam ekran radial-gradient — büyük alanda bant (banding) oluşturuyor;
      katman yeniden çizilince bandın sınırı bir kare parlıyor.
   3. transform tabanlı giriş animasyonu — yeniden çizimi tetikleyen şey.

   Yerine: düz renk + opaklık animasyonu. Görsel olarak biraz sadeleşir,
   buna karşılık çizim tamamen kararlı olur.
   ------------------------------------------------------------------ */
.sy-nav .wp-block-navigation__responsive-container.is-menu-open {
	background: #021938 !important;
}

.sy-mega-panel,
.sy-mega-brand,
.sy-nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close,
.sy-mega-search {
	-webkit-backdrop-filter: none !important;
	backdrop-filter: none !important;
}

.sy-mega-panel {
	background: rgba(255, 255, 255, .045);
}

/* Giriş animasyonu yalnızca opaklık — transform yeniden çizim tetikliyordu. */
@keyframes sy-mega-fade {
	from { opacity: 0 }
	to   { opacity: 1 }
}
.sy-mega-brand,
.sy-mega-search,
.sy-mega-grid,
.sy-mega-panels,
.sy-mega-cta,
.sy-mega-panel {
	animation-name: sy-mega-fade !important;
}

/* Form etiketlerinde "(Opsiyonel)" — zorunlu alanlardan görsel olarak ayrılsın. */
.sy-optional {
	font-style: normal;
	font-weight: 400;
	opacity: .62;
	letter-spacing: 0;
	text-transform: none;
}
