/* =========================================================================
   EN UCUZ KARGO — Ana Stil Dosyası
   İçindekiler:
   01. Tasarım değişkenleri
   02. Sıfırlama ve temel
   03. Tipografi ve yardımcılar
   04. Butonlar
   05. Üst şerit (topbar)
   06. Üst bilgi ve menü
   07. Hero + irsaliye formu (imza bölüm)
   08. Karşılaştırma sonuçları
   09. Firma şeridi
   10. Bölüm başlıkları ve genel bölümler
   11. Nasıl çalışır
   12. Neden biz
   13. Fiyat tablosu
   14. Desi hesaplama
   15. S.S.S.
   16. Blog kartları
   17. Çağrı bandı (CTA)
   18. Sayfa başlığı, içerik, kenar çubuğu düzeni
   19. Alt bilgi
   20. Yorumlar, sayfalama, 404, arama
   21. WordPress çekirdek sınıfları
   22. Animasyon ve erişilebilirlik
   23. Duyarlı (responsive) kurallar
   ========================================================================= */

/* ---------- 01. Tasarım değişkenleri ---------- */
:root {
	--ink: #0F1D3D;
	--ink-2: #16264C;
	--ink-3: #1E3060;
	--paper: #F6F7FB;
	--white: #FFFFFF;
	--tape: #FFB020;
	--tape-dark: #E69500;
	--tape-soft: #FFF3DA;
	--blue: #2457E6;
	--blue-dark: #1A3FB0;
	--line: #E3E7F2;
	--line-dark: rgba(255, 255, 255, 0.14);
	--muted: #5B6478;
	--muted-light: #9AA6C4;
	--success: #0E9F5B;
	--danger: #D64545;

	--font-display: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--font-mono: 'JetBrains Mono', 'SFMono-Regular', Consolas, monospace;

	--radius-sm: 8px;
	--radius: 14px;
	--radius-lg: 20px;
	--shadow-sm: 0 2px 8px rgba(15, 29, 61, 0.06);
	--shadow: 0 12px 32px rgba(15, 29, 61, 0.10);
	--shadow-lg: 0 24px 60px rgba(15, 29, 61, 0.18);

	--container: 1180px;
	--container-narrow: 780px;
	--topbar-h: 38px;
	--header-h: 76px;
}

/* ---------- 02. Sıfırlama ve temel ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + 16px);
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.65;
	color: var(--ink);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: var(--blue);
	text-decoration: none;
	transition: color 0.18s ease;
}

a:hover {
	color: var(--blue-dark);
}

ul,
ol {
	padding: 0;
	margin: 0;
}

figure {
	margin: 0;
}

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

.enk-container--narrow {
	max-width: var(--container-narrow);
}

.enk-main {
	display: block;
	min-height: 40vh;
}

/* ---------- 03. Tipografi ve yardımcılar ---------- */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	line-height: 1.15;
	margin: 0 0 0.5em;
	color: var(--ink);
	letter-spacing: -0.01em;
}

p {
	margin: 0 0 1em;
}

.enk-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-mono);
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--blue);
	padding: 6px 12px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--white);
}

.enk-eyebrow--amber {
	color: var(--ink);
	background: var(--tape);
	border-color: var(--tape);
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background: var(--white);
	clip: auto !important;
	clip-path: none;
	color: var(--ink);
	display: block;
	font-size: 14px;
	font-weight: 700;
	height: auto;
	left: 8px;
	line-height: normal;
	padding: 14px 20px;
	text-decoration: none;
	top: 8px;
	width: auto;
	z-index: 100000;
	box-shadow: var(--shadow);
	border-radius: var(--radius-sm);
}

.skip-link {
	position: absolute;
	left: -9999px;
}

.enk-hide-sm {
	display: inline-flex;
}

/* ---------- 04. Butonlar ---------- */
.enk-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 13px 26px;
	border: 2px solid transparent;
	border-radius: var(--radius-sm);
	font-family: var(--font-display);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1.2;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
	text-decoration: none;
}

.enk-btn:active {
	transform: translateY(1px);
}

.enk-btn--amber {
	background: var(--tape);
	color: var(--ink);
	box-shadow: 0 6px 18px rgba(255, 176, 32, 0.35);
}

.enk-btn--amber:hover {
	background: var(--tape-dark);
	color: var(--ink);
	box-shadow: 0 8px 22px rgba(230, 149, 0, 0.4);
}

.enk-btn--ink {
	background: var(--ink);
	color: var(--white);
}

.enk-btn--ink:hover {
	background: var(--ink-3);
	color: var(--white);
}

.enk-btn--ghost {
	background: transparent;
	color: var(--ink);
	border-color: var(--line);
}

.enk-btn--ghost:hover {
	border-color: var(--ink);
	color: var(--ink);
}

.enk-btn--ghost-light {
	background: transparent;
	color: var(--white);
	border-color: var(--line-dark);
}

.enk-btn--ghost-light:hover {
	border-color: var(--tape);
	color: var(--tape);
}

.enk-btn--block {
	width: 100%;
}

/* ---------- 05. Üst şerit ---------- */
.enk-topbar {
	background: var(--ink);
	color: var(--muted-light);
	font-size: 13px;
	min-height: var(--topbar-h);
	display: flex;
	align-items: center;
}

.enk-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-block: 6px;
}

.enk-topbar__left,
.enk-topbar__right {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.enk-topbar__item {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--muted-light);
	font-weight: 500;
}

a.enk-topbar__item:hover {
	color: var(--tape);
}

.enk-social {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.enk-social__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 8px;
	color: var(--muted-light);
	transition: color 0.15s ease, background 0.15s ease;
}

.enk-social__link:hover {
	color: var(--ink);
	background: var(--tape);
}

/* ---------- 06. Üst bilgi ve menü ---------- */
.enk-header {
	position: sticky;
	top: 0;
	z-index: 900;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--line);
	transition: box-shadow 0.2s ease;
}

.enk-header.is-stuck {
	box-shadow: var(--shadow-sm);
}

.enk-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: var(--header-h);
}

.enk-brand__link,
.enk-brand .custom-logo-link {
	display: inline-flex;
	align-items: center;
	gap: 11px;
}

.enk-brand .custom-logo {
	max-height: 52px;
	width: auto;
}

.enk-brand__text {
	font-family: var(--font-display);
	font-size: 21px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--ink);
	white-space: nowrap;
}

.enk-nav {
	display: flex;
	align-items: center;
	gap: 28px;
}

.enk-nav__list {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
}

.enk-nav__list li {
	position: relative;
}

.enk-nav__list > li > a {
	display: inline-flex;
	align-items: center;
	padding: 10px 14px;
	font-weight: 600;
	font-size: 15px;
	color: var(--ink);
	border-radius: var(--radius-sm);
}

.enk-nav__list > li > a:hover,
.enk-nav__list > li.current-menu-item > a,
.enk-nav__list > li.current_page_item > a {
	color: var(--blue);
	background: var(--paper);
}

/* Alt menü (masaüstü) */
.enk-nav__list .sub-menu {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	min-width: 220px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 8px;
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
	z-index: 50;
}

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

.enk-nav__list .sub-menu a {
	display: block;
	padding: 9px 12px;
	font-size: 14.5px;
	font-weight: 600;
	color: var(--ink);
	border-radius: var(--radius-sm);
}

.enk-nav__list .sub-menu a:hover {
	background: var(--paper);
	color: var(--blue);
}

.enk-nav__cta {
	padding: 11px 20px;
	font-size: 14px;
}

/* Mobil menü düğmesi */
.enk-nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 10px;
	background: transparent;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	cursor: pointer;
}

.enk-nav-toggle__bar {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--ink);
	border-radius: 2px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.enk-nav-toggle[aria-expanded="true"] .enk-nav-toggle__bar:nth-child(2) {
	transform: translateY(7px) rotate(45deg);
}

.enk-nav-toggle[aria-expanded="true"] .enk-nav-toggle__bar:nth-child(3) {
	opacity: 0;
}

