/*
Theme Name: Merkantor
Theme URI: https://merkantor.com
Author: Merkantor
Author URI: https://merkantor.com
Description: Merkantor e-ticaret yazılımının tanıtım sitesi için hazırlanmış hafif, sayfa oluşturucu kullanmayan blok teması. Tüm bölümler Site Düzenleyici ve blok editöründen elle düzenlenebilir.
Requires at least: 6.6
Tested up to: 7.1
Requires PHP: 8.1
Version: 1.0.2
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: merkantor
Tags: full-site-editing, block-patterns, one-column, custom-colors, custom-logo, custom-menu, block-styles, editor-style
*/

/* =========================================================
   1. TOKENS
   ========================================================= */
:root {
	--mk-brand: #e4562a;
	--mk-brand-600: #c8451d;
	--mk-brand-300: #f07045;
	--mk-brand-050: #fdf0eb;
	--mk-brand-rgb: 228, 86, 42;

	--mk-ink: #16202b;
	--mk-ink-800: #1e2a38;
	--mk-ink-700: #33414f;
	--mk-body: #4a5763;
	--mk-muted: #6b7885;

	--mk-line: #e3e7ec;
	--mk-line-soft: #edf0f4;
	--mk-surface: #fff;
	--mk-bg: #f7f8fa;
	--mk-bg-alt: #f1f4f7;

	--mk-ok: #0e7c7b;
	--mk-ok-050: #e6f2f2;

	--mk-r-lg: 20px;
	--mk-r-md: 16px;
	--mk-r-sm: 12px;
	--mk-r-btn: 11px;

	--mk-sh-sm: 0 1px 2px rgb(22 32 43 / 6%);
	--mk-sh-md: 0 12px 32px -14px rgb(22 32 43 / 16%);
	--mk-sh-lg: 0 40px 80px -32px rgb(22 32 43 / 26%);

	--mk-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
	--mk-section-y: clamp(64px, 8vw, 140px);
	--mk-gutter: clamp(20px, 5vw, 40px);
	--mk-header-h: 72px;
}

/* =========================================================
   2. BASE
   ========================================================= */
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--mk-header-h) + 24px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; overflow-x: hidden; }

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

::selection { background: rgb(var(--mk-brand-rgb) / 18%); color: var(--mk-ink); }

:where(a, button, summary, input, textarea, select):focus-visible {
	outline: 2px solid var(--mk-brand);
	outline-offset: 3px;
	border-radius: 4px;
}

.mk-skip-link {
	position: absolute; left: -9999px; top: 0; z-index: 999;
	background: var(--mk-ink); color: #fff; padding: 12px 20px; border-radius: 0 0 10px;
	font-weight: 600;
}
.mk-skip-link:focus { left: 0; }

/* =========================================================
   3. HEADER
   ========================================================= */
.mk-header {
	position: sticky; top: 0; z-index: 100;
	background: rgb(247 248 250 / 0%);
	border-bottom: 1px solid transparent;
	transition: background 260ms var(--mk-ease), border-color 260ms var(--mk-ease), backdrop-filter 260ms var(--mk-ease);
}
.mk-header.is-stuck {
	background: rgb(255 255 255 / 88%);
	backdrop-filter: saturate(180%) blur(14px);
	-webkit-backdrop-filter: saturate(180%) blur(14px);
	border-bottom-color: var(--mk-line);
}
.mk-header .wp-block-group.mk-header__inner { min-height: var(--mk-header-h); }

.mk-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.mk-brand:hover { text-decoration: none; }
.mk-brand__mark { flex: 0 0 auto; }
.wp-block-site-title a { color: var(--mk-ink); text-decoration: none; }
.wp-block-site-title a:hover { color: var(--mk-ink); text-decoration: none; }

