/* ============================================================
   SAKARYA ELEKTRİKÇİLER ESNAF VE SANATKARLAR ODASI
   Tasarım dili: "Voltaj" — kurumsal lacivert + elektrik akımı
   ============================================================ */

/* ---------- 1. TOKENS ---------- */
:root {
	--navy-950: #04091b;
	--navy-900: #070f28;
	--navy-850: #0a1533;
	--navy-800: #0e1b40;
	--navy-700: #142455;
	--navy-600: #1d3271;
	--navy-500: #294490;

	--arc: #57c4ff;
	--arc-soft: #4a90d9;
	--red: #d01829;
	--red-hot: #ff3347;

	--bone: #f3f4f8;
	--bone-2: #e7e9f0;
	--paper: #fbfbfd;

	--ink: #0a1330;
	--ink-soft: #45507a;

	--txt-on-dark: #e8ecf7;
	--txt-on-dark-dim: #9aa6c8;

	--rule: rgba(87, 196, 255, 0.16);
	--rule-light: rgba(10, 19, 48, 0.1);

	--f-display: "Big Shoulders Display", "Oswald", "Arial Narrow", sans-serif;
	--f-body: "Archivo", "Helvetica Neue", Arial, sans-serif;

	--wrap: 1240px;
	--gut: clamp(20px, 5vw, 56px);

	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--ease-io: cubic-bezier(0.65, 0, 0.35, 1);

	--nav-h: 84px;
}

/* ---------- 2. RESET ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

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

body {
	font-family: var(--f-body);
	background: var(--navy-950);
	color: var(--txt-on-dark);
	line-height: 1.68;
	font-size: 16.5px;
	overflow-x: hidden;
	font-feature-settings: "kern" 1;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	display: block;
}
a {
	color: inherit;
	text-decoration: none;
}
button,
input,
textarea,
select {
	font: inherit;
	color: inherit;
}
ul {
	list-style: none;
}

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

/* ---------- 3. ATMOSFER (blueprint grid + grain) ---------- */
.atmos {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

.atmos::before {
	/* elektrik şeması ızgarası */
	content: "";
	position: absolute;
	inset: -2px;
	background-image: linear-gradient(rgba(87, 196, 255, 0.055) 1px, transparent 1px),
		linear-gradient(90deg, rgba(87, 196, 255, 0.055) 1px, transparent 1px);
	background-size: 68px 68px;
	mask-image: radial-gradient(ellipse 120% 80% at 50% 0%, #000 15%, transparent 78%);
	-webkit-mask-image: radial-gradient(ellipse 120% 80% at 50% 0%, #000 15%, transparent 78%);
}

.atmos::after {
	/* film grenli doku */
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0.05;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
	mix-blend-mode: overlay;
}

/* dolaşan akım hüzmeleri */
.beam {
	position: absolute;
	width: 1px;
	top: -30%;
	height: 45vh;
	background: linear-gradient(180deg, transparent, var(--arc), transparent);
	opacity: 0.35;
	filter: blur(0.4px);
	animation: beamFall 9s linear infinite;
}
.beam:nth-child(1) {
	left: 12%;
	animation-duration: 11s;
}
.beam:nth-child(2) {
	left: 38%;
	animation-duration: 8s;
	animation-delay: -3s;
	background: linear-gradient(180deg, transparent, var(--red-hot), transparent);
	opacity: 0.22;
}
.beam:nth-child(3) {
	left: 67%;
	animation-duration: 13s;
	animation-delay: -6s;
}
.beam:nth-child(4) {
	left: 88%;
	animation-duration: 10s;
	animation-delay: -1.5s;
	opacity: 0.2;
}

@keyframes beamFall {
	0% {
		transform: translateY(-40vh);
		opacity: 0;
	}
	12% {
		opacity: 0.4;
	}
	88% {
		opacity: 0.4;
	}
	100% {
		transform: translateY(155vh);
		opacity: 0;
	}
}

/* ---------- 4. LAYOUT ---------- */
.wrap {
	width: 100%;
	max-width: var(--wrap);
	margin-inline: auto;
	padding-inline: var(--gut);
	position: relative;
	z-index: 2;
}

section {
	position: relative;
	z-index: 2;
}

.slab {
	padding-block: clamp(72px, 10vw, 132px);
}

.slab--light {
	background: var(--bone);
	color: var(--ink);
}
.slab--paper {
	background: var(--paper);
	color: var(--ink);
}
.slab--deep {
	background: linear-gradient(180deg, var(--navy-900), var(--navy-850) 55%, var(--navy-900));
}

/* ---------- 5. TİPOGRAFİ ---------- */
h1,
h2,
h3,
h4 {
	font-family: var(--f-display);
	font-weight: 800;
	line-height: 0.92;
	letter-spacing: 0.005em;
	text-transform: uppercase;
	text-wrap: balance;
}

.kicker {
	font-family: var(--f-body);
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: var(--arc);
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
}

.kicker::before {
	content: "";
	width: 30px;
	height: 2px;
	background: var(--red);
	flex: none;
}

.slab--light .kicker,
.slab--paper .kicker {
	color: var(--navy-600);
}

.h-sec {
	font-size: clamp(2.6rem, 6.4vw, 5rem);
}

.lede {
	font-size: clamp(1rem, 1.6vw, 1.18rem);
	color: var(--txt-on-dark-dim);
	max-width: 62ch;
	margin-top: 22px;
}
.slab--light .lede,
.slab--paper .lede {
	color: var(--ink-soft);
}

.sec-head {
	margin-bottom: clamp(44px, 6vw, 72px);
}

/* ---------- 6. ÜST ŞERİT ---------- */
#topbar {
	background: var(--navy-950);
	border-bottom: 1px solid var(--rule);
	font-size: 12.5px;
	position: relative;
	z-index: 60;
}

#topbar .wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 44px;
	flex-wrap: wrap;
}

.tb-links {
	display: flex;
	align-items: center;
	gap: 26px;
	flex-wrap: wrap;
}

.tb-links a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--txt-on-dark-dim);
	letter-spacing: 0.04em;
	transition: color 0.25s var(--ease);
}
.tb-links a:hover {
	color: var(--arc);
}
.tb-links svg {
	width: 14px;
	height: 14px;
	flex: none;
	stroke: var(--arc);
}

.tb-tag {
	font-family: var(--f-display);
	font-size: 15px;
	letter-spacing: 0.1em;
	color: var(--txt-on-dark-dim);
	text-transform: uppercase;
}
.tb-tag b {
	color: var(--red-hot);
	font-weight: 800;
}

/* ---------- 7. NAVBAR ---------- */
#nav {
	position: sticky;
	top: 0;
	z-index: 200;
	background: rgba(4, 9, 27, 0.82);
	backdrop-filter: blur(16px) saturate(150%);
	-webkit-backdrop-filter: blur(16px) saturate(150%);
	border-bottom: 1px solid var(--rule);
	transition: min-height 0.4s var(--ease), background 0.4s var(--ease);
}

#nav .wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: var(--nav-h);
	transition: min-height 0.4s var(--ease);
}

#nav.shrunk {
	background: rgba(4, 9, 27, 0.95);
}
#nav.shrunk .wrap {
	min-height: 64px;
}
#nav.shrunk .brand-mark {
	width: 42px;
	height: 42px;
}

/* akım çizgisi — navbar altı */
#nav::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	height: 2px;
	width: 100%;
	background: linear-gradient(90deg, transparent, var(--arc) 18%, var(--red) 52%, var(--arc) 84%, transparent);
	background-size: 220% 100%;
	opacity: 0.75;
	animation: currentFlow 6s linear infinite;
}

@keyframes currentFlow {
	to {
		background-position: 220% 0;
	}
}

.brand {
	display: flex;
	align-items: center;
	gap: 14px;
	flex: none;
}