.enk-nav-toggle[aria-expanded="true"] .enk-nav-toggle__bar:nth-child(4) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ---------- 07. Hero + irsaliye formu ---------- */
.enk-hero {
	position: relative;
	background:
		radial-gradient(900px 420px at 85% -10%, rgba(36, 87, 230, 0.28), transparent 60%),
		radial-gradient(700px 380px at -5% 110%, rgba(255, 176, 32, 0.12), transparent 55%),
		var(--ink);
	color: var(--white);
	overflow: hidden;
}

.enk-hero__route {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.enk-hero__inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: 56px;
	align-items: center;
	padding-block: 84px 96px;
}

.enk-hero__copy .enk-eyebrow--amber {
	box-shadow: 0 6px 18px rgba(255, 176, 32, 0.35);
}

.enk-hero__title {
	font-size: clamp(38px, 5vw, 58px);
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--white);
	margin: 20px 0 16px;
}

.enk-hero__desc {
	font-size: 17.5px;
	line-height: 1.7;
	color: var(--muted-light);
	max-width: 52ch;
	margin-bottom: 30px;
}

.enk-hero__stats {
	display: flex;
	gap: 36px;
	list-style: none;
	margin-bottom: 26px;
	flex-wrap: wrap;
	justify-content: center;
}

.enk-hero__stat {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.enk-hero__stat-num {
	font-family: var(--font-mono);
	font-size: 27px;
	font-weight: 700;
	color: var(--tape);
	letter-spacing: -0.02em;
}

.enk-hero__stat-label {
	font-size: 13px;
	font-weight: 600;
	color: var(--muted-light);
	letter-spacing: 0.02em;
}

.enk-hero__checks {
	display: flex;
	gap: 22px;
	list-style: none;
	flex-wrap: wrap;
}

.enk-hero__checks li {
	position: relative;
	padding-left: 24px;
	font-size: 14px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.85);
}

.enk-hero__checks li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--success) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l4 4L19 7'/%3E%3C/svg%3E") center / 10px no-repeat;
}

/* İrsaliye kartı — imza öğe */
.enk-waybill {
	position: relative;
	background: var(--white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	color: var(--ink);
	overflow: hidden;
}

.enk-waybill__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 26px 16px;
}

.enk-waybill__label {
	display: block;
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	color: var(--muted);
}

.enk-waybill__no {
	display: block;
	font-family: var(--font-mono);
	font-size: 14.5px;
	font-weight: 700;
	color: var(--ink);
	margin-top: 3px;
}

.enk-waybill__barcode {
	flex: 0 0 auto;
	width: 96px;
	height: 34px;
	background: repeating-linear-gradient(
		90deg,
		var(--ink) 0 2px,
		transparent 2px 5px,
		var(--ink) 5px 6px,
		transparent 6px 11px,
		var(--ink) 11px 14px,
		transparent 14px 17px
	);
	border-radius: 2px;
	opacity: 0.9;
}

/* Bilet kesiği: delikli ayraç */
.enk-waybill__cut {
	position: relative;
	height: 0;
	border-top: 2px dashed var(--line);
	margin: 0 10px;
}

.enk-waybill__cut i {
	position: absolute;
	top: -11px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--ink);
}

.enk-waybill__cut i:first-child {
	left: -20px;
}

.enk-waybill__cut i:last-child {
	right: -20px;
}

.enk-form {
	padding: 22px 26px 24px;
}

.enk-form__row {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 12px;
	align-items: end;
	margin-bottom: 14px;
}

.enk-form__row--dims {
	grid-template-columns: repeat(4, 1fr);
}

.enk-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}

.enk-field__label {
	font-family: var(--font-mono);
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
}

.enk-field__input {
	width: 100%;
	padding: 12px 13px;
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 600;
	color: var(--ink);
	background: var(--paper);
	border: 1.5px solid var(--line);
	border-radius: var(--radius-sm);
	transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
	appearance: none;
}

select.enk-field__input {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235B6478' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 15px;
	padding-right: 36px;
}

.enk-field__input:focus {
	outline: none;
	border-color: var(--blue);
	background: var(--white);
	box-shadow: 0 0 0 3px rgba(36, 87, 230, 0.14);
}

.enk-field--dark .enk-field__label {
	color: var(--muted-light);
}

.enk-field--dark .enk-field__input {
	background: rgba(255, 255, 255, 0.07);
	border-color: var(--line-dark);
	color: var(--white);
}

.enk-field--dark .enk-field__input:focus {
	background: rgba(255, 255, 255, 0.12);
	border-color: var(--tape);
	box-shadow: 0 0 0 3px rgba(255, 176, 32, 0.18);
}

.enk-swap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 45px;
	margin-bottom: 1px;
	background: var(--white);
	border: 1.5px solid var(--line);
	border-radius: var(--radius-sm);
	color: var(--muted);
	cursor: pointer;
	transition: color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.enk-swap:hover {
	color: var(--blue);
	border-color: var(--blue);
}

.enk-swap:active {
	transform: rotate(180deg);
}

.enk-form__error {
	display: block;
	margin: 0 0 12px;
	padding: 10px 13px;
	background: #FDECEC;
	border: 1px solid #F4C6C6;
	border-radius: var(--radius-sm);
	color: var(--danger);
	font-size: 13.5px;
	font-weight: 600;
}

.enk-form__note {
	margin: 12px 0 0;
	font-size: 12.5px;
	color: var(--muted);
	line-height: 1.55;
}

/* ---------- 08. Karşılaştırma sonuçları ---------- */
.enk-results {
	border-top: 2px dashed var(--line);
	padding: 18px 26px 24px;
	background: var(--paper);
}

.enk-results__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
	flex-wrap: wrap;
}

.enk-results__title {
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
}

.enk-results__desi {
	font-family: var(--font-mono);
	font-size: 12.5px;
	font-weight: 700;
	color: var(--ink);
}

.enk-results__desi strong {
	color: var(--blue);
}

.enk-results__list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.enk-result {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	background: var(--white);
	border: 1.5px solid var(--line);
	border-radius: var(--radius-sm);
}

.enk-result.is-best {
	border-color: var(--tape);
	background: var(--tape-soft);
}

.enk-result__rank {
	font-family: var(--font-mono);
	font-size: 12px;
	font-weight: 700;
	color: var(--muted);
	width: 22px;
	flex: 0 0 auto;
}

.enk-result__name {
	font-weight: 700;
	font-size: 14.5px;
	flex: 1 1 auto;
	min-width: 0;
}

.enk-result__badge {
	font-family: var(--font-mono);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	background: var(--tape);
	color: var(--ink);
	padding: 3px 8px;
	border-radius: 999px;
	flex: 0 0 auto;
}

.enk-result__price {
	font-family: var(--font-mono);
	font-size: 16px;
	font-weight: 700;
	color: var(--ink);
	flex: 0 0 auto;
}

.enk-result__link {
	flex: 0 0 auto;
	font-size: 13px;
	font-weight: 700;
	color: var(--blue);
	white-space: nowrap;
}

.enk-results__note {
	margin: 12px 0 0;
	font-size: 12px;
	color: var(--muted);
}

/* ---------- 09. Firma şeridi ---------- */
.enk-firms {
	background: var(--white);
	border-bottom: 1px solid var(--line);
	padding-block: 26px;
}

.enk-firms__label {
	text-align: center;
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 16px;
}

.enk-firms__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 14px;
	list-style: none;
}

.enk-firms__item {
	list-style: none;
}

.enk-firms__btn {
	font-family: var(--font-display);
	font-size: 15px;
	font-weight: 800;
	color: var(--ink);
	background: var(--paper);
	border: 1.5px solid var(--line);
	border-radius: 999px;
	padding: 10px 22px;
	letter-spacing: 0.01em;
	cursor: pointer;
	transition: background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .12s ease;
}

.enk-firms__btn:hover {
	background: var(--ink);
	color: var(--white);
	border-color: var(--ink);
	box-shadow: var(--shadow-sm);
	transform: translateY(-1px);
}

.enk-firms__btn:focus-visible {
	outline: 2px solid var(--tape);
	outline-offset: 2px;
}

.enk-firms__btn[aria-expanded="true"] {
	background: var(--tape);
	color: var(--ink);
	border-color: var(--tape-dark);
}

.enk-firms__panel {
	max-width: var(--container-narrow);
	margin: 22px auto 0;
	padding: 22px 26px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	display: none;
}

.enk-firms__panel.is-open {
	display: block;
}

