/* AIKeySoft — premium açık SaaS / AI startup tema (Stripe · Vercel · Linear ilhamı) */
:root {
	--bg: #fafafa;
	--bg-elevated: #ffffff;
	--bg-subtle: #f4f4f5;
	--section-alt: #ececee;
	--text: #18181b;
	--text-muted: #71717a;
	--text-subtle: #a1a1aa;
	--accent: #4f46e5;
	--accent-hover: #4338ca;
	--accent-2: #7c3aed;
	--accent-soft: rgba(79, 70, 229, 0.09);
	--accent-glow: rgba(79, 70, 229, 0.28);
	--glow-purple: rgba(124, 58, 237, 0.16);
	--glow-blue: rgba(79, 70, 229, 0.11);
	--border: rgba(24, 24, 27, 0.07);
	--border-strong: rgba(24, 24, 27, 0.11);
	--border-focus: rgba(79, 70, 229, 0.38);
	--glass-bg: rgba(255, 255, 255, 0.72);
	--glass-border: rgba(255, 255, 255, 0.96);
	--shadow-xs: 0 1px 2px rgba(9, 9, 11, 0.04);
	--shadow-sm: 0 2px 8px -2px rgba(9, 9, 11, 0.06), 0 4px 12px -4px rgba(9, 9, 11, 0.04);
	--shadow-md: 0 12px 40px -12px rgba(9, 9, 11, 0.1), 0 4px 16px -4px rgba(79, 70, 229, 0.06);
	--shadow-lg: 0 24px 64px -16px rgba(9, 9, 11, 0.12), 0 8px 24px -8px rgba(124, 58, 237, 0.08);
	--shadow-glow: 0 16px 48px rgba(79, 70, 229, 0.2);
	--whatsapp: #0f766e;
	--header-h: 72px;
	/* Güvenli alan + yapışkan başlık ofseti (çentikli telefonlar) */
	--safe-top: env(safe-area-inset-top, 0px);
	--safe-bottom: env(safe-area-inset-bottom, 0px);
	--safe-left: env(safe-area-inset-left, 0px);
	--safe-right: env(safe-area-inset-right, 0px);
	--header-offset: calc(var(--header-h) + var(--safe-top));
	--container-gutter: clamp(1rem, 4.5vw, 1.5rem);
	--radius: 14px;
	--radius-lg: 20px;
	--radius-pill: 9999px;
	--font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
	--font-display: "Plus Jakarta Sans", var(--font-sans);
	--ease: cubic-bezier(0.4, 0, 0.2, 1);
	--ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
	/* Üst üste binme sırası: içerik < WA < mobil menü arka planı < başlık+çekmece < diyaloglar */
	--z-wa-float: 90;
	--z-nav-backdrop: 5000;
	--z-site-header: 5100;
	--z-nav-mobile-panel: 5200;
	--z-modal: 6000;
}

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

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

::selection {
	background: rgba(79, 70, 229, 0.14);
	color: var(--text);
}

body {
	font-family: var(--font-sans);
	background: var(--bg);
	color: var(--text);
	line-height: 1.65;
	min-height: 100vh;
	overflow-x: hidden;
	font-size: 1rem;
	-webkit-font-smoothing: antialiased;
}

main {
	display: block;
	min-width: 0;
}

h1,
h2,
h3,
h4,
.logo,
.section-head h2,
.footer-premium__heading {
	font-family: var(--font-display);
}

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

a:hover {
	color: var(--accent-hover);
}

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

.container {
	width: 100%;
	max-width: 1180px;
	margin-inline: auto;
	padding-inline: var(--container-gutter);
	box-sizing: border-box;
}

/* —— Arka plan (hafif grid + yumuşak ışık) —— */
.bg-mesh {
	position: fixed;
	inset: 0;
	z-index: -2;
	background: var(--bg);
	overflow: hidden;
}

.bg-mesh::before {
	content: "";
	position: absolute;
	width: 120%;
	height: 120%;
	top: -10%;
	left: -10%;
	background:
		radial-gradient(ellipse 72% 58% at 88% 4%, var(--glow-purple), transparent 54%),
		radial-gradient(ellipse 64% 48% at 8% 18%, var(--glow-blue), transparent 52%),
		radial-gradient(ellipse 55% 42% at 48% 102%, rgba(79, 70, 229, 0.07), transparent 58%),
		radial-gradient(ellipse 40% 30% at 72% 72%, rgba(124, 58, 237, 0.05), transparent 50%);
	animation: meshShift 26s ease-in-out infinite alternate;
}

.bg-mesh::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cpath fill='none' stroke='%23d4d4d8' stroke-opacity='0.4' d='M72 0H0v72'/%3E%3C/svg%3E"),
		linear-gradient(180deg, transparent 0%, rgba(250, 250, 250, 0.5) 100%);
	background-size: 72px 72px, 100% 100%;
	opacity: 0.5;
	pointer-events: none;
}

@keyframes meshShift {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(-2%, 2%);
	}
}

/* —— Bölüm arka planları —— */
#hakkimizda,
#neden-biz,
#referanslar,
#fiyatlandirma {
	background: var(--section-alt);
}

#hero,
#hizmetler,
#portfolyo,
#iletisim {
	background: var(--bg);
	position: relative;
}

/* —— Navbar —— */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: var(--z-site-header);
	overflow: visible;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	padding-top: var(--safe-top);
	min-height: var(--header-offset);
	background: rgba(255, 255, 255, 0.82);
	backdrop-filter: saturate(180%) blur(16px);
	-webkit-backdrop-filter: saturate(180%) blur(16px);
	border-bottom: 1px solid var(--border);
	transition: box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}

.site-header.is-scrolled {
	box-shadow: var(--shadow-sm);
	background: rgba(255, 255, 255, 0.94);
}