.brand-mark {
	width: 56px;
	height: 56px;
	flex: none;
	border-radius: 50%;
	background: #fff;
	padding: 3px;
	box-shadow: 0 0 0 1px rgba(87, 196, 255, 0.4), 0 6px 22px rgba(0, 0, 0, 0.45);
	transition: width 0.4s var(--ease), height 0.4s var(--ease), transform 0.5s var(--ease),
		box-shadow 0.4s var(--ease);
}

.brand:hover .brand-mark {
	transform: rotate(-8deg) scale(1.06);
	box-shadow: 0 0 0 1px var(--arc), 0 0 30px rgba(87, 196, 255, 0.45);
}

.brand-txt {
	display: flex;
	flex-direction: column;
	line-height: 1;
}
.brand-txt .b1 {
	font-family: var(--f-display);
	font-weight: 800;
	font-size: 21px;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #fff;
}
.brand-txt .b2 {
	font-size: 9.5px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--txt-on-dark-dim);
	margin-top: 5px;
}

/* menü */
.menu {
	display: flex;
	align-items: center;
	gap: 4px;
}

.menu > li {
	position: relative;
}

.menu > li > a {
	display: block;
	padding: 12px 15px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--txt-on-dark-dim);
	position: relative;
	transition: color 0.28s var(--ease);
	white-space: nowrap;
}

.menu > li > a::after {
	content: "";
	position: absolute;
	left: 15px;
	right: 15px;
	bottom: 4px;
	height: 2px;
	background: var(--red);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s var(--ease);
}

.menu > li > a:hover,
.menu > li.on > a {
	color: #fff;
}
.menu > li > a:hover::after,
.menu > li.on > a::after {
	transform: scaleX(1);
}

.menu > li.on > a::after {
	background: var(--arc);
	box-shadow: 0 0 10px var(--arc);
}

/* açılır alt menü */
.menu .sub {
	position: absolute;
	top: calc(100% + 10px);
	left: 6px;
	min-width: 268px;
	background: var(--navy-850);
	border: 1px solid var(--rule);
	border-radius: 4px;
	padding: 8px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: all 0.32s var(--ease);
}

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

.menu .sub li a {
	display: block;
	padding: 10px 13px;
	font-size: 12.5px;
	font-weight: 500;
	letter-spacing: 0.05em;
	color: var(--txt-on-dark-dim);
	border-left: 2px solid transparent;
	transition: all 0.25s var(--ease);
}

.menu .sub li a:hover {
	color: #fff;
	background: rgba(87, 196, 255, 0.08);
	border-left-color: var(--red);
	padding-left: 18px;
}

/* hamburger */
.burger {
	display: none;
	width: 46px;
	height: 46px;
	background: none;
	border: 1px solid var(--rule);
	border-radius: 3px;
	cursor: pointer;
	position: relative;
	flex: none;
}
.burger span {
	position: absolute;
	left: 12px;
	right: 12px;
	height: 2px;
	background: #fff;
	transition: all 0.36s var(--ease);
}
.burger span:nth-child(1) {
	top: 16px;
}
.burger span:nth-child(2) {
	top: 22px;
}
.burger span:nth-child(3) {
	top: 28px;
}
.burger.x span:nth-child(1) {
	top: 22px;
	transform: rotate(45deg);
	background: var(--red-hot);
}
.burger.x span:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}
.burger.x span:nth-child(3) {
	top: 22px;
	transform: rotate(-45deg);
	background: var(--red-hot);
}

/* mobil panel */
#mobilemenu {
	position: fixed;
	inset: 0;
	z-index: 190;
	background: var(--navy-950);
	padding: calc(var(--nav-h) + 40px) var(--gut) 40px;
	overflow-y: auto;
	clip-path: circle(0% at calc(100% - 46px) 46px);
	transition: clip-path 0.72s var(--ease);
	pointer-events: none;
}

#mobilemenu.open {
	clip-path: circle(160% at calc(100% - 46px) 46px);
	pointer-events: auto;
}

#mobilemenu ul {
	max-width: 520px;
	margin-inline: auto;
}
#mobilemenu > ul > li {
	border-bottom: 1px solid var(--rule);
	opacity: 0;
	transform: translateY(22px);
}
#mobilemenu.open > ul > li {
	animation: mmIn 0.6s var(--ease) forwards;
}
#mobilemenu.open > ul > li:nth-child(1) {
	animation-delay: 0.18s;
}
#mobilemenu.open > ul > li:nth-child(2) {
	animation-delay: 0.25s;
}
#mobilemenu.open > ul > li:nth-child(3) {
	animation-delay: 0.32s;
}
#mobilemenu.open > ul > li:nth-child(4) {
	animation-delay: 0.39s;
}
#mobilemenu.open > ul > li:nth-child(5) {
	animation-delay: 0.46s;
}
#mobilemenu.open > ul > li:nth-child(6) {
	animation-delay: 0.53s;
}

@keyframes mmIn {
	to {
		opacity: 1;
		transform: none;
	}
}

#mobilemenu > ul > li > a {
	display: flex;
	align-items: baseline;
	gap: 16px;
	padding: 20px 4px;
	font-family: var(--f-display);
	font-size: clamp(2rem, 9vw, 2.9rem);
	font-weight: 800;
	text-transform: uppercase;
	color: #fff;
}
#mobilemenu > ul > li > a i {
	font-family: var(--f-body);
	font-style: normal;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	color: var(--red-hot);
}
#mobilemenu .msub {
	padding: 0 4px 20px 34px;
}
#mobilemenu .msub a {
	display: block;
	padding: 7px 0;
	font-size: 13px;
	letter-spacing: 0.06em;
	color: var(--txt-on-dark-dim);
}
#mobilemenu .msub a:hover {
	color: var(--arc);
}

/* ---------- 8. BUTONLAR ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	padding: 15px 30px;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	border: 1px solid transparent;
	border-radius: 2px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition: color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.btn svg {
	width: 15px;
	height: 15px;
	flex: none;
	position: relative;
	z-index: 2;
}
.btn span {
	position: relative;
	z-index: 2;
}

.btn::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--red);
	transform: translateY(101%);
	transition: transform 0.45s var(--ease);
	z-index: 1;
}
.btn:hover::before {
	transform: translateY(0);
}
.btn:hover {
	color: #fff;
	transform: translateY(-2px);
}

.btn--solid {
	background: var(--arc);
	color: var(--navy-950);
}
.btn--ghost {
	border-color: rgba(232, 236, 247, 0.28);
	color: var(--txt-on-dark);
}
.btn--ghost:hover {
	border-color: var(--red);
}
.btn--dark {
	border-color: rgba(10, 19, 48, 0.25);
	color: var(--ink);
}
.btn--dark:hover {
	border-color: var(--red);
}

/* ---------- 9. HERO ---------- */
#hero {
	position: relative;
	min-height: clamp(600px, 88vh, 900px);
	display: flex;
	align-items: center;
	overflow: hidden;
	background: radial-gradient(ellipse 90% 70% at 22% 18%, var(--navy-700), transparent 62%),
		radial-gradient(ellipse 70% 60% at 92% 88%, rgba(208, 24, 41, 0.3), transparent 60%),
		var(--navy-950);
	padding-block: clamp(64px, 9vw, 110px);
}

#hero .wrap {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	gap: clamp(32px, 5vw, 72px);
	align-items: center;
}

.hero-copy {
	max-width: 720px;
}

.hero-h {
	font-size: clamp(2.9rem, 7.4vw, 6.1rem);
	color: #fff;
	line-height: 0.87;
}