.enk-firms__panel-title {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 17px;
	color: var(--ink);
	margin-bottom: 8px;
}

.enk-firms__panel-text {
	font-family: var(--font-body);
	font-size: 14.5px;
	line-height: 1.7;
	color: var(--muted);
	margin: 0;
}

/* ---------- 10. Bölüm başlıkları ve genel bölümler ---------- */
.enk-section {
	padding-block: 88px;
}

.enk-section--tint {
	background: var(--paper);
}

.enk-section-head {
	max-width: 640px;
	margin-bottom: 48px;
}

.enk-section-head__title {
	font-size: clamp(28px, 3.4vw, 40px);
	font-weight: 800;
	letter-spacing: -0.02em;
	margin: 16px 0 12px;
}

.enk-section-head__desc {
	font-size: 16.5px;
	color: var(--muted);
	line-height: 1.7;
	margin: 0;
}

.enk-section-head--light .enk-section-head__title {
	color: var(--white);
}

.enk-section-head--light .enk-section-head__desc {
	color: var(--muted-light);
}

/* ---------- 11. Nasıl çalışır ---------- */
.enk-steps__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	list-style: none;
	counter-reset: none;
}

.enk-step {
	position: relative;
	padding: 30px 26px 28px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.enk-step:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow);
	border-color: transparent;
}

.enk-step__num {
	position: absolute;
	top: 22px;
	right: 24px;
	font-family: var(--font-mono);
	font-size: 30px;
	font-weight: 700;
	color: var(--line);
	line-height: 1;
}

.enk-step__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: var(--radius);
	background: var(--tape-soft);
	color: var(--tape-dark);
	margin-bottom: 18px;
}

.enk-step__title {
	font-size: 19px;
	font-weight: 700;
	margin-bottom: 8px;
}

.enk-step__desc {
	font-size: 14.5px;
	color: var(--muted);
	line-height: 1.65;
	margin: 0;
}

/* ---------- 12. Neden biz ---------- */
.enk-features__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}

.enk-feature {
	padding: 28px 24px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.enk-feature:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow);
}

.enk-feature__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: var(--radius-sm);
	background: var(--ink);
	color: var(--tape);
	margin-bottom: 16px;
}

.enk-feature__title {
	font-size: 17px;
	font-weight: 700;
	margin-bottom: 8px;
}

.enk-feature__desc {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.65;
	margin: 0;
}

/* ---------- 13. Fiyat tablosu ---------- */
.enk-table-wrap {
	overflow-x: auto;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	-webkit-overflow-scrolling: touch;
}

.enk-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14.5px;
	min-width: 860px;
	background: var(--white);
}

.enk-table th,
.enk-table td {
	padding: 14px 16px;
	text-align: center;
	border-bottom: 1px solid var(--line);
}

.enk-table thead th {
	background: var(--ink);
	color: var(--white);
	font-family: var(--font-display);
	font-size: 13.5px;
	font-weight: 700;
	letter-spacing: 0.02em;
	white-space: nowrap;
	border-bottom: 0;
}

.enk-table tbody th {
	background: var(--paper);
	font-family: var(--font-mono);
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
}

.enk-table tbody tr:last-child th,
.enk-table tbody tr:last-child td {
	border-bottom: 0;
}

.enk-table tbody tr:hover td {
	background: #FAFBFE;
}

.enk-price {
	font-family: var(--font-mono);
	font-weight: 600;
	color: var(--ink);
	white-space: nowrap;
}

.enk-price small {
	font-size: 11px;
	color: var(--muted);
}

.enk-table td.is-min {
	background: var(--tape-soft);
}

.enk-table td.is-min .enk-price {
	color: var(--tape-dark);
	font-weight: 700;
}

.enk-table tbody tr:hover td.is-min {
	background: #FFEDC7;
}

.enk-pricing__note {
	margin: 16px 0 0;
	font-size: 13px;
	color: var(--muted);
}

/* ---------- 14. Desi hesaplama ---------- */
.enk-desi {
	background:
		radial-gradient(700px 360px at 100% 0%, rgba(36, 87, 230, 0.25), transparent 60%),
		var(--ink);
	color: var(--white);
}

.enk-desi__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 56px;
	align-items: center;
}

.enk-desi .enk-section-head {
	margin-bottom: 26px;
}

.enk-desi__formula {
	display: inline-flex;
	flex-direction: column;
	gap: 8px;
	padding: 18px 22px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px dashed var(--line-dark);
	border-radius: var(--radius);
}

.enk-desi__formula-label {
	font-family: var(--font-mono);
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.16em;
	color: var(--tape);
}

.enk-desi__formula code {
	font-family: var(--font-mono);
	font-size: 15.5px;
	font-weight: 600;
	color: var(--white);
}

.enk-desi__card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--line-dark);
	border-radius: var(--radius-lg);
	padding: 28px;
	backdrop-filter: blur(6px);
}

.enk-desi__card .enk-form__row--dims {
	grid-template-columns: repeat(3, 1fr);
	margin-bottom: 20px;
}

.enk-desi__result {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 20px;
	background: rgba(255, 176, 32, 0.1);
	border: 1px solid rgba(255, 176, 32, 0.35);
	border-radius: var(--radius);
	margin-bottom: 20px;
}

.enk-desi__result-label {
	font-size: 13.5px;
	font-weight: 600;
	color: var(--muted-light);
}

.enk-desi__result-value {
	font-family: var(--font-mono);
	font-size: 34px;
	font-weight: 700;
	color: var(--tape);
	letter-spacing: -0.02em;
}

/* ---------- Desi hesaplama: telefon önizleme mockup'ı ---------- */
.enk-desi__demo {
	display: flex;
	align-items: flex-start;
	gap: 28px;
	flex-wrap: wrap;
}

.enk-desi__demo .enk-desi__card {
	flex: 1 1 280px;
	min-width: 0;
}

.enk-desi__phone {
	flex: 0 0 auto;
	display: flex;
	justify-content: center;
	margin: 0 auto;
}

.enk-phone {
	width: 200px;
	padding: 14px 12px 22px;
	background: #0b1220;
	border-radius: 34px;
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35), inset 0 0 0 2px rgba(255, 255, 255, 0.06);
	position: relative;
}

.enk-phone__notch {
	position: absolute;
	top: 14px;
	left: 50%;
	transform: translateX(-50%);
	width: 56px;
	height: 6px;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.18);
}

.enk-phone__screen {
	margin-top: 22px;
	background: var(--white);
	border-radius: 22px;
	padding: 18px 14px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.enk-phone__time {
	align-self: flex-start;
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: -4px;
}

.enk-phone__box {
	color: var(--tape);
	padding: 10px 0 4px;
}

.enk-phone__dims {
	display: flex;
	gap: 10px;
	width: 100%;
	justify-content: space-between;
}

.enk-phone__dim {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	font-size: 10.5px;
	color: var(--muted);
}

.enk-phone__dim strong {
	font-family: var(--font-mono);
	font-size: 15px;
	color: var(--ink);
	font-weight: 700;
}

.enk-phone__divider {
	width: 100%;
	height: 1px;
	background: var(--line);
	margin: 2px 0;
}

.enk-phone__result-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	width: 100%;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--muted);
}

.enk-phone__result-row strong {
	font-family: var(--font-mono);
	font-size: 22px;
	font-weight: 700;
	color: var(--tape);
}

.enk-phone__cta {
	margin-top: 4px;
	width: 100%;
	text-align: center;
	background: var(--ink);
	color: var(--white);
	font-size: 10.5px;
	font-weight: 700;
	padding: 9px 8px;
	border-radius: 999px;
	letter-spacing: 0.01em;
}

@media (max-width: 640px) {
	.enk-desi__demo {
		justify-content: center;
	}
}

/* ---------- 15. S.S.S. ---------- */
.enk-faq__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.enk-faq__item {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.enk-faq__item[open] {
	border-color: var(--ink);
	box-shadow: var(--shadow-sm);
}

.enk-faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 22px;
	font-family: var(--font-display);
	font-size: 16.5px;
	font-weight: 700;
	cursor: pointer;
	list-style: none;
	transition: color 0.15s ease;
}

.enk-faq__q::-webkit-details-marker {
	display: none;
}