@media (min-width: 901px) {
	.site-header {
		min-height: 0;
		padding: calc(0.65rem + var(--safe-top)) max(4vw, 1rem) 0.65rem;
		align-items: flex-start;
		background: transparent;
		border-bottom: none;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	.site-header.is-scrolled {
		background: transparent;
		box-shadow: none;
	}

	.site-header .container {
		margin-inline: auto;
		padding: 0.5rem 1.35rem;
		flex: 0 1 auto;
		min-height: 0;
		border-radius: var(--radius-pill);
		background: color-mix(in srgb, var(--glass-bg) 88%, transparent);
		backdrop-filter: blur(20px) saturate(180%);
		-webkit-backdrop-filter: blur(20px) saturate(180%);
		border: 1px solid var(--border);
		box-shadow: var(--shadow-sm), 0 0 0 1px rgba(255, 255, 255, 0.65) inset;
	}

	.site-header.is-scrolled .container {
		background: rgba(255, 255, 255, 0.9);
		box-shadow: var(--shadow-md), 0 0 0 1px rgba(255, 255, 255, 0.75) inset;
	}
}

.site-header .container,
.site-header .site-header__inner {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 1rem;
}

.site-header .logo {
	flex-shrink: 0;
	margin-right: auto;
}

.site-header .logo__mark {
	width: 40px;
	height: 40px;
}

.site-footer .logo__mark,
.site-footer .logo__mark--footer {
	width: 36px;
	height: 36px;
}

@media (max-width: 900px) {
	/* backdrop-filter, fixed .nav-mobile için containing block oluşturur; menü birkaç piksel kalır */
	.site-header {
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		background: rgba(255, 255, 255, 0.94);
	}

	.site-header .container {
		flex: 0 0 auto;
		min-height: var(--header-h);
	}
}

.logo {
	font-weight: 700;
	font-size: 1.2rem;
	letter-spacing: -0.03em;
	color: var(--text);
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	line-height: 1;
}

.logo__mark {
	width: 34px;
	height: 34px;
	object-fit: contain;
	flex-shrink: 0;
	border-radius: 10px;
	display: block;
}

.logo__mark--footer {
	width: 30px;
	height: 30px;
	border-radius: 9px;
}

.logo .logo__text > span {
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.nav-desktop {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex: 1;
	min-width: 0;
	flex-wrap: wrap;
	gap: 0.15rem;
	row-gap: 0.35rem;
}

.nav-desktop a {
	color: var(--text-muted);
	font-size: 0.875rem;
	font-weight: 500;
	padding: 0.5rem 0.85rem;
	border-radius: var(--radius-pill);
	transition: color 0.2s, background 0.25s var(--ease-out-expo);
}

.nav-desktop a:hover {
	color: var(--text);
	background: rgba(9, 9, 11, 0.05);
}

.nav-desktop a.is-active,
.nav-mobile a.is-active {
	color: var(--accent);
	background: var(--accent-soft);
	font-weight: 600;
}

/* QR-SOFT menü markası: QR turuncu, -SOFT siyah */
.nav-desktop a.nav-qrsoft,
.nav-mobile a.nav-qrsoft {
	font-weight: 700;
	letter-spacing: -0.02em;
	color: inherit;
}

.nav-qrsoft__qr {
	color: #fb8122;
}

.nav-qrsoft__soft {
	color: #0a0a0a;
}

.nav-desktop a.nav-qrsoft:hover,
.nav-mobile a.nav-qrsoft:hover {
	background: rgba(251, 129, 34, 0.1);
}

.nav-desktop a.nav-qrsoft:hover .nav-qrsoft__qr,
.nav-mobile a.nav-qrsoft:hover .nav-qrsoft__qr {
	color: #e86f10;
}

.nav-desktop a.nav-qrsoft:hover .nav-qrsoft__soft,
.nav-mobile a.nav-qrsoft:hover .nav-qrsoft__soft,
.nav-desktop a.nav-qrsoft.is-active .nav-qrsoft__soft,
.nav-mobile a.nav-qrsoft.is-active .nav-qrsoft__soft {
	color: #0a0a0a;
}

.nav-desktop a.nav-qrsoft.is-active,
.nav-mobile a.nav-qrsoft.is-active {
	background: rgba(251, 129, 34, 0.12);
}

.nav-desktop a.nav-qrsoft.is-active .nav-qrsoft__qr,
.nav-mobile a.nav-qrsoft.is-active .nav-qrsoft__qr {
	color: #fb8122;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	min-width: 44px;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	-webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
	width: 22px;
	height: 2px;
	background: var(--text);
	border-radius: 2px;
	transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav-toggle.is-open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
	opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
	display: none;
	position: fixed;
	top: var(--header-offset);
	left: 0;
	right: 0;
	bottom: 0;
	z-index: var(--z-nav-mobile-panel);
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	padding: 1rem max(1rem, var(--safe-right)) calc(1.25rem + var(--safe-bottom)) max(1rem, var(--safe-left));
	flex-direction: column;
	gap: 0.4rem;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s var(--ease);
	overflow-y: auto;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
}

.nav-mobile.is-open {
	opacity: 1;
	pointer-events: auto;
}

.nav-mobile a {
	color: var(--text);
	font-size: 1.05rem;
	font-weight: 500;
	padding: 0.9rem 1rem;
	min-height: 48px;
	display: flex;
	align-items: center;
	border-radius: var(--radius);
	border: 1px solid var(--border);
	background: var(--bg);
	transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
	-webkit-tap-highlight-color: transparent;
}

.nav-mobile a:hover {
	background: var(--accent-soft);
	border-color: rgba(79, 70, 229, 0.2);
	box-shadow: var(--shadow-xs);
}

@media (max-width: 900px) {
	.nav-desktop {
		display: none;
	}
	.nav-toggle {
		display: flex;
	}
	.nav-mobile {
		display: flex;
	}
}

/* —— Buttons —— */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 2.75rem;
	padding: 0.72rem 1.45rem;
	font-family: inherit;
	font-size: 0.9rem;
	font-weight: 600;
	border-radius: var(--radius-pill);
	border: none;
	cursor: pointer;
	transition:
		transform 0.35s var(--ease-out-expo),
		box-shadow 0.35s var(--ease-out-expo),
		background 0.35s var(--ease);
}

.btn:active {
	transform: scale(0.98);
}

.btn-primary {
	background: linear-gradient(180deg, #6366f1 0%, var(--accent) 55%, var(--accent-hover) 100%);
	color: #fff;
	box-shadow: 0 2px 12px rgba(79, 70, 229, 0.38), 0 1px 2px rgba(9, 9, 11, 0.06);
}

.btn-primary:hover {
	box-shadow: 0 12px 32px rgba(79, 70, 229, 0.35), 0 4px 16px rgba(124, 58, 237, 0.14);
	transform: translateY(-2px);
	color: #fff;
}

.btn-ghost {
	background: rgba(255, 255, 255, 0.85);
	color: var(--text);
	border: 1px solid var(--border-strong);
	box-shadow: var(--shadow-xs), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
	backdrop-filter: blur(8px);
}

.btn-ghost:hover {
	border-color: rgba(79, 70, 229, 0.22);
	box-shadow: var(--shadow-sm), 0 0 0 3px rgba(124, 58, 237, 0.07);
	transform: translateY(-2px);
}

.btn-whatsapp {
	background: linear-gradient(180deg, #14b8a6 0%, var(--whatsapp) 100%);
	color: #fff;
	box-shadow: 0 2px 14px rgba(15, 118, 110, 0.35);
}

.btn-whatsapp:hover {
	box-shadow: 0 10px 28px rgba(15, 118, 110, 0.35);
	transform: translateY(-2px);
	color: #fff;
}

/* —— Hero —— */
.hero {
	min-height: min(100vh, 880px);
	min-height: min(100dvh, 880px);
	display: flex;
	align-items: center;
	padding: calc(var(--header-offset) + 2.75rem) 0 3.75rem;
	position: relative;
	overflow: hidden;
}

.hero__noise {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	opacity: 0.04;
	mix-blend-mode: multiply;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
	background-size: 220px 220px;
}

.hero::before {
	content: "";
	position: absolute;
	width: min(560px, 90vw);
	height: min(560px, 90vw);
	border-radius: 50%;
	background: radial-gradient(circle at 40% 40%, var(--glow-purple), transparent 68%);
	top: -18%;
	right: -8%;
	animation: heroOrbA 14s ease-in-out infinite;
	pointer-events: none;
	z-index: 0;
}

.hero::after {
	content: "";
	position: absolute;
	width: min(420px, 75vw);
	height: min(420px, 75vw);
	border-radius: 50%;
	background: radial-gradient(circle, var(--glow-blue), transparent 70%);
	bottom: 5%;
	left: -10%;
	animation: heroOrbB 16s ease-in-out infinite;
	animation-delay: -4s;
	pointer-events: none;
	z-index: 0;
}

@keyframes heroOrbA {
	0%,
	100% {
		transform: translate(0, 0) scale(1);
		opacity: 1;
	}
	50% {
		transform: translate(-4%, 6%) scale(1.05);
		opacity: 0.85;
	}
}

@keyframes heroOrbB {
	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}
	50% {
		transform: translate(8%, -4%) scale(1.08);
	}
}

.hero .container {
	position: relative;
	z-index: 1;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 5vw, 3.5rem);
	align-items: center;
}

@media (max-width: 900px) {
	.hero-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.hero-actions {
		justify-content: center;
		flex-wrap: wrap;
	}
	.hero {
		min-height: auto;
		padding-top: calc(var(--header-offset) + 1.5rem);
		padding-bottom: clamp(2rem, 6vw, 3rem);
	}
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.35rem 0.85rem;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--accent);
	background: var(--accent-soft);
	border: 1px solid rgba(79, 70, 229, 0.15);
	margin-bottom: 1.25rem;
	animation: fadeUp 0.75s var(--ease) backwards;
}

.hero h1 {
	font-size: clamp(1.72rem, 4.2vw + 0.6rem, 3.15rem);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.035em;
	margin-bottom: 1rem;
	animation: fadeUp 0.75s 0.08s var(--ease) backwards;
}

.hero h1 .gradient {
	background: linear-gradient(135deg, var(--text) 0%, var(--text) 35%, var(--accent) 58%, var(--accent-2) 100%);
	background-size: 200% auto;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: heroShimmer 10s ease-in-out infinite;
}