.hero-h .ln {
	display: block;
	overflow: hidden;
}
.hero-h .ln > span {
	display: block;
	transform: translateY(105%);
	animation: lineUp 1.05s var(--ease) forwards;
}
.hero-h .ln:nth-child(1) > span {
	animation-delay: 0.25s;
}
.hero-h .ln:nth-child(2) > span {
	animation-delay: 0.37s;
}
.hero-h .ln:nth-child(3) > span {
	animation-delay: 0.49s;
}

@keyframes lineUp {
	to {
		transform: none;
	}
}

.hero-h em {
	font-style: normal;
	color: var(--arc);
	position: relative;
}

.hero-h em::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0.06em;
	width: 100%;
	height: 0.055em;
	background: var(--red);
	transform: scaleX(0);
	transform-origin: left;
	animation: underline 0.9s var(--ease) 1.15s forwards;
}
@keyframes underline {
	to {
		transform: scaleX(1);
	}
}

.hero-tag {
	font-family: var(--f-display);
	font-size: clamp(1.1rem, 2.3vw, 1.75rem);
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: none;
	color: var(--arc);
	margin-top: 26px;
	opacity: 0;
	animation: fadeUp 0.9s var(--ease) 0.85s forwards;
}

.hero-sub {
	color: var(--txt-on-dark-dim);
	max-width: 54ch;
	margin-top: 18px;
	opacity: 0;
	animation: fadeUp 0.9s var(--ease) 1s forwards;
}

.hero-cta {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 38px;
	opacity: 0;
	animation: fadeUp 0.9s var(--ease) 1.15s forwards;
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(26px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

/* hero madalyon */
.hero-medal {
	position: relative;
	justify-self: center;
	width: min(400px, 78vw);
	aspect-ratio: 1;
	display: grid;
	place-items: center;
	opacity: 0;
	animation: fadeUp 1.1s var(--ease) 0.5s forwards;
}

/* logonun lacivert tipografisi koyu zeminde kaybolmasın diye beyaz plaka */
.hero-medal .plate {
	position: absolute;
	inset: 13%;
	border-radius: 50%;
	background: radial-gradient(circle at 40% 32%, #ffffff, #eaeef7 74%, #d9e0f0);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(87, 196, 255, 0.35),
		inset 0 -14px 34px rgba(20, 36, 85, 0.16);
	z-index: 2;
	animation: floaty 7s ease-in-out infinite;
}

.hero-medal img {
	width: 74%;
	animation: floaty 7s ease-in-out infinite;
	position: relative;
	z-index: 3;
}

@keyframes floaty {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-14px);
	}
}

.hero-medal .ring {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 1px solid rgba(87, 196, 255, 0.28);
}
.hero-medal .ring:nth-of-type(2) {
	inset: 9%;
	border-style: dashed;
	border-color: rgba(208, 24, 41, 0.35);
	animation: spin 34s linear infinite;
}
.hero-medal .ring:nth-of-type(3) {
	inset: -8%;
	border-color: rgba(87, 196, 255, 0.14);
	animation: spin 52s linear infinite reverse;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.hero-medal .glow {
	position: absolute;
	inset: 6%;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(87, 196, 255, 0.3), transparent 66%);
	filter: blur(28px);
	animation: pulseGlow 4.5s ease-in-out infinite;
}

@keyframes pulseGlow {
	0%,
	100% {
		opacity: 0.55;
		transform: scale(1);
	}
	50% {
		opacity: 1;
		transform: scale(1.07);
	}
}

/* scroll ipucu */
.scroll-hint {
	position: absolute;
	left: 50%;
	bottom: 26px;
	transform: translateX(-50%);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: var(--txt-on-dark-dim);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	z-index: 4;
	opacity: 0;
	animation: fadeUp 1s var(--ease) 1.6s forwards;
}

.scroll-hint i {
	width: 1px;
	height: 42px;
	background: linear-gradient(180deg, var(--arc), transparent);
	position: relative;
	overflow: hidden;
}
.scroll-hint i::after {
	content: "";
	position: absolute;
	left: -1px;
	width: 3px;
	height: 12px;
	background: var(--red-hot);
	border-radius: 2px;
	animation: dropDown 1.9s var(--ease-io) infinite;
}
@keyframes dropDown {
	0% {
		top: -14px;
		opacity: 0;
	}
	30% {
		opacity: 1;
	}
	100% {
		top: 44px;
		opacity: 0;
	}
}

/* ---------- 10. TİCKER ---------- */
#ticker {
	background: var(--red);
	color: #fff;
	padding: 15px 0;
	overflow: hidden;
	position: relative;
	z-index: 3;
	border-block: 1px solid rgba(255, 255, 255, 0.14);
}

.ticker-track {
	display: flex;
	gap: 0;
	width: max-content;
	animation: tickerRun 34s linear infinite;
}
#ticker:hover .ticker-track {
	animation-play-state: paused;
}

.ticker-track span {
	font-family: var(--f-display);
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	padding-inline: 26px;
	display: inline-flex;
	align-items: center;
	gap: 26px;
	white-space: nowrap;
}
.ticker-track span::after {
	content: "";
	width: 7px;
	height: 7px;
	background: var(--navy-950);
	transform: rotate(45deg);
	flex: none;
}

@keyframes tickerRun {
	to {
		transform: translateX(-50%);
	}
}

/* ---------- 11. İSTATİSTİK ---------- */
.stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 1px;
	background: var(--rule);
	border: 1px solid var(--rule);
}

.stat {
	background: var(--navy-900);
	padding: 38px 28px;
	position: relative;
	overflow: hidden;
	transition: background 0.4s var(--ease);
}
.stat:hover {
	background: var(--navy-800);
}

.stat::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--red);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.55s var(--ease);
}
.stat:hover::before {
	transform: scaleX(1);
}

.stat .num {
	font-family: var(--f-display);
	font-size: clamp(3rem, 6vw, 4.4rem);
	font-weight: 800;
	line-height: 0.85;
	color: #fff;
	display: flex;
	align-items: baseline;
	gap: 3px;
}
.stat .num sup {
	font-size: 0.32em;
	color: var(--arc);
	top: -1.4em;
}
.stat .lbl {
	margin-top: 14px;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.17em;
	text-transform: uppercase;
	color: var(--txt-on-dark-dim);
}

/* ---------- 12. KART IZGARALARI ---------- */
.grid {
	display: grid;
	gap: 22px;
}
.grid--3 {
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
/* auto-fill: tek üye kaldığında kart tüm satırı kaplamasın */
.grid--4 {
	grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}
.grid--2 {
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
}

/* hizmet / kategori kartı */
.card {
	position: relative;
	padding: 34px 30px 38px;
	background: var(--navy-900);
	border: 1px solid var(--rule);
	overflow: hidden;
	transition: transform 0.5s var(--ease), border-color 0.4s var(--ease);
	display: block;
}

.card::after {
	content: "";
	position: absolute;
	inset: auto 0 0 0;
	height: 220px;
	background: radial-gradient(ellipse at 50% 100%, rgba(87, 196, 255, 0.16), transparent 70%);
	opacity: 0;
	transition: opacity 0.5s var(--ease);
	pointer-events: none;
}
.card:hover {
	transform: translateY(-6px);
	border-color: rgba(87, 196, 255, 0.4);
}
.card:hover::after {
	opacity: 1;
}

.card .ic {
	width: 52px;
	height: 52px;
	display: grid;
	place-items: center;
	border: 1px solid var(--rule);
	border-radius: 3px;
	margin-bottom: 22px;
	transition: all 0.45s var(--ease);
	position: relative;
	z-index: 2;
}
.card .ic svg {
	width: 24px;
	height: 24px;
	stroke: var(--arc);
	transition: stroke 0.4s var(--ease);
}
.card:hover .ic {
	background: var(--red);
	border-color: var(--red);
	transform: rotate(-6deg);
}
.card:hover .ic svg {
	stroke: #fff;
}

.card h3 {
	font-size: 1.55rem;
	color: #fff;
	position: relative;
	z-index: 2;
}
.card p {
	margin-top: 12px;
	font-size: 14.5px;
	color: var(--txt-on-dark-dim);
	position: relative;
	z-index: 2;
}

.card .idx {
	position: absolute;
	top: 20px;
	right: 24px;
	font-family: var(--f-display);
	font-size: 3.4rem;
	font-weight: 800;
	color: rgba(232, 236, 247, 0.05);
	line-height: 1;
	transition: color 0.5s var(--ease);
}
.card:hover .idx {
	color: rgba(208, 24, 41, 0.35);
}

/* duyuru / kampanya afişi */
.banner {
	background: var(--navy-900);
	border: 1px solid var(--rule);
	overflow: hidden;
	transition: transform 0.5s var(--ease), border-color 0.4s var(--ease);
	display: flex;
	flex-direction: column;
}
.banner:hover {
	transform: translateY(-6px);
	border-color: rgba(87, 196, 255, 0.4);
}

.banner img {
	width: 100%;
	aspect-ratio: 1200 / 470;
	object-fit: cover;
	transition: transform 0.9s var(--ease);
}
.banner:hover img {
	transform: scale(1.05);
}

.banner-body {
	padding: 22px 24px 28px;
}
.banner-body span {
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--red-hot);
}
.banner-body h3 {
	font-size: 1.5rem;
	color: #fff;
	margin-top: 10px;
}
.banner-body p {
	font-size: 14px;
	color: var(--txt-on-dark-dim);
	margin-top: 10px;
}