.enk-faq__q:hover {
	color: var(--blue);
}

.enk-faq__chev {
	flex: 0 0 auto;
	color: var(--muted);
	transition: transform 0.2s ease;
}

.enk-faq__item[open] .enk-faq__chev {
	transform: rotate(180deg);
	color: var(--tape-dark);
}

.enk-faq__a {
	padding: 0 22px 20px;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.7;
}

.enk-faq__a p {
	margin: 0;
}

/* ---------- 16. Blog kartları ---------- */
.enk-bloglist__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.enk-bloglist__head .enk-section-head {
	margin-bottom: 24px;
}

.enk-bloglist__head .enk-btn {
	margin-bottom: 32px;
}

.enk-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.enk-cards--list {
	grid-template-columns: repeat(2, 1fr);
}

.enk-card {
	display: flex;
	flex-direction: column;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.enk-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow);
}

.enk-card__media {
	display: block;
	aspect-ratio: 16 / 10;
	background: var(--paper);
	overflow: hidden;
}

.enk-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.enk-card:hover .enk-card__media img {
	transform: scale(1.04);
}

.enk-card__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	opacity: 0.5;
}

.enk-card__body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 22px 22px 24px;
	flex: 1;
}

.enk-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	font-family: var(--font-mono);
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--muted);
	text-transform: uppercase;
}

.enk-meta__cat {
	color: var(--blue);
}

.enk-meta__sep {
	color: var(--line);
}

.enk-card__title {
	font-size: 18.5px;
	font-weight: 700;
	line-height: 1.35;
	margin: 0;
}

.enk-card__title a {
	color: var(--ink);
}

.enk-card__title a:hover {
	color: var(--blue);
}

.enk-card__excerpt {
	font-size: 14.5px;
	color: var(--muted);
	line-height: 1.65;
	margin: 0;
	flex: 1;
}

.enk-more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-display);
	font-size: 14px;
	font-weight: 700;
	color: var(--blue);
	margin-top: 4px;
}

.enk-more:hover {
	color: var(--blue-dark);
}

/* ---------- 17. Çağrı bandı ---------- */
.enk-cta {
	background: var(--tape);
	padding-block: 60px;
}

.enk-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}

.enk-cta__title {
	font-size: clamp(24px, 3vw, 34px);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--ink);
	margin-bottom: 8px;
}

.enk-cta__desc {
	font-size: 16px;
	font-weight: 600;
	color: rgba(15, 29, 61, 0.75);
	margin: 0;
	max-width: 56ch;
}

/* ---------- 18. Sayfa başlığı, içerik, kenar çubuğu ---------- */
.enk-page-head {
	background:
		radial-gradient(700px 300px at 90% -20%, rgba(36, 87, 230, 0.25), transparent 60%),
		var(--ink);
	color: var(--white);
	padding-block: 64px;
}

.enk-page-head__title {
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--white);
	margin: 14px 0 0;
}

.enk-page-head--post .enk-page-head__title {
	margin-top: 12px;
}

.enk-page-head__desc {
	margin: 14px 0 0;
	font-size: 16.5px;
	color: var(--muted-light);
	max-width: 62ch;
}

.enk-page-head .enk-meta {
	color: var(--muted-light);
}

.enk-page-head .enk-meta__cat {
	color: var(--tape);
}

.enk-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 48px;
	padding-block: 72px;
}

.enk-no-sidebar .enk-layout {
	grid-template-columns: minmax(0, 1fr);
}

.enk-layout__sidebar {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.enk-widget {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 22px;
}

.enk-widget__title {
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.02em;
	margin-bottom: 14px;
}

.enk-widget ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.enk-widget ul a {
	color: var(--ink);
	font-weight: 600;
	font-size: 14.5px;
}

.enk-widget ul a:hover {
	color: var(--blue);
}

/* Yazı içeriği */
.enk-entry__thumb {
	border-radius: var(--radius);
	overflow: hidden;
	margin-bottom: 32px;
	box-shadow: var(--shadow-sm);
}

.enk-entry__content {
	font-size: 17px;
	line-height: 1.8;
	color: #2A3550;
}

.enk-entry__content h2 {
	font-size: 27px;
	margin-top: 1.6em;
}

.enk-entry__content h3 {
	font-size: 21px;
	margin-top: 1.5em;
}

.enk-entry__content ul,
.enk-entry__content ol {
	padding-left: 1.4em;
	margin-bottom: 1.2em;
}

.enk-entry__content li {
	margin-bottom: 0.4em;
}

.enk-entry__content blockquote {
	margin: 1.6em 0;
	padding: 18px 24px;
	background: var(--tape-soft);
	border-left: 4px solid var(--tape);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	font-style: italic;
}

.enk-entry__content blockquote p:last-child {
	margin-bottom: 0;
}

.enk-entry__content img {
	border-radius: var(--radius-sm);
}

.enk-entry__content table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.4em 0;
	font-size: 15px;
}

.enk-entry__content table th,
.enk-entry__content table td {
	padding: 10px 14px;
	border: 1px solid var(--line);
	text-align: left;
}

.enk-entry__content table th {
	background: var(--paper);
	font-weight: 700;
}

.enk-entry__content pre {
	background: var(--ink);
	color: #DCE4F7;
	padding: 20px;
	border-radius: var(--radius-sm);
	overflow-x: auto;
	font-family: var(--font-mono);
	font-size: 14px;
}

.enk-entry__content code {
	font-family: var(--font-mono);
	font-size: 0.9em;
	background: var(--paper);
	padding: 2px 6px;
	border-radius: 4px;
}

.enk-entry__content pre code {
	background: transparent;
	padding: 0;
}

.enk-entry__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 32px;
}

.enk-entry__tags a {
	font-family: var(--font-mono);
	font-size: 12px;
	font-weight: 600;
	color: var(--muted);
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 5px 13px;
	transition: all 0.15s ease;
}

.enk-entry__tags a:hover {
	color: var(--ink);
	background: var(--tape);
	border-color: var(--tape);
}

.enk-linkpages {
	margin: 1.5em 0;
	font-weight: 600;
}

.enk-postnav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 48px;
	padding-top: 28px;
	border-top: 1px solid var(--line);
	font-weight: 700;
	font-size: 14.5px;
}

.enk-postnav__next {
	text-align: right;
}

.enk-fullwidth {
	width: 100%;
}

/* ---------- 19. Alt bilgi ---------- */
.enk-footer {
	background: var(--ink);
	color: var(--muted-light);
	margin-top: 0;
}

.enk-footer__strip {
	height: 6px;
	background: repeating-linear-gradient(
		-45deg,
		var(--tape) 0 18px,
		var(--ink) 18px 36px
	);
}

.enk-footer__grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
	gap: 44px;
	padding-block: 64px 52px;
}

.enk-footer .enk-widget {
	background: transparent;
	border: 0;
	padding: 0;
}

.enk-footer .enk-widget__title,
.enk-footer__col .enk-widget__title {
	color: var(--white);
	font-size: 14px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 18px;
}

.enk-footer__brand {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
}

.enk-footer__brandname {
	font-family: var(--font-display);
	font-size: 20px;
	font-weight: 800;
	color: var(--white);
	letter-spacing: -0.02em;
}

.enk-footer__about {
	font-size: 14px;
	line-height: 1.7;
	margin-bottom: 20px;
	max-width: 40ch;
}

.enk-social--footer .enk-social__link {
	background: rgba(255, 255, 255, 0.06);
	color: var(--muted-light);
}

.enk-social--footer .enk-social__link:hover {
	background: var(--tape);
	color: var(--ink);
}

.enk-footer__menu {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.enk-footer__menu a {
	color: var(--muted-light);
	font-size: 14.5px;
	font-weight: 500;
	transition: color 0.15s ease, padding-left 0.15s ease;
}

.enk-footer__menu a:hover {
	color: var(--tape);
	padding-left: 4px;
}

.enk-footer__contact {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 13px;
	font-size: 14px;
}

.enk-footer__contact li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.enk-footer__contact svg {
	flex: 0 0 auto;
	margin-top: 3px;
	color: var(--tape);
}

.enk-footer__contact a {
	color: var(--muted-light);
}

.enk-footer__contact a:hover {
	color: var(--tape);
}

.enk-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-block: 20px;
}