@keyframes heroShimmer {
	0%,
	100% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
}

.hero .lead {
	font-size: clamp(1rem, 2.5vw, 1.125rem);
	color: var(--text-muted);
	max-width: 36ch;
	font-weight: 400;
	margin-bottom: 1.65rem;
	animation: fadeUp 0.75s 0.16s var(--ease) backwards;
}

@media (max-width: 900px) {
	.hero .lead {
		margin-inline: auto;
	}
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	animation: fadeUp 0.75s 0.24s var(--ease) backwards;
}

.hero-pack-hint {
	margin: 0.85rem 0 0;
	font-size: 0.88rem;
	animation: fadeUp 0.75s 0.3s var(--ease) backwards;
}

.hero-pack-hint a {
	color: var(--accent);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: 1px;
	text-decoration-color: rgba(79, 70, 229, 0.35);
	transition: color 0.2s, text-decoration-color 0.2s;
}

.hero-pack-hint a:hover {
	color: var(--accent-hover);
	text-decoration-color: rgba(79, 70, 229, 0.55);
}

@media (max-width: 900px) {
	.hero-pack-hint {
		text-align: center;
	}
}

.hero-visual {
	position: relative;
	animation: fadeUp 0.85s 0.28s var(--ease) backwards;
}

@media (max-width: 900px) {
	.hero-visual {
		max-width: 380px;
		margin-inline: auto;
	}
}

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

.hero-card {
	background: var(--glass-bg);
	backdrop-filter: blur(22px) saturate(175%);
	-webkit-backdrop-filter: blur(22px) saturate(175%);
	border: 1px solid var(--glass-border);
	border-radius: var(--radius-lg);
	padding: 1.5rem;
	box-shadow: var(--shadow-md), 0 0 0 1px rgba(255, 255, 255, 0.85) inset, 0 1px 0 rgba(255, 255, 255, 0.9) inset;
	transition: transform 0.45s var(--ease-out-expo), box-shadow 0.45s var(--ease-out-expo), border-color 0.45s;
	animation: heroCardFloat 7s ease-in-out 1.2s infinite;
}

.hero-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg), var(--shadow-glow), 0 0 0 1px rgba(255, 255, 255, 0.9) inset;
	border-color: rgba(124, 58, 237, 0.22);
}

.hero-mock-label {
	font-size: 0.82rem;
	color: var(--text-muted);
	margin-bottom: 0.75rem;
	font-weight: 500;
}

.hero-mock-line {
	height: 8px;
	border-radius: 6px;
	margin-bottom: 0.5rem;
}

.hero-mock-line--1 {
	width: 85%;
	background: linear-gradient(90deg, rgba(79, 70, 229, 0.35), rgba(79, 70, 229, 0.12));
}

.hero-mock-line--2 {
	width: 65%;
	background: linear-gradient(90deg, rgba(124, 58, 237, 0.28), rgba(124, 58, 237, 0.08));
}

.hero-mock-line--3 {
	width: 45%;
	margin-bottom: 0;
	background: rgba(9, 9, 11, 0.08);
}

.hero-card .mock-bar {
	display: flex;
	gap: 6px;
	margin-bottom: 1rem;
}

.hero-card .mock-bar span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #e2e8f0;
}

.hero-card .mock-bar span:nth-child(1) {
	background: #f87171;
}
.hero-card .mock-bar span:nth-child(2) {
	background: #fbbf24;
}
.hero-card .mock-bar span:nth-child(3) {
	background: #4ade80;
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(0.65rem, 2vw, 1rem);
	margin-top: 1.25rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--border);
}

.hero-stats strong {
	display: block;
	font-size: clamp(1.05rem, 3.5vw, 1.28rem);
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	color: var(--text);
	letter-spacing: -0.02em;
}

.hero-stats span {
	font-size: 0.72rem;
	color: var(--text-muted);
	font-weight: 500;
}

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

/* —— Sections —— */
section {
	padding: clamp(3.5rem, 8vw, 5rem) 0;
	position: relative;
}

section[id] {
	scroll-margin-top: calc(var(--header-offset) + 0.85rem);
}

@media (min-width: 901px) {
	section[id] {
		scroll-margin-top: calc(5.75rem + var(--safe-top));
	}
}

.section-head {
	text-align: center;
	max-width: 560px;
	margin: 0 auto 2.75rem;
}

.section-head h2 {
	font-size: clamp(1.65rem, 3vw, 2.1rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	margin-bottom: 0.65rem;
	color: var(--text);
}

.section-head p {
	color: var(--text-muted);
	font-size: 1.05rem;
	font-weight: 400;
}

.section-head__cta {
	margin-top: 1.35rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem 0.75rem;
}

.section-head__cta-sep {
	color: var(--text-subtle);
	font-weight: 500;
	user-select: none;
}

.section-head__link {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--accent);
	font-family: var(--font-sans);
	transition: color 0.25s var(--ease), gap 0.35s var(--ease-out-expo);
}

.section-head__link:hover {
	color: var(--accent-hover);
}

.section-head__link i {
	font-size: 0.75rem;
	transition: transform 0.4s var(--ease-out-expo);
}

.section-head__link:hover i {
	transform: translateX(5px);
}

.section-tag {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.11em;
	color: var(--accent-2);
	margin-bottom: 0.45rem;
}

/* —— Glass —— */
.glass {
	background: linear-gradient(145deg, color-mix(in srgb, var(--glass-bg) 92%, transparent) 0%, rgba(255, 255, 255, 0.55) 100%);
	backdrop-filter: blur(18px) saturate(175%);
	-webkit-backdrop-filter: blur(18px) saturate(175%);
	border: 1px solid color-mix(in srgb, var(--glass-border) 85%, var(--border));
	box-shadow: var(--shadow-sm), 0 0 0 1px rgba(255, 255, 255, 0.55) inset, 0 1px 0 rgba(255, 255, 255, 0.75) inset;
	border-radius: var(--radius-lg);
	padding: 1.65rem;
	transition:
		transform 0.45s var(--ease-out-expo),
		box-shadow 0.45s var(--ease-out-expo),
		border-color 0.45s var(--ease);
}

.glass:hover {
	transform: translateY(-4px);
	border-color: color-mix(in srgb, var(--accent) 22%, transparent);
	box-shadow: var(--shadow-md), 0 0 48px rgba(124, 58, 237, 0.09), 0 0 0 1px rgba(255, 255, 255, 0.65) inset;
}

/* —— About —— */
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1.08fr;
	gap: clamp(2rem, 4vw, 3rem);
	align-items: center;
}

@media (max-width: 900px) {
	.about-grid {
		grid-template-columns: 1fr;
	}
}

.about-visual {
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--border);
	box-shadow: var(--shadow-md);
	transition: transform 0.5s var(--ease), box-shadow 0.5s;
}

.about-visual:hover {
	transform: translateY(-2px) scale(1.01);
	box-shadow: var(--shadow-lg);
}

.about-visual img {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
}

.about-content h2 {
	margin-bottom: 0.85rem;
}

.about-content p {
	color: var(--text-muted);
	margin-bottom: 1rem;
}

.about-page-link {
	margin-top: 1.35rem;
}

.about-list {
	list-style: none;
	margin-top: 1.35rem;
	display: grid;
	gap: 0.7rem;
}

.about-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	color: var(--text-muted);
	font-size: 0.94rem;
}

.about-list i {
	color: var(--accent);
	margin-top: 0.2rem;
}

/* —— Services (premium grid) —— */
.services-showcase {
	position: relative;
	overflow: hidden;
}

.services-showcase__inner {
	position: relative;
	z-index: 1;
}