/* ---------- 13. ZAMAN TÜNELİ ---------- */
.timeline {
	position: relative;
	padding-left: 46px;
}

.timeline::before {
	content: "";
	position: absolute;
	left: 11px;
	top: 6px;
	bottom: 6px;
	width: 2px;
	background: var(--rule-light);
}

.timeline .prog {
	position: absolute;
	left: 11px;
	top: 6px;
	width: 2px;
	height: 0;
	background: linear-gradient(180deg, var(--arc-soft), var(--red));
	transition: height 0.15s linear;
	box-shadow: 0 0 12px rgba(208, 24, 41, 0.5);
}

.tl-item {
	position: relative;
	padding-bottom: 40px;
}
.tl-item:last-child {
	padding-bottom: 0;
}

.tl-item::before {
	content: "";
	position: absolute;
	left: -41px;
	top: 8px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--paper);
	border: 2px solid var(--navy-600);
	transition: all 0.45s var(--ease);
}

.tl-item.in::before {
	background: var(--red);
	border-color: var(--red);
	box-shadow: 0 0 0 5px rgba(208, 24, 41, 0.16);
}

.tl-item .yr {
	font-family: var(--f-display);
	font-size: 2rem;
	font-weight: 800;
	color: var(--navy-600);
	line-height: 1;
}
.tl-item h4 {
	font-size: 1.2rem;
	margin-top: 8px;
	color: var(--ink);
	letter-spacing: 0.02em;
}
.tl-item p {
	margin-top: 8px;
	font-size: 15px;
	color: var(--ink-soft);
	max-width: 68ch;
}

/* ---------- 14. KADRO ---------- */
.person {
	position: relative;
	background: var(--navy-900);
	border: 1px solid var(--rule);
	overflow: hidden;
	transition: transform 0.55s var(--ease), border-color 0.45s var(--ease);
}
.person:hover {
	transform: translateY(-8px);
	border-color: rgba(87, 196, 255, 0.4);
}

.person-ph {
	position: relative;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: var(--navy-800);
}

.person-ph img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 22%;
	filter: grayscale(1) contrast(1.12) brightness(0.86);
	transform: scale(1.03);
	transition: filter 0.7s var(--ease), transform 0.9s var(--ease);
}

.person:hover .person-ph img {
	filter: grayscale(0.15) contrast(1.05) brightness(1);
	transform: scale(1.09);
}

/* duotone perde — düşük çözünürlüklü arşiv fotoğraflarını da toparlar */
.person-ph::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(20, 36, 85, 0.55), rgba(4, 9, 27, 0.9)),
		linear-gradient(120deg, rgba(87, 196, 255, 0.22), rgba(208, 24, 41, 0.22));
	mix-blend-mode: multiply;
	opacity: 0.85;
	transition: opacity 0.7s var(--ease);
}
.person:hover .person-ph::after {
	opacity: 0.35;
}

.person-term {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 3;
	background: var(--red);
	color: #fff;
	font-family: var(--f-display);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.1em;
	padding: 6px 14px;
}

.person-body {
	padding: 24px 26px 30px;
}
.person-body h3 {
	font-size: 1.7rem;
	color: #fff;
}
.person-body .role {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--arc);
	margin-top: 8px;
}
.person-body p {
	font-size: 14px;
	color: var(--txt-on-dark-dim);
	margin-top: 14px;
}

.bio {
	font-size: 14.5px;
	color: var(--txt-on-dark-dim);
	line-height: 1.8;
}
.bio p + p {
	margin-top: 14px;
}

/* ---------- 15. GALERİ ---------- */
.gal {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
	gap: 14px;
}

.gal-item {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	cursor: pointer;
	background: var(--navy-800);
	border: 1px solid var(--rule);
}

.gal-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(0.55) contrast(1.08);
	transition: transform 0.8s var(--ease), filter 0.6s var(--ease);
}

.gal-item:hover img {
	transform: scale(1.09);
	filter: grayscale(0) contrast(1);
}

.gal-item figcaption {
	position: absolute;
	inset: auto 0 0 0;
	padding: 40px 18px 16px;
	background: linear-gradient(180deg, transparent, rgba(4, 9, 27, 0.94));
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: #fff;
	transform: translateY(6px);
	opacity: 0.85;
	transition: all 0.45s var(--ease);
}
.gal-item:hover figcaption {
	transform: none;
	opacity: 1;
}

.gal-item .zoom {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 38px;
	height: 38px;
	display: grid;
	place-items: center;
	background: var(--red);
	border-radius: 2px;
	opacity: 0;
	transform: scale(0.6) rotate(-25deg);
	transition: all 0.45s var(--ease);
}
.gal-item .zoom svg {
	width: 17px;
	height: 17px;
	stroke: #fff;
}
.gal-item:hover .zoom {
	opacity: 1;
	transform: none;
}

/* lightbox */
#lightbox {
	position: fixed;
	inset: 0;
	z-index: 500;
	background: rgba(4, 9, 27, 0.96);
	backdrop-filter: blur(10px);
	display: grid;
	place-items: center;
	padding: 5vh 6vw;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s var(--ease), visibility 0.4s;
}
#lightbox.open {
	opacity: 1;
	visibility: visible;
}

#lightbox img {
	/* arşiv fotoğrafları küçük çözünürlüklü — ölçülü büyütüyoruz ki bulanıklaşmasın */
	width: min(88vw, 680px);
	height: auto;
	max-height: 78vh;
	object-fit: contain;
	border: 1px solid var(--rule);
	transform: scale(0.94);
	transition: transform 0.5s var(--ease);
	image-rendering: auto;
}
#lightbox.open img {
	transform: none;
}

#lightbox .cap {
	position: absolute;
	bottom: 4vh;
	left: 0;
	right: 0;
	text-align: center;
	font-size: 12px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--txt-on-dark-dim);
}

.lb-btn {
	position: absolute;
	width: 52px;
	height: 52px;
	display: grid;
	place-items: center;
	background: rgba(232, 236, 247, 0.06);
	border: 1px solid var(--rule);
	cursor: pointer;
	transition: all 0.3s var(--ease);
}
.lb-btn:hover {
	background: var(--red);
	border-color: var(--red);
}
.lb-btn svg {
	width: 20px;
	height: 20px;
	stroke: #fff;
}
#lb-close {
	top: 3vh;
	right: 4vw;
}
#lb-prev {
	left: 3vw;
	top: 50%;
	transform: translateY(-50%);
}
#lb-next {
	right: 3vw;
	top: 50%;
	transform: translateY(-50%);
}