.mk-nav .wp-block-navigation__container { gap: clamp(14px, 2vw, 30px); }
.mk-nav .wp-block-navigation-item__content {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 0.9375rem; font-weight: 550; color: var(--mk-ink-700);
	text-decoration: none; padding: 6px 0; position: relative;
}
.mk-nav .wp-block-navigation-item__content:hover { color: var(--mk-brand); text-decoration: none; }
.mk-nav .current-menu-item > .wp-block-navigation-item__content { color: var(--mk-brand); }
.mk-nav .current-menu-item > .wp-block-navigation-item__content::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
	background: var(--mk-brand); border-radius: 2px;
}
.mk-nav .wp-block-navigation__responsive-container.is-menu-open { background: var(--mk-ink); padding: 24px var(--mk-gutter); }
.mk-nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content { color: #fff; font-size: 1.375rem; }
.mk-nav .wp-block-navigation__responsive-container-open,
.mk-nav .wp-block-navigation__responsive-container-close { color: var(--mk-ink); }
.mk-nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close { color: #fff; }

.mk-header__cta .wp-block-button__link { padding: 11px 20px; font-size: 0.9375rem; }
@media (max-width: 599px) { .mk-header__cta { display: none; } }

/* =========================================================
   4. SECTION PRIMITIVES
   ========================================================= */
.mk-section { padding-block: var(--mk-section-y); position: relative; }
.mk-section--tight { padding-block: clamp(48px, 5vw, 84px); }
.mk-section--line { border-top: 1px solid var(--mk-line); }
.mk-section--alt { background: var(--mk-bg-alt); }
.mk-section--white { background: var(--mk-surface); }

.mk-section--dark { background: var(--mk-ink); color: #c3ccd6; }
.mk-section--dark :where(h1, h2, h3, h4, h5, h6) { color: #fff; }
.mk-section--dark .mk-eyebrow { color: var(--mk-brand-300); }
.mk-section--dark .mk-lead { color: #a9b5c1; }
.mk-section--dark a:not(.wp-block-button__link) { color: #fff; }

.mk-eyebrow {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
	color: var(--mk-brand); margin: 0 0 14px; display: flex; align-items: center; gap: 10px;
}
.mk-eyebrow::before { content: ""; width: 22px; height: 2px; background: currentcolor; border-radius: 2px; flex: 0 0 auto; }
.is-content-justification-center .mk-eyebrow, .has-text-align-center.mk-eyebrow { justify-content: center; }

.mk-lead { font-size: var(--wp--preset--font-size--lead); line-height: 1.6; color: var(--mk-muted); }
.mk-measure { max-width: 62ch; }
.mk-measure-sm { max-width: 48ch; }

.mk-kicker { font-family: var(--wp--preset--font-family--heading); font-weight: 700; color: var(--mk-ink); }

/* =========================================================
   5. BUTTONS
   ========================================================= */
.wp-block-button__link { transition: background-color 200ms var(--mk-ease), transform 200ms var(--mk-ease), box-shadow 200ms var(--mk-ease), color 200ms var(--mk-ease), border-color 200ms var(--mk-ease); }
.wp-block-button__link:hover { transform: translateY(-1px); }
.wp-block-button:not(.is-style-outline) .wp-block-button__link { box-shadow: 0 6px 18px -8px rgb(var(--mk-brand-rgb) / 60%); }
.wp-block-button:not(.is-style-outline) .wp-block-button__link:hover { box-shadow: 0 10px 24px -10px rgb(var(--mk-brand-rgb) / 70%); }

.wp-block-button.is-style-outline .wp-block-button__link {
	background: var(--mk-surface); color: var(--mk-ink);
	border: 1px solid var(--mk-line); box-shadow: var(--mk-sh-sm);
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
	background: var(--mk-surface); color: var(--mk-brand); border-color: rgb(var(--mk-brand-rgb) / 45%);
}
.mk-section--dark .wp-block-button.is-style-outline .wp-block-button__link {
	background: transparent; color: #fff; border-color: rgb(255 255 255 / 28%); box-shadow: none;
}
.mk-section--dark .wp-block-button.is-style-outline .wp-block-button__link:hover {
	background: rgb(255 255 255 / 8%); color: #fff; border-color: rgb(255 255 255 / 50%);
}
.mk-btn-ghost .wp-block-button__link { background: #fff; color: var(--mk-ink); box-shadow: var(--mk-sh-md); }
.mk-btn-ghost .wp-block-button__link:hover { background: #fff; color: var(--mk-brand); }

/* =========================================================
   6. HERO
   ========================================================= */
.mk-hero { position: relative; padding-block: clamp(48px, 6vw, 96px) clamp(56px, 7vw, 110px); overflow: clip; }
.mk-hero::before {
	content: ""; position: absolute; inset: -320px 0 auto -10%; height: 720px; z-index: 0; pointer-events: none;
	background:
		radial-gradient(46% 42% at 22% 34%, rgb(var(--mk-brand-rgb) / 13%) 0%, rgb(var(--mk-brand-rgb) / 0%) 70%),
		radial-gradient(38% 40% at 78% 22%, rgb(14 124 123 / 8%) 0%, rgb(14 124 123 / 0%) 72%);
}
.mk-hero::after {
	content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
	background-image: linear-gradient(var(--mk-line-soft) 1px, transparent 1px), linear-gradient(90deg, var(--mk-line-soft) 1px, transparent 1px);
	background-size: 72px 72px;
	mask-image: radial-gradient(70% 60% at 50% 0%, #000 0%, transparent 78%);
	-webkit-mask-image: radial-gradient(70% 60% at 50% 0%, #000 0%, transparent 78%);
	opacity: 0.7;
}
.mk-hero > * { position: relative; z-index: 1; }

.mk-hero__grid { align-items: center; gap: clamp(36px, 5vw, 64px); }
.mk-hero h1 { max-width: 13ch; }
.mk-hero__sub { font-size: var(--wp--preset--font-size--lead); line-height: 1.6; color: var(--mk-body); max-width: 46ch; }

.mk-trustline { display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: 0.9375rem; color: var(--mk-muted); margin: 0; }
.mk-trustline > span { display: inline-flex; align-items: center; gap: 8px; }
.mk-trustline > span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--mk-brand); flex: 0 0 auto; }

/* =========================================================
   7. BROWSER / APP FRAME
   ========================================================= */
.mk-frame {
	background: var(--mk-surface); border: 1px solid var(--mk-line); border-radius: var(--mk-r-lg);
	box-shadow: var(--mk-sh-lg); overflow: hidden; position: relative;
}
.mk-frame__bar {
	display: flex; align-items: center; gap: 12px;
	padding: 11px 14px; border-bottom: 1px solid var(--mk-line); background: #fbfcfd;
}
.mk-frame__dots { display: flex; gap: 6px; flex: 0 0 auto; }
.mk-frame__dots i { width: 10px; height: 10px; border-radius: 50%; background: #dfe4ea; display: block; }
.mk-frame__url {
	flex: 1 1 auto; background: #fff; border: 1px solid var(--mk-line); border-radius: 7px;
	font-size: 0.75rem; color: var(--mk-muted); padding: 5px 12px; text-align: center;
	white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
	font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
}
.mk-frame__body { display: block; background: var(--mk-bg); }
.mk-frame__body img, .mk-frame .wp-block-image img { display: block; width: 100%; height: auto; }
.mk-frame .wp-block-image { margin: 0; }

/* kırpılmış görünüm: uzun ekran görüntülerinin üst kısmı */
.mk-frame--crop .mk-frame__body { max-height: 460px; overflow: hidden; position: relative; }
.mk-frame--crop .mk-frame__body::after {
	content: ""; position: absolute; inset: auto 0 0; height: 90px;
	background: linear-gradient(to bottom, rgb(255 255 255 / 0%), rgb(255 255 255 / 92%));
}
.mk-frame--tall .mk-frame__body { max-height: 620px; overflow: hidden; position: relative; }
.mk-frame--tall .mk-frame__body::after {
	content: ""; position: absolute; inset: auto 0 0; height: 110px;
	background: linear-gradient(to bottom, rgb(255 255 255 / 0%), rgb(255 255 255 / 94%));
}

.mk-frame__note {
	position: absolute; z-index: 3; background: var(--mk-ink); color: #fff;
	font-size: 0.8125rem; line-height: 1.4; font-weight: 500;
	padding: 9px 14px; border-radius: 10px; box-shadow: var(--mk-sh-md); max-width: 230px;
}
.mk-frame__note--bl { left: 16px; bottom: 16px; }
.mk-frame__note--br { right: 16px; bottom: 16px; }
@media (max-width: 781px) { .mk-frame__note { display: none; } }

/* =========================================================
   8. TRUST STRIP
   ========================================================= */
.mk-strip { border-block: 1px solid var(--mk-line); background: var(--mk-surface); }
.mk-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.mk-strip__item { padding: 26px clamp(16px, 2.4vw, 30px); display: flex; gap: 14px; align-items: flex-start; }
.mk-strip__item + .mk-strip__item { border-left: 1px solid var(--mk-line); }
.mk-strip__icon {
	flex: 0 0 auto; width: 38px; height: 38px; border-radius: 10px;
	background: var(--mk-brand-050); color: var(--mk-brand);
	display: grid; place-items: center;
}
.mk-strip__t, .mk-strip__d { display: block; }
.mk-strip__t { font-family: var(--wp--preset--font-family--heading); font-weight: 650; color: var(--mk-ink); font-size: 0.9688rem; margin: 0 0 3px; }
.mk-strip__d { font-size: 0.875rem; color: var(--mk-muted); margin: 0; line-height: 1.5; }
@media (max-width: 899px) {
	.mk-strip__grid { grid-template-columns: repeat(2, 1fr); }
	.mk-strip__item:nth-child(odd) { border-left: 0; }
	.mk-strip__item:nth-child(n+3) { border-top: 1px solid var(--mk-line); }
}
@media (max-width: 519px) {
	.mk-strip__grid { grid-template-columns: 1fr; }
	.mk-strip__item + .mk-strip__item { border-left: 0; border-top: 1px solid var(--mk-line); }
}

/* =========================================================
   9. CARDS
   ========================================================= */
.mk-card {
	background: var(--mk-surface); border: 1px solid var(--mk-line); border-radius: var(--mk-r-md);
	padding: clamp(22px, 2.4vw, 30px);
	transition: border-color 240ms var(--mk-ease), box-shadow 240ms var(--mk-ease), transform 240ms var(--mk-ease);
}
.mk-card--hover:hover { border-color: #d3dae2; box-shadow: var(--mk-sh-md); transform: translateY(-2px); }
.mk-card h3, .mk-card h4 { margin-top: 0; }
.mk-card p:last-child { margin-bottom: 0; }
.mk-section--dark .mk-card { background: var(--mk-ink-800); border-color: rgb(255 255 255 / 10%); }

.mk-icon {
	width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center;
	background: var(--mk-brand-050); color: var(--mk-brand); margin-bottom: 16px;
}
.mk-icon--ok { background: var(--mk-ok-050); color: var(--mk-ok); }
.mk-section--dark .mk-icon { background: rgb(var(--mk-brand-rgb) / 16%); color: var(--mk-brand-300); }

.mk-badge {
	display: inline-flex; align-items: center; gap: 7px; font-size: 0.8125rem; font-weight: 600;
	padding: 5px 11px; border-radius: 999px; background: var(--mk-ok-050); color: var(--mk-ok);
	font-family: var(--wp--preset--font-family--heading);
}
.mk-badge--brand { background: var(--mk-brand-050); color: var(--mk-brand-600); }
.mk-badge--neutral { background: var(--mk-bg-alt); color: var(--mk-muted); }

/* =========================================================
   10. CHECK / X LISTS
   ========================================================= */
.mk-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.mk-list li { position: relative; padding-left: 30px; line-height: 1.55; }
.mk-list li::before {
	content: ""; position: absolute; left: 0; top: 3px; width: 19px; height: 19px; border-radius: 50%;
	background: var(--mk-ok-050) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E7C7B' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.mk-list--x li::before {
	background: #f4f6f8 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238B98A5' stroke-width='3.2' stroke-linecap='round'%3E%3Cpath d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.mk-section--dark .mk-list li::before { background-color: rgb(14 124 123 / 22%); }

/* =========================================================
   11. COMPARE
   ========================================================= */
.mk-compare { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2vw, 24px); }
@media (max-width: 781px) { .mk-compare { grid-template-columns: 1fr; } }
.mk-compare__col { background: var(--mk-surface); border: 1px solid var(--mk-line); border-radius: var(--mk-r-md); padding: clamp(22px, 2.4vw, 32px); }
.mk-compare__col--own { border-color: rgb(var(--mk-brand-rgb) / 38%); box-shadow: 0 24px 48px -30px rgb(var(--mk-brand-rgb) / 45%); }
.mk-compare__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.mk-compare__head h3 { margin: 0; font-size: 1.25rem; }

/* comparison table -> mobile cards */
.mk-table { width: 100%; border-collapse: collapse; background: var(--mk-surface); border: 1px solid var(--mk-line); border-radius: var(--mk-r-md); overflow: hidden; }
.mk-table th, .mk-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--mk-line-soft); font-size: 0.9688rem; vertical-align: top; }
.mk-table thead th { background: var(--mk-bg); font-family: var(--wp--preset--font-family--heading); font-weight: 700; color: var(--mk-ink); font-size: 0.9375rem; }
.mk-table tbody th { font-weight: 600; color: var(--mk-ink); width: 30%; }
.mk-table tr:last-child th, .mk-table tr:last-child td { border-bottom: 0; }
.mk-table td:last-child { color: var(--mk-ink); font-weight: 550; }
.mk-table thead th:last-child { color: var(--mk-brand-600); }
@media (max-width: 781px) {
	.mk-table, .mk-table tbody, .mk-table tr, .mk-table td, .mk-table th { display: block; width: auto; }
	.mk-table { border: 0; background: transparent; }
	.mk-table thead { display: none; }
	.mk-table tr { background: var(--mk-surface); border: 1px solid var(--mk-line); border-radius: var(--mk-r-md); margin-bottom: 14px; padding: 6px 4px; }
	.mk-table tbody th { width: auto; border-bottom: 0; padding-bottom: 4px; font-size: 0.9375rem; }
	.mk-table td { border-bottom: 0; padding-top: 4px; padding-bottom: 10px; }
	.mk-table td::before { content: attr(data-label); display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--mk-muted); margin-bottom: 3px; font-weight: 650; }
}

/* =========================================================
   12. STEPS
   ========================================================= */
.mk-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 26px); counter-reset: mkstep; }
@media (max-width: 899px) { .mk-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 519px) { .mk-steps { grid-template-columns: 1fr; } }
.mk-step { position: relative; padding-top: 26px; border-top: 2px solid var(--mk-line); }
.mk-step__n {
	font-family: var(--wp--preset--font-family--heading); font-size: 0.8125rem; font-weight: 700;
	letter-spacing: 0.08em; color: var(--mk-brand); margin: 0 0 8px;
}
.mk-step h3 { font-size: 1.125rem; margin: 0 0 8px; }
.mk-step p { margin: 0; font-size: 0.9375rem; color: var(--mk-muted); line-height: 1.6; }
.mk-step::before { content: ""; position: absolute; top: -2px; left: 0; width: 34px; height: 2px; background: var(--mk-brand); }

/* =========================================================
   13. ROLLBACK TIMELINE
   ========================================================= */
.mk-flow { display: grid; gap: 0; position: relative; }
.mk-flow__item { display: grid; grid-template-columns: 34px 1fr; gap: 18px; padding-bottom: 26px; position: relative; }
.mk-flow__item:last-child { padding-bottom: 0; }
.mk-flow__item::before {
	content: ""; position: absolute; left: 16px; top: 26px; bottom: -4px; width: 2px;
	background: rgb(255 255 255 / 12%);
}
.mk-flow__item:last-child::before { display: none; }
.mk-flow__dot {
	width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; position: relative; z-index: 1;
	background: var(--mk-ink-800); border: 1px solid rgb(255 255 255 / 14%);
	font-family: var(--wp--preset--font-family--heading); font-size: 0.8125rem; font-weight: 700; color: #8c99a6;
}
.mk-flow__item[data-state="ok"] .mk-flow__dot { background: rgb(14 124 123 / 20%); border-color: rgb(14 124 123 / 55%); color: #4fd1c5; }
.mk-flow__item[data-state="fail"] .mk-flow__dot { background: rgb(var(--mk-brand-rgb) / 20%); border-color: rgb(var(--mk-brand-rgb) / 60%); color: var(--mk-brand-300); }
.mk-flow__t { font-family: var(--wp--preset--font-family--heading); font-weight: 650; color: #fff; margin: 5px 0 4px; font-size: 1.0625rem; }
.mk-flow__d { margin: 0; font-size: 0.9375rem; color: #92a0ad; line-height: 1.55; }
.mk-flow__item[data-state="fail"] .mk-flow__t { color: var(--mk-brand-300); }

.mk-answer {
	font-family: var(--wp--preset--font-family--heading); font-weight: 700; color: #fff;
	font-size: clamp(1.5rem, 1rem + 1.6vw, 2.125rem); line-height: 1.25; letter-spacing: -0.022em;
	margin: 22px 0 26px; max-width: 22ch;
}
.mk-answer em { font-style: normal; color: var(--mk-brand-300); }

/* =========================================================
   14. BENTO / FEATURES
   ========================================================= */
.mk-bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(14px, 1.6vw, 20px); }
.mk-bento > * { grid-column: span 2; }
.mk-bento .mk-span-3 { grid-column: span 3; }
.mk-bento .mk-span-4 { grid-column: span 4; }
.mk-bento .mk-span-6 { grid-column: span 6; }
@media (max-width: 899px) {
	.mk-bento { grid-template-columns: repeat(2, 1fr); }
	.mk-bento > *, .mk-bento .mk-span-3, .mk-bento .mk-span-4 { grid-column: span 1; }
	.mk-bento .mk-span-6 { grid-column: span 2; }
}
@media (max-width: 559px) {
	.mk-bento { grid-template-columns: 1fr; }
	.mk-bento > *, .mk-bento .mk-span-3, .mk-bento .mk-span-4, .mk-bento .mk-span-6 { grid-column: span 1; }
}
.mk-feat h3 { font-size: 1.0625rem; margin: 0 0 10px; }
.mk-feat ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 7px; }
.mk-feat li {
	font-size: 0.8438rem; color: var(--mk-ink-700); background: var(--mk-bg);
	border: 1px solid var(--mk-line-soft); border-radius: 7px; padding: 4px 10px; line-height: 1.4;
}

/* generic auto grid */
.mk-grid { display: grid; gap: clamp(14px, 1.8vw, 22px); }
.mk-grid--2 { grid-template-columns: repeat(2, 1fr); }
.mk-grid--3 { grid-template-columns: repeat(3, 1fr); }
.mk-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 899px) { .mk-grid--3, .mk-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 559px) { .mk-grid--2, .mk-grid--3, .mk-grid--4 { grid-template-columns: 1fr; } }

/* =========================================================
   15. HOSTING HEALTH CARD
   ========================================================= */
.mk-health { background: var(--mk-surface); border: 1px solid var(--mk-line); border-radius: var(--mk-r-md); overflow: hidden; box-shadow: var(--mk-sh-md); }
.mk-health__head { padding: 18px 22px; border-bottom: 1px solid var(--mk-line); display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.mk-health__title { font-family: var(--wp--preset--font-family--heading); font-weight: 700; color: var(--mk-ink); margin: 0; font-size: 1.0625rem; }
.mk-health__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 22px; border-bottom: 1px solid var(--mk-line-soft); }
.mk-health__row:last-child { border-bottom: 0; }
.mk-health__k { display: flex; align-items: center; gap: 11px; font-weight: 550; color: var(--mk-ink); font-size: 0.9375rem; }
.mk-health__v { font-size: 0.8438rem; color: var(--mk-muted); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.mk-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--mk-ok); flex: 0 0 auto; box-shadow: 0 0 0 3px var(--mk-ok-050); }
.mk-dot--muted { background: #b6c0ca; box-shadow: 0 0 0 3px #eef1f4; }

/* =========================================================
   16. FAQ
   ========================================================= */
.mk-faq { border-top: 1px solid var(--mk-line); }
.mk-faq .wp-block-details {
	border-bottom: 1px solid var(--mk-line); padding: 4px 0; background: transparent;
}
.mk-faq .wp-block-details summary {
	font-family: var(--wp--preset--font-family--heading); font-weight: 650; color: var(--mk-ink);
	font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem); padding: 20px 44px 20px 0; position: relative;
	cursor: pointer; list-style: none; transition: color 200ms var(--mk-ease);
}
.mk-faq .wp-block-details summary::-webkit-details-marker { display: none; }
.mk-faq .wp-block-details summary:hover { color: var(--mk-brand); }
.mk-faq .wp-block-details summary::after {
	content: ""; position: absolute; right: 6px; top: 50%; width: 13px; height: 13px; margin-top: -7px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316202B' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
	transition: transform 260ms var(--mk-ease);
}
.mk-faq .wp-block-details[open] summary::after { transform: rotate(180deg); }
.mk-faq .wp-block-details > :not(summary) { padding: 0 60px 22px 0; margin: 0 0 0; color: var(--mk-body); }
.mk-faq .wp-block-details > p { margin-top: -4px; }
@media (max-width: 599px) { .mk-faq .wp-block-details > :not(summary) { padding-right: 8px; } }

/* =========================================================
   17. CTA + FOOTER
   ========================================================= */
.mk-cta {
	background: var(--mk-ink); color: #c3ccd6; position: relative; overflow: clip;
	padding-block: clamp(56px, 6.5vw, 104px);
}
.mk-cta::before {
	content: ""; position: absolute; inset: auto -10% -60% 30%; height: 420px; pointer-events: none;
	background: radial-gradient(45% 50% at 50% 50%, rgb(var(--mk-brand-rgb) / 20%), transparent 72%);
}
.mk-cta > * { position: relative; }
/* CTA bandı koyu bölüm renk kurallarını devralır */
.mk-cta :where(h1, h2, h3, h4, h5, h6) { color: #fff; }
.mk-cta .mk-eyebrow { color: var(--mk-brand-300); }
.mk-cta .mk-lead { color: #a9b5c1; }
.mk-cta a:not(.wp-block-button__link):not(.mk-cta__link) { color: #fff; }
.mk-cta .wp-block-button.is-style-outline .wp-block-button__link {
	background: transparent; color: #fff; border-color: rgb(255 255 255 / 28%); box-shadow: none;
}
.mk-cta .wp-block-button.is-style-outline .wp-block-button__link:hover {
	background: rgb(255 255 255 / 8%); color: #fff; border-color: rgb(255 255 255 / 50%);
}
.mk-cta .mk-badge--brand { background: rgb(var(--mk-brand-rgb) / 16%); color: var(--mk-brand-300); }
.mk-cta h2 { max-width: 18ch; }
.mk-cta .mk-trustline { color: #8c99a6; margin-top: 26px; }
.mk-cta .mk-trustline > span::before { background: var(--mk-brand-300); }

/* alt sayfalardaki sade, ortalanmış sürüm */
.mk-cta--center { text-align: center; }
.mk-cta--center h2 { max-width: 22ch; margin-inline: auto; }
.mk-cta--center .mk-lead { margin-inline: auto; }
.mk-cta--center .mk-trustline { justify-content: center; }

/* ana sayfadaki fiyat bildirim kartı */
.mk-cta__card {
	background: var(--mk-ink-800); border: 1px solid rgb(255 255 255 / 10%);
	border-radius: var(--mk-r-md); padding: clamp(24px, 2.6vw, 32px);
}
.mk-cta__card h3 { margin: 16px 0 10px; font-size: 1.25rem; color: #fff; }
.mk-cta__card p { margin: 0 0 22px; color: #92a0ad; font-size: 0.9375rem; line-height: 1.65; }
.mk-cta__link {
	display: inline-flex; align-items: center; gap: 8px;
	font-family: var(--wp--preset--font-family--heading); font-weight: 650; font-size: 0.9375rem;
	color: var(--mk-brand-300); text-decoration: none;
	transition: gap 200ms var(--mk-ease), color 200ms var(--mk-ease);
}
.mk-cta--split .mk-cta__link { color: var(--mk-brand-300); }
.mk-cta__link:hover { gap: 13px; color: #fff; text-decoration: none; }
.mk-cta__link svg { flex: 0 0 auto; }

/* CTA ve alt bilgi arasında boşluk kalmasın */
.wp-site-blocks > * + * { margin-block-start: 0; }
main > .mk-cta:last-child { margin-bottom: 0; }
.mk-footer { border-top: 1px solid rgb(255 255 255 / 8%); }

.mk-footer { background: var(--mk-ink); color: #93a0ad; padding-block: clamp(48px, 6vw, 80px) 0; }
.mk-footer :where(h2, h3, h4) { color: #fff; }
.mk-footer__t { font-family: var(--wp--preset--font-family--heading); font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; margin: 0 0 16px; }
.mk-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.mk-footer a { color: #93a0ad; text-decoration: none; font-size: 0.9375rem; transition: color 180ms var(--mk-ease); }
.mk-footer a:hover { color: #fff; text-decoration: none; }
.mk-footer__bottom {
	margin-top: clamp(36px, 4vw, 56px); border-top: 1px solid rgb(255 255 255 / 10%);
	padding-block: 24px; display: flex; flex-wrap: wrap; gap: 12px 26px; align-items: center; justify-content: space-between;
	font-size: 0.875rem; color: #77848f;
}
.mk-footer .mk-brand__mark { color: var(--mk-brand); }
.mk-footer .wp-block-site-title a { color: #fff; }

/* =========================================================
   18. FORMS (Fluent Forms uyumu)
   ========================================================= */
.mk-form-wrap { background: var(--mk-surface); border: 1px solid var(--mk-line); border-radius: var(--mk-r-md); padding: clamp(22px, 2.6vw, 34px); box-shadow: var(--mk-sh-sm); }
.mk-form-wrap .ff-el-group { margin-bottom: 18px; }
.mk-form-wrap .ff-el-input--label label { font-family: var(--wp--preset--font-family--heading); font-weight: 600; color: var(--mk-ink); font-size: 0.9375rem; margin-bottom: 7px; }
.mk-form-wrap input[type="text"], .mk-form-wrap input[type="email"], .mk-form-wrap input[type="tel"], .mk-form-wrap select, .mk-form-wrap textarea {
	width: 100%; border: 1px solid var(--mk-line); border-radius: 10px; padding: 12px 14px;
	font-family: inherit; font-size: 1rem; color: var(--mk-ink); background: #fff;
	transition: border-color 180ms var(--mk-ease), box-shadow 180ms var(--mk-ease);
}
.mk-form-wrap :is(input, select, textarea):focus {
	border-color: var(--mk-brand); box-shadow: 0 0 0 3px rgb(var(--mk-brand-rgb) / 14%); outline: none;
}
.mk-form-wrap .ff-btn-submit, .mk-form-wrap button[type="submit"] {
	background: var(--mk-brand); color: #fff; border: 0; border-radius: var(--mk-r-btn);
	padding: 14px 26px; font-family: var(--wp--preset--font-family--heading); font-weight: 650; font-size: 1rem;
	cursor: pointer; transition: background 200ms var(--mk-ease), transform 200ms var(--mk-ease);
}
.mk-form-wrap .ff-btn-submit:hover, .mk-form-wrap button[type="submit"]:hover { background: var(--mk-brand-600); transform: translateY(-1px); }
.mk-contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.mk-contact-item .mk-icon { margin-bottom: 0; width: 38px; height: 38px; border-radius: 10px; }
.mk-contact-item .mk-strip__d a { color: var(--mk-brand); }
.mk-frame__body > figure { margin: 0; }
.mk-frame > * { margin-block: 0 !important; }

/* =========================================================
   19. BLOG
   ========================================================= */
.mk-posts .wp-block-post-title a { color: var(--mk-ink); text-decoration: none; }
.mk-posts .wp-block-post-title a:hover { color: var(--mk-brand); }
.mk-posts .wp-block-post-template > li {
	background: var(--mk-surface); border: 1px solid var(--mk-line); border-radius: var(--mk-r-md);
	padding: clamp(20px, 2.2vw, 28px);
	transition: border-color 240ms var(--mk-ease), box-shadow 240ms var(--mk-ease), transform 240ms var(--mk-ease);
}
.mk-posts .wp-block-post-template > li:hover { border-color: #d3dae2; box-shadow: var(--mk-sh-md); transform: translateY(-2px); }
.mk-posts .wp-block-post-date, .mk-posts .wp-block-post-terms { font-size: 0.8125rem; color: var(--mk-muted); }
.mk-entry { max-width: 760px; }
.mk-entry :where(h2, h3) { margin-top: 1.8em; }
.mk-entry img { border-radius: var(--mk-r-md); }

/* =========================================================
   20. SCROLL REVEAL
   ========================================================= */
.mk-reveal { opacity: 0; transform: translateY(18px); }
.mk-reveal.is-in { opacity: 1; transform: none; transition: opacity 520ms var(--mk-ease), transform 520ms var(--mk-ease); }
.mk-reveal.is-in[data-d="1"] { transition-delay: 70ms; }
.mk-reveal.is-in[data-d="2"] { transition-delay: 140ms; }
.mk-reveal.is-in[data-d="3"] { transition-delay: 210ms; }
@media (prefers-reduced-motion: reduce) {
	.mk-reveal, .mk-reveal.is-in { opacity: 1; transform: none; transition: none; }
	.wp-block-button__link:hover, .mk-card--hover:hover { transform: none; }
}

/* =========================================================
   21. UTILITIES
   ========================================================= */
.mk-hr { height: 1px; background: var(--mk-line); border: 0; margin: 0; }
.mk-mono { font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace; font-size: 0.875rem; }
.mk-nowrap { white-space: nowrap; }
.mk-center { text-align: center; }
.mk-sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.mk-stack-sm > * + * { margin-top: 10px; }

/* mobil yapışkan CTA */
.mk-mobile-cta {
	position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90;
	display: none; gap: 10px; padding: 10px; border-radius: 14px;
	background: rgb(255 255 255 / 94%); backdrop-filter: blur(12px);
	border: 1px solid var(--mk-line); box-shadow: var(--mk-sh-lg);
	transform: translateY(140%); transition: transform 320ms var(--mk-ease);
}
.mk-mobile-cta.is-in { transform: none; }
.mk-mobile-cta a {
	flex: 1 1 0; text-align: center; padding: 12px 14px; border-radius: 10px; text-decoration: none;
	font-family: var(--wp--preset--font-family--heading); font-weight: 650; font-size: 0.9375rem;
}
.mk-mobile-cta a.is-primary { background: var(--mk-brand); color: #fff; }
.mk-mobile-cta a.is-secondary { background: var(--mk-bg); color: var(--mk-ink); border: 1px solid var(--mk-line); }
@media (max-width: 781px) { .mk-mobile-cta { display: flex; } }

/* çerez bildirimi */
.mk-cookie {
	position: fixed; left: 16px; bottom: 16px; z-index: 120; max-width: 380px;
	background: #fff; border: 1px solid var(--mk-line); border-radius: var(--mk-r-md);
	box-shadow: var(--mk-sh-lg); padding: 18px 20px; font-size: 0.875rem; line-height: 1.6; color: var(--mk-body);
	transform: translateY(140%); transition: transform 380ms var(--mk-ease); display: none;
}
.mk-cookie.is-in { transform: none; }
.mk-cookie__row { display: flex; gap: 10px; margin-top: 14px; }
.mk-cookie button {
	border: 0; border-radius: 9px; padding: 9px 16px; cursor: pointer; font-weight: 650; font-size: 0.875rem;
	font-family: var(--wp--preset--font-family--heading);
}
.mk-cookie .is-accept { background: var(--mk-brand); color: #fff; }
.mk-cookie .is-decline { background: var(--mk-bg); color: var(--mk-ink); border: 1px solid var(--mk-line); }
@media (max-width: 781px) { .mk-cookie { left: 12px; right: 12px; bottom: 78px; max-width: none; } }

/* editor içi düzeltmeler */
.editor-styles-wrapper .mk-hero::after { opacity: 0.35; }