.services-showcase__ambient {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

.services-showcase__mesh {
	position: absolute;
	inset: -35% -25% auto -25%;
	height: 70%;
	opacity: 0.6;
	background-image:
		linear-gradient(rgba(79, 70, 229, 0.042) 1px, transparent 1px),
		linear-gradient(90deg, rgba(79, 70, 229, 0.042) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: radial-gradient(ellipse 72% 58% at 50% -5%, #000 22%, transparent 72%);
	animation: servicesMeshDrift 34s linear infinite;
}

@keyframes servicesMeshDrift {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(-48px, 48px);
	}
}

.services-showcase__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(1px);
	opacity: 0.48;
	animation: servicesOrbFloat 22s ease-in-out infinite;
}

.services-showcase__orb--a {
	width: min(440px, 72vw);
	height: min(440px, 72vw);
	background: radial-gradient(circle, rgba(124, 58, 237, 0.15), transparent 68%);
	top: -18%;
	right: -10%;
}

.services-showcase__orb--b {
	width: min(380px, 65vw);
	height: min(380px, 65vw);
	background: radial-gradient(circle, rgba(79, 70, 229, 0.11), transparent 70%);
	bottom: 0;
	left: -14%;
	animation-delay: -8s;
	animation-duration: 26s;
}

@keyframes servicesOrbFloat {
	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}
	50% {
		transform: translate(-2%, 4%) scale(1.05);
	}
}

.section-head--services {
	max-width: 52rem;
	margin-inline: auto;
	margin-bottom: clamp(2.5rem, 6vw, 3.35rem);
	text-align: center;
}

.services-showcase__heading {
	font-size: clamp(1.9rem, 3.9vw, 2.7rem);
	font-weight: 800;
	letter-spacing: -0.038em;
	line-height: 1.1;
	margin-bottom: 1rem;
	color: var(--text);
	font-family: var(--font-display);
}

.services-showcase__lede {
	font-size: clamp(1.05rem, 1.95vw, 1.22rem);
	color: var(--text-muted);
	line-height: 1.68;
	max-width: 44rem;
	margin-inline: auto;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
	margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

@media (max-width: 1024px) {
	.services-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.services-grid {
		grid-template-columns: 1fr;
	}
}

.services-tile {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	min-height: 100%;
	min-width: 0;
	padding: clamp(1.5rem, 3vw, 1.9rem);
	border-radius: var(--radius-lg);
	position: relative;
	overflow: hidden;
	transition:
		transform 0.45s var(--ease-out-expo),
		box-shadow 0.45s var(--ease-out-expo),
		border-color 0.4s var(--ease);
}

.services-tile::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 85% 60% at 15% 0%, rgba(79, 70, 229, 0.09), transparent 58%);
	opacity: 0;
	transition: opacity 0.45s var(--ease-out-expo);
	pointer-events: none;
}

.services-tile:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg), 0 0 52px rgba(79, 70, 229, 0.12), 0 0 88px rgba(124, 58, 237, 0.07);
	border-color: color-mix(in srgb, var(--accent) 24%, transparent);
}

.services-tile:hover::before {
	opacity: 1;
}

.services-tile__icon {
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: linear-gradient(145deg, rgba(79, 70, 229, 0.13), rgba(124, 58, 237, 0.09));
	color: var(--accent);
	font-size: 1.3rem;
	margin-bottom: 1.1rem;
	transition: transform 0.45s var(--ease-out-expo), box-shadow 0.45s var(--ease-out-expo);
	position: relative;
	z-index: 1;
}

.services-tile:hover .services-tile__icon {
	transform: scale(1.07);
	box-shadow: 0 12px 32px rgba(79, 70, 229, 0.22);
}

.services-tile__title {
	font-size: 1.14rem;
	font-weight: 700;
	letter-spacing: -0.022em;
	margin-bottom: 0.55rem;
	color: var(--text);
	font-family: var(--font-display);
	position: relative;
	z-index: 1;
}

.services-tile__desc {
	font-size: 0.9rem;
	color: var(--text-muted);
	line-height: 1.62;
	margin-bottom: 1rem;
	position: relative;
	z-index: 1;
}

.services-tile__list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.48rem;
	margin-bottom: 1.25rem;
	flex: 1 1 auto;
	font-size: 0.8rem;
	color: var(--text-muted);
	line-height: 1.48;
	position: relative;
	z-index: 1;
}

.services-tile__list li {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
}

.services-tile__list i {
	color: var(--accent);
	font-size: 0.68rem;
	margin-top: 0.22rem;
	flex-shrink: 0;
}

.services-tile__btn {
	width: 100%;
	justify-content: center;
	margin-top: auto;
	min-height: 2.65rem;
	font-size: 0.875rem;
	position: relative;
	z-index: 1;
}

.services-grid .services-tile.reveal:nth-child(1) {
	transition-delay: 0.04s;
}
.services-grid .services-tile.reveal:nth-child(2) {
	transition-delay: 0.08s;
}
.services-grid .services-tile.reveal:nth-child(3) {
	transition-delay: 0.12s;
}
.services-grid .services-tile.reveal:nth-child(4) {
	transition-delay: 0.16s;
}
.services-grid .services-tile.reveal:nth-child(5) {
	transition-delay: 0.2s;
}
.services-grid .services-tile.reveal:nth-child(6) {
	transition-delay: 0.24s;
}

.services-showcase-cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: clamp(1.75rem, 4vw, 2.35rem) clamp(1.5rem, 4vw, 2.6rem);
	border-radius: calc(var(--radius-lg) + 6px);
	position: relative;
	overflow: hidden;
}

.services-showcase-cta::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(118deg, rgba(79, 70, 229, 0.07), transparent 42%, rgba(124, 58, 237, 0.06));
	pointer-events: none;
}

.services-showcase-cta__content {
	position: relative;
	z-index: 1;
	flex: 1 1 22rem;
	max-width: 38rem;
}

.services-showcase-cta__eyebrow {
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--accent-2);
	margin-bottom: 0.45rem;
}

.services-showcase-cta__title {
	font-size: clamp(1.28rem, 2.5vw, 1.58rem);
	font-weight: 800;
	letter-spacing: -0.032em;
	margin-bottom: 0.5rem;
	color: var(--text);
	font-family: var(--font-display);
	line-height: 1.2;
}

.services-showcase-cta__text {
	font-size: 0.96rem;
	color: var(--text-muted);
	line-height: 1.65;
}

.services-showcase-cta__actions {
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
}

@media (max-width: 720px) {
	.services-showcase-cta {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
	}

	.services-showcase-cta__actions {
		justify-content: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	.services-showcase__mesh,
	.services-showcase__orb {
		animation: none;
	}

	.hero h1 .gradient {
		animation: none;
		background-position: 0% 50%;
	}

	.hero-visual {
		animation: fadeUp 0.85s 0.28s var(--ease) backwards;
	}

	.hero-card {
		animation: none;
	}
}

/* —— Neden AIKeySoft? (premium bölüm) —— */
.why-premium {
	position: relative;
	overflow: hidden;
}

.why-premium__ambient {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

.why-premium__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(1px);
	opacity: 0.55;
	animation: whyOrbDrift 20s ease-in-out infinite;
}

.why-premium__orb--a {
	width: min(480px, 70vw);
	height: min(480px, 70vw);
	background: radial-gradient(circle, rgba(124, 58, 237, 0.2), transparent 68%);
	top: -12%;
	right: -18%;
}

.why-premium__orb--b {
	width: min(400px, 60vw);
	height: min(400px, 60vw);
	background: radial-gradient(circle, rgba(79, 70, 229, 0.14), transparent 70%);
	bottom: -8%;
	left: -14%;
	animation-delay: -8s;
	animation-duration: 24s;
}

@keyframes whyOrbDrift {
	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}
	50% {
		transform: translate(-3%, 4%) scale(1.05);
	}
}

.why-premium .container {
	position: relative;
	z-index: 1;
}

.why-premium__head .section-tag {
	color: var(--accent);
}

.why-premium__subtitle {
	font-size: clamp(1.02rem, 2vw, 1.15rem);
	color: var(--text-muted);
	max-width: 52ch;
	margin-inline: auto;
	line-height: 1.65;
}

.why-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	margin-bottom: 2.75rem;
}

