/* ==========================================================================
   Websens HQ — tasarım sistemi
   ========================================================================== */

:root {
	/* Marka */
	--ink: #0b0c0b;
	--ink-2: #1c1e1c;
	--ink-3: #3a3d3a;
	--muted: #686c68;
	--subtle: #9a9e99;
	--line: #e7e7e2;
	--line-2: #d9d9d3;
	--paper: #ffffff;
	--tint: #f6f6f2;
	--tint-2: #efefe9;

	--lime: #9cff56;       /* logodaki sinyal yeşili */
	--lime-soft: #e9ffd9;
	--lime-ink: #2c6b12;   /* açık zeminde okunur yeşil */

	--night: #0d0f1f;      /* CRM arayüzü laciverti */
	--night-2: #141733;
	--teal: #0f5f5a;

	--eo-violet: #8a7df6;
	--eo-cream: #fbf4e6;

	/* Tipografi */
	--font: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--mono: "Geist Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
	--serif: "Instrument Serif", Georgia, serif;

	--fs-display: clamp(2.6rem, 1.4rem + 4.6vw, 5.25rem);
	--fs-h2: clamp(2rem, 1.3rem + 2.4vw, 3.4rem);
	--fs-h3: clamp(1.25rem, 1.1rem + .5vw, 1.6rem);
	--fs-lead: clamp(1.05rem, 1rem + .3vw, 1.25rem);

	/* Ölçü */
	--container: 1240px;
	--gutter: clamp(16px, 4vw, 32px);
	--radius: 22px;
	--radius-sm: 14px;
	--header-h: 68px;
	--section: clamp(80px, 10vw, 148px);

	--ease: cubic-bezier(.2, .7, .1, 1);
}

/* Temel ------------------------------------------------------------------ */

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

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

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--font);
	font-size: 17px;
	line-height: 1.6;
	font-feature-settings: "ss01", "cv11";
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	overflow-x: clip;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--lime); color: var(--ink); }

.container {
	width: 100%;
	max-width: calc(var(--container) + var(--gutter) * 2);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.skip-link {
	position: absolute; left: 16px; top: -60px; z-index: 200;
	background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 10px;
}
.skip-link:focus { top: 12px; }

.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px); white-space: nowrap;
}

.nowrap { white-space: nowrap; }
.muted { color: var(--muted); }

/* Ortak parçalar ---------------------------------------------------------- */

.eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	font-family: var(--mono);
	font-size: 12.5px;
	font-weight: 500;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 20px;
}
.eyebrow::before {
	content: ""; width: 6px; height: 6px; border-radius: 2px; background: var(--lime);
	box-shadow: 0 0 0 1px rgba(11,12,11,.12) inset;
}
.eyebrow:has(.ws-mark)::before { display: none; }
.eyebrow--light { color: rgba(255,255,255,.62); }

.ws-mark { display: inline-block; flex: none; }

.tag {
	display: inline-flex; align-items: center;
	height: 22px; padding: 0 8px;
	border-radius: 999px;
	font-size: 12px; font-style: normal; font-weight: 500;
	letter-spacing: 0;
	background: var(--tint-2); color: var(--ink-3);
	vertical-align: middle;
}
.tag--lime { background: var(--lime); color: var(--ink); }

.dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 10px; vertical-align: middle; }
.dot--lime { background: var(--lime); box-shadow: 0 0 0 4px rgba(156,255,86,.22); }

.link-arrow {
	display: inline-flex; align-items: center; gap: 6px;
	font-weight: 500; font-size: 15px;
}
.link-arrow .ic { transition: transform .3s var(--ease); }
.link-arrow:hover .ic { transform: translateX(3px); }

/* Butonlar */
.btn {
	--h: 48px;
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	height: var(--h);
	padding: 0 22px;
	border-radius: 999px;
	font-size: 15px; font-weight: 500; line-height: 1;
	letter-spacing: -.005em;
	white-space: nowrap;
	transition: background-color .2s, color .2s, border-color .2s, transform .2s var(--ease), box-shadow .2s;
}
.btn .ic { transition: transform .3s var(--ease); }
.btn:hover .ic { transform: translateX(2px); }
.btn:active { transform: scale(.98); }
.btn--sm { --h: 38px; padding: 0 16px; font-size: 14px; }

.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: var(--ink-3); }
.btn--secondary { background: var(--paper); color: var(--ink); box-shadow: inset 0 0 0 1px var(--line-2); }
.btn--secondary:hover { box-shadow: inset 0 0 0 1px var(--ink); }
.btn--lime { background: var(--lime); color: var(--ink); }
.btn--lime:hover { background: #b6ff85; }
.btn--ghost { color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,.22); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1px rgba(255,255,255,.6); }

/* Bölümler */
.section { padding-block: var(--section); }
.section--tint { background: var(--tint); }
.section--dark { background: var(--night); color: #fff; }
.section--dark .eyebrow { color: rgba(255,255,255,.55); }
.section--dark .sec-lead { color: rgba(255,255,255,.66); }

.sec-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-title {
	font-size: var(--fs-h2);
	font-weight: 500;
	line-height: 1.04;
	letter-spacing: -.035em;
	text-wrap: balance;
}
.sec-lead {
	margin-top: 20px;
	font-size: var(--fs-lead);
	line-height: 1.55;
	color: var(--muted);
	max-width: 620px;
	text-wrap: pretty;
}
.sec-head--center .sec-lead { margin-inline: auto; }

.row-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: clamp(32px, 4vw, 48px); }
.row-head .sec-head { margin-bottom: 0; }

/* Başlık (header) ---------------------------------------------------------- */

.site-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(255,255,255,.9);
	-webkit-backdrop-filter: saturate(1.6) blur(16px);
	backdrop-filter: saturate(1.6) blur(16px);
	border-bottom: 1px solid transparent;
	transition: border-color .3s, background-color .3s;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 0; } }

.site-header__inner {
	height: var(--header-h);
	display: flex; align-items: center; gap: 40px;
}
.brand { display: inline-flex; align-items: center; flex: none; }
.brand__logo { width: 112px; height: auto; }

.nav { flex: 1; }
.nav__list { display: flex; align-items: center; gap: 4px; }
.nav__item { position: relative; }
.nav__link {
	display: inline-flex; align-items: center; gap: 4px;
	height: 36px; padding: 0 12px;
	border-radius: 999px;
	font-size: 14.5px; font-weight: 450;
	color: var(--ink-3);
	transition: color .2s, background-color .2s;
}
.nav__link:hover, .nav__link[aria-expanded="true"] { color: var(--ink); background: var(--tint); }
.nav__chev { transition: transform .25s var(--ease); }
.nav__link[aria-expanded="true"] .nav__chev { transform: rotate(180deg); }
.nav__link--quiet { font-weight: 500; color: var(--ink); }

.site-header__actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }

