/* =========================================================
   Betamedia — Main Theme Styles
   Klinik mavi palet · Sora (heading) + Mulish (body)
   Petri kabı görsel kimliği · Modern, kurumsal, lab dilinde
   ========================================================= */

:root {
	--bm-primary:        #0E63D6;
	--bm-primary-dark:   #0A3D82;
	--bm-primary-light:  #3A82E0;
	--bm-accent:         #38BDF8;
	--bm-accent-dark:    #0EA5E9;
	--bm-dark:           #0B1B2B;
	--bm-text:           #0B1B2B;
	--bm-muted:          #5B6B7C;
	--bm-border:         #E2E8F0;
	--bm-bg:             #FFFFFF;
	--bm-bg-soft:        #F4F8FD;
	--bm-bg-tint:        #E8F1FC;
	--bm-hero-a:         #EAF3FE;
	--bm-hero-b:         #F7FBFF;
	--bm-success:        #10b981;
	--bm-warning:        #f59e0b;
	--bm-danger:         #ef4444;

	--bm-radius-sm:      10px;
	--bm-radius:         14px;
	--bm-radius-lg:      20px;

	--bm-shadow-sm:      0 1px 3px rgba(2, 8, 20, .06);
	--bm-shadow:         0 8px 24px rgba(2, 8, 20, .08);
	--bm-shadow-lg:      0 18px 40px rgba(8, 20, 40, .12);
	--bm-shadow-brand:   0 10px 24px rgba(14, 99, 214, .26);

	--bm-font-body:      'Mulish', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
	--bm-font-heading:   'Sora', 'Mulish', system-ui, sans-serif;

	--bm-transition:     200ms cubic-bezier(.4, 0, .2, 1);
	--bm-container:      1240px;
}

/* ---------- Base ---------- */

html {
	scroll-behavior: smooth;
	overflow-x: hidden;  /* alignfull / 100vw kullanımının scrollbar tetiklemesini önler */
}

body {
	font-family: var(--bm-font-body);
	color: var(--bm-text);
	background: var(--bm-bg);
	line-height: 1.6;
	font-size: 16px;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--bm-font-heading);
	color: var(--bm-dark);
	font-weight: 700;
	margin: 0 0 .6em;
}

h1 {
	font-size: clamp(2rem, 4vw + .5rem, 3.125rem);  /* 32 → 50px */
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.02em;
}
h2 {
	font-size: clamp(1.625rem, 2.4vw + .5rem, 1.875rem);  /* 26 → 30px */
	font-weight: 800;
	line-height: 1.18;
	letter-spacing: -0.01em;
}
h3 {
	font-size: clamp(1.1875rem, 1.2vw + .5rem, 1.375rem);  /* 19 → 22px */
	font-weight: 700;
	line-height: 1.25;
}
h4 { font-size: 1.0625rem; line-height: 1.3; }
h5 { font-size: .9375rem; line-height: 1.3; }

p { margin: 0 0 1rem; }

a {
	color: var(--bm-primary);
	text-decoration: none;
	transition: color var(--bm-transition);
}
a:hover { color: var(--bm-primary-dark); }

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