@media (max-width: 900px) {
	.why-stats {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.why-stats {
		grid-template-columns: 1fr;
	}
}

.why-stat {
	padding: 1.35rem 1.15rem;
	text-align: center;
	position: relative;
	overflow: hidden;
	transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.why-stat::after {
	content: "";
	position: absolute;
	inset: -1px;
	border-radius: inherit;
	background: linear-gradient(135deg, rgba(79, 70, 229, 0.12), rgba(124, 58, 237, 0.1));
	opacity: 0;
	transition: opacity 0.4s;
	pointer-events: none;
	z-index: 0;
}

.why-stat:hover::after {
	opacity: 1;
}

.why-stat:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md), 0 0 40px rgba(124, 58, 237, 0.12);
}

.why-stat__value {
	display: block;
	font-size: clamp(1.85rem, 4vw, 2.35rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	color: var(--text);
	margin-bottom: 0.35rem;
	position: relative;
	z-index: 1;
	background: linear-gradient(135deg, var(--text) 20%, var(--accent) 55%, var(--accent-2));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.why-stat__label {
	display: block;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--text);
	position: relative;
	z-index: 1;
}

.why-stat__hint {
	display: block;
	font-size: 0.72rem;
	color: var(--text-muted);
	margin-top: 0.35rem;
	line-height: 1.4;
	position: relative;
	z-index: 1;
}

.why-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
	gap: 1.15rem;
	margin-bottom: 2.75rem;
}

.why-premium-card {
	padding: 1.65rem 1.45rem;
	min-height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
}

.why-premium-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--accent), var(--accent-2));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.45s var(--ease);
}

.why-premium-card:hover::before {
	transform: scaleX(1);
}

.why-premium-card:hover {
	transform: translateY(-6px);
	border-color: rgba(124, 58, 237, 0.22) !important;
	box-shadow: var(--shadow-lg), 0 0 48px rgba(124, 58, 237, 0.12), 0 0 80px rgba(79, 70, 229, 0.06) !important;
}

.why-premium-card__icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.35rem;
	color: var(--accent);
	background: linear-gradient(145deg, rgba(79, 70, 229, 0.12), rgba(124, 58, 237, 0.08));
	border: 1px solid rgba(79, 70, 229, 0.12);
	margin-bottom: 1.1rem;
	box-shadow: 0 6px 20px rgba(124, 58, 237, 0.1);
	transition: transform 0.45s var(--ease), box-shadow 0.45s;
}

.why-premium-card:hover .why-premium-card__icon {
	transform: scale(1.08) rotate(-2deg);
	box-shadow: 0 10px 28px rgba(124, 58, 237, 0.18);
}

.why-premium-card__title {
	font-size: 1.08rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 0.65rem;
	color: var(--text);
}

.why-premium-card__text {
	font-size: 0.9rem;
	color: var(--text-muted);
	line-height: 1.65;
	flex: 1;
}

/* Memnuniyet */
.why-satisfaction {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 1.25rem;
	margin-bottom: 2.75rem;
	align-items: stretch;
}

@media (max-width: 900px) {
	.why-satisfaction {
		grid-template-columns: 1fr;
	}
}

.why-satisfaction__main {
	padding: clamp(1.5rem, 3vw, 2rem);
	position: relative;
	overflow: hidden;
}

.why-satisfaction__main::after {
	content: "";
	position: absolute;
	width: 200px;
	height: 200px;
	right: -60px;
	top: -60px;
	background: radial-gradient(circle, rgba(124, 58, 237, 0.15), transparent 70%);
	pointer-events: none;
}

.why-satisfaction__eyebrow {
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--accent-2);
	margin-bottom: 0.65rem;
	position: relative;
	z-index: 1;
}

.why-satisfaction__score-row {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	margin-bottom: 1rem;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}

.why-satisfaction__score {
	font-size: clamp(2.5rem, 5vw, 3.25rem);
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1;
	background: linear-gradient(135deg, var(--text), var(--accent));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.why-satisfaction__stars {
	color: #fbbf24;
	font-size: 1.1rem;
	display: flex;
	gap: 0.2rem;
	filter: drop-shadow(0 2px 6px rgba(251, 191, 36, 0.35));
}

.why-satisfaction__quote {
	font-size: 1.02rem;
	line-height: 1.65;
	color: var(--text);
	font-style: italic;
	margin-bottom: 0.75rem;
	position: relative;
	z-index: 1;
}

.why-satisfaction__cite {
	font-size: 0.82rem;
	color: var(--text-muted);
	position: relative;
	z-index: 1;
}

.why-satisfaction__kpis {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.why-kpi {
	padding: 1rem 1.15rem;
}

.why-kpi__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--text);
	margin-bottom: 0.45rem;
}

.why-kpi__pct {
	color: var(--accent);
	font-variant-numeric: tabular-nums;
}

.why-kpi__bar {
	height: 8px;
	border-radius: 999px;
	background: rgba(9, 9, 11, 0.06);
	overflow: hidden;
}

.why-kpi__fill {
	display: block;
	height: 100%;
	width: 0;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--accent), var(--accent-2));
	box-shadow: 0 0 12px rgba(124, 58, 237, 0.35);
	transition: width 1.15s var(--ease);
}

.why-satisfaction.reveal.is-visible .why-kpi__fill {
	width: var(--kpi, 0%);
}

/* Zaman çizelgesi */
.why-journey__head {
	text-align: center;
	margin-bottom: 1.75rem;
}

.why-journey__title {
	font-size: clamp(1.35rem, 2.5vw, 1.65rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	color: var(--text);
	margin-top: 0.35rem;
}

.why-timeline {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	position: relative;
}

@media (max-width: 1000px) {
	.why-timeline {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 520px) {
	.why-timeline {
		grid-template-columns: 1fr;
	}
}

.why-timeline__item {
	padding: 1.35rem 1.15rem;
	position: relative;
	transition: opacity 0.55s var(--ease), transform 0.55s var(--ease), box-shadow 0.35s var(--ease);
	opacity: 0;
	transform: translateY(16px);
}

.why-journey.reveal.is-visible .why-timeline__item {
	opacity: 1;
	transform: translateY(0);
}

.why-journey.reveal.is-visible .why-timeline__item:nth-child(1) {
	transition-delay: 0.05s;
}
.why-journey.reveal.is-visible .why-timeline__item:nth-child(2) {
	transition-delay: 0.12s;
}
.why-journey.reveal.is-visible .why-timeline__item:nth-child(3) {
	transition-delay: 0.19s;
}
.why-journey.reveal.is-visible .why-timeline__item:nth-child(4) {
	transition-delay: 0.26s;
}

.why-timeline__item:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md), 0 0 32px rgba(124, 58, 237, 0.1);
}

.why-timeline__year {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: #fff;
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	padding: 0.28rem 0.65rem;
	border-radius: 8px;
	margin-bottom: 0.65rem;
	box-shadow: 0 4px 14px rgba(79, 70, 229, 0.25);
}

.why-timeline__step {
	display: block;
	font-size: 1.02rem;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 0.4rem;
}

.why-timeline__desc {
	font-size: 0.84rem;
	color: var(--text-muted);
	line-height: 1.55;
}

@media (prefers-reduced-motion: reduce) {
	.why-premium__orb {
		animation: none;
	}
	.why-timeline__item {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* —— Müşteri yorumları (referanslar) —— */
.testimonials {
	position: relative;
	overflow: hidden;
}

.testimonials__ambient {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

.testimonials__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(1px);
	opacity: 0.48;
	animation: testimonialsOrb 22s ease-in-out infinite;
}

.testimonials__orb--a {
	width: min(400px, 68vw);
	height: min(400px, 68vw);
	background: radial-gradient(circle, rgba(124, 58, 237, 0.15), transparent 70%);
	top: -18%;
	right: -12%;
}

.testimonials__orb--b {
	width: min(340px, 58vw);
	height: min(340px, 58vw);
	background: radial-gradient(circle, rgba(79, 70, 229, 0.1), transparent 72%);
	bottom: -10%;
	left: -14%;
	animation-delay: -8s;
	animation-duration: 26s;
}

@keyframes testimonialsOrb {
	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}
	50% {
		transform: translate(-2%, 3%) scale(1.04);
	}
}

.testimonials .container {
	position: relative;
	z-index: 1;
}

.testimonials__head {
	max-width: 42rem;
}

.testimonials__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	justify-content: center;
	align-items: center;
	margin-bottom: clamp(1.65rem, 4vw, 2.35rem);
}