.enk-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.enk-footer__copy,
.enk-footer__note {
	margin: 0;
	font-size: 13px;
	color: var(--muted-light);
}

.enk-footer__note {
	opacity: 0.75;
}

/* ---------- 20. Yorumlar, sayfalama, 404, arama ---------- */
.enk-comments {
	margin-top: 56px;
	padding-top: 40px;
	border-top: 1px solid var(--line);
}

.enk-comments__title {
	font-size: 22px;
	margin-bottom: 24px;
}

.enk-comments__list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 18px;
	margin-bottom: 32px;
}

.enk-comments__list .comment-body {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 18px 20px;
}

.enk-comments__list .children {
	list-style: none;
	padding-left: 28px;
	margin-top: 14px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.enk-comments__list .comment-author {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	margin-bottom: 6px;
}

.enk-comments__list .avatar {
	border-radius: 50%;
}

.enk-comments__list .comment-metadata {
	font-size: 12.5px;
	color: var(--muted);
	margin-bottom: 10px;
}

.enk-comments__list .comment-metadata a {
	color: var(--muted);
}

.enk-comments__list .reply a {
	font-size: 13px;
	font-weight: 700;
}

.comment-form {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.comment-form label {
	display: block;
	font-size: 13.5px;
	font-weight: 700;
	margin-bottom: 6px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: 12px 14px;
	font-family: var(--font-body);
	font-size: 15px;
	border: 1.5px solid var(--line);
	border-radius: var(--radius-sm);
	background: var(--paper);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
	outline: none;
	border-color: var(--blue);
	background: var(--white);
	box-shadow: 0 0 0 3px rgba(36, 87, 230, 0.14);
}

.comment-form .comment-form-cookies-consent {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 13.5px;
}

.comment-form .comment-form-cookies-consent label {
	margin: 0;
	font-weight: 500;
}

.enk-pagination {
	margin-top: 48px;
}

.enk-pagination .nav-links,
.navigation .nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
}

.enk-pagination .page-numbers,
.navigation .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 14px;
	border: 1.5px solid var(--line);
	border-radius: var(--radius-sm);
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 14.5px;
	color: var(--ink);
	background: var(--white);
	transition: all 0.15s ease;
}

.enk-pagination .page-numbers.current,
.navigation .page-numbers.current {
	background: var(--ink);
	border-color: var(--ink);
	color: var(--white);
}

.enk-pagination .page-numbers:hover:not(.current),
.navigation .page-numbers:hover:not(.current) {
	border-color: var(--ink);
}

.enk-empty {
	background: var(--paper);
	border: 1px dashed var(--line);
	border-radius: var(--radius);
	padding: 48px 32px;
	text-align: center;
}

.enk-empty__title {
	font-size: 22px;
	margin-bottom: 8px;
}

.enk-404 {
	text-align: center;
	padding-block: 96px;
}

.enk-404__code {
	display: block;
	font-family: var(--font-mono);
	font-size: clamp(72px, 12vw, 120px);
	font-weight: 700;
	line-height: 1;
	color: var(--tape);
	letter-spacing: -0.04em;
	margin-bottom: 12px;
}

.enk-404__title {
	font-size: clamp(24px, 3.4vw, 34px);
	margin-bottom: 12px;
}

.enk-404__desc {
	color: var(--muted);
	max-width: 52ch;
	margin-inline: auto;
	margin-bottom: 28px;
}

.enk-404__search {
	max-width: 440px;
	margin: 0 auto 28px;
}

.enk-404__links {
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
}

.enk-search {
	display: flex;
	gap: 8px;
}

.enk-search__input {
	flex: 1;
	min-width: 0;
	padding: 12px 15px;
	font-family: var(--font-body);
	font-size: 15px;
	border: 1.5px solid var(--line);
	border-radius: var(--radius-sm);
	background: var(--white);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.enk-search__input:focus {
	outline: none;
	border-color: var(--blue);
	box-shadow: 0 0 0 3px rgba(36, 87, 230, 0.14);
}

.enk-search__submit {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	border: 0;
	border-radius: var(--radius-sm);
	background: var(--ink);
	color: var(--white);
	cursor: pointer;
	transition: background 0.15s ease;
}

.enk-search__submit:hover {
	background: var(--blue);
}

/* ---------- 21. WordPress çekirdek sınıfları ---------- */
.alignleft {
	float: left;
	margin: 0.5em 1.5em 1em 0;
}

.alignright {
	float: right;
	margin: 0.5em 0 1em 1.5em;
}

.aligncenter {
	display: block;
	margin-inline: auto;
}

.alignwide {
	margin-inline: calc(50% - min(50vw, calc(var(--container) / 2)) + 24px);
}

.alignfull {
	margin-inline: calc(50% - 50vw);
	max-width: 100vw;
	width: 100vw;
}

.wp-caption {
	max-width: 100%;
	margin-bottom: 1.4em;
}

.wp-caption img {
	border-radius: var(--radius-sm);
}

.wp-caption-text,
.gallery-caption {
	font-size: 13px;
	color: var(--muted);
	text-align: center;
	margin-top: 8px;
}

.sticky .enk-card__title::before,
.sticky .enk-card__title a::before {
	content: '★ ';
	color: var(--tape-dark);
}

.bypostauthor .comment-author::after {
	content: 'Yazar';
	font-family: var(--font-mono);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--ink);
	background: var(--tape);
	border-radius: 999px;
	padding: 2px 8px;
}

/* Elementor uyumu */
.enk-elementor-page .enk-main {
	padding: 0;
}

.enk-blank-canvas {
	margin: 0;
}

/* ---------- 22. Animasyon ve erişilebilirlik ---------- */
[data-reveal] {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
	opacity: 1;
	transform: none;
}

:focus-visible {
	outline: 3px solid var(--blue);
	outline-offset: 2px;
	border-radius: 4px;
}

.enk-btn--amber:focus-visible,
.enk-desi :focus-visible,
.enk-hero :focus-visible {
	outline-color: var(--tape);
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	[data-reveal] {
		opacity: 1;
		transform: none;
	}
}

/* ---------- 23. Duyarlı kurallar ---------- */
@media (max-width: 1080px) {
	.enk-hero__inner {
		gap: 40px;
	}

	.enk-features__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 960px) {
	:root {
		--header-h: 68px;
	}

	.enk-hero__inner {
		grid-template-columns: 1fr;
		padding-block: 56px 72px;
	}

	.enk-hero__copy {
		text-align: center;
	}

	.enk-hero__stats {
		justify-content: center;
	}

	.enk-hero__checks {
		justify-content: center;
	}

	.enk-hero__badge,
	.enk-hero__cta {
		margin-left: auto;
		margin-right: auto;
	}

	.enk-desi__inner {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.enk-layout {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.enk-footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 36px;
	}

	/* Mobil menü */
	.enk-nav {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		width: min(340px, 86vw);
		flex-direction: column;
		align-items: stretch;
		gap: 8px;
		background: var(--white);
		padding: 88px 24px 32px;
		box-shadow: var(--shadow-lg);
		transform: translateX(105%);
		transition: transform 0.25s ease;
		overflow-y: auto;
		z-index: 950;
	}

	.enk-nav.is-open {
		transform: translateX(0);
	}

	.enk-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 2px;
	}

	.enk-nav__list > li > a {
		display: block;
		padding: 13px 14px;
		font-size: 16px;
	}

	.enk-nav__list .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: 0;
		border-left: 2px solid var(--line);
		border-radius: 0;
		padding: 2px 0 2px 14px;
		margin: 2px 0 6px 14px;
		min-width: 0;
	}

	.enk-nav__cta {
		margin-top: 12px;
	}

	.enk-nav-toggle {
		display: flex;
		position: relative;
		z-index: 960;
	}

	body.enk-nav-open {
		overflow: hidden;
	}

	.enk-steps__grid,
	.enk-cards {
		grid-template-columns: 1fr;
	}

	.enk-cards--list {
		grid-template-columns: 1fr;
	}

	.enk-section {
		padding-block: 64px;
	}
}