::selection { background: var(--bm-primary); color: #fff; }

/* ---------- Layout ---------- */

.bm-container {
	width: 100%;
	max-width: var(--bm-container);
	margin: 0 auto;
	padding: 0 24px;
}

.bm-container-narrow { max-width: 980px; margin: 0 auto; padding: 0 24px; }
.bm-container-tight  { max-width: 780px; margin: 0 auto; padding: 0 24px; }

/* Alignfull — Gutenberg content içinde viewport boyunca yayılan bölümler */
.entry-content > .alignfull,
.page-content > .alignfull,
main .alignfull,
main.site-main > .alignfull {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}
.alignwide {
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
}

.bm-section { padding: clamp(48px, 7vw, 80px) 0; }
.bm-section-sm { padding: clamp(36px, 5vw, 56px) 0; }
.bm-section-soft { background: var(--bm-bg-soft); }
.bm-section-tint { background: var(--bm-bg-tint); }
.bm-section-dark {
	background: var(--bm-primary-dark);
	color: rgba(255, 255, 255, .85);
}
.bm-section-dark h1,
.bm-section-dark h2,
.bm-section-dark h3,
.bm-section-dark h4 { color: #fff; }
.bm-section-dark a { color: #fff; }

/* ---------- Buttons ---------- */

.bm-btn,
.button,
button[type="submit"],
input[type="submit"],
.wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 13px 24px;
	font-family: var(--bm-font-body);
	font-weight: 800;
	font-size: .96875rem;  /* 15.5px */
	letter-spacing: 0;
	border: 1.5px solid transparent;
	border-radius: 13px;
	cursor: pointer;
	transition: all var(--bm-transition);
	text-transform: none;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
}

.bm-btn-primary,
.button.alt,
button[type="submit"],
input[type="submit"],
.wp-block-button__link {
	background: var(--bm-primary);
	color: #fff !important;
	border-color: var(--bm-primary);
	box-shadow: var(--bm-shadow-brand);
}
.bm-btn-primary:hover,
.button.alt:hover,
button[type="submit"]:hover,
input[type="submit"]:hover,
.wp-block-button__link:hover {
	background: var(--bm-primary-dark);
	border-color: var(--bm-primary-dark);
	color: #fff !important;
	transform: translateY(-1px);
	box-shadow: 0 14px 30px rgba(14, 99, 214, .32);
}

.bm-btn-accent {
	background: var(--bm-accent);
	color: #0B1B2B !important;
	border-color: var(--bm-accent);
	box-shadow: 0 8px 20px rgba(56, 189, 248, .28);
}
.bm-btn-accent:hover {
	background: var(--bm-accent-dark);
	border-color: var(--bm-accent-dark);
	color: #fff !important;
}

.bm-btn-outline {
	background: #fff;
	color: var(--bm-dark) !important;
	border-color: var(--bm-border);
	box-shadow: none;
}
.bm-btn-outline:hover {
	border-color: var(--bm-primary);
	color: var(--bm-primary) !important;
	background: #fff;
}

.bm-btn-light {
	background: rgba(255, 255, 255, .12);
	color: #fff !important;
	border-color: rgba(255, 255, 255, .35);
	box-shadow: none;
}
.bm-btn-light:hover {
	background: #fff;
	color: var(--bm-primary) !important;
	border-color: #fff;
}

.bm-btn-ghost {
	background: transparent;
	color: var(--bm-primary) !important;
	border-color: transparent;
	box-shadow: none;
	padding: 8px 12px;
}
.bm-btn-ghost:hover {
	color: var(--bm-primary-dark) !important;
	background: var(--bm-bg-tint);
}

.bm-btn-lg { padding: 15px 28px; font-size: 1rem; border-radius: 14px; }
.bm-btn-sm { padding: 9px 16px; font-size: .8125rem; border-radius: 10px; }
.bm-btn-block { width: 100%; }

/* ---------- Eyebrow (pill chip variant) ---------- */

.bm-eyebrow {
	display: inline-block;
	font-family: var(--bm-font-body);
	font-size: .78125rem;  /* 12.5px */
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--bm-primary);
	background: var(--bm-bg-tint);
	padding: 7px 13px;
	border-radius: 999px;
	margin-bottom: 18px;
}

.bm-eyebrow-plain {
	background: transparent;
	padding: 0;
	margin-bottom: 14px;
}

/* Section başlık bloğu — eyebrow + h2/h1 alt alta, ortalı düzgün hizalanmış. */
.bm-section-head {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-bottom: 30px;
}
.bm-section-head.bm-text-center {
	align-items: center;
	text-align: center;
}
.bm-section-head h1,
.bm-section-head h2,
.bm-section-head h3 { margin: 0 0 8px; }
.bm-section-head p {
	color: var(--bm-muted);
	font-size: 1rem;
	margin: 8px 0 0;
	max-width: 640px;
}
.bm-section-head.bm-text-center p {
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

/* ---------- Petri Dish Component ---------- */

.bm-petri {
	position: relative;
	width: 148px;
	height: 148px;
	flex-shrink: 0;
	border-radius: 50%;
	background: #eef1f5;
	box-shadow: 0 12px 26px rgba(2, 8, 20, .14), inset 0 0 0 7px rgba(255, 255, 255, .7);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.bm-petri__agar {
	width: 84%;
	height: 84%;
	border-radius: 50%;
	background: radial-gradient(circle at 36% 30%, rgba(255, 255, 255, .55), rgba(255, 255, 255, 0) 44%), var(--agar, #E8D488);
	box-shadow: inset 0 6px 16px rgba(0, 0, 0, .22);
}
.bm-petri__ring {
	position: absolute;
	inset: 6%;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, .5);
	pointer-events: none;
}

.bm-petri-xs { width: 38px; height: 38px; box-shadow: 0 4px 10px rgba(2, 8, 20, .14), inset 0 0 0 3px rgba(255, 255, 255, .8); }
.bm-petri-xs .bm-petri__agar { width: 74%; height: 74%; box-shadow: inset 0 3px 7px rgba(0, 0, 0, .25); }
.bm-petri-xs .bm-petri__ring { display: none; }

.bm-petri-sm { width: 78px; height: 78px; box-shadow: 0 6px 14px rgba(2, 8, 20, .12), inset 0 0 0 5px rgba(255, 255, 255, .7); }
.bm-petri-sm .bm-petri__agar { width: 82%; height: 82%; box-shadow: inset 0 4px 10px rgba(0, 0, 0, .22); }
.bm-petri-sm .bm-petri__ring { display: none; }

.bm-petri-md { width: 118px; height: 118px; box-shadow: 0 12px 26px rgba(2, 8, 20, .14), inset 0 0 0 6px rgba(255, 255, 255, .75); }
.bm-petri-md .bm-petri__agar { width: 84%; height: 84%; box-shadow: inset 0 6px 14px rgba(0, 0, 0, .22); }

.bm-petri-lg {
	width: 240px; height: 240px;
	box-shadow: 0 26px 50px rgba(2, 8, 20, .18), inset 0 0 0 9px rgba(255, 255, 255, .75);
}
.bm-petri-lg .bm-petri__agar { width: 84%; height: 84%; box-shadow: inset 0 8px 20px rgba(0, 0, 0, .25); }

.bm-petri-xl {
	width: 300px; height: 300px;
	box-shadow: 0 30px 60px rgba(2, 8, 20, .20), inset 0 0 0 12px rgba(255, 255, 255, .75);
}
.bm-petri-xl .bm-petri__agar { width: 84%; height: 84%; box-shadow: inset 0 12px 30px rgba(0, 0, 0, .25); }
.bm-petri-xl .bm-petri__ring { border-width: 1.5px; border-color: rgba(255, 255, 255, .55); }

/* Petri visual frame — soft mavi gradient zemin (ürün kartlarında üst kısım) */
.bm-petri-frame {
	background: linear-gradient(160deg, var(--bm-bg-tint), #fff);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 26px;
	border-radius: 16px 16px 0 0;
}

/* ---------- Hero ---------- */

.bm-hero {
	background: linear-gradient(165deg, var(--bm-hero-a), var(--bm-hero-b));
	border-bottom: 1px solid var(--bm-border);
	overflow: hidden;
}
.bm-hero__inner {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: 48px;
	align-items: center;
	padding: 64px 0 70px;
}
.bm-hero h1 { color: var(--bm-dark); margin: 16px 0 0; }
.bm-hero__lead {
	font-size: 1.09375rem;  /* 17.5px */
	line-height: 1.6;
	color: var(--bm-muted);
	max-width: 520px;
	margin: 20px 0 0;
}
.bm-hero__actions {
	display: flex;
	gap: 13px;
	margin-top: 30px;
	flex-wrap: wrap;
}
.bm-hero__stats {
	display: flex;
	gap: 26px;
	margin-top: 36px;
	flex-wrap: wrap;
	align-items: center;
}
.bm-hero__stat-num {
	font-family: var(--bm-font-heading);
	font-weight: 800;
	font-size: 1.5rem;
	color: var(--bm-dark);
	letter-spacing: -0.01em;
}
.bm-hero__stat-lbl {
	font-size: .8125rem;
	color: var(--bm-muted);
	margin-top: 2px;
}
.bm-hero__stat-div {
	width: 1px;
	align-self: stretch;
	background: var(--bm-border);
}
.bm-hero__visual {
	position: relative;
	height: 430px;
}
.bm-hero__petri-a { position: absolute; left: 6%;  top: 4%;   }
.bm-hero__petri-b { position: absolute; right: 2%; top: 22%;  }
.bm-hero__petri-c { position: absolute; left: 30%; bottom: 0; }

@media (max-width: 900px) {
	.bm-hero__inner { grid-template-columns: 1fr; padding: 48px 0 56px; }
	.bm-hero__visual { display: none; }
}

/* ---------- Page intro (iç sayfa hero) ---------- */

.bm-page-intro {
	background: linear-gradient(165deg, var(--bm-hero-a), var(--bm-hero-b));
	border-bottom: 1px solid var(--bm-border);
	padding: clamp(40px, 6vw, 60px) 0;
}
.bm-page-intro .bm-breadcrumb { margin-bottom: 14px; }
.bm-page-intro h1 { margin: 12px 0 0; }
.bm-page-intro__lead {
	color: var(--bm-text);
	font-size: 1.0625rem;
	line-height: 1.65;
	max-width: 780px;
	margin: 16px 0 0;
}

/* ---------- Cards (generic) ---------- */

.bm-card {
	background: #fff;
	border: 1px solid var(--bm-border);
	border-radius: var(--bm-radius);
	padding: 26px;
	transition: transform var(--bm-transition), box-shadow var(--bm-transition), border-color var(--bm-transition);
}
.bm-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--bm-shadow-lg);
	border-color: var(--bm-primary);
}

/* ---------- Category cards (büyük, yatay) ---------- */

.bm-cat-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
}
.bm-cat-card {
	display: flex;
	background: #fff;
	border: 1px solid var(--bm-border);
	border-radius: var(--bm-radius-lg);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: border-color var(--bm-transition), box-shadow var(--bm-transition), transform var(--bm-transition);
}
.bm-cat-card:hover {
	border-color: var(--bm-primary);
	box-shadow: 0 18px 40px rgba(8, 20, 40, .10);
	color: inherit;
}
.bm-cat-card__visual {
	width: 170px;
	flex-shrink: 0;
	background: linear-gradient(160deg, var(--bm-bg-tint), #fff);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
}
.bm-cat-card__body {
	padding: 26px 24px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.bm-cat-card__body h3 { margin: 0 0 8px; font-size: 1.3125rem; color: var(--bm-dark); }
.bm-cat-card__body p { color: var(--bm-muted); font-size: .90625rem; line-height: 1.55; margin: 0 0 14px; }
.bm-cat-card__cta {
	font-weight: 800;
	font-size: .875rem;
	color: var(--bm-primary);
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

@media (max-width: 700px) {
	.bm-cat-grid { grid-template-columns: 1fr; }
	.bm-cat-card { flex-direction: column; }
	.bm-cat-card__visual { width: 100%; min-height: 140px; }
}

/* ---------- Value cards (4 sütun, küçük kart) ---------- */

.bm-values {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 18px;
}
.bm-value-card {
	background: var(--bm-bg-soft);
	border: 1px solid var(--bm-border);
	border-radius: var(--bm-radius);
	padding: 24px;
}
.bm-value-card__icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: #fff;
	border: 1px solid var(--bm-border);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--bm-primary);
	margin-bottom: 15px;
}
.bm-value-card__icon svg { width: 22px; height: 22px; }
.bm-value-card h4 { margin: 0 0 7px; font-size: 1.03125rem; color: var(--bm-dark); }
.bm-value-card p { font-size: .875rem; line-height: 1.55; color: var(--bm-muted); margin: 0; }

/* ---------- Featured products grid (anasayfa) ---------- */

.bm-product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
	gap: 22px;
}

/* ---------- Sub-links (Hakkımızda alt sayfa kartları) ---------- */

.bm-sub-links {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 16px;
}
.bm-sub-link {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 20px 22px;
	background: #fff;
	border: 1px solid var(--bm-border);
	border-radius: var(--bm-radius);
	text-decoration: none;
	color: inherit;
	transition: border-color var(--bm-transition), box-shadow var(--bm-transition), transform var(--bm-transition);
}
.bm-sub-link:hover {
	border-color: var(--bm-primary);
	box-shadow: var(--bm-shadow);
	color: inherit;
}
.bm-sub-link__icon {
	width: 40px; height: 40px;
	background: var(--bm-bg-tint);
	color: var(--bm-primary);
	border-radius: 10px;
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
}
.bm-sub-link__icon svg { width: 20px; height: 20px; }
.bm-sub-link__arrow {
	color: var(--bm-primary);
	margin-left: auto;
	transition: transform var(--bm-transition);
}
.bm-sub-link:hover .bm-sub-link__arrow { transform: translateX(4px); }
.bm-sub-link strong {
	display: block;
	color: var(--bm-dark);
	font-family: var(--bm-font-heading);
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 3px;
}
.bm-sub-link span {
	color: var(--bm-muted);
	font-size: .8125rem;
}

/* ---------- Mission / Vision pair ---------- */

.bm-mv-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
}
.bm-mv-card {
	background: #fff;
	border: 1px solid var(--bm-border);
	border-top: 4px solid var(--bm-primary);
	border-radius: var(--bm-radius-lg);
	padding: 30px;
}
.bm-mv-card--accent { border-top-color: var(--bm-accent); }
.bm-mv-card h2 { font-size: 1.3125rem; margin: 0 0 12px; }
.bm-mv-card p { color: var(--bm-muted); font-size: .96875rem; line-height: 1.65; margin: 0; }