.testimonials__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.42rem;
	padding: 0.4rem 0.95rem;
	border-radius: var(--radius-pill);
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--accent);
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(79, 70, 229, 0.14);
	box-shadow: var(--shadow-xs);
	backdrop-filter: blur(12px) saturate(160%);
	-webkit-backdrop-filter: blur(12px) saturate(160%);
}

.testimonials__badge i {
	opacity: 0.9;
	font-size: 0.82rem;
}

.testimonials__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin-bottom: clamp(2rem, 5vw, 3rem);
}

@media (max-width: 720px) {
	.testimonials__stats {
		grid-template-columns: 1fr;
	}
}

.testimonials__stat {
	padding: 1.25rem 1.1rem;
	text-align: center;
	transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.testimonials__stat:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md), 0 0 36px rgba(124, 58, 237, 0.1);
}

.testimonials__stat-value {
	display: block;
	font-size: clamp(1.75rem, 3.8vw, 2.25rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	font-variant-numeric: tabular-nums;
	background: linear-gradient(135deg, var(--text), var(--accent), var(--accent-2));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin-bottom: 0.35rem;
}

.testimonials__stat-label {
	display: block;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--text);
}

.testimonials__stat-hint {
	display: block;
	font-size: 0.72rem;
	color: var(--text-muted);
	margin-top: 0.35rem;
	line-height: 1.45;
}

.testimonials__carousel {
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr auto;
	grid-template-rows: auto auto;
	align-items: center;
	gap: 0.75rem clamp(0.5rem, 2vw, 1rem);
}

.testimonials__nav--prev {
	grid-column: 1;
	grid-row: 1;
}

.testimonials__viewport {
	grid-column: 2;
	grid-row: 1;
	overflow: hidden;
	border-radius: calc(var(--radius-lg) + 4px);
	border: 1px solid var(--border);
	box-shadow: var(--shadow-md), 0 0 0 1px rgba(255, 255, 255, 0.75) inset;
	background: color-mix(in srgb, var(--glass-bg) 55%, transparent);
	backdrop-filter: blur(16px) saturate(170%);
	-webkit-backdrop-filter: blur(16px) saturate(170%);
	min-width: 0;
}

.testimonials__nav--next {
	grid-column: 3;
	grid-row: 1;
}

.testimonials__track {
	display: flex;
	transition: transform 0.58s var(--ease-out-expo);
	will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
	.testimonials__track {
		transition: none;
	}

	.testimonials__orb {
		animation: none;
	}
}

.testimonial-slide {
	flex: 0 0 100%;
	width: 100%;
	min-width: 0;
	padding: clamp(1.45rem, 3.5vw, 2.1rem);
	box-sizing: border-box;
	transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s, border-color 0.35s;
}

.testimonial-slide:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg), 0 0 44px rgba(124, 58, 237, 0.12);
	border-color: color-mix(in srgb, var(--accent) 20%, transparent) !important;
}

.testimonial-slide__top {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 0.85rem 1rem;
	align-items: start;
	margin-bottom: 1rem;
}

@media (max-width: 520px) {
	.testimonial-slide__top {
		grid-template-columns: auto 1fr;
	}

	.testimonial-slide__stars {
		grid-column: 1 / -1;
		justify-self: start;
	}
}

.testimonial-slide__avatar {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.88rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	color: #fff;
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	box-shadow: 0 8px 22px rgba(79, 70, 229, 0.3);
	flex-shrink: 0;
}

.testimonial-slide__meta {
	min-width: 0;
}

.testimonial-slide__name {
	font-size: 1.04rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--text);
	margin: 0 0 0.12rem;
	font-family: var(--font-display);
}

.testimonial-slide__company {
	font-size: 0.84rem;
	color: var(--text-muted);
	margin: 0 0 0.35rem;
}

.testimonial-slide__tag {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: var(--accent-2);
	margin: 0;
}

.testimonial-slide__tag i {
	font-size: 0.72rem;
	opacity: 0.9;
}

.testimonial-slide__stars {
	display: flex;
	gap: 0.16rem;
	color: #fbbf24;
	font-size: 0.92rem;
	filter: drop-shadow(0 2px 6px rgba(251, 191, 36, 0.28));
	flex-shrink: 0;
}

.testimonial-slide__quote {
	font-size: clamp(0.94rem, 2.1vw, 1.06rem);
	line-height: 1.68;
	color: var(--text);
	margin: 0 0 0.95rem;
	font-style: italic;
}

.testimonial-slide__proj {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--text-muted);
	margin: 0;
	padding-top: 0.85rem;
	border-top: 1px solid var(--border);
}

.testimonials__nav {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid var(--border-strong);
	background: rgba(255, 255, 255, 0.92);
	color: var(--text);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.85rem;
	transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s, background 0.25s, color 0.25s;
	box-shadow: var(--shadow-xs);
	-webkit-tap-highlight-color: transparent;
}

.testimonials__nav:hover {
	border-color: rgba(79, 70, 229, 0.3);
	background: var(--accent-soft);
	color: var(--accent);
	box-shadow: var(--shadow-sm);
	transform: scale(1.06);
}

.testimonials__nav:active {
	transform: scale(0.96);
}

.testimonials__dots {
	grid-column: 1 / -1;
	grid-row: 2;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.42rem;
	margin-top: 0.15rem;
}

.testimonials__dots button {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: none;
	padding: 0;
	background: rgba(9, 9, 11, 0.12);
	cursor: pointer;
	transition: transform 0.28s var(--ease), background 0.28s, box-shadow 0.28s;
	-webkit-tap-highlight-color: transparent;
}

.testimonials__dots button.is-active {
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	transform: scale(1.2);
	box-shadow: 0 0 14px rgba(79, 70, 229, 0.35);
}

.testimonials__dots button:hover:not(.is-active) {
	background: rgba(79, 70, 229, 0.22);
}

.testimonials__note {
	text-align: center;
	font-size: 0.78rem;
	color: var(--text-subtle);
	margin-top: clamp(1.2rem, 3vw, 1.65rem);
	max-width: 48ch;
	margin-inline: auto;
	line-height: 1.55;
}

@media (max-width: 560px) {
	.testimonials__carousel {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto auto auto;
	}

	.testimonials__viewport {
		grid-column: 1 / -1;
		grid-row: 1;
	}

	.testimonials__nav--prev {
		grid-column: 1;
		grid-row: 2;
		justify-self: start;
	}

	.testimonials__nav--next {
		grid-column: 2;
		grid-row: 2;
		justify-self: end;
	}

	.testimonials__dots {
		grid-row: 3;
	}
}

/* —— Portfolio —— */
.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
	gap: 1.15rem;
}

.portfolio-item {
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--border-strong);
	position: relative;
	color: inherit;
	text-decoration: none;
	display: block;
	box-shadow: var(--shadow-xs), 0 0 0 1px rgba(255, 255, 255, 0.35) inset;
	transition:
		transform 0.45s var(--ease-out-expo),
		box-shadow 0.45s var(--ease-out-expo),
		border-color 0.35s var(--ease);
}

.portfolio-item:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg), 0 0 40px rgba(124, 58, 237, 0.08);
	border-color: color-mix(in srgb, var(--accent) 18%, transparent);
}

.portfolio-item img {
	width: 100%;
	aspect-ratio: 16/10;
	object-fit: cover;
	transition: transform 0.65s var(--ease);
}

.portfolio-item:hover img {
	transform: scale(1.06);
}

.portfolio-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(9, 9, 11, 0.88), transparent 58%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1.2rem;
	opacity: 0.88;
	transition: opacity 0.35s;
}

.portfolio-item:hover .portfolio-overlay {
	opacity: 1;
}

.portfolio-overlay h3 {
	font-size: 1.02rem;
	font-weight: 600;
	margin-bottom: 0.2rem;
	color: #fff;
}