@media (max-width: 640px) {
	.enk-hide-sm {
		display: none;
	}

	.enk-topbar__inner {
		justify-content: center;
	}

	.enk-form__row {
		grid-template-columns: 1fr;
	}

	.enk-form__row--dims {
		grid-template-columns: 1fr 1fr;
	}

	.enk-swap {
		justify-self: center;
		transform: rotate(90deg);
		margin: -4px 0;
	}

	.enk-swap:active {
		transform: rotate(270deg);
	}

	.enk-waybill__head,
	.enk-form {
		padding-inline: 20px;
	}

	.enk-results {
		padding-inline: 20px;
	}

	.enk-result {
		flex-wrap: wrap;
	}

	.enk-result__link {
		width: 100%;
		padding-left: 34px;
	}

	.enk-features__grid {
		grid-template-columns: 1fr;
	}

	.enk-footer__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.enk-footer__bottom-inner {
		justify-content: center;
		text-align: center;
	}

	.enk-cta__inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.enk-desi__card {
		padding: 22px 18px;
	}

	.enk-desi__card .enk-form__row--dims {
		grid-template-columns: 1fr;
	}

	.enk-postnav {
		grid-template-columns: 1fr;
	}

	.enk-postnav__next {
		text-align: left;
	}
}

/* =========================================================================
   v1.1 EKLENTİLERİ
   24. Menü animasyonları + Firmalar mega menüsü
   25. Profesyonel blog görünümü (liste + tekil yazı)
   ========================================================================= */

/* ---------- 24. Menü animasyonları + mega menü ---------- */

/* Menü bağlantılarında kayan amber alt çizgi */
.enk-nav__list > li > a {
	position: relative;
	background: transparent;
}

.enk-nav__list > li > a::after {
	content: '';
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 5px;
	height: 3px;
	border-radius: 3px;
	background: linear-gradient(90deg, var(--tape), var(--tape-dark));
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.22s ease;
}

.enk-nav__list > li > a:hover,
.enk-nav__list > li.current-menu-item > a,
.enk-nav__list > li.current_page_item > a {
	background: transparent;
}

.enk-nav__list > li > a:hover::after,
.enk-nav__list > li.current-menu-item > a::after,
.enk-nav__list > li.current_page_item > a::after {
	transform: scaleX(1);
}

/* Mega menü düğmesi */
.enk-mega-wrap {
	position: relative;
}

.enk-mega-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	background: transparent;
	border: 0;
	border-radius: var(--radius-sm);
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 600;
	color: var(--ink);
	cursor: pointer;
	position: relative;
	transition: color 0.18s ease;
}

.enk-mega-btn::after {
	content: '';
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 5px;
	height: 3px;
	border-radius: 3px;
	background: linear-gradient(90deg, var(--tape), var(--tape-dark));
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.22s ease;
}

.enk-mega-btn:hover,
.enk-mega-wrap.is-open .enk-mega-btn {
	color: var(--blue);
}

.enk-mega-btn:hover::after,
.enk-mega-wrap.is-open .enk-mega-btn::after {
	transform: scaleX(1);
}

.enk-mega-btn__truck {
	color: var(--tape-dark);
}

.enk-mega-btn:hover .enk-mega-btn__truck {
	animation: enk-truck-drive 0.55s ease;
}

@keyframes enk-truck-drive {
	0%   { transform: translateX(0); }
	40%  { transform: translateX(4px) rotate(-2deg); }
	100% { transform: translateX(0); }
}

.enk-mega-btn__chev {
	transition: transform 0.22s ease;
	color: var(--muted);
}

.enk-mega-wrap.is-open .enk-mega-btn__chev {
	transform: rotate(180deg);
	color: var(--tape-dark);
}

/* Mega panel */
.enk-mega {
	position: absolute;
	top: calc(100% + 14px);
	right: -8px;
	width: min(660px, calc(100vw - 32px));
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px) scale(0.98);
	transform-origin: top right;
	transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.2, 0.9, 0.3, 1.2), visibility 0.22s;
	z-index: 120;
}

.enk-mega::before {
	content: '';
	position: absolute;
	top: -7px;
	right: 44px;
	width: 14px;
	height: 14px;
	background: var(--paper);
	border-left: 1px solid var(--line);
	border-top: 1px solid var(--line);
	transform: rotate(45deg);
}

.enk-mega-wrap.is-open .enk-mega {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
}

.enk-mega__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 22px 14px;
	background: var(--paper);
	border-bottom: 1px solid var(--line);
	flex-wrap: wrap;
}

.enk-mega__eyebrow {
	font-family: var(--font-mono);
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.16em;
	color: var(--ink);
}

.enk-mega__hint {
	font-size: 12px;
	color: var(--muted);
}

.enk-mega__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4px;
	padding: 12px;
}

.enk-mega__item {
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 11px 13px;
	border-radius: var(--radius-sm);
	border: 1.5px solid transparent;
	transition: background 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}

.enk-mega-wrap.is-open .enk-mega__item {
	animation: enk-mega-in 0.34s both;
	animation-delay: calc(var(--stagger) * 32ms + 60ms);
}

@keyframes enk-mega-in {
	from { opacity: 0; transform: translateY(8px); }
	to   { opacity: 1; transform: translateY(0); }
}

.enk-mega__item:hover {
	background: var(--paper);
	background: color-mix(in srgb, var(--firm) 9%, var(--white));
	border-color: color-mix(in srgb, var(--firm) 40%, var(--white));
	transform: translateX(2px);
}

/* Rozet: kod yazısı, üzerine gelince içinden kamyon geçer */
.enk-mega__badge {
	position: relative;
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 11px;
	background: var(--firm);
	color: var(--white);
	overflow: hidden;
	box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.14);
}