@media (max-width: 700px) {
	.bm-mv-grid { grid-template-columns: 1fr; }
}

/* ---------- Policy / boxed text ---------- */

.bm-policy {
	background: var(--bm-bg-soft);
	border: 1px solid var(--bm-border);
	border-radius: var(--bm-radius);
	padding: 26px 28px;
}
.bm-policy h3 { font-size: 1.125rem; margin: 0 0 12px; display: flex; align-items: center; gap: 10px; }
.bm-policy p { font-size: .90625rem; line-height: 1.7; color: var(--bm-muted); margin: 0; }
.bm-policy__badge {
	font-size: .6875rem;
	font-weight: 700;
	color: var(--bm-muted);
	background: #fff;
	border: 1px solid var(--bm-border);
	padding: 3px 9px;
	border-radius: 999px;
}

/* ---------- Contact cards ---------- */

.bm-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px;
	align-items: start;
}
.bm-contact-cards {
	display: flex; flex-direction: column; gap: 18px;
}
.bm-contact-card {
	background: #fff;
	border: 1px solid var(--bm-border);
	border-radius: 18px;
	padding: 26px;
}
.bm-contact-card h3 {
	font-size: 1.0625rem;
	margin: 0 0 12px;
	display: flex; align-items: center; gap: 9px;
}
.bm-contact-card h3 .bm-icon-tint { color: var(--bm-primary); }
.bm-contact-card p {
	font-size: .9375rem; line-height: 1.6;
	color: var(--bm-muted); margin: 0;
}
.bm-contact-row {
	display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.bm-contact-card--tel,
.bm-contact-card--mail {
	padding: 22px 24px;
}
.bm-contact-card__list {
	display: flex; flex-direction: column; gap: 8px;
	font-size: .90625rem; color: var(--bm-primary); font-weight: 700;
}
.bm-contact-card__list a { color: var(--bm-primary); }
.bm-contact-card__list a:hover { color: var(--bm-primary-dark); }

.bm-map-placeholder {
	height: 200px;
	border-radius: 18px;
	border: 1px solid var(--bm-border);
	background: linear-gradient(135deg, var(--bm-bg-tint), #fff);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}
.bm-map-placeholder::before {
	content: '';
	position: absolute; inset: 0;
	background-image:
		linear-gradient(var(--bm-border) 1px, transparent 1px),
		linear-gradient(90deg, var(--bm-border) 1px, transparent 1px);
	background-size: 34px 34px;
	opacity: .5;
}
.bm-map-placeholder__pin {
	position: relative;
	display: flex; flex-direction: column; align-items: center; gap: 6px;
	color: var(--bm-primary);
}
.bm-map-placeholder__pin svg { width: 30px; height: 30px; }
.bm-map-placeholder__pin span {
	font-size: .84375rem;
	font-weight: 700;
	color: var(--bm-dark);
}

@media (max-width: 800px) {
	.bm-contact-grid { grid-template-columns: 1fr; }
	.bm-contact-row { grid-template-columns: 1fr; }
}

/* ---------- Form wrap ---------- */

.bm-form-wrap {
	background: #fff;
	border: 1px solid var(--bm-border);
	border-radius: var(--bm-radius-lg);
	padding: 32px;
	box-shadow: var(--bm-shadow-sm);
}
.bm-form-row { margin-bottom: 16px; }
.bm-form-row label {
	display: block;
	font-size: .8125rem;
	font-weight: 700;
	color: var(--bm-dark);
	margin-bottom: 7px;
}
.bm-form-row-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.bm-form-consent {
	background: var(--bm-bg-soft);
	border: 1px solid var(--bm-border);
	border-radius: var(--bm-radius-sm);
	padding: 14px 16px;
	font-size: .84375rem;
	color: var(--bm-muted);
	line-height: 1.55;
}
.bm-form-consent label, .bm-form-consent .wpcf7-list-item-label {
	display: inline;
	font-weight: 400;
}
@media (max-width: 600px) {
	.bm-form-wrap { padding: 22px; }
	.bm-form-row-2 { grid-template-columns: 1fr; }
}

/* ---------- Forms (input/textarea/select) ---------- */

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="date"],
input[type="file"],
textarea,
select {
	width: 100%;
	border: 1px solid var(--bm-border);
	border-radius: 10px;
	padding: 12px 14px;
	background: #fff;
	color: var(--bm-text);
	font-family: var(--bm-font-body);
	font-size: .90625rem;
	transition: border-color var(--bm-transition), box-shadow var(--bm-transition);
}
::placeholder { color: #9aa7b4; }
textarea { min-height: 100px; resize: vertical; }
input:focus, textarea:focus, select:focus {
	outline: none;
	border-color: var(--bm-primary);
	box-shadow: 0 0 0 4px rgba(14, 99, 214, .12);
}

/* ---------- Breadcrumb ---------- */

.bm-breadcrumb {
	color: var(--bm-muted);
	font-size: .875rem;
}
.bm-breadcrumb a { color: var(--bm-muted); }
.bm-breadcrumb a:hover { color: var(--bm-primary); }
.bm-bc-sep { color: var(--bm-border); margin: 0 4px; }

/* ---------- List (checked items) ---------- */

.bm-list-checked {
	list-style: none;
	padding: 0;
	margin: 24px 0;
	display: grid;
	gap: 12px;
}
.bm-list-checked li {
	position: relative;
	padding-left: 32px;
	color: var(--bm-text);
}
.bm-list-checked li::before {
	content: '';
	position: absolute;
	left: 0; top: 6px;
	width: 18px; height: 18px;
	border-radius: 50%;
	background: var(--bm-primary);
	mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M13.5 4L6 11.5 2.5 8l1-1L6 9.5 12.5 3l1 1z' fill='white'/></svg>") no-repeat center / 12px 12px;
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M13.5 4L6 11.5 2.5 8l1-1L6 9.5 12.5 3l1 1z' fill='white'/></svg>") no-repeat center / 12px 12px;
}

/* ---------- Numbered steps (Şikayet süreci) ---------- */

.bm-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 18px;
	margin: 32px 0;
}
.bm-step {
	background: #fff;
	border: 1px solid var(--bm-border);
	border-radius: var(--bm-radius);
	padding: 22px;
	text-align: center;
}
.bm-step__num {
	font-family: var(--bm-font-heading);
	font-weight: 800;
	font-size: 2rem;
	color: var(--bm-accent);
	margin-bottom: 6px;
	line-height: 1;
}
.bm-step p { font-size: .875rem; color: var(--bm-muted); margin: 0; }

/* ---------- CTA Band (large dark) ---------- */

.bm-cta-band {
	background: linear-gradient(135deg, var(--bm-primary-dark), var(--bm-primary));
	color: #fff;
	padding: clamp(56px, 8vw, 88px) 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.bm-cta-band::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 80% 50%, rgba(56, 189, 248, .18) 0%, transparent 50%);
	pointer-events: none;
}
.bm-cta-band > * { position: relative; z-index: 1; }
.bm-cta-band h2 { color: #fff; }
.bm-cta-band p {
	color: rgba(255, 255, 255, .85);
	max-width: 640px;
	margin: 0 auto 28px;
	font-size: 1.0625rem;
}

/* ---------- Spec card ---------- */

.bm-spec-card {
	background: var(--bm-bg-soft);
	border: 1px solid var(--bm-border);
	border-radius: var(--bm-radius);
	padding: 22px;
	margin: 24px 0;
}
.bm-spec-title {
	font-size: .8125rem !important;
	font-weight: 800;
	color: var(--bm-dark);
	margin: 0 0 12px;
	letter-spacing: .07em;
	text-transform: uppercase;
}
.bm-spec-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 8px;
}
.bm-spec-list li {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 8px 0;
	border-bottom: 1px dashed var(--bm-border);
	font-size: .90625rem;
}
.bm-spec-list li:last-child { border-bottom: none; }
.bm-spec-key { color: var(--bm-muted); font-weight: 600; }
.bm-spec-val { color: var(--bm-dark); font-weight: 700; text-align: right; }

/* ---------- App pills (uygulama rozetleri — detail page) ---------- */

.bm-app-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 18px 0 0;
}
.bm-app-pill {
	background: var(--bm-bg-tint);
	color: var(--bm-primary-dark);
	font-size: .8125rem;
	font-weight: 700;
	padding: 7px 13px;
	border-radius: 999px;
}