.portfolio-overlay span {
	font-size: 0.78rem;
	color: rgba(248, 250, 252, 0.88);
}

/* —— Pricing (ana sayfa) —— */
.home-pricing {
	padding: clamp(2.5rem, 6vw, 4.25rem) 0;
	background: linear-gradient(180deg, var(--bg) 0%, var(--section-alt) 38%, var(--section-alt) 62%, var(--bg) 100%);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.pricing-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.15rem;
	max-width: 1120px;
	margin-inline: auto;
	align-items: stretch;
}

@media (min-width: 680px) {
	.pricing-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.2rem;
	}

	.pricing-card--span-full {
		grid-column: 1 / -1;
		max-width: 28rem;
		width: 100%;
		margin-inline: auto;
	}
}

@media (min-width: 1024px) {
	.pricing-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1.25rem;
	}

	.pricing-card--span-full {
		grid-column: auto;
		max-width: none;
		margin-inline: 0;
	}
}

.pricing-card {
	padding: clamp(1.65rem, 3.5vw, 2rem) clamp(1.35rem, 3vw, 1.75rem);
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	min-width: 0;
	border-radius: calc(var(--radius-lg) + 2px);
	border: 1px solid rgba(15, 23, 42, 0.07);
	box-shadow: var(--shadow-sm), 0 0 0 1px rgba(255, 255, 255, 0.55) inset;
	transition:
		transform 0.4s var(--ease-out-expo),
		box-shadow 0.4s var(--ease-out-expo),
		border-color 0.3s ease;
}

.pricing-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg), 0 0 40px rgba(124, 58, 237, 0.08);
	border-color: color-mix(in srgb, var(--accent) 18%, transparent);
}

.pricing-card.featured {
	border-color: rgba(79, 70, 229, 0.32);
	box-shadow: var(--shadow-md), 0 0 0 1px rgba(79, 70, 229, 0.12), 0 0 52px rgba(124, 58, 237, 0.12);
	padding-top: clamp(1.85rem, 3.5vw, 2.15rem);
}

.pricing-card.featured:hover {
	border-color: rgba(79, 70, 229, 0.42);
	box-shadow: var(--shadow-lg), 0 0 56px rgba(124, 58, 237, 0.16);
}

.pricing-card.featured::before {
	content: "Popüler";
	position: absolute;
	top: 0.85rem;
	right: -2.1rem;
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	color: #fff;
	font-size: 0.68rem;
	font-weight: 700;
	padding: 0.32rem 2.4rem;
	transform: rotate(45deg);
	letter-spacing: 0.04em;
}

.pricing-card__eyebrow {
	font-size: 0.66rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.11em;
	color: var(--text-muted);
	margin: 0 0 0.4rem;
}

.pricing-card__eyebrow--accent {
	color: var(--accent-2);
}

.pricing-card h3 {
	font-family: var(--font-display);
	font-size: clamp(1.18rem, 2.4vw, 1.32rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	margin: 0 0 0.3rem;
	color: var(--text);
}

.pricing-price {
	font-size: clamp(1.65rem, 3.2vw, 1.95rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	margin: 0.65rem 0 1rem;
	color: var(--text);
}

.pricing-price small {
	font-size: 0.88rem;
	font-weight: 500;
	color: var(--text-muted);
}

.pricing-price--split {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.15rem 0.35rem;
	font-size: clamp(1.65rem, 3.2vw, 1.95rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	margin: 0.65rem 0 1rem;
	color: var(--text);
}

.pricing-price__lead {
	font-size: inherit;
	font-weight: inherit;
}

.pricing-price__slash {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--text-subtle);
}

.pricing-price__tail {
	font-size: 0.88rem;
	font-weight: 500;
	color: var(--text-muted);
}

.pricing-card__tagline {
	font-size: 0.9rem;
	color: var(--text-muted);
	margin: 0;
	line-height: 1.5;
}

.home-pricing__lede {
	max-width: 46rem;
	margin-inline: auto;
}

.home-pricing .section-head {
	text-align: center;
}

.home-pricing .section-head p {
	margin-left: auto;
	margin-right: auto;
}

.pricing-card__features {
	list-style: none;
	flex: 1;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.42rem;
	font-size: 0.86rem;
	color: var(--text-muted);
}

.pricing-card__features li {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	padding: 0.48rem 0.55rem;
	border-radius: 10px;
	line-height: 1.45;
	background: rgba(79, 70, 229, 0.045);
	border: 1px solid rgba(15, 23, 42, 0.06);
}

.pricing-card__features i {
	color: var(--accent);
	margin-top: 0.14rem;
	flex-shrink: 0;
	font-size: 0.72rem;
}

.pricing-card__actions {
	margin-top: auto;
	padding-top: 0.65rem;
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	align-items: stretch;
}

.pricing-card .btn {
	width: 100%;
}

.pricing-card__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--accent);
	text-decoration: none;
	padding: 0.42rem 0.5rem;
	border-radius: 10px;
	transition: background 0.2s ease, color 0.2s ease;
}

.pricing-card__link:hover {
	background: rgba(79, 70, 229, 0.09);
	color: var(--text);
}

.pricing-card__link i {
	font-size: 0.72rem;
	opacity: 0.85;
}

/* —— Contact —— */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.75rem;
}

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

.contact-form label {
	display: block;
	font-size: 0.82rem;
	font-weight: 600;
	margin-bottom: 0.3rem;
	color: var(--text-muted);
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 0.8rem 0.95rem;
	margin-bottom: 0.95rem;
	border-radius: 10px;
	border: 1px solid var(--border);
	background: var(--bg);
	color: var(--text);
	font-family: inherit;
	font-size: 0.92rem;
	transition: border-color 0.2s, box-shadow 0.2s;
	box-shadow: var(--shadow-xs);
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.12);
}

.contact-form textarea {
	min-height: 132px;
	resize: none;
}

.contact-side {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

.contact-block {
	padding: 1.15rem 1.35rem;
}

.contact-block h3 {
	font-size: 0.95rem;
	font-weight: 600;
	margin-bottom: 0.4rem;
	display: flex;
	align-items: center;
	gap: 0.45rem;
	color: var(--text);
}

.contact-block h3 i {
	color: var(--accent);
}

.contact-block p,
.contact-block a {
	font-size: 0.9rem;
	color: var(--text-muted);
}

.contact-block a:hover {
	color: var(--text);
}

/* —— Footer (premium) —— */
.site-footer--premium {
	position: relative;
	padding: 0;
	border-top: none;
	background: linear-gradient(180deg, var(--section-alt) 0%, #e8e8ec 42%, var(--bg-subtle) 100%);
	overflow: hidden;
}

.footer-premium {
	position: relative;
	z-index: 1;
}

.footer-premium__topline {
	height: 2px;
	width: 100%;
	background: linear-gradient(90deg, transparent 0%, rgba(79, 70, 229, 0.45) 22%, rgba(124, 58, 237, 0.55) 50%, rgba(79, 70, 229, 0.45) 78%, transparent 100%);
	box-shadow: 0 0 24px rgba(124, 58, 237, 0.25);
}

.footer-premium__glow {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
	opacity: 0.4;
	filter: blur(2px);
	animation: footerGlowDrift 22s ease-in-out infinite;
}

.footer-premium__glow--a {
	width: min(420px, 55vw);
	height: min(420px, 55vw);
	background: radial-gradient(circle, rgba(124, 58, 237, 0.18), transparent 70%);
	bottom: -15%;
	left: -10%;
}

.footer-premium__glow--b {
	width: min(360px, 50vw);
	height: min(360px, 50vw);
	background: radial-gradient(circle, rgba(79, 70, 229, 0.14), transparent 72%);
	bottom: -8%;
	right: -8%;
	animation-delay: -10s;
	animation-duration: 26s;
}

@keyframes footerGlowDrift {
	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}
	50% {
		transform: translate(3%, -2%) scale(1.06);
	}
}

.glass-footer {
	background: rgba(255, 255, 255, 0.78);
	backdrop-filter: blur(18px) saturate(160%);
	-webkit-backdrop-filter: blur(18px) saturate(160%);
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.95);
	box-shadow:
		0 0 0 1px rgba(79, 70, 229, 0.06),
		0 2px 12px rgba(9, 9, 11, 0.04),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
	transition: transform 0.35s var(--ease), box-shadow 0.4s var(--ease), border-color 0.35s;
}