.enk-mega__badge-code {
	font-family: var(--font-mono);
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.04em;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.enk-mega__badge-truck {
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -10px 0 0 -10px;
	opacity: 0;
	transform: translateX(-26px);
	transition: opacity 0.24s ease, transform 0.3s cubic-bezier(0.2, 0.8, 0.3, 1);
}

.enk-mega__item:hover .enk-mega__badge-code {
	opacity: 0;
	transform: translateX(10px);
}

.enk-mega__item:hover .enk-mega__badge-truck {
	opacity: 1;
	transform: translateX(0);
}

.enk-mega__body {
	display: flex;
	flex-direction: column;
	gap: 1px;
	min-width: 0;
	flex: 1;
}

.enk-mega__name {
	font-family: var(--font-display);
	font-size: 14.5px;
	font-weight: 700;
	color: var(--ink);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.enk-mega__micro {
	font-size: 11.5px;
	color: var(--muted);
}

.enk-mega__arrow {
	flex: 0 0 auto;
	color: var(--firm, var(--blue));
	opacity: 0;
	transform: translateX(-6px);
	transition: opacity 0.18s ease, transform 0.18s ease;
}

.enk-mega__item:hover .enk-mega__arrow {
	opacity: 1;
	transform: translateX(0);
}

.enk-mega__foot {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 22px;
	background: var(--paper);
	border-top: 1px solid var(--line);
	font-family: var(--font-display);
	font-size: 13.5px;
	font-weight: 700;
	color: var(--ink);
	transition: background 0.16s ease, color 0.16s ease;
}

.enk-mega__foot:hover {
	background: var(--tape-soft);
	color: var(--ink);
}

.enk-mega__foot span {
	transition: transform 0.16s ease;
}

.enk-mega__foot:hover span {
	transform: translateX(4px);
}

/* Mega menüden tıklanınca fiyat tablosundaki sütunun yanması */
@keyframes enk-col-flash {
	0%, 100% { background: transparent; box-shadow: none; }
	18%, 70% { background: var(--tape-soft); box-shadow: inset 0 0 0 2px var(--tape); }
}

.enk-table td.is-flash,
.enk-table thead th.is-flash {
	animation: enk-col-flash 1.8s ease;
}

.enk-table thead th.is-flash {
	color: var(--ink);
}

@keyframes enk-col-flash-head {
	0%, 100% { background: var(--ink); color: var(--white); }
	18%, 70% { background: var(--tape); color: var(--ink); }
}

.enk-table thead th.is-flash {
	animation: enk-col-flash-head 1.8s ease;
}

/* ---------- 25. Profesyonel blog görünümü ---------- */

/* Ekmek kırıntısı */
.enk-crumbs {
	display: flex;
	align-items: center;
	gap: 9px;
	flex-wrap: wrap;
	font-family: var(--font-mono);
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.enk-page-head .enk-crumbs a,
.enk-page-head .enk-crumbs span {
	color: var(--muted-light);
}

.enk-page-head .enk-crumbs a:hover {
	color: var(--tape);
}

.enk-crumbs__sep {
	opacity: 0.5;
}

/* Kategori rozeti */
.enk-cat-pill {
	display: inline-block;
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ink);
	background: var(--tape);
	border-radius: 999px;
	padding: 6px 14px;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.enk-cat-pill:hover {
	color: var(--ink);
	transform: translateY(-1px);
	box-shadow: 0 6px 14px rgba(255, 176, 32, 0.4);
}

.enk-page-head .enk-cat-pill + .enk-page-head__title {
	margin-top: 16px;
}

/* Yazar satırı (yazı üst alanı) */
.enk-author-row {
	display: flex;
	align-items: center;
	gap: 13px;
	margin-top: 22px;
}

.enk-author-row__avatar img {
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.35);
	display: block;
}

.enk-author-row__info {
	display: flex;
	flex-direction: column;
	gap: 1px;
}

.enk-author-row__name {
	font-family: var(--font-display);
	font-size: 15px;
	font-weight: 700;
	color: var(--white);
}

.enk-author-row__name:hover {
	color: var(--tape);
}

.enk-author-row__meta {
	font-size: 13px;
	color: var(--muted-light);
}

/* Okuma ilerleme çubuğu */
.enk-progress {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	z-index: 1200;
	pointer-events: none;
}

.enk-progress__bar {
	display: block;
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, var(--tape), var(--tape-dark));
	box-shadow: 0 0 10px rgba(255, 176, 32, 0.6);
	border-radius: 0 3px 3px 0;
}

/* Makale düzeni: solda yapışkan paylaşım çubuğu */
.enk-article-wrap {
	display: grid;
	grid-template-columns: 56px minmax(0, var(--container-narrow));
	justify-content: center;
	gap: 44px;
	padding-block: 64px 72px;
}

.enk-article {
	min-width: 0;
}

/* Paylaşım düğmeleri */
.enk-share {
	display: flex;
	gap: 8px;
}

.enk-share--rail {
	flex-direction: column;
	align-items: center;
	position: sticky;
	top: calc(var(--header-h) + 32px);
	align-self: start;
}

.enk-share--inline {
	display: none;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 28px;
}

.enk-share__label {
	font-family: var(--font-mono);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
}

.enk-share--rail .enk-share__label {
	margin-bottom: 4px;
}

.enk-share--inline .enk-share__label {
	margin-right: 6px;
}

.enk-share__btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1.5px solid var(--line);
	border-radius: 12px;
	background: var(--white);
	color: var(--muted);
	cursor: pointer;
	transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}

.enk-share__btn:hover {
	background: var(--ink);
	border-color: var(--ink);
	color: var(--white);
	transform: translateY(-2px);
}

.enk-share__copy.is-copied {
	background: var(--success);
	border-color: var(--success);
	color: var(--white);
}

.enk-share__copy.is-copied::after {
	content: attr(data-copied);
	position: absolute;
	left: calc(100% + 10px);
	top: 50%;
	transform: translateY(-50%);
	background: var(--ink);
	color: var(--white);
	font-family: var(--font-body);
	font-size: 11.5px;
	font-weight: 700;
	padding: 6px 11px;
	border-radius: 8px;
	white-space: nowrap;
	box-shadow: var(--shadow);
	animation: enk-mega-in 0.2s ease both;
	z-index: 10;
}

.enk-share--inline .enk-share__copy.is-copied::after {
	left: 50%;
	top: auto;
	bottom: calc(100% + 8px);
	transform: translateX(-50%);
}

/* İçindekiler (JS ile üretilir) */
.enk-toc {
	background: var(--paper);
	border: 1px solid var(--line);
	border-left: 4px solid var(--tape);
	border-radius: var(--radius);
	padding: 20px 24px;
	margin-bottom: 32px;
}

.enk-toc__title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink);
	margin-bottom: 14px;
}

.enk-toc__list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 4px;
	counter-reset: toc;
}

.enk-toc__list a {
	position: relative;
	display: flex;
	align-items: baseline;
	gap: 10px;
	padding: 6px 10px 6px 12px;
	border-radius: var(--radius-sm);
	font-size: 14.5px;
	font-weight: 600;
	color: var(--ink);
	transition: background 0.15s ease, color 0.15s ease;
}

.enk-toc__list a::before {
	counter-increment: toc;
	content: counter(toc, decimal-leading-zero);
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 700;
	color: var(--muted);
	flex: 0 0 auto;
	transition: color 0.15s ease;
}

.enk-toc__list a:hover {
	background: var(--white);
	color: var(--blue);
}

.enk-toc__list a.is-active {
	background: var(--white);
	color: var(--blue);
	box-shadow: var(--shadow-sm);
}

.enk-toc__list a.is-active::before {
	color: var(--tape-dark);
}

/* İçerikte hedef başlıklara nefes payı */
.enk-entry__content h2[id],
.enk-entry__content h3[id] {
	scroll-margin-top: calc(var(--header-h) + 28px);
}

/* Yazar kutusu */
.enk-authorbox {
	display: flex;
	gap: 20px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 26px;
	margin-top: 44px;
}

.enk-authorbox__avatar img {
	border-radius: 50%;
	display: block;
	border: 3px solid var(--white);
	box-shadow: var(--shadow-sm);
}

.enk-authorbox__eyebrow {
	display: block;
	font-family: var(--font-mono);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.16em;
	color: var(--tape-dark);
	margin-bottom: 4px;
}

.enk-authorbox__name {
	font-family: var(--font-display);
	font-size: 18px;
	font-weight: 800;
	color: var(--ink);
}

.enk-authorbox__name:hover {
	color: var(--blue);
}

.enk-authorbox__bio {
	font-size: 14.5px;
	color: var(--muted);
	line-height: 1.65;
	margin: 8px 0 10px;
}

.enk-authorbox__link {
	font-size: 13.5px;
	font-weight: 700;
}

/* Önceki / sonraki yazı kartları */
.enk-postnav--cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	border-top: 0;
	padding-top: 0;
	margin-top: 28px;
}

.enk-postnav__card {
	display: block;
	background: var(--white);
	border: 1.5px solid var(--line);
	border-radius: var(--radius);
	padding: 18px 20px;
	transition: border-color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}

.enk-postnav__card:hover {
	border-color: var(--ink);
	transform: translateY(-2px);
	box-shadow: var(--shadow-sm);
}

.enk-postnav__card--next {
	text-align: right;
}

.enk-postnav__dir {
	display: block;
	font-family: var(--font-mono);
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 7px;
}

.enk-postnav__title {
	display: block;
	font-family: var(--font-display);
	font-size: 15px;
	font-weight: 700;
	color: var(--ink);
	line-height: 1.4;
}

.enk-postnav__card:hover .enk-postnav__title {
	color: var(--blue);
}

/* İlgili yazılar */
.enk-related {
	background: var(--paper);
	border-top: 1px solid var(--line);
	padding-block: 76px;
	margin-top: 8px;
}

/* Kategori çipleri */
.enk-bloghub {
	padding-top: 30px;
}