/* ---------- Utility classes ---------- */

.bm-text-center { text-align: center; }
.bm-text-muted  { color: var(--bm-muted); }
.bm-mt-0 { margin-top: 0; }
.bm-mb-0 { margin-bottom: 0; }
.bm-mb-1 { margin-bottom: 8px; }
.bm-mb-2 { margin-bottom: 16px; }
.bm-mb-3 { margin-bottom: 24px; }
.bm-mb-4 { margin-bottom: 32px; }
.bm-mb-5 { margin-bottom: 48px; }

/* ---------- TOPBAR (header üstü) ---------- */

.bm-topbar {
	background: var(--bm-primary-dark);
	color: rgba(255, 255, 255, .85);
	font-size: .78125rem;  /* 12.5px */
	letter-spacing: .02em;
}
.bm-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 9px 24px;
	flex-wrap: wrap;
}
.bm-topbar__note {
	display: flex;
	align-items: center;
	gap: 8px;
	opacity: .9;
}
.bm-topbar__note svg { color: var(--bm-accent); }
.bm-topbar__contact {
	display: flex;
	align-items: center;
	gap: 22px;
}
.bm-topbar__contact a {
	color: rgba(255, 255, 255, .9);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
	font-size: .78125rem;
	transition: color var(--bm-transition);
}
.bm-topbar__contact a:hover { color: #fff; }
.bm-topbar__contact svg { color: var(--bm-accent); }

@media (max-width: 700px) {
	.bm-topbar__note { display: none; }
	.bm-topbar__inner { justify-content: center; }
}

/* ---------- SITE HEADER ---------- */

.bm-site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, .98);
	border-bottom: 1px solid var(--bm-border);
	transition: box-shadow var(--bm-transition);
}
/* Blur efekti SADECE desktop'ta — mobilde içindeki position:fixed nav'ı clipper.
   Tekrar etmemek için backdrop-filter sadece nav inline olduğunda aktif. */