/* Ürünler paneli */
.panel {
	position: absolute; top: calc(100% + 12px); left: -12px;
	width: 580px;
	padding: 10px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 20px;
	box-shadow: 0 24px 60px -20px rgba(11,12,11,.22), 0 2px 6px rgba(11,12,11,.04);
	opacity: 0; visibility: hidden;
	transform: translateY(-6px);
	transition: opacity .2s, transform .25s var(--ease), visibility 0s .25s;
}
.has-panel.is-open .panel { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
.panel__grid { display: grid; gap: 4px; }
.panel__card {
	display: flex; gap: 16px; align-items: flex-start;
	padding: 16px; border-radius: 14px;
	transition: background-color .2s;
}
.panel__card:hover { background: var(--tint); }
.panel__icon {
	width: 44px; height: 44px; flex: none;
	display: grid; place-items: center;
	border-radius: 12px;
	background: var(--tint-2);
}
.panel__card--crm .panel__icon { background: var(--lime-soft); }
.panel__icon--eo {
	background: var(--ink); color: #fff;
	font-family: var(--serif); font-style: italic; font-size: 26px; line-height: 1;
	padding-bottom: 4px;
}
.panel__text strong { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.panel__text > span { display: block; font-size: 13.5px; line-height: 1.5; color: var(--muted); }
.panel__foot {
	display: flex; justify-content: space-between;
	margin-top: 6px; padding: 12px 16px 6px;
	border-top: 1px solid var(--line);
	font-size: 13.5px; font-weight: 500;
}
.panel__foot a { display: inline-flex; align-items: center; gap: 6px; color: var(--ink-3); }
.panel__foot a:hover { color: var(--ink); }

/* Mobil menü */
.menu-toggle { display: none; width: 40px; height: 40px; border-radius: 12px; place-items: center; }
.menu-toggle__close { display: none; }
.menu-toggle[aria-expanded="true"] .menu-toggle__open { display: none; }
.menu-toggle[aria-expanded="true"] .menu-toggle__close { display: block; }

.mobile-menu {
	position: fixed; inset: var(--header-h) 0 0 0;
	background: var(--paper);
	overflow-y: auto;
	padding: 8px 0 40px;
}
.mobile-menu__label {
	font-family: var(--mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
	color: var(--subtle); margin: 24px 0 8px;
}
.mobile-menu__product {
	display: flex; align-items: center; gap: 14px;
	padding: 12px 0; border-bottom: 1px solid var(--line);
}
.mobile-menu__product .ws-mark, .mobile-menu__product .panel__icon { width: 40px; height: 40px; }
.mobile-menu__product .ws-mark { object-fit: contain; padding: 9px; background: var(--lime-soft); border-radius: 12px; height: 40px; }
.mobile-menu__product strong { display: block; font-weight: 600; }
.mobile-menu__product small { color: var(--muted); font-size: 13.5px; }
.mobile-menu__link {
	display: block; padding: 14px 0;
	font-size: 22px; font-weight: 500; letter-spacing: -.02em;
	border-bottom: 1px solid var(--line);
}
.mobile-menu__actions { display: grid; gap: 10px; margin-top: 32px; }

@media (max-width: 1020px) {
	.nav, .site-header__actions > .nav__link--quiet { display: none; }
	.menu-toggle { display: grid; }
	.site-header__inner { gap: 16px; }
	.site-header.menu-open { background: var(--paper); border-bottom-color: var(--line); }
}
@media (max-width: 420px) {
	.site-header__actions .btn--sm { display: none; }
}

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

.hero { padding-top: clamp(56px, 8vw, 112px); overflow: hidden; }
.hero__inner { text-align: center; }
.hero__title {
	max-width: 980px; margin: 0 auto;
	font-size: var(--fs-display);
	font-weight: 500;
	line-height: .98;
	letter-spacing: -.045em;
	text-wrap: balance;
}
.hero__lead {
	max-width: 640px; margin: 28px auto 0;
	font-size: var(--fs-lead);
	color: var(--muted);
	text-wrap: pretty;
}
.hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 36px; }

.announce {
	display: inline-flex; align-items: center; gap: 10px;
	margin-bottom: 32px;
	padding: 5px 14px 5px 5px;
	border-radius: 999px;
	background: var(--paper);
	box-shadow: inset 0 0 0 1px var(--line);
	font-size: 14px; color: var(--ink-3);
	transition: box-shadow .2s;
}
.announce:hover { box-shadow: inset 0 0 0 1px var(--line-2), 0 4px 14px -6px rgba(0,0,0,.12); }
.announce__tag {
	padding: 3px 10px; border-radius: 999px;
	background: var(--ink); color: #fff;
	font-family: var(--mono); font-size: 11.5px; font-weight: 500;
}

/* Sahne: ürün görseli kompozisyonu */
.stage { margin-top: clamp(56px, 7vw, 88px); }
.stage__canvas {
	position: relative;
	aspect-ratio: 16 / 8.6;
	border-radius: 28px;
	overflow: hidden;
	background:
		radial-gradient(60% 70% at 12% 110%, rgba(156,255,86,.42), transparent 60%),
		radial-gradient(55% 60% at 100% 0%, rgba(34,120,140,.55), transparent 60%),
		linear-gradient(160deg, #10132b 0%, #0d1a2c 45%, #0c2b2b 100%);
	isolation: isolate;
}
.stage__canvas::after { /* ince doku */
	content: ""; position: absolute; inset: 0; z-index: -1; opacity: .35;
	background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
	background-size: 22px 22px;
	mask-image: linear-gradient(to bottom, #000, transparent 85%);
}
.stage__screen {
	position: absolute;
	left: 9%; right: 9%; top: 11%;
	border-radius: 14px 14px 0 0;
	overflow: hidden;
	box-shadow: 0 0 0 1px rgba(255,255,255,.12), 0 40px 80px -20px rgba(0,0,0,.6);
}
.stage__screen img { width: 100%; }
.stage__float {
	position: absolute;
}
.stage__float img { width: 100%; }
.stage__float--a { width: 22%; right: 3.5%; top: 34%; }
.stage__float--b { width: 24%; left: 3%; top: 52%; }

.stage__caption {
	display: flex; align-items: center; justify-content: space-between; gap: 16px;
	padding: 18px 4px 0;
	font-size: 15px;
}
.stage__caption p { display: flex; align-items: center; flex-wrap: wrap; }
.stage__caption strong { font-weight: 600; margin-right: 4px; }

@media (max-width: 760px) {
	.stage__canvas { aspect-ratio: 4 / 3.6; border-radius: 20px; }
	.stage__screen { left: 6%; right: -30%; top: 9%; }
	.stage__float--a { width: 44%; right: 4%; top: auto; bottom: 4%; }
	.stage__float--b { display: none; }
	.stage__caption { flex-direction: column; align-items: flex-start; }
}

/* Kanallar şeridi */
.channels { padding-block: clamp(48px, 6vw, 72px); }
.channels + .section { padding-top: clamp(40px, 5vw, 72px); }
.channels__row {
	display: flex; align-items: center; justify-content: space-between; gap: 32px;
	padding-block: 28px;
	border-block: 1px solid var(--line);
}
.channels__label { max-width: 300px; font-size: 15px; color: var(--muted); line-height: 1.45; }
.channels__list { display: flex; flex-wrap: wrap; gap: 10px 28px; align-items: center; }
.channels__list li { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; color: var(--ink-2); }
.channels__list img { width: 26px; height: 26px; object-fit: contain; border-radius: 7px; }
.channels__mail { width: 26px; height: 26px; border-radius: 7px; display: grid; place-items: center; background: var(--ink); color: #fff; }
@media (max-width: 900px) {
	.channels__row { flex-direction: column; align-items: flex-start; }
	.channels__label { max-width: none; }
}

/* Ürün kartları ------------------------------------------------------------ */

.products { display: grid; grid-template-columns: 1.35fr 1fr; gap: 16px; }
.product {
	position: relative;
	display: flex; flex-direction: column;
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--tint);
	transition: transform .4s var(--ease);
}
.product__body { padding: clamp(28px, 3.2vw, 44px); position: relative; z-index: 1; }
.product__kicker {
	display: flex; align-items: center; gap: 10px;
	font-size: 15px; font-weight: 600;
	margin-bottom: 28px;
}
.product__title {
	font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.25rem);
	font-weight: 500; line-height: 1.08; letter-spacing: -.03em;
	max-width: 460px;
	text-wrap: balance;
}
.product__text { margin-top: 16px; color: var(--muted); max-width: 480px; font-size: 16px; }
.product__points { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 22px; font-size: 14.5px; font-weight: 500; }
.product__points li { display: flex; align-items: center; gap: 6px; }
.product__points .ic { color: var(--lime-ink); }
.product__cta { display: inline-flex; align-items: center; gap: 6px; margin-top: 28px; font-weight: 500; font-size: 15px; }
.product__cta .ic { transition: transform .3s var(--ease); }
.product:hover .product__cta .ic { transform: translateX(3px); }
.product__media { margin-top: auto; }

.product--crm {
	background:
		radial-gradient(90% 70% at 90% 100%, rgba(156,255,86,.55), transparent 60%),
		linear-gradient(180deg, #f3f7ee 0%, #eaf5df 100%);
}
.product { min-height: 600px; }
.product--crm .product__body { max-width: 560px; }
.product--crm .product__media {
	position: absolute; right: -7%; bottom: -12%;
	width: 70%;
	pointer-events: none;
}
.product--crm .product__media img { width: 100%; transition: transform .6s var(--ease); }
.product--crm:hover .product__media img { transform: translate(-6px, -8px); }
.product--crm .product__cta { position: relative; z-index: 1; }

.product--eo { background: linear-gradient(180deg, #f5f2fb 0%, var(--eo-cream) 100%); }
.eo-mark {
	width: 22px; height: 22px; border-radius: 6px;
	display: inline-grid; place-items: center;
	background: var(--ink); color: #fff;
	font-family: var(--serif); font-style: italic; font-size: 17px; line-height: 1; padding-bottom: 3px;
}
.product__media--eo { padding: 0 clamp(24px, 3.2vw, 44px) clamp(24px, 3.2vw, 44px); }
.eo-card {
	position: relative;
	padding: 36px 28px 26px;
	border-radius: 16px;
	background:
		radial-gradient(70% 90% at 0% 0%, rgba(138,125,246,.28), transparent 60%),
		radial-gradient(60% 80% at 100% 100%, rgba(255,196,120,.35), transparent 60%),
		#fff;
	box-shadow: 0 1px 0 rgba(11,12,11,.04), 0 20px 40px -24px rgba(60,40,120,.35);
	transition: transform .6s var(--ease);
}
.product--eo:hover .eo-card { transform: translateY(-6px); }
.eo-card__title {
	font-size: clamp(1.9rem, 1.4rem + 1.2vw, 2.5rem);
	line-height: 1; letter-spacing: -.035em; font-weight: 500;
	color: #3a3a3a;
}
.eo-card__title em { font-family: var(--serif); font-weight: 400; letter-spacing: -.01em; }
.eo-card__chips { display: flex; gap: 8px; margin-top: 22px; }
.eo-card__chips span {
	padding: 6px 12px; border-radius: 999px; font-size: 13px; font-weight: 500;
	background: rgba(138,125,246,.12); color: #4b3fb8;
}
.eo-card__chips span + span { background: rgba(11,12,11,.06); color: var(--ink-3); }

@media (max-width: 900px) {
	.products { grid-template-columns: 1fr; }
	.product { min-height: 0; }
	.product--crm { padding-bottom: 62%; }
	.product--crm .product__media { width: 88%; right: -10%; bottom: -6%; }
}

/* Spotlight / sekmeler ------------------------------------------------------ */

.spotlight {
	position: relative; overflow: hidden;
	background:
		radial-gradient(50% 40% at 100% 0%, rgba(34,120,140,.35), transparent 70%),
		radial-gradient(40% 40% at 0% 100%, rgba(156,255,86,.12), transparent 70%),
		var(--night);
}
.spotlight__head {
	display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: end;
	margin-bottom: clamp(40px, 5vw, 72px);
}
.spotlight__head .sec-head { margin-bottom: 0; }
.spotlight__head .sec-lead { margin: 0 0 6px; justify-self: end; max-width: 460px; }

.tabs { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(24px, 4vw, 64px); align-items: center; }
.tabs__list { display: grid; }
.tabs__tab {
	position: relative;
	display: grid; grid-template-columns: 44px 1fr; gap: 8px;
	text-align: left;
	padding: 22px 0;
	border-top: 1px solid rgba(255,255,255,.1);
	color: rgba(255,255,255,.5);
	transition: color .3s;
}
.tabs__tab:last-child { border-bottom: 1px solid rgba(255,255,255,.1); }
.tabs__tab:hover { color: rgba(255,255,255,.8); }
.tabs__tab[aria-selected="true"] { color: #fff; }
.tabs__num { font-family: var(--mono); font-size: 13px; padding-top: 4px; }
.tabs__text strong { display: block; font-size: 20px; font-weight: 500; letter-spacing: -.02em; }
.tabs__desc {
	display: grid; grid-template-rows: 0fr;
	opacity: 0;
	transition: grid-template-rows .45s var(--ease), opacity .3s;
}
.tabs__desc > span {
	min-height: 0; overflow: hidden;
	font-size: 15.5px; line-height: 1.55; color: rgba(255,255,255,.62);
}
.tabs__desc > span::before { content: ""; display: block; height: 8px; }
.tabs__tab[aria-selected="true"] .tabs__desc { grid-template-rows: 1fr; opacity: 1; }
.tabs__bar {
	position: absolute; left: 0; top: -1px; height: 1px; width: 0;
	background: var(--lime);
}
.tabs__tab[aria-selected="true"] .tabs__bar { animation: tabbar var(--tab-duration, 7s) linear forwards; }
.tabs.is-paused .tabs__tab[aria-selected="true"] .tabs__bar { animation-play-state: paused; }
@keyframes tabbar { to { width: 100%; } }

.tabs__panels { position: relative; }
.tabs__panel { animation: panelIn .6s var(--ease); }
@keyframes panelIn { from { opacity: 0; transform: translateY(12px) scale(.99); } }

.shot {
	position: relative;
	aspect-ratio: 7 / 5;
	border-radius: var(--radius);
	overflow: hidden;
	display: grid; place-items: center;
}
.shot img { width: 100%; height: 100%; object-fit: cover; }
.shot--frame {
	background: linear-gradient(160deg, #1b2050, #0f3b3c);
	padding: 8% 0 0 8%;
	place-items: start;
}
.shot--frame img { object-fit: cover; object-position: left top; border-radius: 12px 0 0 0; box-shadow: 0 0 0 1px rgba(255,255,255,.12); }
.shot--chat { background: #eef3f7; }
.shot--chat { background: #fff; }
.shot--chat img { width: 78%; height: auto; }
.shot--light { background: #efefef; }
.shot--light img { object-position: left top; }
.shot--lime { background: #93d96d; }
.shot--lime img { object-fit: cover; object-position: 50% 30%; }

.facts {
	display: grid; grid-template-columns: repeat(4, 1fr);
	margin-top: clamp(56px, 7vw, 96px);
	border-top: 1px solid rgba(255,255,255,.1);
}
.facts li { padding: 28px 24px 0 0; }
.facts li + li { padding-left: 24px; border-left: 1px solid rgba(255,255,255,.1); }
.facts strong { display: block; font-size: clamp(1.8rem, 1.3rem + 1.4vw, 2.6rem); font-weight: 500; letter-spacing: -.04em; line-height: 1.1; }
.facts span { display: block; margin-top: 6px; font-size: 14.5px; color: rgba(255,255,255,.6); }
.spotlight__cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: clamp(48px, 5vw, 64px); }

@media (max-width: 900px) {
	.spotlight__head { grid-template-columns: 1fr; }
	.spotlight__head .sec-lead { justify-self: start; }
	.tabs { grid-template-columns: 1fr; }
	.tabs__panels { order: -1; }
	.facts { grid-template-columns: repeat(2, 1fr); }
	.facts li:nth-child(3) { padding-left: 0; border-left: 0; }
	.facts li:nth-child(n+3) { margin-top: 28px; border-top: 1px solid rgba(255,255,255,.1); }
}

/* Şirket ------------------------------------------------------------------- */

.company__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 8vw, 120px); align-items: start; }
.statement {
	font-size: clamp(1.6rem, 1.15rem + 1.5vw, 2.5rem);
	line-height: 1.14; letter-spacing: -.03em; font-weight: 500;
	margin-bottom: 36px;
	text-wrap: pretty;
}
.principles li {
	display: grid; grid-template-columns: 56px 1fr; gap: 8px;
	padding: 28px 0;
	border-top: 1px solid var(--line);
}
.principles li:last-child { border-bottom: 1px solid var(--line); }
.principles__num { font-family: var(--mono); font-size: 13px; color: var(--subtle); padding-top: 4px; }
.principles h3 { font-size: 20px; font-weight: 500; letter-spacing: -.02em; }
.principles p { margin-top: 6px; color: var(--muted); font-size: 16px; }
@media (max-width: 900px) { .company__grid { grid-template-columns: 1fr; } }

/* Yazı kartları ------------------------------------------------------------ */

.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.posts--single { grid-template-columns: 1fr; }
.card-post__link { display: block; height: 100%; }
.card-post__media {
	aspect-ratio: 16 / 10; overflow: hidden;
	border-radius: var(--radius-sm);
	background: var(--tint-2);
}
.card-post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.card-post__link:hover .card-post__media img { transform: scale(1.03); }
.card-post__placeholder { display: grid; place-items: center; height: 100%; }
.card-post__body { padding-top: 18px; }
.card-post__meta { display: flex; gap: 12px; font-family: var(--mono); font-size: 12.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.card-post__meta span { color: var(--ink); }
.card-post__title { margin-top: 10px; font-size: 20px; line-height: 1.3; font-weight: 500; letter-spacing: -.02em; text-wrap: balance; }
.card-post__link:hover .card-post__title { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.card-post__excerpt { margin-top: 12px; color: var(--muted); }
.card-post .link-arrow { margin-top: 24px; }

.card-post--wide .card-post__link {
	display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(24px, 4vw, 64px); align-items: center;
	padding: 16px; border-radius: var(--radius);
	background: var(--paper);
}
.card-post--wide .card-post__media { aspect-ratio: 5 / 4; }
.card-post--wide .card-post__body { padding: 8px 24px 8px 0; }
.card-post--wide .card-post__title { font-size: clamp(1.5rem, 1.2rem + 1vw, 2.1rem); line-height: 1.12; letter-spacing: -.03em; }
.card-post--wide .card-post__link:hover .card-post__title { text-decoration: none; }

@media (max-width: 900px) {
	.posts { grid-template-columns: 1fr; gap: 40px; }
	.card-post--wide .card-post__link { grid-template-columns: 1fr; }
	.card-post--wide .card-post__body { padding: 0 8px 12px; }
	.row-head { flex-direction: column; align-items: flex-start; }
}

/* Kapanış çağrısı ------------------------------------------------------------ */

.cta { padding-block: clamp(16px, 3vw, 24px) clamp(64px, 8vw, 112px); }
.section--tint + .cta { background: linear-gradient(var(--tint) 50%, var(--paper) 50%); }
.cta__box {
	position: relative; overflow: hidden;
	display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px;
	padding: clamp(40px, 6vw, 88px);
	border-radius: 28px;
	color: #fff;
	background:
		radial-gradient(50% 90% at 100% 100%, rgba(156,255,86,.32), transparent 65%),
		radial-gradient(40% 60% at 0% 0%, rgba(34,120,140,.4), transparent 70%),
		var(--ink);
}
.cta__title { font-size: var(--fs-h2); line-height: 1.02; letter-spacing: -.04em; font-weight: 500; text-wrap: balance; }
.cta__lead { margin-top: 20px; max-width: 540px; color: rgba(255,255,255,.66); font-size: var(--fs-lead); }
.cta__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.cta__note img { width: 260px; transform: rotate(-4deg); }
@media (max-width: 900px) {
	.cta__box { grid-template-columns: 1fr; }
	.cta__note { display: none; }
}

/* Alt bilgi ------------------------------------------------------------------ */

.site-footer { border-top: 1px solid var(--line); padding-top: clamp(56px, 7vw, 88px); font-size: 14.5px; }
.site-footer__top { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; padding-bottom: 64px; }
.site-footer__brand p { margin: 20px 0 24px; color: var(--muted); max-width: 300px; }
.social { display: flex; gap: 8px; }
.social a {
	width: 38px; height: 38px; display: grid; place-items: center;
	border-radius: 50%; box-shadow: inset 0 0 0 1px var(--line);
	color: var(--ink-3); transition: box-shadow .2s, color .2s;
}
.social a:hover { color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.site-footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.site-footer__cols h2 { font-size: 14.5px; font-weight: 500; margin-bottom: 16px; }
.site-footer__cols li + li { margin-top: 10px; }
.site-footer__cols a, .site-footer__cols span { color: var(--muted); transition: color .2s; overflow-wrap: anywhere; }
.site-footer__cols a:hover { color: var(--ink); }
.site-footer__bottom {
	display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
	padding-block: 24px 32px;
	border-top: 1px solid var(--line);
	color: var(--muted); font-size: 13.5px;
}
.site-footer__bottom ul { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.site-footer__bottom a:hover { color: var(--ink); }
.site-footer__kvkk { display: inline-flex; align-items: center; gap: 6px; }
@media (max-width: 900px) {
	.site-footer__top { grid-template-columns: 1fr; gap: 48px; }
	.site-footer__cols { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
}

/* Yardımcılar ----------------------------------------------------------------- */

.section--flush-top { padding-top: 0; }
.container--narrow { max-width: calc(760px + var(--gutter) * 2); }
.container--wide { max-width: calc(1080px + var(--gutter) * 2); }
.ic.flip { transform: scaleX(-1); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--tint-2); }

/* Sayfa başlıkları ------------------------------------------------------------ */

.page-hero { padding-block: clamp(56px, 8vw, 112px) clamp(48px, 6vw, 80px); }
.page-hero__title {
	max-width: 900px;
	font-size: clamp(2.4rem, 1.4rem + 3.8vw, 4.5rem);
	font-weight: 500; line-height: 1; letter-spacing: -.045em;
	text-wrap: balance;
}
.page-hero__lead { max-width: 620px; margin-top: 24px; font-size: var(--fs-lead); color: var(--muted); text-wrap: pretty; }
.page-hero__meta { margin-top: 16px; font-size: 14.5px; color: var(--muted); }
.page-hero--center { text-align: center; }
.page-hero--center .page-hero__title, .page-hero--center .page-hero__lead { margin-inline: auto; }
.page-hero--center .hero__actions { margin-top: 32px; }
.page-hero--doc { padding-bottom: 40px; }
.page-hero--doc .page-hero__title { font-size: clamp(2.2rem, 1.5rem + 2.6vw, 3.6rem); }
.page-hero__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: end; }
.page-hero__grid .page-hero__lead { margin: 0 0 8px; }
@media (max-width: 900px) { .page-hero__grid { grid-template-columns: 1fr; gap: 0; } .page-hero__grid .page-hero__lead { margin-top: 24px; } }
.error-404 { padding-block: clamp(96px, 14vw, 180px); }

/* Ürün sayfası hero */
.hero--product .hero__title { max-width: 1000px; }
.product-badge {
	display: inline-flex; align-items: center; gap: 10px;
	margin-bottom: 28px;
	padding: 6px 14px 6px 6px;
	border-radius: 999px;
	box-shadow: inset 0 0 0 1px var(--line);
	font-size: 15px; font-weight: 600;
}
.product-badge .ws-mark { width: 34px; height: 34px; padding: 7px; border-radius: 50%; background: var(--lime); object-fit: contain; }
.product-badge--eo { background: rgba(255,255,255,.7); }
.product-badge--eo .eo-mark { width: 32px; height: 32px; border-radius: 50%; font-size: 22px; }
.product-badge__by { font-weight: 400; color: var(--muted); padding-left: 10px; border-left: 1px solid var(--line-2); }

.hero__assure { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 24px; margin-top: 24px; font-size: 14px; color: var(--muted); }
.hero__assure li { display: inline-flex; align-items: center; gap: 6px; }
.hero__assure .ic { color: var(--lime-ink); }

.stage--crm .stage__canvas { aspect-ratio: 16 / 8; }
.stage__screen--wide { left: 7%; right: 16%; top: 10%; }
.stage__float--kanban { width: 36%; right: 3%; top: 27%; }
.stage__float--kanban img { border-radius: 14px; box-shadow: 0 40px 60px -20px rgba(0,0,0,.55); }
@media (max-width: 760px) {
	.stage--crm .stage__canvas { aspect-ratio: 4 / 3.8; }
	.stage__screen--wide { left: 6%; right: -40%; }
	.stage__float--kanban { width: 62%; right: 4%; top: auto; bottom: 5%; }
}

/* Bento ------------------------------------------------------------------------ */

.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tile {
	display: flex; flex-direction: column;
	min-height: 240px;
	padding: 28px;
	border-radius: var(--radius);
	background: var(--tint);
	overflow: hidden;
}
.tile--span2 { grid-column: span 2; }
.tile__icon {
	width: 40px; height: 40px; display: grid; place-items: center;
	border-radius: 12px; background: #fff; margin-bottom: 20px;
	box-shadow: 0 1px 2px rgba(11,12,11,.06), inset 0 0 0 1px var(--line);
}
.tile h3 { font-size: 19px; font-weight: 500; letter-spacing: -.02em; line-height: 1.25; }
.tile p { margin-top: 8px; font-size: 15.5px; color: var(--muted); max-width: 440px; }
.tile__media { margin-top: auto; padding-top: 24px; }

.tile--inbox { display: grid; grid-template-columns: 1fr 1.25fr; gap: 24px; align-items: center; }
.tile--inbox .tile__media { padding: 0; margin: 0; }
.inbox-demo { display: grid; gap: 8px; }
.inbox-demo__row {
	display: grid; grid-template-columns: 30px 1fr auto auto; align-items: center; gap: 12px;
	padding: 12px 14px;
	border-radius: 14px; background: #fff;
	box-shadow: 0 1px 2px rgba(11,12,11,.05), inset 0 0 0 1px var(--line);
	font-size: 13.5px;
}
.inbox-demo__row:nth-child(1) { box-shadow: 0 10px 30px -12px rgba(11,12,11,.18), inset 0 0 0 1px var(--line-2); }
.inbox-demo__row:nth-child(4) { opacity: .55; }
.inbox-demo__row img { width: 30px; height: 30px; border-radius: 8px; }
.inbox-demo__row strong { display: block; font-weight: 600; line-height: 1.3; }
.inbox-demo__row span { display: block; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.inbox-demo__row div { min-width: 0; }
.inbox-demo__row em { font-style: normal; font-size: 11.5px; font-weight: 500; padding: 3px 8px; border-radius: 999px; background: var(--tint-2); }
.inbox-demo__row:nth-child(1) em { background: var(--lime); }
.inbox-demo__row time { font-family: var(--mono); font-size: 11.5px; color: var(--subtle); }

.tile--ai { background: #fff; box-shadow: inset 0 0 0 1px var(--line); }
.tile__media--chat { margin: auto -28px -28px; padding: 0; }
.tile__media--chat img { width: 100%; max-width: 360px; margin-inline: auto; }

.tile--widgets { background: linear-gradient(135deg, #f3f7ee, #eaf5df); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 24px; }
.chips li {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 8px 14px; border-radius: 999px;
	background: #fff; font-size: 14px; font-weight: 500;
	box-shadow: inset 0 0 0 1px rgba(11,12,11,.08);
}

@media (max-width: 1020px) {
	.bento { grid-template-columns: repeat(2, 1fr); }
	.tile--inbox { grid-column: span 2; }
	.tile--widgets { grid-column: span 2; }
}
@media (max-width: 680px) {
	.bento { grid-template-columns: 1fr; }
	.tile--span2, .tile--inbox, .tile--widgets { grid-column: auto; }
	.tile--inbox { grid-template-columns: 1fr; }
	.inbox-demo__row time { display: none; }
}

/* Adımlar ---------------------------------------------------------------------- */

.steps { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 8vw, 120px); align-items: start; }
.steps__intro { position: sticky; top: calc(var(--header-h) + 48px); }
.steps__intro .sec-head { margin-bottom: 36px; }
.steps__list li { padding: 36px 0; border-top: 1px solid rgba(255,255,255,.12); }
.steps__list li:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.steps__num { display: inline-block; font-family: var(--mono); font-size: 13px; color: var(--lime); margin-bottom: 14px; }
.steps__list h3 { font-size: clamp(1.4rem, 1.2rem + .8vw, 1.9rem); font-weight: 500; letter-spacing: -.03em; }
.steps__list p { margin-top: 10px; color: rgba(255,255,255,.64); max-width: 520px; }
@media (max-width: 900px) {
	.steps { grid-template-columns: 1fr; }
	.steps__intro { position: static; }
}

/* Neden ------------------------------------------------------------------------- */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 88px); align-items: center; }
.split__media { border-radius: var(--radius); overflow: hidden; background: #93d96d; aspect-ratio: 1 / 1.05; }
.split__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; }
.why li { display: grid; grid-template-columns: 40px 1fr; gap: 12px; padding: 22px 0; border-top: 1px solid var(--line); }
.why li:last-child { border-bottom: 1px solid var(--line); }
.why .ic { margin-top: 2px; }
.why h3 { font-size: 18px; font-weight: 500; letter-spacing: -.015em; }
.why p { margin-top: 4px; color: var(--muted); font-size: 15.5px; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split__media { aspect-ratio: 4 / 3; } }

/* Fiyatlandırma ------------------------------------------------------------------ */

.pricing-head { display: flex; flex-direction: column; align-items: center; margin-bottom: clamp(40px, 5vw, 56px); }
.pricing-head .sec-head { margin-bottom: 32px; }
.billing {
	display: inline-flex; padding: 4px; gap: 2px;
	border-radius: 999px; background: #fff;
	box-shadow: inset 0 0 0 1px var(--line);
}
.billing button {
	display: inline-flex; align-items: center; gap: 8px;
	height: 38px; padding: 0 18px; border-radius: 999px;
	font-size: 14.5px; font-weight: 500; color: var(--muted);
	transition: background-color .2s, color .2s;
}
.billing button[aria-pressed="true"] { background: var(--ink); color: #fff; }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
.plan {
	display: flex; flex-direction: column;
	padding: 32px;
	border-radius: var(--radius);
	background: #fff;
	box-shadow: inset 0 0 0 1px var(--line);
}
.plan__head h3 { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 20px; font-weight: 500; letter-spacing: -.02em; }
.plan__head p { margin-top: 6px; font-size: 15px; color: var(--muted); min-height: 48px; }
.plan__price { margin: 28px 0 24px; min-height: 56px; }
.plan__amount { font-size: clamp(2.2rem, 1.8rem + 1vw, 2.8rem); font-weight: 500; letter-spacing: -.045em; line-height: 1; font-variant-numeric: tabular-nums; }
.plan__amount small { font-size: 15px; font-weight: 400; letter-spacing: 0; color: var(--muted); margin-left: 4px; }
[data-billing="monthly"] .plan__amount[data-period="yearly"],
[data-billing="yearly"] .plan__amount[data-period="monthly"] { display: none; }
.plan__btn { width: 100%; }
.plan__limits { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; gap: 10px 12px; font-size: 14px; font-weight: 500; }
.plan__includes { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 13.5px; font-weight: 500; }
.plan--featured .plan__includes { border-color: rgba(255,255,255,.12); }
.plan__features { margin-top: 12px; display: grid; gap: 10px; font-size: 14.5px; color: var(--ink-3); }
.plan__features li { display: flex; gap: 10px; align-items: flex-start; }
.plan__features .ic { flex: none; margin-top: 3px; color: var(--lime-ink); }

.plan--featured { background: var(--night); color: #fff; box-shadow: none; position: relative; }
.plan--featured .plan__head p, .plan--featured .plan__amount small { color: rgba(255,255,255,.6); }
.plan--featured .plan__limits, .plan--featured .plan__features { border-color: rgba(255,255,255,.12); }
.plan--featured .plan__features { color: rgba(255,255,255,.8); }
.plan--featured .plan__features .ic { color: var(--lime); }
.plans__note { margin-top: 32px; text-align: center; color: var(--muted); font-size: 15px; }
.plans__note a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 1020px) { .plans { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } .plan__head p, .plan__price { min-height: 0; } }

/* SSS -------------------------------------------------------------------------- */

.faq-wrap { display: grid; grid-template-columns: 1fr 1.6fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.faq__item { border-top: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__item summary {
	display: flex; justify-content: space-between; align-items: center; gap: 24px;
	padding: 22px 0;
	font-size: 18px; font-weight: 500; letter-spacing: -.015em;
	cursor: pointer; list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon { flex: none; transition: transform .3s var(--ease); color: var(--muted); }
.faq__item[open] .faq__icon { transform: rotate(45deg); color: var(--ink); }
.faq__body { padding: 0 48px 24px 0; color: var(--muted); }
@media (max-width: 900px) { .faq-wrap { grid-template-columns: 1fr; gap: 0; } }

/* Ekibinolsun ------------------------------------------------------------------ */

.is-eo { --eo-ink: #2e2a45; }
.eo-hero {
	position: relative;
	padding-block: clamp(64px, 9vw, 128px) clamp(64px, 8vw, 104px);
	text-align: center;
	background:
		radial-gradient(40% 60% at 10% 30%, rgba(138,125,246,.18), transparent 70%),
		radial-gradient(40% 60% at 90% 20%, rgba(255,196,120,.25), transparent 70%),
		linear-gradient(180deg, #fbfaff 0%, var(--eo-cream) 100%);
}
.eo-hero__title {
	max-width: 960px; margin: 0 auto;
	font-size: clamp(2.8rem, 1.4rem + 5vw, 5.6rem);
	font-weight: 500; line-height: .98; letter-spacing: -.045em;
	color: #333;
}
.eo-hero__title em { font-family: var(--serif); font-weight: 400; letter-spacing: -.02em; }
.eo-hero__assure {
	display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 28px;
	margin-top: 56px; padding-top: 28px;
	border-top: 1px solid rgba(46,42,69,.1);
	font-size: 14.5px; color: var(--ink-3);
}
.eo-hero__assure li { display: inline-flex; align-items: center; gap: 8px; }
.eo-hero__assure .ic { color: #5b4fd6; }

.models { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.model { padding: clamp(28px, 3.5vw, 44px); border-radius: var(--radius); background: var(--tint); }
.model__icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: #fff; color: #5b4fd6; margin-bottom: 28px; box-shadow: inset 0 0 0 1px var(--line); }
.model .eyebrow { margin-bottom: 8px; }
.model .eyebrow::before { background: var(--eo-violet); }
.model h3 { font-size: clamp(1.4rem, 1.2rem + .7vw, 1.8rem); font-weight: 500; letter-spacing: -.03em; }
.model > p { margin-top: 12px; color: var(--muted); }
.ticks { margin-top: 24px; display: grid; gap: 10px; font-size: 15px; }
.ticks li { display: flex; gap: 10px; }
.ticks .ic { flex: none; margin-top: 3px; color: #5b4fd6; }
@media (max-width: 900px) { .models { grid-template-columns: 1fr; } }

.section--eo { background: linear-gradient(180deg, #f7f5ff, #fff); }
.services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service { padding: 28px; border-radius: var(--radius); background: #fff; box-shadow: inset 0 0 0 1px var(--line); }
.service__icon { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: rgba(138,125,246,.12); color: #4b3fb8; margin-bottom: 40px; }
.service h3 { font-size: 18px; font-weight: 500; letter-spacing: -.02em; }
.service p { margin-top: 8px; font-size: 15px; color: var(--muted); }
@media (max-width: 1020px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services { grid-template-columns: 1fr; } }

.compare { display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(32px, 6vw, 88px); align-items: start; }
.compare__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.compare__col { padding: 28px; border-radius: var(--radius); box-shadow: inset 0 0 0 1px var(--line); }
.compare__col ul { display: grid; gap: 14px; font-size: 15px; color: var(--muted); }
.compare__col li { display: flex; gap: 10px; }
.compare__col .ic { flex: none; margin-top: 3px; }
.compare__label { font-family: var(--mono); font-size: 12.5px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin-bottom: 20px; }
.compare__col--win { background: var(--eo-ink, #2e2a45); color: #fff; box-shadow: none; }
.compare__col--win ul { color: rgba(255,255,255,.82); }
.compare__col--win .compare__label { color: rgba(255,255,255,.6); }
.compare__col--win .ic { color: #b6adff; }
@media (max-width: 900px) { .compare, .compare__cols { grid-template-columns: 1fr; } }

.eo-plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.eo-plan { display: flex; flex-direction: column; padding: 28px; border-radius: var(--radius); background: #fff; box-shadow: inset 0 0 0 1px var(--line); }
.eo-plan h3 { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 18px; font-weight: 500; letter-spacing: -.02em; }
.eo-plan > p { margin-top: 8px; font-size: 15px; color: var(--muted); }
.eo-plan .eo-plan__price { margin-top: auto; padding-top: 32px; font-size: 30px; font-weight: 500; letter-spacing: -.04em; color: var(--ink); line-height: 1.1; }
.eo-plan__price small { font-size: 14px; letter-spacing: 0; color: var(--muted); font-weight: 400; margin-left: 2px; }
.eo-plan__price s { display: block; font-size: 15px; letter-spacing: 0; color: var(--subtle); font-weight: 400; }
.eo-plan--full { background: var(--eo-ink, #2e2a45); color: #fff; box-shadow: none; }
.eo-plan--full > p { color: rgba(255,255,255,.66); }
.eo-plan--full .eo-plan__price { color: #fff; }
.eo-plan--full .eo-plan__price small, .eo-plan--full .eo-plan__price s { color: rgba(255,255,255,.5); }
.eo-plan--full .tag { background: #b6adff; color: var(--eo-ink, #2e2a45); }
.eo-plans__foot { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 32px; color: var(--muted); font-size: 15px; }
@media (max-width: 1020px) { .eo-plans { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .eo-plans { grid-template-columns: 1fr; } }

.cta__box--eo {
	grid-template-columns: 1fr;
	background:
		radial-gradient(50% 90% at 100% 100%, rgba(255,196,120,.35), transparent 65%),
		radial-gradient(50% 70% at 0% 0%, rgba(138,125,246,.5), transparent 70%),
		#2e2a45;
}
.cta__box--eo .cta__title em { font-family: var(--serif); font-weight: 400; letter-spacing: -.02em; }
.cta__box--eo .eo-mark { background: #fff; color: #2e2a45; }
.eyebrow:has(.eo-mark)::before { display: none; }

/* Hakkımızda ------------------------------------------------------------------- */

.about-visual {
	position: relative;
	margin-top: clamp(40px, 6vw, 72px);
	border-radius: 28px; overflow: hidden;
	aspect-ratio: 16 / 7;
	background:
		radial-gradient(50% 80% at 15% 110%, rgba(156,255,86,.4), transparent 60%),
		radial-gradient(50% 70% at 100% 0%, rgba(34,120,140,.5), transparent 60%),
		linear-gradient(160deg, #10132b 0%, #0d1a2c 45%, #0c2b2b 100%);
}
.about-visual img {
	position: absolute; left: 50%; top: 14%;
	width: 52%; transform: translateX(-50%);
	border-radius: 18px;
	box-shadow: 0 50px 80px -30px rgba(0,0,0,.6);
}
@media (max-width: 760px) { .about-visual { aspect-ratio: 4 / 3.4; } .about-visual img { width: 88%; top: 10%; } }
.story { display: grid; grid-template-columns: 1fr 3fr; gap: 40px; align-items: start; }
.story__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; color: var(--muted); }
.story .statement { max-width: 820px; margin-bottom: 0; }
@media (max-width: 900px) { .story, .story__cols { grid-template-columns: 1fr; } .story { gap: 0; } .story__cols { gap: 20px; } }

.family { display: grid; gap: 12px; }
.family__item {
	display: grid; grid-template-columns: 64px 1fr 24px; gap: 24px; align-items: center;
	padding: 28px 32px;
	border-radius: var(--radius);
	background: #fff;
	box-shadow: inset 0 0 0 1px var(--line);
	transition: box-shadow .25s;
}
.family__item:hover { box-shadow: inset 0 0 0 1px var(--ink); }
.family__logo { width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center; background: var(--lime); }
.family__logo .ws-mark { width: 34px; }
.family__logo--eo { background: var(--ink); color: #fff; font-family: var(--serif); font-style: italic; font-size: 40px; line-height: 1; padding-bottom: 6px; }
.family__item h3 { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 22px; font-weight: 500; letter-spacing: -.025em; }
.family__item p { margin-top: 6px; color: var(--muted); max-width: 640px; }
.family__arrow { transition: transform .3s var(--ease); }
.family__item:hover .family__arrow { transform: translateX(4px); }
@media (max-width: 600px) { .family__item { grid-template-columns: 1fr; gap: 16px; padding: 24px; } .family__arrow { display: none; } }

.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.values article { padding-top: 24px; border-top: 1px solid var(--ink); }
.values__icon { display: block; margin-bottom: 40px; }
.values h3 { font-size: 19px; font-weight: 500; letter-spacing: -.02em; }
.values p { margin-top: 8px; font-size: 15.5px; color: var(--muted); }
@media (max-width: 1020px) { .values { grid-template-columns: repeat(2, 1fr); gap: 48px 32px; } }
@media (max-width: 600px) { .values { grid-template-columns: 1fr; } }

.facts--light { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; border-top: 1px solid var(--line); }
.facts--light div { padding: 28px 24px 0 0; }
.facts--light div + div { padding-left: 24px; border-left: 1px solid var(--line); }
.facts--light dt { font-family: var(--mono); font-size: 12.5px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.facts--light dd { margin: 8px 0 0; font-size: clamp(1.5rem, 1.2rem + 1vw, 2.2rem); font-weight: 500; letter-spacing: -.035em; }
@media (max-width: 760px) {
	.facts--light { grid-template-columns: 1fr 1fr; }
	.facts--light div:nth-child(3) { padding-left: 0; border-left: 0; }
	.facts--light div:nth-child(n+3) { margin-top: 24px; border-top: 1px solid var(--line); }
}

/* İletişim --------------------------------------------------------------------- */

.contact { display: grid; grid-template-columns: 1.5fr 1fr; gap: 24px; align-items: start; }
.contact__form { padding: clamp(28px, 4vw, 48px); border-radius: var(--radius); background: var(--tint); }
.contact__title { font-size: 24px; font-weight: 500; letter-spacing: -.025em; margin-bottom: 28px; }
.contact__side { display: grid; gap: 16px; }
.contact__card { padding: 28px; border-radius: var(--radius); box-shadow: inset 0 0 0 1px var(--line); }
.contact__list { display: grid; gap: 20px; }
.contact__list li { display: flex; gap: 14px; align-items: center; }
.contact__icon { flex: none; width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--tint); }
.contact__list small { display: block; font-size: 13px; color: var(--muted); }
.contact__list a, .contact__list span { font-weight: 500; overflow-wrap: anywhere; }
.contact__list a:hover { text-decoration: underline; text-underline-offset: 3px; }
.contact__card--dark { background: var(--night); color: #fff; box-shadow: none; }
.contact__card--dark p { color: rgba(255,255,255,.66); }
.contact__card-title { color: #fff !important; font-size: 20px; font-weight: 500; letter-spacing: -.02em; margin-bottom: 4px; }
.contact__card-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; } }

/* Form (Contact Form 7) */
.wpcf7 form { display: grid; gap: 14px; }
.wpcf7 .hidden-fields-container { display: none; }
.wpcf7 .screen-reader-response { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.wpcf7 .pxl-row, .wpcf7 .pxl-row-1, .wpcf7 .pxl-row-2 { display: grid; gap: 14px; }
.wpcf7 .pxl-row-1, .wpcf7 .pxl-row-2 { grid-template-columns: 1fr 1fr; }
.wpcf7 .icon { display: none; }
.wpcf7-form-control-wrap { display: block; }
.wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"], .wpcf7 select, .wpcf7 textarea {
	width: 100%;
	height: 52px; padding: 0 16px;
	border: 0; border-radius: 12px;
	background: #fff;
	box-shadow: inset 0 0 0 1px var(--line);
	font: inherit; font-size: 15.5px; color: var(--ink);
	transition: box-shadow .2s;
	appearance: none; -webkit-appearance: none;
}
.wpcf7 select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23686c68' stroke-width='1.6' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: right 16px center;
	padding-right: 44px;
}
.wpcf7 textarea { height: 150px; padding: 14px 16px; resize: vertical; }
.wpcf7 input:focus, .wpcf7 select:focus, .wpcf7 textarea:focus { outline: none; box-shadow: inset 0 0 0 1.5px var(--ink); }
.wpcf7 ::placeholder { color: var(--subtle); }
.wpcf7 input[type="submit"], .wpcf7 button[type="submit"] {
	height: 52px; padding: 0 28px; border: 0; border-radius: 999px;
	background: var(--ink); color: #fff; font: inherit; font-weight: 500; cursor: pointer;
	justify-self: start;
	transition: background-color .2s;
}
.wpcf7 input[type="submit"]:hover, .wpcf7 button[type="submit"]:hover { background: var(--ink-3); }
.wpcf7 .wpcf7-acceptance, .wpcf7 .wpcf7-list-item label { font-size: 14px; color: var(--muted); }
.wpcf7-not-valid-tip { font-size: 13px; color: #c0392b; margin-top: 6px; }
.wpcf7 .wpcf7-response-output { margin: 8px 0 0 !important; padding: 12px 16px !important; border-radius: 12px; font-size: 14.5px; border: 1px solid var(--line-2) !important; }
.wpcf7 form.sent .wpcf7-response-output { background: var(--lime-soft); border-color: transparent !important; }
.wpcf7-spinner { margin: 0 12px; }
@media (max-width: 600px) { .wpcf7 .pxl-row-1, .wpcf7 .pxl-row-2 { grid-template-columns: 1fr; } }

/* Makale ve metin --------------------------------------------------------------- */

.article__head { padding-top: clamp(48px, 7vw, 96px); }
.article__back { display: inline-flex; align-items: center; gap: 6px; font-size: 14.5px; font-weight: 500; color: var(--muted); margin-bottom: 32px; }
.article__back:hover { color: var(--ink); }
.article__title { margin-top: 16px; font-size: clamp(2.2rem, 1.4rem + 3vw, 3.8rem); font-weight: 500; line-height: 1.04; letter-spacing: -.04em; text-wrap: balance; }
.article__lead { margin-top: 20px; font-size: var(--fs-lead); color: var(--muted); }
.article__cover { margin-top: clamp(40px, 5vw, 56px); border-radius: var(--radius); overflow: hidden; background: var(--tint); }
.article__cover img { width: 100%; }
.article__body { padding-block: clamp(40px, 5vw, 64px); }
.article__aside { padding-bottom: clamp(64px, 8vw, 112px); }
.article__promo { padding: 32px; border-radius: var(--radius); background: var(--tint); }
.article__promo .eyebrow { margin-bottom: 12px; }
.article__promo-title { font-size: 24px; font-weight: 500; letter-spacing: -.025em; }
.article__promo .muted { margin: 4px 0 20px; }

.prose { font-size: 18px; line-height: 1.72; color: var(--ink-2); }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { margin-top: 2em; font-size: clamp(1.5rem, 1.3rem + .8vw, 2rem); line-height: 1.2; letter-spacing: -.025em; font-weight: 500; color: var(--ink); }
.prose h3 { margin-top: 1.8em; font-size: 1.3rem; line-height: 1.3; letter-spacing: -.015em; font-weight: 500; color: var(--ink); }
.prose h4 { margin-top: 1.6em; font-size: 1.1rem; font-weight: 600; }
.prose a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--line-2); text-underline-offset: 3px; }
.prose a:hover { text-decoration-color: var(--ink); }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li + li { margin-top: .4em; }
.prose li::marker { color: var(--subtle); }
.prose blockquote { margin: 1.6em 0; padding-left: 20px; border-left: 2px solid var(--lime); font-size: 1.1em; color: var(--ink); }
.prose img, .prose figure { border-radius: var(--radius-sm); }
.prose figure { margin: 2em 0; }
.prose figcaption { margin-top: 8px; font-size: 14px; color: var(--muted); text-align: center; }
.prose table { width: 100%; border-collapse: collapse; font-size: 15.5px; display: block; overflow-x: auto; }
.prose th, .prose td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.prose th { font-weight: 600; background: var(--tint); }
.prose code { font-family: var(--mono); font-size: .9em; padding: 2px 6px; border-radius: 6px; background: var(--tint); }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2.4em 0; }
.prose strong { color: var(--ink); font-weight: 600; }

/* Elementor ile yazılmış yazılar: tipografiyi temaya uydur */
.prose .elementor-widget-heading .elementor-heading-title { font-family: var(--font) !important; letter-spacing: -.025em; color: var(--ink) !important; }
.prose .elementor-widget-text-editor { font-family: var(--font) !important; color: var(--ink-2) !important; }
.prose .elementor-section.elementor-section-boxed > .elementor-container, .prose .e-con-inner { max-width: 100% !important; }

.pagination { margin-top: 56px; }
.pagination .nav-links { display: flex; gap: 6px; flex-wrap: wrap; }
.pagination .page-numbers { display: inline-grid; place-items: center; min-width: 40px; height: 40px; padding: 0 14px; border-radius: 999px; box-shadow: inset 0 0 0 1px var(--line); font-size: 14.5px; }
.pagination .page-numbers.current { background: var(--ink); color: #fff; box-shadow: none; }
.empty { padding: 48px; text-align: center; border-radius: var(--radius); background: var(--tint); }
.empty p { margin-bottom: 20px; color: var(--muted); }
.builder-content { min-height: 40vh; }

/* Görünme animasyonu ------------------------------------------------------- */

.rise { animation: rise 1s var(--ease) both; }
.rise:nth-child(2) { animation-delay: .06s; }
.rise:nth-child(3) { animation-delay: .12s; }
.rise:nth-child(4) { animation-delay: .18s; }
.stage.rise { animation-delay: .26s; animation-duration: 1.2s; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } }

.js-ready .reveal { opacity: 0; transform: translateY(20px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js-ready .reveal.is-in { opacity: 1; transform: none; }
.js-ready .reveal:nth-child(2) { transition-delay: .08s; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
	.js-ready .reveal { opacity: 1; transform: none; }
}

/* Koyu zeminde W işareti */
.eyebrow--light .ws-mark, .contact__card--dark .ws-mark {
	width: 22px; height: 22px; padding: 4px;
	border-radius: 50%; background: var(--lime);
	object-fit: contain;
}

@media (max-width: 760px) {
	.announce__more { display: none; }
	.stage__caption .muted { display: none; }
	.stage__caption { flex-direction: row; align-items: center; }
	.hero__actions { flex-direction: column; align-items: stretch; max-width: 320px; margin-inline: auto; }
	.hero__title { font-size: clamp(2.3rem, 9.6vw, 3rem); }
	.sec-title { font-size: clamp(1.9rem, 8vw, 2.4rem); }
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 .wpcf7-response-output:empty { display: none; }
.wpcf7 input[type="checkbox"] { width: 16px; height: 16px; margin: 0 8px 0 0; vertical-align: -3px; accent-color: var(--ink); }
.wpcf7 .wpcf7-acceptance a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }

/* Çerez bildirimi */
.consent {
	position: fixed; left: 16px; bottom: 16px; z-index: 150;
	width: min(400px, calc(100vw - 32px));
	padding: 20px;
	border-radius: 18px;
	background: var(--paper);
	box-shadow: 0 24px 60px -20px rgba(11,12,11,.3), 0 0 0 1px var(--line);
	font-size: 14px; color: var(--muted);
	animation: rise .5s var(--ease) both;
}
.consent[hidden] { display: none; }
.consent strong { display: block; margin-bottom: 4px; font-size: 15px; font-weight: 600; color: var(--ink); }
.consent a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.consent__actions { display: flex; justify-content: flex-end; gap: 8px; margin-top: 16px; }
.site-footer__link { color: inherit; font-size: inherit; }
.site-footer__link:hover { color: var(--ink); }