/* ---------- 16. İLETİŞİM ---------- */
.contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(30px, 5vw, 64px);
	align-items: start;
}

.info-row {
	display: flex;
	gap: 18px;
	padding: 22px 0;
	border-bottom: 1px solid var(--rule);
	align-items: flex-start;
}
.info-row:first-child {
	padding-top: 0;
}

.info-row .ic {
	width: 44px;
	height: 44px;
	flex: none;
	display: grid;
	place-items: center;
	border: 1px solid var(--rule);
	border-radius: 3px;
	transition: all 0.4s var(--ease);
}
.info-row .ic svg {
	width: 19px;
	height: 19px;
	stroke: var(--arc);
	transition: stroke 0.4s var(--ease);
}
.info-row:hover .ic {
	background: var(--red);
	border-color: var(--red);
}
.info-row:hover .ic svg {
	stroke: #fff;
}

.info-row .k {
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--txt-on-dark-dim);
}
.info-row .v {
	font-family: var(--f-display);
	font-size: 1.4rem;
	font-weight: 700;
	color: #fff;
	margin-top: 4px;
	line-height: 1.15;
	letter-spacing: 0.02em;
	transition: color 0.3s var(--ease);
}
.info-row a.v:hover {
	color: var(--arc);
}

/* form */
.form {
	background: var(--navy-900);
	border: 1px solid var(--rule);
	padding: clamp(26px, 4vw, 44px);
}

.field {
	position: relative;
	margin-bottom: 22px;
}

.field input,
.field textarea {
	width: 100%;
	background: transparent;
	border: none;
	border-bottom: 1px solid var(--rule);
	padding: 14px 2px 11px;
	font-size: 15px;
	color: #fff;
	outline: none;
	transition: border-color 0.35s var(--ease);
	resize: vertical;
}

.field label {
	position: absolute;
	left: 2px;
	top: 14px;
	font-size: 13px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--txt-on-dark-dim);
	pointer-events: none;
	transition: all 0.35s var(--ease);
}

.field input:focus + label,
.field textarea:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:not(:placeholder-shown) + label {
	top: -9px;
	font-size: 10px;
	color: var(--arc);
	letter-spacing: 0.2em;
}

.field .bar {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
	width: 100%;
	background: var(--red);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.45s var(--ease);
}
.field input:focus ~ .bar,
.field textarea:focus ~ .bar {
	transform: scaleX(1);
}

.form-note {
	font-size: 12.5px;
	color: var(--txt-on-dark-dim);
	margin-top: 18px;
	line-height: 1.6;
}

.form-ok {
	display: none;
	margin-top: 18px;
	padding: 14px 16px;
	border: 1px solid rgba(87, 196, 255, 0.4);
	background: rgba(87, 196, 255, 0.08);
	color: var(--arc);
	font-size: 13.5px;
}
.form-ok.show {
	display: block;
	animation: fadeUp 0.5s var(--ease);
}

/* harita */
.map {
	border: 1px solid var(--rule);
	overflow: hidden;
	filter: grayscale(1) invert(0.92) contrast(0.86);
	transition: filter 0.6s var(--ease);
	line-height: 0;
}
.map:hover {
	filter: grayscale(0.25) invert(0) contrast(1);
}
.map iframe {
	width: 100%;
	height: 460px;
	border: 0;
	display: block;
}

/* ---------- 17. CTA ŞERİDİ ---------- */
.cta-band {
	background: linear-gradient(120deg, var(--navy-700), var(--navy-600) 48%, var(--red) 190%);
	border: 1px solid var(--rule);
	padding: clamp(38px, 6vw, 66px);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
	position: relative;
	overflow: hidden;
}

.cta-band::before {
	content: "";
	position: absolute;
	top: -60%;
	right: -10%;
	width: 55%;
	aspect-ratio: 1;
	background: radial-gradient(circle, rgba(87, 196, 255, 0.28), transparent 66%);
	filter: blur(18px);
	animation: pulseGlow 6s ease-in-out infinite;
}

.cta-band h2 {
	font-size: clamp(1.9rem, 4.2vw, 3.1rem);
	color: #fff;
	position: relative;
	z-index: 2;
	max-width: 22ch;
}
.cta-band .btn {
	position: relative;
	z-index: 2;
}

/* ---------- 18. YÜZEN İLETİŞİM ---------- */
.floaty {
	position: fixed;
	right: 18px;
	bottom: 22px;
	z-index: 300;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.floaty a {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	position: relative;
	box-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
	transition: transform 0.4s var(--ease), width 0.4s var(--ease);
}
.floaty a svg {
	width: 22px;
	height: 22px;
}

/* mobil menü açıkken yüzen butonlar menünün üstüne binmesin */
body.menu-open .floaty {
	opacity: 0;
	pointer-events: none;
	transform: translateX(20px);
	transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.floaty a:hover {
	transform: scale(1.12) translateX(-3px);
}

.floaty .wa {
	background: #25d366;
}
.floaty .wa::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 2px solid #25d366;
	animation: ping 2.4s var(--ease-io) infinite;
}
@keyframes ping {
	0% {
		transform: scale(1);
		opacity: 0.7;
	}
	100% {
		transform: scale(1.75);
		opacity: 0;
	}
}

.floaty .tel {
	background: var(--navy-600);
}
.floaty .loc {
	background: var(--red);
}

.floaty a i {
	position: absolute;
	right: 62px;
	background: var(--navy-950);
	border: 1px solid var(--rule);
	color: #fff;
	font-style: normal;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	padding: 7px 12px;
	white-space: nowrap;
	opacity: 0;
	transform: translateX(8px);
	transition: all 0.35s var(--ease);
	pointer-events: none;
}
.floaty a:hover i {
	opacity: 1;
	transform: none;
}

/* ---------- 19. FOOTER ---------- */
footer {
	background: var(--navy-950);
	border-top: 1px solid var(--rule);
	padding-top: clamp(56px, 7vw, 88px);
	position: relative;
	z-index: 3;
}

.f-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
	gap: clamp(28px, 4vw, 56px);
	padding-bottom: 52px;
}

.f-brand {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}
.f-brand img {
	width: 66px;
	flex: none;
	background: #fff;
	border-radius: 50%;
	padding: 4px;
}
.f-brand h3 {
	font-size: 1.35rem;
	color: #fff;
	line-height: 1.05;
}
.f-brand p {
	font-size: 13.5px;
	color: var(--txt-on-dark-dim);
	margin-top: 12px;
	max-width: 38ch;
}

.f-col h4 {
	font-size: 1.05rem;
	color: #fff;
	letter-spacing: 0.09em;
	margin-bottom: 20px;
}
.f-col li + li {
	margin-top: 11px;
}
.f-col a,
.f-col span {
	font-size: 14px;
	color: var(--txt-on-dark-dim);
	transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
	display: inline-block;
}
.f-col a:hover {
	color: var(--arc);
	padding-left: 6px;
}

.f-bottom {
	border-top: 1px solid var(--rule);
	padding-block: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	flex-wrap: wrap;
	font-size: 12px;
	color: var(--txt-on-dark-dim);
	letter-spacing: 0.05em;
}

.f-social {
	display: flex;
	gap: 10px;
}
.f-social a {
	width: 38px;
	height: 38px;
	display: grid;
	place-items: center;
	border: 1px solid var(--rule);
	border-radius: 3px;
	transition: all 0.35s var(--ease);
}
.f-social a svg {
	width: 17px;
	height: 17px;
	stroke: var(--txt-on-dark-dim);
	transition: stroke 0.35s var(--ease);
}
.f-social a:hover {
	background: var(--red);
	border-color: var(--red);
	transform: translateY(-3px);
}
.f-social a:hover svg {
	stroke: #fff;
}