@media (min-width: 861px) {
	.bm-site-header {
		background: rgba(255, 255, 255, .92);
		backdrop-filter: blur(14px);
		-webkit-backdrop-filter: blur(14px);
	}
}
.bm-site-header.is-scrolled {
	box-shadow: 0 4px 14px rgba(2, 8, 20, .06);
}
.bm-site-header__inner {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 14px 24px;
}

/* Logo */
.bm-logo {
	display: flex;
	align-items: center;
	gap: 11px;
	text-decoration: none;
	color: inherit;
}
.bm-logo__petri {
	position: relative;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #eef1f5;
	box-shadow: inset 0 0 0 3px rgba(255, 255, 255, .8), 0 4px 10px rgba(2, 8, 20, .14);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.bm-logo__petri-agar {
	width: 74%;
	height: 74%;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, .6), rgba(255, 255, 255, 0) 45%), var(--agar, var(--bm-primary));
	box-shadow: inset 0 3px 7px rgba(0, 0, 0, .25);
}
.bm-logo__text {
	display: flex;
	flex-direction: column;
	line-height: 1;
}
.bm-logo__text strong {
	font-family: var(--bm-font-heading);
	font-weight: 800;
	font-size: 1.25rem;
	color: var(--bm-dark);
	letter-spacing: -0.01em;
}
.bm-logo__text em {
	font-style: normal;
	font-size: .65625rem;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--bm-muted);
	font-weight: 700;
	margin-top: 3px;
}

/* Yüklenen logo görseli (Customizer > Site Logosu) */
.bm-logo__img {
	max-height: 48px;
	width: auto;
	height: auto;
	display: block;
	object-fit: contain;
}
.bm-logo__img--footer {
	max-height: 44px;
}
@media (max-width: 600px) {
	.bm-logo__img { max-height: 40px; }
}

/* Navigation */
.bm-nav { margin-left: auto; }
.bm-nav__list {
	display: flex;
	gap: 2px;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}
.bm-nav__list li {
	position: relative;
}
.bm-nav__list a,
.bm-nav__list > li > a {
	display: block;
	padding: 8px 12px;
	font-family: var(--bm-font-body);
	font-size: .90625rem;
	font-weight: 600;
	color: var(--bm-dark);
	border-radius: 9px;
	text-decoration: none;
	transition: all var(--bm-transition);
}
.bm-nav__list > li > a:hover,
.bm-nav__list > li.current-menu-item > a,
.bm-nav__list > li.current_page_item > a,
.bm-nav__list > li.current-menu-ancestor > a,
.bm-nav__list > li.current_page_parent > a {
	color: var(--bm-primary);
	background: var(--bm-bg-tint);
}
/* Dropdown */
.bm-nav__list .sub-menu,
.bm-nav__list ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: #fff;
	border: 1px solid var(--bm-border);
	border-radius: 12px;
	padding: 8px;
	margin: 8px 0 0;
	list-style: none;
	box-shadow: var(--bm-shadow-lg);
	z-index: 50;
}
.bm-nav__list li:hover > .sub-menu,
.bm-nav__list li:hover > ul,
.bm-nav__list li:focus-within > .sub-menu,
.bm-nav__list li:focus-within > ul {
	display: block;
}
.bm-nav__list .sub-menu a {
	padding: 9px 14px;
	font-size: .875rem;
	font-weight: 600;
	color: var(--bm-text);
	white-space: nowrap;
	border-radius: 8px;
}
.bm-nav__list .sub-menu a:hover {
	background: var(--bm-bg-tint);
	color: var(--bm-primary);
}