.glass-footer:hover {
	border-color: rgba(124, 58, 237, 0.15);
	box-shadow:
		0 0 0 1px rgba(124, 58, 237, 0.1),
		0 12px 40px rgba(124, 58, 237, 0.1),
		0 0 48px rgba(79, 70, 229, 0.06),
		inset 0 1px 0 rgba(255, 255, 255, 1);
	transform: translateY(-2px);
}

.footer-premium__grid {
	display: grid;
	grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(0, 1fr));
	gap: 1.15rem;
	padding: 2.75rem 0 1.5rem;
}

@media (max-width: 1024px) {
	.footer-premium__grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.footer-premium__brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 560px) {
	.footer-premium__grid {
		grid-template-columns: 1fr;
	}
}

.footer-premium__brand {
	padding: 1.5rem 1.35rem;
}

.footer-premium__logo {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	margin-bottom: 0.85rem;
	font-size: 1.2rem;
}

.footer-premium__desc {
	font-size: 0.9rem;
	line-height: 1.65;
	color: var(--text-muted);
	max-width: 36ch;
}

.footer-premium__col {
	padding: 1.35rem 1.25rem;
}

.footer-premium__heading {
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--accent);
	margin-bottom: 1rem;
}

.footer-premium__list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.footer-premium__list a {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--text-muted);
	display: inline-flex;
	align-items: center;
	transition: color 0.25s var(--ease), transform 0.25s var(--ease), text-shadow 0.25s;
}

.footer-premium__list li {
	position: relative;
}

.footer-premium__list a:hover {
	color: var(--text);
	transform: translateX(4px);
	text-shadow: 0 0 20px rgba(124, 58, 237, 0.15);
}

.footer-premium__col--cta .footer-premium__heading {
	color: var(--accent-2);
}

.footer-premium__contact {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	margin-bottom: 1.1rem;
}

.footer-premium__contact li {
	font-size: 0.88rem;
	color: var(--text-muted);
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	line-height: 1.45;
}

.footer-premium__contact i {
	color: var(--accent);
	margin-top: 0.15rem;
	flex-shrink: 0;
	width: 1.1rem;
	text-align: center;
}

.footer-premium__contact a {
	color: inherit;
	font-weight: 500;
	transition: color 0.25s;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.footer-premium__contact a:hover {
	color: var(--accent);
}

.footer-premium__wa {
	width: 100%;
	justify-content: center;
	padding: 0.72rem 1rem;
	font-size: 0.88rem;
}

.footer-premium__bar {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 1rem 1.25rem;
	padding: 1.2rem 1.35rem;
	margin-bottom: 2rem;
}

@media (max-width: 900px) {
	.footer-premium__bar {
		grid-template-columns: 1fr;
		text-align: center;
		justify-items: center;
	}
}

.footer-premium__social {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-self: start;
}

@media (max-width: 900px) {
	.footer-premium__social {
		justify-self: center;
	}
}

.footer-social-link {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--text-muted);
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid var(--border);
	font-size: 1rem;
	transition: transform 0.3s var(--ease), color 0.3s, border-color 0.3s, box-shadow 0.35s;
}

.footer-social-link:hover {
	color: var(--accent);
	border-color: rgba(79, 70, 229, 0.25);
	transform: translateY(-3px) scale(1.06);
	box-shadow: 0 8px 24px rgba(124, 58, 237, 0.18), 0 0 20px rgba(79, 70, 229, 0.12);
}

.footer-premium__legal {
	justify-self: center;
	text-align: center;
	font-size: 0.8rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.35rem 0.5rem;
}

.footer-premium__legal a {
	color: var(--text-muted);
	font-weight: 500;
	transition: color 0.25s;
}

.footer-premium__legal a:hover {
	color: var(--accent);
}

.footer-premium__dot {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	opacity: 0.5;
	display: inline-block;
	vertical-align: middle;
}

.footer-premium__copy {
	justify-self: end;
	margin: 0;
	font-size: 0.8rem;
	color: var(--text-muted);
	font-weight: 500;
}

@media (max-width: 900px) {
	.footer-premium__copy {
		justify-self: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	.footer-premium__glow {
		animation: none;
	}
	.glass-footer:hover {
		transform: none;
	}

	.pricing-card,
	.pricing-card:hover {
		transform: none;
		transition: none;
	}
}

/* Eski footer sınıfları (geri uyumluluk) */
.site-footer:not(.site-footer--premium) {
	padding: 2.75rem 0;
	border-top: 1px solid var(--border);
	background: var(--bg-subtle);
}

.footer-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 1.35rem;
}

.footer-brand {
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--text);
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 1.1rem;
}

.footer-links a {
	color: var(--text-muted);
	font-size: 0.875rem;
	font-weight: 500;
}

.footer-links a:hover {
	color: var(--text);
}

.footer-copy {
	width: 100%;
	text-align: center;
	padding-top: 1.35rem;
	margin-top: 1.35rem;
	border-top: 1px solid var(--border);
	font-size: 0.82rem;
	color: var(--text-muted);
}

/* —— WhatsApp float —— */
.whatsapp-float {
	position: fixed;
	right: max(1rem, var(--safe-right));
	bottom: max(1rem, var(--safe-bottom));
	z-index: var(--z-wa-float);
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: linear-gradient(180deg, #25d366, #128c7e);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.65rem;
	box-shadow: 0 6px 24px rgba(18, 140, 126, 0.4);
	transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.whatsapp-float:hover {
	transform: scale(1.06);
	box-shadow: 0 10px 32px rgba(18, 140, 126, 0.45);
	color: #fff;
}

/* —— Reveal —— */
.reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* —— Tablet / dar laptop: masaüstü menü sıkıştırma —— */
@media (max-width: 1100px) and (min-width: 901px) {
	.nav-desktop a {
		padding: 0.45rem 0.55rem;
		font-size: 0.8125rem;
	}
}

/* —— Mobil menü arka planı (aikeysoft.js ekler) —— */
.nav-backdrop {
	position: fixed;
	inset: 0;
	z-index: var(--z-nav-backdrop);
	background: rgba(9, 9, 11, 0.42);
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.28s var(--ease);
}

.nav-backdrop.is-visible {
	opacity: 1;
	pointer-events: auto;
}

@media (max-width: 900px) {
	section {
		padding: clamp(2.65rem, 7vw, 4rem) 0;
	}

	.hero-actions .btn {
		width: 100%;
		max-width: 20rem;
	}

	.hero-actions {
		flex-direction: column;
		align-items: center;
	}

	.contact-form input,
	.contact-form textarea {
		font-size: 16px;
	}
}

@media (max-width: 768px) {
	.section-head {
		margin-bottom: 2rem;
	}

	.section-head p {
		font-size: clamp(0.95rem, 3.8vw, 1.05rem);
	}

	.footer-premium__grid {
		gap: 0.85rem;
		padding: 2.25rem 0 1.25rem;
	}

	.footer-premium__bar {
		margin-bottom: max(1.25rem, var(--safe-bottom));
	}

	.pricing-card.featured::before {
		font-size: 0.62rem;
		padding: 0.28rem 2.1rem;
		right: -2rem;
	}

	/* Küçük ekranda sürekli dekoratif animasyonları kapat (pil / jank) */
	.bg-mesh::before,
	.hero::before,
	.hero::after,
	.services-showcase__mesh,
	.services-showcase__orb--a,
	.services-showcase__orb--b,
	.why-premium__orb--a,
	.why-premium__orb--b,
	.testimonials__orb--a,
	.testimonials__orb--b,
	.footer-premium__glow {
		animation: none !important;
	}
}

@media (pointer: coarse) {
	.btn {
		min-height: 46px;
		padding-top: 0.8rem;
		padding-bottom: 0.8rem;
	}
}