/* ---------- 20. SAYFA BAŞLIĞI (iç sayfalar) ---------- */
.pagehead {
	position: relative;
	padding-block: clamp(70px, 10vw, 130px);
	background: radial-gradient(ellipse 80% 100% at 15% 0%, var(--navy-700), transparent 65%),
		radial-gradient(ellipse 60% 90% at 95% 100%, rgba(208, 24, 41, 0.26), transparent 62%),
		var(--navy-950);
	overflow: hidden;
	border-bottom: 1px solid var(--rule);
}

.pagehead h1 {
	font-size: clamp(2.7rem, 8vw, 5.6rem);
	color: #fff;
	opacity: 0;
	animation: fadeUp 0.9s var(--ease) 0.15s forwards;
}
.pagehead .lede {
	opacity: 0;
	animation: fadeUp 0.9s var(--ease) 0.32s forwards;
}
.pagehead .kicker {
	opacity: 0;
	animation: fadeUp 0.8s var(--ease) 0.05s forwards;
}

.crumb {
	display: flex;
	gap: 10px;
	align-items: center;
	font-size: 11.5px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--txt-on-dark-dim);
	margin-top: 28px;
	opacity: 0;
	animation: fadeUp 0.8s var(--ease) 0.45s forwards;
}
.crumb a:hover {
	color: var(--arc);
}
.crumb em {
	font-style: normal;
	color: var(--red-hot);
}

/* dev filigran harf */
.pagehead .ghost {
	position: absolute;
	right: -3%;
	bottom: -34%;
	font-family: var(--f-display);
	font-size: clamp(14rem, 34vw, 30rem);
	font-weight: 800;
	line-height: 0.7;
	color: rgba(232, 236, 247, 0.032);
	pointer-events: none;
	user-select: none;
	letter-spacing: -0.03em;
}

/* ---------- 21. MAKALE / METİN ---------- */
.prose {
	max-width: 74ch;
	font-size: 16.5px;
	line-height: 1.86;
	color: var(--ink-soft);
}
.prose p + p {
	margin-top: 20px;
}
.prose strong {
	color: var(--ink);
	font-weight: 700;
}
.prose .sign {
	margin-top: 34px;
	padding-top: 22px;
	border-top: 1px solid var(--rule-light);
	font-family: var(--f-display);
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--ink);
	text-transform: uppercase;
	letter-spacing: 0.03em;
}
.prose .sign small {
	display: block;
	font-family: var(--f-body);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.2em;
	color: var(--red);
	margin-bottom: 6px;
}

.pullquote {
	border-left: 3px solid var(--red);
	padding: 6px 0 6px 26px;
	margin: 34px 0;
	font-family: var(--f-display);
	font-size: clamp(1.35rem, 3vw, 2rem);
	font-weight: 700;
	line-height: 1.14;
	color: var(--ink);
	text-transform: none;
	letter-spacing: 0.01em;
}

/* ---------- 22. ÜYE KARTLARI ---------- */
.member {
	background: var(--navy-900);
	border: 1px solid var(--rule);
	overflow: hidden;
	transition: transform 0.5s var(--ease), border-color 0.4s var(--ease);
}
.member:hover {
	transform: translateY(-6px);
	border-color: rgba(87, 196, 255, 0.4);
}
.member-ph {
	aspect-ratio: 1;
	overflow: hidden;
	background: var(--navy-800);
}
.member-ph img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s var(--ease);
}
.member:hover .member-ph img {
	transform: scale(1.07);
}
.member-body {
	padding: 20px 22px 26px;
}
.member-body h3 {
	font-size: 1.35rem;
	color: #fff;
}
.member-body span {
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--arc);
	display: block;
	margin-top: 8px;
}

.empty-note {
	border: 1px dashed var(--rule);
	padding: 22px 24px;
	font-size: 14px;
	color: var(--txt-on-dark-dim);
	background: rgba(87, 196, 255, 0.03);
}

/* ---------- 22b. FİYATLANDIRMA ---------- */

/* anasayfa vitrin kartı */
.pricecard {
	display: block;
	position: relative;
	padding: 28px 26px 30px;
	background: var(--navy-900);
	border: 1px solid var(--rule);
	overflow: hidden;
	transition: transform 0.5s var(--ease), border-color 0.4s var(--ease);
}

.pricecard::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 3px;
	background: linear-gradient(90deg, var(--arc), var(--red));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.55s var(--ease);
}
.pricecard:hover {
	transform: translateY(-6px);
	border-color: rgba(87, 196, 255, 0.4);
}
.pricecard:hover::before {
	transform: scaleX(1);
}

.pc-kat {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--arc);
}
.pricecard h3 {
	font-size: 1.35rem;
	color: #fff;
	margin-top: 10px;
	min-height: 2.4em;
}
.pc-fiyat {
	font-family: var(--f-display);
	font-size: 2.9rem;
	font-weight: 800;
	line-height: 1;
	color: #fff;
	margin-top: 14px;
	display: flex;
	align-items: baseline;
	gap: 6px;
}
.pc-fiyat small {
	font-size: 0.32em;
	letter-spacing: 0.1em;
	color: var(--red-hot);
}
.pc-birim {
	font-size: 12px;
	color: var(--txt-on-dark-dim);
	margin-top: 8px;
	letter-spacing: 0.04em;
}

/* fiyat sayfası üst bilgi şeridi */
.pricebar {
	background: var(--navy-850);
	border-bottom: 1px solid var(--rule);
	font-size: 12.5px;
	color: var(--txt-on-dark-dim);
	letter-spacing: 0.05em;
	position: relative;
	z-index: 3;
}
.pricebar .wrap {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	min-height: 48px;
}
.pricebar strong {
	color: #fff;
	font-weight: 600;
}
.pricebar a {
	color: var(--arc);
}
.pricebar a:hover {
	text-decoration: underline;
}
.pb-sep {
	opacity: 0.4;
}
.pb-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--arc);
	box-shadow: 0 0 0 0 rgba(87, 196, 255, 0.6);
	animation: dotPulse 2.4s var(--ease-io) infinite;
	flex: none;
}
@keyframes dotPulse {
	70% {
		box-shadow: 0 0 0 9px rgba(87, 196, 255, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(87, 196, 255, 0);
	}
}

.pricegroup {
	margin-bottom: clamp(52px, 7vw, 88px);
	scroll-margin-top: calc(var(--nav-h) + 40px);
}

/* fiyat tablosu */
.ptable {
	border: 1px solid var(--rule);
	background: var(--navy-900);
}

.ptable-head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 130px 190px;
	gap: 16px;
	padding: 14px 26px;
	background: rgba(87, 196, 255, 0.05);
	border-bottom: 1px solid var(--rule);
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--txt-on-dark-dim);
}
.ptable-head span:last-child {
	text-align: right;
}

.prow {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 130px 190px;
	gap: 16px;
	align-items: center;
	padding: 22px 26px;
	border-bottom: 1px solid var(--rule);
	position: relative;
	transition: background 0.35s var(--ease);
}
.prow:last-child {
	border-bottom: none;
}

.prow::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: var(--red);
	transform: scaleY(0);
	transition: transform 0.4s var(--ease);
}
.prow:hover {
	background: rgba(87, 196, 255, 0.045);
}
.prow:hover::before {
	transform: scaleY(1);
}

.prow-ad h3 {
	font-size: 1.28rem;
	color: #fff;
	letter-spacing: 0.02em;
}
.prow-ad p {
	font-size: 13.5px;
	color: var(--txt-on-dark-dim);
	margin-top: 6px;
	max-width: 62ch;
}