/* Header actions */
.bm-site-header__actions {
	display: flex;
	align-items: center;
	gap: 10px;
}
.bm-cart-btn,
.bm-search-toggle {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--bm-border);
	background: #fff;
	border-radius: 11px;
	color: var(--bm-dark);
	transition: border-color var(--bm-transition), color var(--bm-transition);
	cursor: pointer;
	padding: 0;
}
.bm-cart-btn:hover,
.bm-search-toggle:hover {
	border-color: var(--bm-primary);
	color: var(--bm-primary);
}
.bm-cart-btn__count {
	position: absolute;
	top: -6px;
	right: -6px;
	min-width: 20px;
	height: 20px;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--bm-primary);
	color: #fff;
	font-size: .71875rem;
	font-weight: 800;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.bm-site-header__cta {
	padding: 10px 18px !important;
	font-size: .875rem !important;
}

/* Mobile nav toggle — diğer header butonlarıyla (search/cart) aynı görünüm */
.bm-nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	background: #fff;
	border: 1px solid var(--bm-border);
	border-radius: 11px;
	cursor: pointer;
	color: var(--bm-dark);
	transition: border-color var(--bm-transition), color var(--bm-transition);
}
.bm-nav-toggle:hover {
	border-color: var(--bm-primary);
	color: var(--bm-primary);
}

@media (max-width: 980px) {
	.bm-site-header__cta { display: none; }
}
@media (max-width: 860px) {
	/* Header sıralaması: logo solda, search/cart/menu sağa dayalı */
	.bm-site-header__actions { margin-left: auto; }
	.bm-nav-toggle { display: inline-flex; }

	.bm-nav {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		width: min(320px, 80%);
		background: #fff;
		padding: 80px 24px 24px;
		box-shadow: -10px 0 30px rgba(2, 8, 20, .1);
		transform: translateX(100%);
		transition: transform 280ms cubic-bezier(.4, 0, .2, 1);
		/* Header'ın stacking context'inde — header z-index:100 olduğu için bu yeterli */
		z-index: 5;
		overflow-y: auto;
	}
	body.bm-nav-open .bm-nav { transform: translateX(0); }
	/* Overlay header'ın DIŞINDA — z-index 90, header (100) altında, sayfa içeriğinin üstünde */
	body.bm-nav-open::after {
		content: '';
		position: fixed; inset: 0;
		background: rgba(11, 27, 43, .45);
		z-index: 90;
		pointer-events: auto;
	}
	.bm-nav__list { flex-direction: column; gap: 4px; align-items: stretch; }
	.bm-nav__list > li > a { padding: 12px 14px; font-size: 1rem; }
	.bm-nav__list .sub-menu,
	.bm-nav__list ul {
		display: block;
		position: static;
		box-shadow: none;
		border: none;
		padding: 4px 0 0 14px;
		margin: 0;
		background: transparent;
	}
}

/* ---------- SEARCH OVERLAY ---------- */