.enk-chips {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.enk-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border: 1.5px solid var(--line);
	border-radius: 999px;
	background: var(--white);
	font-family: var(--font-display);
	font-size: 13.5px;
	font-weight: 700;
	color: var(--ink);
	transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.enk-chip:hover {
	border-color: var(--ink);
	color: var(--ink);
	transform: translateY(-1px);
}

.enk-chip.is-active {
	background: var(--ink);
	border-color: var(--ink);
	color: var(--white);
}

.enk-chip__count {
	font-family: var(--font-mono);
	font-size: 10.5px;
	font-weight: 700;
	background: var(--paper);
	color: var(--muted);
	border-radius: 999px;
	padding: 2px 7px;
}

.enk-chip.is-active .enk-chip__count {
	background: rgba(255, 255, 255, 0.16);
	color: var(--white);
}

/* Öne çıkan büyük kart */
.enk-featured {
	display: grid;
	grid-template-columns: 1.08fr 1fr;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	margin-bottom: 28px;
	box-shadow: var(--shadow-sm);
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.enk-featured:hover {
	box-shadow: var(--shadow);
	transform: translateY(-3px);
}

.enk-featured__media {
	position: relative;
	display: block;
	min-height: 320px;
	background: var(--paper);
	overflow: hidden;
}

.enk-featured__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.enk-featured:hover .enk-featured__media img {
	transform: scale(1.045);
}

.enk-featured__flag {
	position: absolute;
	top: 16px;
	left: 16px;
	font-family: var(--font-mono);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.14em;
	background: var(--ink);
	color: var(--tape);
	padding: 6px 12px;
	border-radius: 999px;
	z-index: 2;
}

.enk-featured__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	padding: 34px 36px;
}

.enk-featured__title {
	font-size: clamp(21px, 2.4vw, 28px);
	font-weight: 800;
	line-height: 1.25;
	margin: 2px 0 0;
}

.enk-featured__title a {
	color: var(--ink);
}

.enk-featured__title a:hover {
	color: var(--blue);
}

.enk-featured__excerpt {
	font-size: 15px;
	color: var(--muted);
	line-height: 1.7;
	margin: 0;
}

.enk-featured__meta {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	font-size: 13.5px;
	color: var(--muted);
	font-weight: 600;
}

.enk-featured__dot {
	color: var(--line);
}

.enk-featured__btn {
	margin-top: 8px;
	padding: 11px 22px;
	font-size: 14px;
}

/* Kart geliştirmeleri: rozet + yazar alt satırı */
.enk-card__media {
	position: relative;
}

.enk-card__pill {
	position: absolute;
	top: 12px;
	left: 12px;
	font-family: var(--font-mono);
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background: rgba(255, 255, 255, 0.94);
	color: var(--ink);
	padding: 5px 11px;
	border-radius: 999px;
	box-shadow: var(--shadow-sm);
	z-index: 2;
}

.enk-card__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	border-top: 1px solid var(--line);
	padding-top: 13px;
	margin-top: 4px;
}

.enk-card__author {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-size: 13px;
	font-weight: 700;
	color: var(--ink);
}

.enk-card__author img {
	border-radius: 50%;
	display: block;
}

.enk-card__read {
	font-family: var(--font-mono);
	font-size: 11.5px;
	font-weight: 700;
	color: var(--muted);
	background: var(--paper);
	border-radius: 999px;
	padding: 4px 10px;
}

/* ---------- v1.1 duyarlı kurallar ---------- */
@media (max-width: 1020px) {
	.enk-article-wrap {
		display: block;
	}

	.enk-share--rail {
		display: none;
	}

	.enk-share--inline {
		display: flex;
	}

	.enk-article {
		max-width: var(--container-narrow);
		margin-inline: auto;
	}
}

@media (max-width: 960px) {
	/* Mega menü: çekmece içinde akordeon */
	.enk-mega-wrap {
		width: 100%;
		border-top: 1px solid var(--line);
		margin-top: 6px;
		padding-top: 6px;
	}

	.enk-mega-btn {
		width: 100%;
		justify-content: flex-start;
		padding: 13px 14px;
		font-size: 16px;
	}

	.enk-mega-btn::after {
		display: none;
	}

	.enk-mega-btn__chev {
		margin-left: auto;
	}

	.enk-mega {
		position: static;
		width: 100%;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: 0;
		border-left: 2px solid var(--line);
		border-radius: 0;
		margin: 4px 0 8px 14px;
		display: none;
	}

	.enk-mega::before {
		display: none;
	}

	.enk-mega-wrap.is-open .enk-mega {
		display: block;
	}

	.enk-mega__head {
		display: none;
	}

	.enk-mega__grid {
		grid-template-columns: 1fr;
		padding: 6px 0 6px 8px;
		gap: 2px;
	}

	.enk-mega-wrap.is-open .enk-mega__item {
		animation: none;
	}

	.enk-featured {
		grid-template-columns: 1fr;
	}

	.enk-featured__media {
		min-height: 0;
		aspect-ratio: 16 / 9;
	}

	.enk-featured__body {
		padding: 26px 24px;
	}
}

@media (max-width: 640px) {
	.enk-chips {
		flex-wrap: nowrap;
		overflow-x: auto;
		padding-bottom: 6px;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.enk-chips::-webkit-scrollbar {
		display: none;
	}

	.enk-chip {
		flex: 0 0 auto;
	}

	.enk-authorbox {
		flex-direction: column;
		gap: 14px;
		padding: 22px;
	}

	.enk-postnav--cards {
		grid-template-columns: 1fr;
	}

	.enk-postnav__card--next {
		text-align: left;
	}

	.enk-share__copy.is-copied::after,
	.enk-share--inline .enk-share__copy.is-copied::after {
		left: auto;
		right: 0;
		top: auto;
		bottom: calc(100% + 8px);
		transform: none;
	}
}


/* ---------- Header: Avantajlı kargo gönder butonu (tema uyumu + nabız animasyonu) ---------- */
.elementor-element-b4444ab a.elementor-button {
	background-color: var(--tape) !important;
	color: var(--ink) !important;
	font-family: var(--font-display) !important;
	font-weight: 800 !important;
	font-size: 16px !important;
	letter-spacing: 0.01em;
	padding: 15px 30px !important;
	border: 2px solid var(--tape-dark) !important;
	box-shadow: 0 6px 20px rgba(255, 176, 32, 0.45) !important;
	animation: enkCtaBlink 3.4s ease-in-out infinite;
	transition: background-color .18s ease, color .18s ease, transform .18s ease;
	will-change: filter, transform;
}

.elementor-element-b4444ab a.elementor-button:hover {
	background-color: var(--tape-dark) !important;
	color: var(--ink) !important;
	animation-play-state: paused;
}

@keyframes enkCtaBlink {
	0%, 16%, 32%, 100% {
		filter: brightness(1) saturate(1);
		transform: scale(1);
	}
	8%, 24% {
		filter: brightness(1.5) saturate(1.4);
		transform: scale(1.07);
	}
}

@media (prefers-reduced-motion: reduce) {
	.elementor-element-b4444ab a.elementor-button {
		animation: none;
	}
}

/* ---------- Site geneli: blog / arşiv / diğer sayfaları anasayfa tasarımıyla uyumlu hale getirme ---------- */

/* Başlık fontlarını marka fontuyla eşitle (sadece font; renkler ayrı ele alınıyor) */
h1, h2, h3, h4, h5, h6,
.elementor-heading-title,
.elementor-post__title,
.elementor-page-title {
	font-family: var(--font-display) !important;
}

/* Tekil yazı başlığı (beyaz zemin üzerinde) */
.elementor-widget-theme-post-title .elementor-heading-title {
	color: var(--ink) !important;
}

/* Tekil yazı içerik alanı */
.elementor-widget-theme-post-content,
.elementor-widget-theme-post-content p,
.elementor-widget-theme-post-content li {
	font-family: var(--font-body) !important;
	color: var(--ink) !important;
	line-height: 1.75;
}

.elementor-widget-theme-post-content h1,
.elementor-widget-theme-post-content h2,
.elementor-widget-theme-post-content h3,
.elementor-widget-theme-post-content h4 {
	color: var(--ink) !important;
}

.elementor-widget-theme-post-content a {
	color: var(--blue) !important;
	font-weight: 600;
}

/* Arşiv / kategori listelerindeki yazı kartları */
.elementor-post__title,
.elementor-post__title a {
	color: var(--ink) !important;
}

.elementor-post__excerpt,
.elementor-post__excerpt p {
	font-family: var(--font-body) !important;
	color: var(--muted) !important;
}

.elementor-post__read-more {
	color: var(--tape-dark) !important;
	font-weight: 700 !important;
}

.elementor-post__read-more svg {
	fill: var(--tape-dark) !important;
}


/* Dopigo tanıtım kutusu (yazı sayfalarında sabit/sticky kutu) - marka renkleriyle uyum */
.elementor-element-44b3444b .elementor-button,
.elementor-element-44b3444b.elementor-button {
	background-color: var(--tape-dark) !important;
	color: var(--ink) !important;
	font-weight: 700 !important;
}