.prow-birim {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--arc);
	border: 1px solid var(--rule);
	border-radius: 2px;
	padding: 6px 10px;
	text-align: center;
	justify-self: start;
}

.prow-fiyat {
	text-align: right;
	white-space: nowrap;
}
.prow-fiyat b {
	font-family: var(--f-display);
	font-size: 2.05rem;
	font-weight: 800;
	color: #fff;
	line-height: 1;
	letter-spacing: 0.01em;
}
.prow-fiyat b.soru {
	font-size: 1.3rem;
	color: var(--arc);
}
.prow-fiyat small {
	font-family: var(--f-display);
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--red-hot);
	margin-left: 5px;
	letter-spacing: 0.06em;
}
.prow-fiyat em {
	display: block;
	font-style: normal;
	font-size: 10.5px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--txt-on-dark-dim);
	margin-top: 6px;
}

/* bilgilendirme kutusu */
.notice {
	border: 1px solid var(--rule);
	border-left: 3px solid var(--red);
	background: rgba(87, 196, 255, 0.035);
	padding: clamp(24px, 3.5vw, 36px);
}
.notice h3 {
	font-size: 1.45rem;
	color: #fff;
	margin-bottom: 16px;
}
.notice ul {
	display: grid;
	gap: 12px;
}
.notice li {
	position: relative;
	padding-left: 24px;
	font-size: 14.5px;
	color: var(--txt-on-dark-dim);
	line-height: 1.72;
}
.notice li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.62em;
	width: 7px;
	height: 7px;
	background: var(--arc);
	transform: rotate(45deg);
}
.notice strong {
	color: #fff;
}
.notice a {
	color: var(--arc);
}
.notice a:hover {
	text-decoration: underline;
}

@media (max-width: 780px) {
	.ptable-head {
		display: none;
	}
	.prow {
		grid-template-columns: 1fr;
		gap: 12px;
		padding: 20px 20px 22px;
	}
	.prow-fiyat {
		text-align: left;
		display: flex;
		align-items: baseline;
		gap: 8px;
		flex-wrap: wrap;
	}
	.prow-fiyat em {
		margin-top: 0;
	}
}

/* ---------- 22c. ÜYE / KADRO EKLERİ ---------- */
.member-bos {
	width: 100%;
	height: 100%;
	display: grid;
	place-items: center;
	font-family: var(--f-display);
	font-size: 4.5rem;
	font-weight: 800;
	color: rgba(87, 196, 255, 0.3);
	background: linear-gradient(140deg, var(--navy-800), var(--navy-700));
}

.member-tel {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 14px;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--arc);
	transition: color 0.3s var(--ease);
}
.member-tel svg {
	width: 14px;
	height: 14px;
	stroke: currentColor;
	flex: none;
}
.member-tel:hover {
	color: var(--red-hot);
}

.member-adres {
	font-size: 12.5px;
	color: var(--txt-on-dark-dim);
	margin-top: 10px;
	line-height: 1.6;
}

.person-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 3;
	background: var(--arc);
	color: var(--navy-950);
	font-size: 9.5px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	padding: 5px 10px;
	border-radius: 2px;
}

/* form hata kutusu + bot tuzağı */
.form-err {
	margin-bottom: 22px;
	padding: 14px 16px;
	border: 1px solid rgba(255, 51, 71, 0.45);
	background: rgba(255, 51, 71, 0.09);
	color: #ffb9c0;
	font-size: 13.5px;
	line-height: 1.6;
}

.tuzak {
	position: absolute !important;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* ---------- 22c-2. GEÇMİŞ BAŞKANLAR — ELLE KAYDIRILAN ŞERİT ---------- */
.mq-sar {
	position: relative;
}

.mq {
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x proximity;
	scroll-behavior: smooth;
	padding-block: 6px 18px;
	cursor: grab;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-x: contain;
}

.mq.tutuluyor {
	cursor: grabbing;
	scroll-behavior: auto;
	scroll-snap-type: none;
	user-select: none;
}

/* kaydırılabiliyorsa kenarlarda yumuşak kayboluş */
.mq-sar:not(.sigar) .mq {
	mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

/* ince kaydırma çubuğu — kaydırılabildiğini belli eder */
.mq::-webkit-scrollbar {
	height: 5px;
}
.mq::-webkit-scrollbar-track {
	background: rgba(87, 196, 255, 0.07);
}
.mq::-webkit-scrollbar-thumb {
	background: rgba(87, 196, 255, 0.4);
	border-radius: 3px;
}
.mq::-webkit-scrollbar-thumb:hover {
	background: var(--red);
}
.mq {
	scrollbar-width: thin;
	scrollbar-color: rgba(87, 196, 255, 0.4) rgba(87, 196, 255, 0.07);
}

.mq-track {
	display: flex;
	flex-wrap: nowrap;          /* asla alt satıra taşma — ya kaydırılır ya ortalanır */
	gap: 20px;
	width: max-content;
	padding-inline: var(--gut);
}

/* Kartlar ekrana sığıyorsa ortalanır, kaydırma gerekmez.
   Bu sınıfı JS ölçüm yaptıktan sonra ekler. */
.mq-sar.sigar .mq-track {
	width: 100%;
	justify-content: center;
	max-width: var(--wrap);
	margin-inline: auto;
}
.mq-sar.sigar .mq {
	overflow-x: hidden;
	cursor: default;
	padding-bottom: 6px;
}
.mq-sar.sigar .mq::-webkit-scrollbar {
	display: none;
}

/* ok düğmeleri */
.mq-ok {
	position: absolute;
	top: calc(50% - 26px);
	z-index: 4;
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	background: rgba(10, 21, 51, 0.9);
	backdrop-filter: blur(8px);
	border: 1px solid var(--rule);
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s var(--ease);
}
.mq-ok svg {
	width: 20px;
	height: 20px;
	stroke: #fff;
}
.mq-ok:hover:not(:disabled) {
	background: var(--red);
	border-color: var(--red);
	transform: scale(1.08);
}
.mq-ok:disabled {
	opacity: 0.25;
	cursor: default;
}

/* display:grid, tarayıcının [hidden] kuralını ezdiği için açıkça gizliyoruz */
.mq-ok[hidden] {
	display: none;
}
.mq-ok--sol {
	left: max(12px, calc(var(--gut) - 24px));
}
.mq-ok--sag {
	right: max(12px, calc(var(--gut) - 24px));
}

.mq-card {
	flex: none;
	width: 232px;
	scroll-snap-align: center;
	background: var(--navy-900);
	border: 1px solid var(--rule);
	padding: 0 0 20px;
	text-align: left;
	cursor: pointer;
	font: inherit;
	color: inherit;
	overflow: hidden;
	transition: transform 0.45s var(--ease), border-color 0.4s var(--ease);
	display: block;
}

.mq-card:hover,
.mq-card:focus-visible {
	transform: translateY(-6px);
	border-color: rgba(87, 196, 255, 0.45);
}

.mq-ph {
	position: relative;
	display: block;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: var(--navy-800);
}

.mq-ph img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 20%;
	filter: grayscale(1) contrast(1.1) brightness(0.85);
	transition: filter 0.6s var(--ease), transform 0.8s var(--ease);
	-webkit-user-drag: none;
}
.mq-card:hover .mq-ph img {
	filter: grayscale(0.15) brightness(1);
	transform: scale(1.06);
}

.mq-ph::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(20, 36, 85, 0.5), rgba(4, 9, 27, 0.88)),
		linear-gradient(120deg, rgba(87, 196, 255, 0.2), rgba(208, 24, 41, 0.2));
	mix-blend-mode: multiply;
	opacity: 0.8;
	transition: opacity 0.6s var(--ease);
}
.mq-card:hover .mq-ph::after {
	opacity: 0.32;
}