.bm-search-overlay {
	position: fixed;
	inset: 0;
	z-index: 110;
	background: rgba(11, 27, 43, .92);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	display: none;
	align-items: flex-start;
	justify-content: center;
	padding: 14vh 24px 40px;
	animation: bmSearchIn 200ms ease-out;
}
.bm-search-overlay[hidden] { display: none !important; }
.bm-search-overlay.is-open { display: flex; }
@keyframes bmSearchIn {
	from { opacity: 0; }
	to { opacity: 1; }
}
.bm-search-overlay__close {
	position: absolute;
	top: 24px;
	right: 24px;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .15);
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all var(--bm-transition);
}
.bm-search-overlay__close:hover {
	background: rgba(255, 255, 255, .15);
	transform: rotate(90deg);
}
.bm-search-overlay__inner {
	width: 100%;
	max-width: 720px;
}
.bm-search-form .bm-eyebrow {
	background: var(--bm-accent);
	color: var(--bm-primary-dark);
	margin-bottom: 18px;
}
.bm-search-form__row {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #fff;
	border-radius: 16px;
	padding: 8px 8px 8px 18px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
}
.bm-search-form__icon {
	color: var(--bm-muted);
	flex-shrink: 0;
}
.bm-search-form__row input[type="search"] {
	flex: 1;
	border: none !important;
	padding: 14px 4px !important;
	font-size: 1.0625rem;
	background: transparent;
	box-shadow: none !important;
}
.bm-search-form__row input[type="search"]:focus {
	border: none !important;
	box-shadow: none !important;
}
.bm-search-form__row button[type="submit"] {
	flex-shrink: 0;
	padding: 12px 24px !important;
}
.bm-search-form__hint {
	color: rgba(255, 255, 255, .7);
	font-size: .875rem;
	margin: 18px 0 0;
	text-align: center;
}
.bm-search-form__hint strong { color: #fff; }
.bm-search-form__hint em { color: var(--bm-accent); font-style: normal; }

body.bm-search-open { overflow: hidden; }

@media (max-width: 600px) {
	.bm-search-overlay { padding: 9vh 16px 24px; }
	.bm-search-form__row { padding: 6px 6px 6px 14px; }
	.bm-search-form__row button[type="submit"] { padding: 10px 16px !important; }
}

/* ---------- SITE FOOTER ---------- */

.bm-site-footer {
	background: var(--bm-primary-dark);
	color: rgba(255, 255, 255, .8);
}
.bm-site-footer .bm-container {
	padding-top: 56px;
}
.bm-site-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: 32px;
	padding-bottom: 36px;
}
.bm-site-footer__brand .bm-logo__text strong { color: #fff; }
.bm-logo--footer .bm-logo__petri {
	background: rgba(255, 255, 255, .15);
	box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .25);
}
.bm-logo__petri--light .bm-logo__petri-agar {
	background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, .6), rgba(255, 255, 255, 0) 45%), var(--bm-accent);
}
.bm-site-footer__about {
	font-size: .84375rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, .7);
	margin: 14px 0 18px;
	max-width: 280px;
}
.bm-social {
	display: flex;
	gap: 10px;
}
.bm-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: rgba(255, 255, 255, .08);
	color: rgba(255, 255, 255, .85);
	transition: background var(--bm-transition), color var(--bm-transition);
}
.bm-social a:hover {
	background: var(--bm-accent);
	color: var(--bm-primary-dark);
}
.bm-site-footer__col h4 {
	font-size: .8125rem;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .6);
	margin: 0 0 14px;
	font-weight: 700;
	font-family: var(--bm-font-body);
}
.bm-footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 9px;
}
.bm-footer-menu a {
	color: rgba(255, 255, 255, .85);
	font-size: .875rem;
	text-decoration: none;
	transition: color var(--bm-transition);
}
.bm-footer-menu a:hover { color: #fff; }
.bm-site-footer__address {
	font-size: .84375rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, .8);
	margin: 0 0 14px;
}
.bm-site-footer__address strong { color: #fff; }
.bm-site-footer__contact {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.bm-site-footer__contact a {
	color: #fff;
	font-size: .84375rem;
	font-weight: 600;
	text-decoration: none;
}
.bm-site-footer__contact a:hover { color: var(--bm-accent); }

.bm-site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, .13);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	padding: 18px 0;
	font-size: .78125rem;
	color: rgba(255, 255, 255, .6);
}
.bm-site-footer__legal {
	display: flex;
	align-items: center;
	gap: 8px;
}
.bm-site-footer__legal a {
	color: rgba(255, 255, 255, .75);
}
.bm-site-footer__legal a:hover { color: #fff; }

@media (max-width: 900px) {
	.bm-site-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
	.bm-site-footer__grid { grid-template-columns: 1fr; gap: 28px; }
	.bm-site-footer__bottom { flex-direction: column; text-align: center; }
}

/* ---------- Blog (yazılar) ---------- */

.bm-blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 28px;
	margin: 40px 0;
}
.bm-blog-card {
	background: #fff;
	border: 1px solid var(--bm-border);
	border-radius: var(--bm-radius-lg);
	overflow: hidden;
	transition: transform var(--bm-transition), box-shadow var(--bm-transition), border-color var(--bm-transition);
	display: flex;
	flex-direction: column;
}
.bm-blog-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--bm-shadow-lg);
	border-color: var(--bm-primary);
}
.bm-blog-card__image {
	display: block;
	background: linear-gradient(160deg, var(--bm-bg-tint), #fff);
	height: 200px;
	overflow: hidden;
	position: relative;
}
.bm-blog-card__image img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 400ms ease;
}
.bm-blog-card:hover .bm-blog-card__image img { transform: scale(1.04); }
.bm-blog-card__image-placeholder {
	width: 100%; height: 100%;
	display: flex; align-items: center; justify-content: center;
	color: var(--bm-primary);
	opacity: .35;
}
.bm-blog-card__body {
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
}
.bm-blog-card__meta {
	font-size: .75rem;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--bm-primary);
	font-weight: 800;
	display: flex;
	gap: 8px;
	align-items: center;
}
.bm-blog-card__meta time { color: var(--bm-muted); font-weight: 600; letter-spacing: 0; text-transform: none; }
.bm-blog-card__title {
	font-family: var(--bm-font-heading);
	font-weight: 700;
	font-size: 1.1875rem;
	color: var(--bm-dark);
	line-height: 1.3;
	margin: 0;
}
.bm-blog-card__title a { color: inherit; text-decoration: none; }
.bm-blog-card__title a:hover { color: var(--bm-primary); }
.bm-blog-card__excerpt {
	color: var(--bm-muted);
	font-size: .90625rem;
	line-height: 1.6;
	margin: 0;
}
.bm-blog-card__cta {
	margin-top: auto;
	font-weight: 800;
	font-size: .84375rem;
	color: var(--bm-primary);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding-top: 8px;
}
.bm-blog-card__cta:hover { color: var(--bm-primary-dark); }

/* Single post */
.bm-post {
	max-width: 760px;
	margin: 0 auto;
	padding: 56px 24px 80px;
}
.bm-post__meta {
	color: var(--bm-muted);
	font-size: .84375rem;
	margin-bottom: 14px;
	display: flex;
	gap: 10px;
	align-items: center;
}
.bm-post__meta a { color: var(--bm-primary); font-weight: 600; }
.bm-post h1 {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	margin: 0 0 18px;
}
.bm-post__featured {
	margin: 24px 0 32px;
	border-radius: var(--bm-radius);
	overflow: hidden;
}
.bm-post__featured img { width: 100%; height: auto; display: block; }
.bm-post__body {
	font-size: 1.0625rem;
	line-height: 1.75;
	color: var(--bm-text);
}
.bm-post__body p { margin: 0 0 1.2em; }
.bm-post__body h2 { font-size: 1.5rem; margin: 2rem 0 1rem; }
.bm-post__body h3 { font-size: 1.25rem; margin: 1.8rem 0 .8rem; }
.bm-post__body img { border-radius: var(--bm-radius); margin: 1.5rem 0; }
.bm-post__body blockquote {
	border-left: 3px solid var(--bm-primary);
	padding: 4px 0 4px 20px;
	margin: 1.5em 0;
	color: var(--bm-muted);
	font-style: italic;
}

/* ---------- Legacy aliases (eski sayfalar bozulmasın) ---------- */

.bm-heading-accent {
	position: relative;
	padding-bottom: 14px;
	margin-bottom: 20px;
}
.bm-heading-accent::after {
	content: '';
	position: absolute;
	left: 0; bottom: 0;
	width: 56px; height: 3px;
	background: linear-gradient(90deg, var(--bm-primary), var(--bm-accent));
	border-radius: 2px;
}
.bm-text-center .bm-heading-accent::after { left: 50%; transform: translateX(-50%); }