.mq-bos {
	width: 100%;
	height: 100%;
	display: grid;
	place-items: center;
	font-family: var(--f-display);
	font-size: 3.6rem;
	font-weight: 800;
	color: rgba(87, 196, 255, 0.3);
}

.mq-donem {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 3;
	background: var(--red);
	color: #fff;
	font-family: var(--f-display);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.09em;
	padding: 5px 12px;
}

.mq-ad {
	display: block;
	font-family: var(--f-display);
	font-size: 1.35rem;
	font-weight: 800;
	text-transform: uppercase;
	color: #fff;
	margin: 18px 20px 0;
	line-height: 1.05;
}

.mq-unvan {
	display: block;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--arc);
	margin: 8px 20px 0;
}

/* ---------- 22c-3. ÖZGEÇMİŞ PENCERESİ ---------- */
.kmodal {
	position: fixed;
	inset: 0;
	z-index: 500;
	background: rgba(4, 9, 27, 0.94);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	overflow-y: auto;
	padding: clamp(56px, 8vh, 90px) var(--gut) 60px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s var(--ease), visibility 0.4s;
}

.kmodal.acik {
	opacity: 1;
	visibility: visible;
}

.kmodal-ic {
	max-width: 780px;
	margin-inline: auto;
	transform: translateY(18px);
	transition: transform 0.5s var(--ease);
}
.kmodal.acik .kmodal-ic {
	transform: none;
}

.kmodal-kapat {
	position: fixed;
	top: 22px;
	right: clamp(16px, 4vw, 40px);
	z-index: 2;
	width: 50px;
	height: 50px;
	display: grid;
	place-items: center;
	background: rgba(232, 236, 247, 0.06);
	border: 1px solid var(--rule);
	cursor: pointer;
	transition: all 0.3s var(--ease);
}
.kmodal-kapat:hover {
	background: var(--red);
	border-color: var(--red);
}
.kmodal-kapat svg {
	width: 20px;
	height: 20px;
	stroke: #fff;
}

.kmodal-bas {
	display: flex;
	gap: 24px;
	align-items: center;
	flex-wrap: wrap;
	padding-bottom: 24px;
	margin-bottom: 26px;
	border-bottom: 1px solid var(--rule);
}

.kmodal-bas img {
	width: 116px;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border: 1px solid var(--rule);
	flex: none;
}

.kmodal-bas h2 {
	font-size: clamp(1.9rem, 4vw, 2.6rem);
	color: #fff;
}

.kmodal-donem {
	display: inline-block;
	margin-top: 10px;
	background: var(--red);
	color: #fff;
	font-family: var(--f-display);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.09em;
	padding: 4px 11px;
}

@media (max-width: 620px) {
	.mq-card {
		width: 188px;
	}
	.mq-ad {
		font-size: 1.15rem;
	}
}

/* ---------- 22d. SIKÇA SORULANLAR ---------- */
.sss {
	display: grid;
	gap: 12px;
	max-width: 900px;
}

.sss-item {
	border: 1px solid var(--rule);
	background: var(--navy-900);
	overflow: hidden;
	transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.sss-item[open] {
	border-color: rgba(87, 196, 255, 0.4);
	background: var(--navy-850);
}
.sss-item:hover {
	border-color: rgba(87, 196, 255, 0.3);
}

.sss-item summary {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 20px 24px;
	cursor: pointer;
	list-style: none;
}
.sss-item summary::-webkit-details-marker {
	display: none;
}

.sss-item summary h3 {
	font-size: 1.22rem;
	color: #fff;
	text-transform: none;
	letter-spacing: 0.01em;
	line-height: 1.2;
	flex: 1;
}
.sss-item[open] summary h3 {
	color: var(--arc);
}

/* artı → eksi dönen ikon */
.sss-ok {
	position: relative;
	width: 20px;
	height: 20px;
	flex: none;
}
.sss-ok::before,
.sss-ok::after {
	content: "";
	position: absolute;
	background: var(--red-hot);
	border-radius: 2px;
	transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.sss-ok::before {
	top: 9px;
	left: 0;
	width: 20px;
	height: 2px;
}
.sss-ok::after {
	top: 0;
	left: 9px;
	width: 2px;
	height: 20px;
}
.sss-item[open] .sss-ok::after {
	transform: rotate(90deg);
	opacity: 0;
}

.sss-cevap {
	padding: 0 24px 24px;
	animation: sssAc 0.45s var(--ease);
}
.sss-cevap p {
	font-size: 15px;
	line-height: 1.78;
	color: var(--txt-on-dark-dim);
	max-width: 72ch;
	padding-top: 4px;
	border-top: 1px solid var(--rule);
}

@keyframes sssAc {
	from {
		opacity: 0;
		transform: translateY(-8px);
	}
}

/* ---------- 23. SCROLL REVEAL ---------- */
.rv {
	opacity: 0;
	transform: translateY(34px);
	transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
	will-change: opacity, transform;
}
.rv.in {
	opacity: 1;
	transform: none;
}
.rv[data-d="1"] {
	transition-delay: 0.09s;
}
.rv[data-d="2"] {
	transition-delay: 0.18s;
}
.rv[data-d="3"] {
	transition-delay: 0.27s;
}
.rv[data-d="4"] {
	transition-delay: 0.36s;
}
.rv[data-d="5"] {
	transition-delay: 0.45s;
}
.rv[data-d="6"] {
	transition-delay: 0.54s;
}

/* ---------- 24. OKUMA İLERLEME ÇUBUĞU ---------- */
#progress {
	position: fixed;
	top: 0;
	left: 0;
	height: 3px;
	width: 0;
	background: linear-gradient(90deg, var(--arc), var(--red));
	z-index: 400;
	box-shadow: 0 0 12px rgba(87, 196, 255, 0.7);
	transition: width 0.08s linear;
}

/* ---------- 25. RESPONSIVE ---------- */
@media (max-width: 1080px) {
	#hero .wrap {
		grid-template-columns: 1fr;
		text-align: left;
	}
	.hero-medal {
		order: -1;
		width: min(280px, 62vw);
	}
	.contact-grid {
		grid-template-columns: 1fr;
	}
	.f-grid {
		grid-template-columns: 1fr 1fr;
	}
	.f-brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 900px) {
	:root {
		--nav-h: 70px;
	}
	.menu {
		display: none;
	}
	.burger {
		display: block;
	}
	.tb-tag {
		display: none;
	}
}

@media (max-width: 620px) {
	.brand-txt .b1 {
		font-size: 16px;
	}
	.brand-txt .b2 {
		font-size: 8px;
		letter-spacing: 0.14em;
	}
	.brand-mark {
		width: 44px;
		height: 44px;
	}
	#topbar .wrap {
		justify-content: center;
	}
	.tb-links {
		gap: 16px;
		font-size: 11.5px;
	}
	.f-grid {
		grid-template-columns: 1fr;
	}
	.cta-band {
		flex-direction: column;
		align-items: flex-start;
	}
	.timeline {
		padding-left: 34px;
	}
	.tl-item::before {
		left: -29px;
	}
	.timeline::before,
	.timeline .prog {
		left: 5px;
	}
	.floaty a {
		width: 46px;
		height: 46px;
	}
	.gal {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	}
}

/* ---------- 27. ERİŞİLEBİLİRLİK ---------- */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
	.rv {
		opacity: 1;
		transform: none;
	}
	.hero-h .ln > span {
		transform: none;
	}
}

:focus-visible {
	outline: 2px solid var(--arc);
	outline-offset: 3px;
}

.skip {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 999;
	background: var(--red);
	color: #fff;
	padding: 12px 20px;
	font-size: 13px;
}
.skip:focus {
	left: 8px;
	top: 8px;
}