.bm-feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 18px;
	margin-top: 32px;
}
.bm-feature-card {
	background: #fff;
	border: 1px solid var(--bm-border);
	border-radius: var(--bm-radius);
	padding: 28px;
	transition: transform var(--bm-transition), box-shadow var(--bm-transition), border-color var(--bm-transition);
}
.bm-feature-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--bm-shadow-lg);
	border-color: var(--bm-primary);
}
.bm-feature-card h3 { font-size: 1.1875rem; margin: 0 0 12px; }
.bm-feature-card p { color: var(--bm-muted); font-size: .90625rem; line-height: 1.55; margin: 0; }
.bm-feature-icon {
	width: 48px; height: 48px;
	border-radius: 12px;
	background: var(--bm-bg-tint);
	display: inline-flex; align-items: center; justify-content: center;
	color: var(--bm-primary);
	margin-bottom: 18px;
}
.bm-feature-icon svg { width: 24px; height: 24px; }

.bm-category-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
}
.bm-category-card {
	display: flex;
	background: #fff;
	border: 1px solid var(--bm-border);
	border-radius: var(--bm-radius-lg);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: all var(--bm-transition);
}
.bm-category-card:hover {
	border-color: var(--bm-primary);
	box-shadow: var(--bm-shadow-lg);
	color: inherit;
}
.bm-category-card__visual {
	width: 170px;
	flex-shrink: 0;
	background: linear-gradient(160deg, var(--bm-bg-tint), #fff);
	display: flex; align-items: center; justify-content: center;
	padding: 24px;
	position: relative;
}
.bm-category-card__visual svg { width: 90px; height: 90px; color: var(--bm-primary); }
.bm-category-card__badge {
	position: absolute;
	top: 14px; right: 14px;
	background: #fff;
	color: var(--bm-primary);
	font-size: .6875rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	padding: 5px 10px;
	border-radius: 999px;
	border: 1px solid var(--bm-border);
}
.bm-category-card__body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.bm-category-card__body h3 { font-size: 1.3125rem; margin: 0 0 8px; color: var(--bm-dark); }
.bm-category-card__body p { color: var(--bm-muted); font-size: .90625rem; line-height: 1.55; margin: 0 0 14px; flex: 1; }

@media (max-width: 700px) {
	.bm-category-grid { grid-template-columns: 1fr; }
	.bm-category-card { flex-direction: column; }
	.bm-category-card__visual { width: 100%; min-height: 140px; }
}

.bm-contact-item {
	padding: 28px;
	background: #fff;
	border: 1px solid var(--bm-border);
	border-radius: var(--bm-radius);
	transition: border-color var(--bm-transition), box-shadow var(--bm-transition);
	min-height: 270px;
}
.bm-contact-item:hover { border-color: var(--bm-primary); box-shadow: var(--bm-shadow); }
.bm-contact-item__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 48px; height: 48px;
	background: var(--bm-bg-tint);
	border-radius: var(--bm-radius-sm);
	color: var(--bm-primary);
	margin-bottom: 18px;
}
.bm-contact-item__icon svg { width: 24px; height: 24px; }
.bm-contact-item h4 { font-size: 1rem; margin: 0 0 8px; }
.bm-contact-item p, .bm-contact-item a {
	color: var(--bm-muted);
	font-size: .9375rem;
	line-height: 1.6;
	margin: 0;
	display: block;
}
.bm-contact-item a:hover { color: var(--bm-primary); }

.bm-info-strip {
	background: var(--bm-bg-soft);
	padding: 56px 0;
	border-top: 1px solid var(--bm-border);
	border-bottom: 1px solid var(--bm-border);
}
.bm-info-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 32px;
}
.bm-info-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}
.bm-info-item__icon {
	width: 48px; height: 48px;
	background: #fff;
	border: 1px solid var(--bm-border);
	border-radius: var(--bm-radius-sm);
	display: flex; align-items: center; justify-content: center;
	color: var(--bm-primary);
	flex-shrink: 0;
}
.bm-info-item__icon svg { width: 22px; height: 22px; }
.bm-info-item__content h5 {
	font-size: .8125rem;
	color: var(--bm-muted);
	text-transform: uppercase;
	letter-spacing: .12em;
	margin: 0 0 6px;
	font-weight: 700;
}
.bm-info-item__content p { margin: 0; font-weight: 600; color: var(--bm-dark); line-height: 1.5; }
.bm-info-item__content a { color: var(--bm-dark); display: block; font-weight: 600; }
.bm-info-item__content a:hover { color: var(--bm-primary); }

/* About visual fallback (görsel yer tutucusu) */
.bm-about-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 56px;
	align-items: center;
}
.bm-about-visual {
	background: linear-gradient(160deg, var(--bm-bg-tint), var(--bm-bg-soft));
	border-radius: var(--bm-radius-lg);
	padding: 64px 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 320px;
	overflow: hidden;
}
.bm-about-visual svg {
	width: 140px;
	height: 140px;
	color: var(--bm-primary);
	opacity: .55;
}
/* Görsel modifier — stock/gerçek görselle dolduğunda padding'siz, çerçeveyi tamamen kaplar */
.bm-about-visual--image {
	padding: 0;
	background: var(--bm-bg-soft);
	aspect-ratio: 4 / 3;
}
.bm-about-visual--image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 600ms ease;
}
.bm-about-visual--image:hover img {
	transform: scale(1.03);
}
@media (max-width: 800px) {
	.bm-about-grid { grid-template-columns: 1fr; gap: 32px; }
	.bm-about-visual { min-height: 240px; }
}

/* ---------- Pagination (blog) ---------- */

.bm-pagination,
.bm-pagination ul {
	margin: 40px 0 0;
	display: flex !important;
	justify-content: center;
	gap: 6px;
	list-style: none;
	padding: 0;
}
.bm-pagination a, .bm-pagination span,
.pagination .page-numbers {
	padding: 10px 16px;
	border: 1px solid var(--bm-border);
	background: #fff;
	border-radius: 10px;
	font-weight: 700;
	color: var(--bm-text);
	text-decoration: none;
}
.bm-pagination a:hover, .pagination .page-numbers:hover {
	background: var(--bm-bg-soft);
	border-color: var(--bm-primary);
}
.bm-pagination .current, .pagination .current {
	background: var(--bm-primary) !important;
	color: #fff !important;
	border-color: var(--bm-primary) !important;
}

/* ---------- Responsive helpers ---------- */

@media (max-width: 768px) {
	.bm-section { padding: 48px 0; }
	.bm-petri-lg { width: 180px; height: 180px; }
	.bm-petri-xl { width: 240px; height: 240px; }
	.bm-hero__stats { gap: 18px; }
}
