/* ==========================================================================
   Erdem Kartal Mobil - Main Stylesheet
   ========================================================================== */

:root {
	--color-bg: #0a0e17;
	--color-bg-elevated: #111827;
	--color-bg-card: #1a2234;
	--color-surface: #1e293b;
	--color-border: rgba(255, 255, 255, 0.08);
	--color-text: #f1f5f9;
	--color-text-muted: #94a3b8;
	--color-accent: #3b82f6;
	--color-accent-hover: #2563eb;
	--color-accent-glow: rgba(59, 130, 246, 0.4);
	--color-success: #22c55e;
	--color-whatsapp: #25d366;
	--color-call: #ef4444;
	--font-sans: 'DM Sans', system-ui, -apple-system, sans-serif;
	--font-serif: 'Instrument Serif', Georgia, serif;
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 20px;
	--radius-xl: 28px;
	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
	--shadow-md: 0 8px 32px rgba(0, 0, 0, 0.3);
	--shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.4);
	--transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-transform: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	--transition-opacity: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	--header-height: 72px;
}

/* Performance: GPU compositing + lazy below-fold sections */
.hero__bg,
.hero__showcase,
.hero-phones,
.hero-orbit,
.hero-tech-field {
	isolation: isolate;
}

.hero-tech-icon,
.hero-phone,
.hero-orbit__ring,
.hero-float-card,
.hero__marquee-track,
.btn-glow::before {
	transform: translateZ(0);
}

.section:not(.hero) {
	content-visibility: auto;
	contain-intrinsic-size: auto 480px;
}

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

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

body {
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-text);
	background: var(--color-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

img, svg {
	display: block;
	max-width: 100%;
}

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

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

html.nav-open {
	overflow: hidden;
}

html.nav-open body {
	overflow: hidden;
	touch-action: none;
}

/* GPU layer hints */
.site-header,
.main-nav,
.fab-container,
.fab-actions,
.hero__showcase,
[data-animate] {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.skip-link {
	position: absolute;
	top: -100%;
	left: 16px;
	z-index: 10000;
	padding: 12px 24px;
	background: var(--color-accent);
	color: #fff;
	border-radius: var(--radius-sm);
	font-weight: 600;
}

.skip-link:focus {
	top: 16px;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	font-family: inherit;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
	border: none;
	border-radius: var(--radius-md);
	cursor: pointer;
	transition: all var(--transition);
	text-decoration: none;
	white-space: nowrap;
}

.btn-sm { padding: 8px 16px; font-size: 14px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-full { width: 100%; }

.btn-primary {
	background: linear-gradient(135deg, var(--color-accent) 0%, #6366f1 100%);
	color: #fff;
	box-shadow: 0 4px 16px var(--color-accent-glow);
	position: relative;
	overflow: hidden;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px var(--color-accent-glow);
	color: #fff;
}

.btn-secondary {
	background: var(--color-surface);
	color: var(--color-text);
	border: 1px solid var(--color-border);
}

.btn-secondary:hover {
	background: var(--color-bg-card);
	border-color: rgba(255, 255, 255, 0.15);
	color: var(--color-text);
}

.btn-outline {
	background: transparent;
	color: var(--color-text);
	border: 1px solid var(--color-border);
}

.btn-outline:hover {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.2);
	color: var(--color-text);
}

.btn-white {
	background: #fff;
	color: var(--color-bg);
}

.btn-white:hover {
	background: #f1f5f9;
	color: var(--color-bg);
}

.btn-whatsapp {
	background: var(--color-whatsapp);
	color: #fff;
}

.btn-whatsapp:hover {
	background: #1da851;
	color: #fff;
}

.btn-glow {
	position: relative;
	overflow: hidden;
}

.btn-glow::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
	transform: translateX(-100%);
	animation: shimmer 3s infinite;
}

@keyframes shimmer {
	100% { transform: translateX(100%); }
}

/* Header */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	height: var(--header-height);
	background: rgba(10, 14, 23, 0.94);
	border-bottom: 1px solid var(--color-border);
	transform: translateZ(0);
}

.site-header.scrolled {
	background: rgba(10, 14, 23, 0.96);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

.brand-link {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--color-text);
	text-decoration: none;
}

.brand-link:hover { color: var(--color-text); }

.brand-mark {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: linear-gradient(135deg, var(--color-accent), #6366f1);
	border-radius: var(--radius-sm);
	font-weight: 700;
	font-size: 16px;
	color: #fff;
}

.brand-text {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.brand-text strong {
	font-size: 16px;
	font-weight: 700;
}

.brand-text small {
	font-size: 11px;
	color: var(--color-text-muted);
	font-weight: 400;
}

.main-nav .nav-list {
	display: flex;
	align-items: center;
	gap: 36px;
	list-style: none;
}

.main-nav a {
	position: relative;
	display: inline-block;
	color: var(--color-text-muted);
	font-size: 17px;
	font-weight: 600;
	letter-spacing: -0.01em;
	text-decoration: none;
	padding: 6px 0;
	transition: color var(--transition), transform var(--transition-transform);
}

.main-nav a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, var(--color-accent), #a78bfa);
	border-radius: 2px;
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform var(--transition-transform);
}

.main-nav a:hover {
	color: var(--color-text);
	transform: translateY(-1px);
}

.main-nav a:hover::after {
	transform: scaleX(1);
	transform-origin: left center;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.header-call {
	display: none;
}

.nav-toggle {
	display: none;
	position: relative;
	z-index: 1002;
	flex-shrink: 0;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 6px;
	width: 44px;
	height: 44px;
	padding: 10px;
	background: transparent;
	border: none;
	cursor: pointer;
}

.nav-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--color-text);
	border-radius: 2px;
	transition: transform var(--transition-transform), opacity var(--transition-opacity);
	transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
	transform: translate3d(0, 8px, 0) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
	transform: translate3d(0, -8px, 0) rotate(-45deg);
}

/* Hero */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: calc(var(--header-height) + 32px) 0 0;
	overflow: hidden;
}

.hero__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.hero__particles {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0.5;
	pointer-events: none;
	contain: strict;
}

.hero__mesh {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 80% 50% at 20% 40%, rgba(59, 130, 246, 0.15), transparent),
		radial-gradient(ellipse 60% 40% at 80% 60%, rgba(139, 92, 246, 0.12), transparent),
		radial-gradient(ellipse 50% 30% at 50% 100%, rgba(34, 197, 94, 0.08), transparent);
}

.hero__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: radial-gradient(ellipse at 50% 50%, black 10%, transparent 75%);
}

.hero__glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	will-change: opacity;
	animation: glowPulse 10s ease-in-out infinite;
}

.hero__glow--1 {
	width: 500px;
	height: 500px;
	background: rgba(59, 130, 246, 0.2);
	top: -150px;
	right: -80px;
}

.hero__glow--2 {
	width: 400px;
	height: 400px;
	background: rgba(139, 92, 246, 0.15);
	bottom: 10%;
	left: -100px;
	animation-delay: -3s;
}

.hero__glow--3 {
	width: 300px;
	height: 300px;
	background: rgba(34, 197, 94, 0.1);
	top: 40%;
	right: 30%;
	animation-delay: -5s;
}

@keyframes glowPulse {
	0%, 100% { opacity: 0.55; }
	50% { opacity: 0.85; }
}

.hero__ring {
	position: absolute;
	border: 1px solid rgba(59, 130, 246, 0.08);
	border-radius: 50%;
}

.hero__ring--1 {
	width: 600px;
	height: 600px;
	top: 50%;
	right: -100px;
	transform: translateY(-50%);
}

.hero__ring--2 {
	width: 800px;
	height: 800px;
	top: 50%;
	right: -200px;
	transform: translateY(-50%);
	animation-delay: -3s;
	opacity: 0.5;
}

.hero__inner {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 48px;
	align-items: center;
	position: relative;
	z-index: 2;
	padding-bottom: 80px;
}

.hero-reveal {
	opacity: 1;
	transform: translateY(0);
	animation: heroReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
	animation-delay: calc(var(--delay, 0) * 0.08s + 0.1s);
}

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

.hero__badge {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 18px;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(245, 158, 11, 0.12) 50%, rgba(234, 179, 8, 0.18) 100%);
	border: 1px solid rgba(251, 191, 36, 0.55);
	border-radius: 100px;
	font-size: 12px;
	font-weight: 600;
	color: #fef3c7;
	margin-bottom: 20px;
	max-width: 100%;
	text-align: left;
	line-height: 1.4;
	box-shadow:
		0 0 0 1px rgba(251, 191, 36, 0.1),
		0 0 22px rgba(251, 191, 36, 0.22),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Glow + shine — ayrı katmanlar; hero-reveal opacity'sini ezmez */
.hero__badge::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(
		105deg,
		transparent 38%,
		rgba(255, 248, 220, 0.28) 50%,
		transparent 62%
	);
	transform: translate3d(-130%, 0, 0);
	animation: badgeShine 4.5s ease-in-out infinite;
	pointer-events: none;
	z-index: 1;
}

.hero__badge::after {
	content: '';
	position: absolute;
	inset: -2px;
	border-radius: inherit;
	border: 1px solid rgba(253, 224, 71, 0.35);
	box-shadow: 0 0 18px rgba(251, 191, 36, 0.25);
	animation: badgeGlowRing 3.2s ease-in-out infinite;
	pointer-events: none;
	z-index: 0;
}

.hero__badge > * {
	position: relative;
	z-index: 2;
}

.hero__badge-flag {
	font-size: 16px;
	line-height: 1;
	flex-shrink: 0;
	filter: drop-shadow(0 0 6px rgba(251, 191, 36, 0.5));
	animation: badgeFlagPulse 2.8s ease-in-out infinite;
	transform-origin: center;
}

.hero__badge.hero-reveal {
	animation:
		heroReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
	animation-delay: calc(var(--delay, 0) * 0.08s + 0.1s);
}

@keyframes badgeGlowRing {
	0%, 100% {
		opacity: 0.55;
		border-color: rgba(251, 191, 36, 0.35);
		box-shadow: 0 0 14px rgba(251, 191, 36, 0.18);
	}
	50% {
		opacity: 1;
		border-color: rgba(253, 224, 71, 0.7);
		box-shadow: 0 0 28px rgba(251, 191, 36, 0.4);
	}
}

@keyframes badgeShine {
	0%, 55%, 100% { transform: translate3d(-130%, 0, 0); }
	70% { transform: translate3d(130%, 0, 0); }
}

@keyframes badgeFlagPulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.08); }
}

.hero__title {
	font-size: clamp(30px, 4.2vw, 50px);
	font-weight: 800;
	line-height: 1.12;
	margin-bottom: 18px;
	letter-spacing: -0.02em;
}

.hero__title-main {
	display: block;
	color: var(--color-text);
}

.hero__title-main em {
	font-style: normal;
	background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 45%, #34d399 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero__title-accent {
	display: block;
	margin-top: 6px;
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 500;
	background: linear-gradient(135deg, #fbbf24 0%, #f472b6 50%, #a78bfa 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

@keyframes gradientFlow {
	0% { background-position: 0% center; }
	100% { background-position: 200% center; }
}

.hero__subtitle,
.hero__lead {
	font-size: clamp(15px, 1.6vw, 17px);
	color: var(--color-text-muted);
	max-width: 560px;
	margin-bottom: 24px;
	line-height: 1.75;
}

.hero__subtitle strong,
.hero__lead strong {
	color: var(--color-text);
	font-weight: 600;
}

/* SEO Feature Badges */
.hero__keywords {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
	max-width: 560px;
}

.hero__keywords li {
	padding: 7px 12px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.01em;
	color: #e2e8f0;
	background: rgba(59, 130, 246, 0.1);
	border: 1px solid rgba(59, 130, 246, 0.22);
	border-radius: 999px;
	line-height: 1.2;
}

.hero__keywords li:nth-child(2),
.hero__keywords li:nth-child(3) {
	background: rgba(34, 197, 94, 0.1);
	border-color: rgba(34, 197, 94, 0.25);
	color: #bbf7d0;
}

.hero__keywords li:nth-child(5) {
	background: rgba(251, 191, 36, 0.1);
	border-color: rgba(251, 191, 36, 0.28);
	color: #fde68a;
}

.hero__features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 28px;
}

.hero-feature {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px 16px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius-md);
	transition: transform var(--transition-transform), border-color var(--transition), box-shadow var(--transition);
}

.hero-feature:hover {
	border-color: rgba(59, 130, 246, 0.35);
	transform: translate3d(4px, 0, 0);
	box-shadow: 0 8px 24px rgba(59, 130, 246, 0.12);
}

.hero-feature__emoji {
	flex-shrink: 0;
	font-size: 22px;
	line-height: 1;
	filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}

.hero-feature__text {
	font-size: 13px;
	font-weight: 600;
	color: var(--color-text);
	line-height: 1.45;
}

.hero-feature__text small {
	display: block;
	margin-top: 3px;
	font-size: 11px;
	font-weight: 500;
	color: var(--color-text-muted);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 28px;
}

.btn-magnetic {
	transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-shine {
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.25) 50%, transparent 60%);
	transform: translateX(-100%);
	animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
	0%, 80%, 100% { transform: translateX(-100%); }
	40% { transform: translateX(100%); }
}

.hero__stats {
	display: inline-flex;
	align-items: center;
	gap: 20px;
	padding: 14px 24px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
}

.hero-stat {
	text-align: center;
}

.hero-stat .stat-number {
	font-size: 24px;
	font-weight: 800;
	color: var(--color-text);
	line-height: 1;
}

.hero-stat .stat-number::after {
	content: '+';
	color: var(--color-accent);
	font-size: 16px;
}

.hero-stat span {
	display: block;
	font-size: 11px;
	color: var(--color-text-muted);
	margin-top: 4px;
	font-weight: 500;
}

.hero-stat-divider {
	width: 1px;
	height: 32px;
	background: var(--color-border);
}

/* Hero Showcase */
.hero__showcase {
	position: relative;
	height: 520px;
	min-height: 520px;
	width: 100%;
	overflow: visible;
	display: flex;
	align-items: center;
	justify-content: center;
	isolation: isolate;
}

.hero-orbit {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.hero-orbit__ring {
	position: absolute;
	width: 380px;
	height: 380px;
	border: 1px dashed rgba(59, 130, 246, 0.15);
	border-radius: 50%;
	animation: orbitSpin 30s linear infinite;
}

.hero-orbit__ring--2 {
	width: 440px;
	height: 440px;
	border-color: rgba(167, 139, 250, 0.12);
	animation: orbitSpin 45s linear infinite reverse;
}

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

/* Animated Tech Icons */
.hero-tech-field {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 2;
}

.hero-tech-icon {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 64px;
	height: 64px;
	padding: 8px;
	background: rgba(15, 23, 42, 0.92);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
	animation: techFloat 5s ease-in-out infinite;
}

.hero-tech-icon span {
	font-size: 8px;
	font-weight: 700;
	color: var(--color-text-muted);
	text-align: center;
	line-height: 1.1;
	letter-spacing: 0.02em;
}

.hero-tech-icon svg {
	flex-shrink: 0;
}

.hero-tech-icon--pos1 { top: 2%; left: 8%; animation-delay: 0s; }
.hero-tech-icon--pos2 { top: 4%; right: 6%; animation-delay: -0.5s; }
.hero-tech-icon--pos3 { top: 42%; right: 0; animation-delay: -1s; }
.hero-tech-icon--pos4 { bottom: 6%; right: 10%; animation-delay: -1.5s; }
.hero-tech-icon--pos5 { bottom: 8%; left: 6%; animation-delay: -2s; }
.hero-tech-icon--pos6 { top: 44%; left: 0; animation-delay: -2.5s; }
.hero-tech-icon--pos7 { top: 18%; left: 50%; margin-left: -32px; animation-delay: -3s; }
.hero-tech-icon--pos8 { bottom: 22%; left: 50%; margin-left: -32px; animation-delay: -3.5s; }

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

.hero-tech-icon--play {
	border-color: rgba(0, 240, 118, 0.35);
	box-shadow: 0 0 20px rgba(0, 240, 118, 0.2), 0 8px 24px rgba(0, 0, 0, 0.35);
}

.hero-tech-icon--studio {
	border-color: rgba(61, 220, 132, 0.4);
}

.hero-tech-icon--apple {
	border-color: rgba(255, 255, 255, 0.2);
}

/* Phones */
.hero-phones {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-phone {
	position: absolute;
	transition: transform 0.4s ease;
}

.hero-phone--main {
	z-index: 3;
	animation: phoneFloat 5s ease-in-out infinite;
}

.hero-phone--left {
	z-index: 1;
	left: 0;
	transform: rotate(-12deg) translateX(-10px);
	animation: phoneFloatLeft 6s ease-in-out infinite;
}

.hero-phone--right {
	z-index: 1;
	right: 0;
	transform: rotate(12deg) translateX(10px);
	animation: phoneFloatRight 6s ease-in-out infinite 1s;
}

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

@keyframes phoneFloatLeft {
	0%, 100% { transform: rotate(-12deg) translateX(-10px) translateY(0); }
	50% { transform: rotate(-12deg) translateX(-10px) translateY(-10px); }
}

@keyframes phoneFloatRight {
	0%, 100% { transform: rotate(12deg) translateX(10px) translateY(0); }
	50% { transform: rotate(12deg) translateX(10px) translateY(-10px); }
}

.hero-phone__glow {
	position: absolute;
	inset: -20px;
	background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.35), transparent 70%);
	border-radius: 50px;
	filter: blur(20px);
	opacity: 0.75;
}

.hero-phone__frame {
	position: relative;
	background: linear-gradient(160deg, #2d3748 0%, #1a202c 50%, #0f1419 100%);
	border-radius: 36px;
	padding: 10px;
	box-shadow:
		0 25px 60px rgba(0, 0, 0, 0.5),
		0 0 0 1px rgba(255, 255, 255, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-phone--main .hero-phone__frame {
	width: 240px;
	height: 490px;
}

.hero-phone--back .hero-phone__frame {
	width: 160px;
	height: 330px;
	opacity: 0.85;
}

.hero-phone__notch {
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 22px;
	background: #0f1419;
	border-radius: 0 0 14px 14px;
	z-index: 2;
}

.hero-phone__screen {
	width: 100%;
	height: 100%;
	border-radius: 28px;
	overflow: hidden;
	background: #0a0e17;
}

.hero-phone--back .hero-phone__screen {
	border-radius: 22px;
}

.hero-phone__label {
	position: absolute;
	bottom: -28px;
	left: 50%;
	transform: translateX(-50%);
	padding: 4px 12px;
	background: var(--color-bg-card);
	border: 1px solid var(--color-border);
	border-radius: 100px;
	font-size: 10px;
	font-weight: 600;
	color: var(--color-text-muted);
	white-space: nowrap;
}

/* Mini App UIs */
.mini-app {
	height: 100%;
	padding: 12px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.mini-app__bar {
	height: 8px;
	width: 60%;
	background: var(--color-surface);
	border-radius: 4px;
}

.mini-app__banner {
	height: 50px;
	background: linear-gradient(135deg, #3b82f6, #8b5cf6);
	border-radius: 8px;
	animation: bannerShimmer 3s ease-in-out infinite;
}

@keyframes bannerShimmer {
	0%, 100% { filter: brightness(1); }
	50% { filter: brightness(1.2); }
}

.mini-app__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6px;
	flex: 1;
}

.mini-app__grid span {
	background: var(--color-surface);
	border-radius: 6px;
	animation: gridPulse 2s ease-in-out infinite;
}

.mini-app__grid span:nth-child(2) { animation-delay: 0.3s; }
.mini-app__grid span:nth-child(3) { animation-delay: 0.6s; }
.mini-app__grid span:nth-child(4) { animation-delay: 0.9s; }

@keyframes gridPulse {
	0%, 100% { opacity: 0.6; }
	50% { opacity: 1; }
}

.mini-app__header {
	display: flex;
	align-items: center;
	gap: 8px;
	padding-top: 20px;
}

.mini-app__avatar {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: linear-gradient(135deg, #3b82f6, #6366f1);
}

.mini-app__header-text small {
	display: block;
	font-size: 8px;
	color: var(--color-text-muted);
}

.mini-app__header-text strong {
	font-size: 11px;
	color: var(--color-text);
}

.mini-app__stats-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}

.mini-app__stat {
	padding: 8px;
	background: var(--color-surface);
	border-radius: 8px;
}

.mini-app__stat span {
	display: block;
	font-size: 7px;
	color: var(--color-text-muted);
}

.mini-app__stat strong {
	font-size: 12px;
	color: var(--color-text);
}

.mini-app__chart {
	display: flex;
	align-items: flex-end;
	gap: 4px;
	height: 60px;
	padding: 8px;
	background: var(--color-surface);
	border-radius: 8px;
}

.mini-app__chart-bar {
	flex: 1;
	height: var(--h);
	background: linear-gradient(180deg, #60a5fa, #3b82f6);
	border-radius: 3px 3px 0 0;
	animation: chartGrow 2s ease-out forwards;
	transform-origin: bottom;
}

.mini-app__chart-bar:nth-child(1) { animation-delay: 0.1s; }
.mini-app__chart-bar:nth-child(2) { animation-delay: 0.2s; }
.mini-app__chart-bar:nth-child(3) { animation-delay: 0.3s; }
.mini-app__chart-bar:nth-child(4) { animation-delay: 0.4s; }
.mini-app__chart-bar:nth-child(5) { animation-delay: 0.5s; }
.mini-app__chart-bar:nth-child(6) { animation-delay: 0.6s; }

@keyframes chartGrow {
	from { transform: scaleY(0); }
	to { transform: scaleY(1); }
}

.mini-app__list {
	display: flex;
	flex-direction: column;
	gap: 4px;
	flex: 1;
}

.mini-app__list-item {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 6px;
	background: var(--color-surface);
	border-radius: 6px;
}

.mini-app__list-item > span {
	width: 20px;
	height: 20px;
	border-radius: 6px;
	background: rgba(59, 130, 246, 0.3);
	flex-shrink: 0;
}

.mini-app__list-item div {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.mini-app__list-item i {
	display: block;
	height: 4px;
	background: rgba(255,255,255,0.1);
	border-radius: 2px;
}

.mini-app__list-item i:first-child { width: 80%; }
.mini-app__list-item i:last-child { width: 50%; }

.mini-app__nav {
	display: flex;
	justify-content: space-around;
	padding: 8px;
	background: var(--color-surface);
	border-radius: 10px;
	margin-top: auto;
}

.mini-app__nav span {
	width: 16px;
	height: 16px;
	border-radius: 4px;
	background: rgba(255,255,255,0.08);
}

.mini-app__nav span.is-active {
	background: var(--color-accent);
	box-shadow: 0 0 10px var(--color-accent-glow);
}

.mini-app__map {
	flex: 1;
	background:
		linear-gradient(135deg, rgba(59,130,246,0.2), rgba(34,197,94,0.15)),
		repeating-linear-gradient(0deg, transparent, transparent 8px, rgba(255,255,255,0.03) 8px, rgba(255,255,255,0.03) 9px),
		repeating-linear-gradient(90deg, transparent, transparent 8px, rgba(255,255,255,0.03) 8px, rgba(255,255,255,0.03) 9px);
	border-radius: 8px;
	position: relative;
	animation: mapPan 8s ease-in-out infinite alternate;
}

@keyframes mapPan {
	0% { background-position: 0 0, 0 0, 0 0; }
	100% { background-position: 10px 10px, 5px 5px, 5px 5px; }
}

.mini-app__delivery-card {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px;
	background: var(--color-surface);
	border-radius: 8px;
}

.mini-app__delivery-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--color-success);
	box-shadow: 0 0 8px var(--color-success);
	animation: pulse 2s infinite;
}

/* Float Cards */
.hero-float-card {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	background: rgba(26, 34, 52, 0.95);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-lg);
	z-index: 5;
	animation: floatCard 5s ease-in-out infinite;
}

.hero-float-card strong {
	display: block;
	font-size: 12px;
	font-weight: 700;
	color: var(--color-text);
}

.hero-float-card span {
	font-size: 10px;
	color: var(--color-text-muted);
}

.hero-float-card__icon {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 700;
}

.hero-float-card--1 {
	top: 8%;
	right: 0;
	animation-delay: 0s;
}

.hero-float-card--1 .hero-float-card__icon {
	background: rgba(34, 197, 94, 0.2);
	color: #4ade80;
}

.hero-float-card--2 {
	bottom: 25%;
	left: -10px;
	animation-delay: 1.5s;
}

.hero-float-card--2 .hero-float-card__icon {
	background: rgba(245, 158, 11, 0.2);
	color: #fbbf24;
}

.hero-float-card--3 {
	bottom: 8%;
	right: 10%;
	animation-delay: 3s;
}

.hero-float-card--3 .hero-float-card__icon {
	background: rgba(59, 130, 246, 0.2);
	color: #60a5fa;
}

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

/* Mobil özel vitrin — masaüstünde gizli */
.hero-mobile-visual {
	display: none;
}

/* Marquee */
.hero__marquee {
	position: relative;
	z-index: 2;
	padding: 16px 0;
	border-top: 1px solid var(--color-border);
	background: rgba(10, 14, 23, 0.95);
	overflow: hidden;
}

.hero__marquee-track {
	display: flex;
	gap: 32px;
	width: max-content;
	animation: marquee 30s linear infinite;
	will-change: transform;
}

.hero__marquee-track span {
	font-size: 13px;
	font-weight: 600;
	color: var(--color-text-muted);
	white-space: nowrap;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.hero__marquee-track span:nth-child(odd) {
	color: rgba(59, 130, 246, 0.6);
}

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

.stat-number {
	font-size: 32px;
	font-weight: 700;
	color: var(--color-text);
}

.stat-number::after {
	content: '+';
	color: var(--color-accent);
}

.stat-label {
	font-size: 13px;
	color: var(--color-text-muted);
}

/* Trust Bar */
.trust-bar {
	padding: 24px 0;
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
	background: var(--color-bg-elevated);
}

.trust-bar__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 32px;
	flex-wrap: wrap;
}

.trust-bar__label {
	font-size: 13px;
	color: var(--color-text-muted);
	font-weight: 500;
}

.trust-bar__logos {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.tech-badge {
	padding: 6px 14px;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 100px;
	font-size: 12px;
	font-weight: 600;
	color: var(--color-text-muted);
}

/* Sections */
.section {
	padding: 100px 0;
}

.section-header {
	margin-bottom: 60px;
	max-width: 640px;
}

.section-header--center {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.section-tag {
	display: inline-block;
	padding: 6px 14px;
	background: rgba(59, 130, 246, 0.1);
	border-radius: 100px;
	font-size: 12px;
	font-weight: 600;
	color: var(--color-accent);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 16px;
}

.section-title {
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 16px;
}

.section-title em {
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 400;
	color: var(--color-accent);
}

.section-desc {
	font-size: 17px;
	color: var(--color-text-muted);
}

/* Services Grid */
.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.service-card {
	position: relative;
	padding: 32px;
	background: var(--color-bg-card);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	transition: all var(--transition);
}

.service-card:hover {
	transform: translateY(-4px);
	border-color: rgba(59, 130, 246, 0.3);
	box-shadow: var(--shadow-md);
}

.service-card--featured {
	background: linear-gradient(145deg, rgba(59, 130, 246, 0.1), rgba(99, 102, 241, 0.05));
	border-color: rgba(59, 130, 246, 0.3);
}

.service-card__badge {
	position: absolute;
	top: 16px;
	right: 16px;
	padding: 4px 10px;
	background: var(--color-accent);
	border-radius: 100px;
	font-size: 11px;
	font-weight: 600;
	color: #fff;
}

.service-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	background: rgba(59, 130, 246, 0.1);
	border-radius: var(--radius-md);
	color: var(--color-accent);
	margin-bottom: 20px;
}

.service-card h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 12px;
}

.service-card p {
	font-size: 14px;
	color: var(--color-text-muted);
	margin-bottom: 16px;
}

.service-card__features {
	list-style: none;
}

.service-card__features li {
	position: relative;
	padding-left: 20px;
	font-size: 13px;
	color: var(--color-text-muted);
	margin-bottom: 8px;
}

.service-card__features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--color-success);
	font-weight: 700;
}

/* Process Timeline */
.process-timeline {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.process-step {
	position: relative;
	padding: 32px 24px;
	background: var(--color-bg-card);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	text-align: center;
}

.process-step__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, var(--color-accent), #6366f1);
	border-radius: 50%;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 20px;
}

.process-step h3 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 12px;
}

.process-step p {
	font-size: 14px;
	color: var(--color-text-muted);
}

/* Why Us */
.why-us__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.why-us__list {
	list-style: none;
	margin: 32px 0;
}

.why-us__list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 16px;
	font-size: 15px;
	color: var(--color-text-muted);
}

.why-us__list svg {
	flex-shrink: 0;
	color: var(--color-success);
	margin-top: 2px;
}

.why-us__list strong {
	color: var(--color-text);
}

.code-window {
	background: var(--color-bg-card);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.code-window__header {
	display: flex;
	gap: 8px;
	padding: 12px 16px;
	background: var(--color-surface);
	border-bottom: 1px solid var(--color-border);
}

.code-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
}

.code-dot--red { background: #ef4444; }
.code-dot--yellow { background: #eab308; }
.code-dot--green { background: #22c55e; }

.code-window__body {
	padding: 20px;
	overflow-x: auto;
}

.code-window pre {
	font-family: 'SF Mono', 'Fira Code', monospace;
	font-size: 13px;
	line-height: 1.6;
}

.code-keyword { color: #c084fc; }
.code-class { color: #60a5fa; }
.code-property { color: #f472b6; }
.code-string { color: #4ade80; }
.code-method { color: #fbbf24; }

/* References */
.references-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 20px;
}

.reference-card {
	padding: 24px 16px;
	background: var(--color-bg-card);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	text-align: center;
	transition: all var(--transition);
}

.reference-card:hover {
	transform: translateY(-4px);
	border-color: rgba(59, 130, 246, 0.3);
}

.reference-card__icon {
	font-size: 32px;
	margin-bottom: 12px;
}

.reference-card h4 {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 8px;
}

.reference-card p {
	font-size: 12px;
	color: var(--color-text-muted);
}

/* FAQ */
.faq-list {
	max-width: 720px;
	margin: 0 auto;
}

.faq-item {
	background: var(--color-bg-card);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	margin-bottom: 12px;
	overflow: hidden;
}

.faq-item summary {
	padding: 20px 24px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: background var(--transition);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
	content: '+';
	font-size: 20px;
	color: var(--color-accent);
	transition: transform var(--transition);
}

.faq-item[open] summary::after {
	transform: rotate(45deg);
}

.faq-item summary:hover {
	background: rgba(255, 255, 255, 0.02);
}

.faq-item p {
	padding: 0 24px 20px;
	font-size: 15px;
	color: var(--color-text-muted);
}

/* CTA Section */
.cta-section {
	padding-bottom: 120px;
}

.cta-box {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	padding: 48px;
	background: linear-gradient(135deg, var(--color-accent) 0%, #6366f1 100%);
	border-radius: var(--radius-xl);
	box-shadow: 0 24px 64px var(--color-accent-glow);
}

.cta-box__content h2 {
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 700;
	color: #fff;
	margin-bottom: 16px;
}

.cta-box__content h2 em {
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 400;
}

.cta-box__content p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 24px;
}

.cta-box__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.cta-box__form {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(16px);
	border-radius: var(--radius-lg);
	padding: 32px;
}

.cta-box__form h3 {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 20px;
}

/* Forms */
/* Honeypot — invisible to users, visible to bots */
.contact-form .hp-field {
	position: absolute !important;
	left: -10000px !important;
	top: auto !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.contact-form .form-group {
	margin-bottom: 16px;
}

.contact-form label {
	display: block;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 8px;
	color: var(--color-text);
}

.contact-form .required {
	color: var(--color-call);
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 14px 16px;
	font-family: inherit;
	font-size: 15px;
	color: var(--color-text);
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	transition: all var(--transition);
}

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

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: var(--color-text-muted);
}

.contact-form--inline input,
.contact-form--inline textarea {
	background: rgba(255, 255, 255, 0.95);
	color: var(--color-bg);
	border: none;
}

.contact-form--inline input::placeholder,
.contact-form--inline textarea::placeholder {
	color: #64748b;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.form-message {
	margin-top: 16px;
	padding: 12px 16px;
	border-radius: var(--radius-sm);
	font-size: 14px;
}

.form-message.success {
	background: rgba(34, 197, 94, 0.1);
	color: var(--color-success);
	border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-message.error {
	background: rgba(239, 68, 68, 0.1);
	color: var(--color-call);
	border: 1px solid rgba(239, 68, 68, 0.3);
}

.btn-loader {
	width: 20px;
	height: 20px;
	border: 2px solid rgba(255,255,255,0.3);
	border-top-color: #fff;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}

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

/* Footer */
.site-footer {
	padding: 60px 0 100px;
	background: var(--color-bg-elevated);
	border-top: 1px solid var(--color-border);
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 48px;
}

.footer-desc {
	font-size: 14px;
	color: var(--color-text-muted);
	margin-top: 16px;
	max-width: 320px;
}

.footer-links h4 {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 16px;
}

.footer-links ul {
	list-style: none;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	font-size: 14px;
	color: var(--color-text-muted);
}

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

.footer-bottom {
	padding-top: 32px;
	border-top: 1px solid var(--color-border);
	text-align: center;
}

.footer-bottom p {
	font-size: 13px;
	color: var(--color-text-muted);
	margin-bottom: 8px;
}

.footer-keywords {
	font-size: 11px !important;
	opacity: 0.6;
}

/* FAB - Desktop only, compact pill + hover reveal */
.fab-container {
	display: none;
	position: fixed;
	bottom: 28px;
	right: 24px;
	z-index: 999;
}

@media (min-width: 769px) {
	.fab-container {
		display: block;
	}
}

.fab-stack {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 10px;
}

.fab-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px 10px 12px;
	background: linear-gradient(135deg, var(--color-accent) 0%, #6366f1 100%);
	border: none;
	border-radius: 100px;
	color: #fff;
	font-family: inherit;
	font-size: 13px;
	font-weight: 600;
	cursor: default;
	box-shadow: 0 6px 24px var(--color-accent-glow);
	transform: translateZ(0);
	transition: transform var(--transition-transform), box-shadow 0.3s ease;
	white-space: nowrap;
}

.fab-container.is-hoverable:hover .fab-pill {
	transform: translate3d(0, -2px, 0);
	box-shadow: 0 10px 32px var(--color-accent-glow);
}

.fab-pill__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.fab-pill__chevron {
	display: flex;
	align-items: center;
	opacity: 0.85;
	transition: transform var(--transition-transform);
}

.fab-container.is-hoverable:hover .fab-pill__chevron {
	transform: rotate(180deg);
}

.fab-actions {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 8px;
	transform-origin: bottom right;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate3d(0, 8px, 0) scale(0.95);
	transition: transform var(--transition-transform), opacity var(--transition-opacity), visibility 0s linear 0.3s;
}

.fab-container.is-hoverable:hover .fab-actions,
.fab-container.is-hoverable:focus-within .fab-actions {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate3d(0, 0, 0) scale(1);
	transition: transform var(--transition-transform), opacity var(--transition-opacity), visibility 0s;
}

.fab-action {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border: none;
	border-radius: 100px;
	color: #fff;
	font-family: inherit;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	box-shadow: var(--shadow-md);
	transform: translateZ(0);
	transition: transform var(--transition-transform), opacity var(--transition-opacity);
	white-space: nowrap;
}

.fab-action span {
	line-height: 1;
}

.fab-action:hover {
	transform: translate3d(0, -2px, 0) scale(1.02);
	color: #fff;
}

.fab-action--call { background: var(--color-call); }
.fab-action--whatsapp { background: var(--color-whatsapp); }
.fab-action--contact { background: var(--color-accent); }

.fab-container.is-hoverable:hover .fab-action {
	animation: fabSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.fab-container.is-hoverable:hover .fab-action:nth-child(1) { animation-delay: 0.03s; }
.fab-container.is-hoverable:hover .fab-action:nth-child(2) { animation-delay: 0.06s; }
.fab-container.is-hoverable:hover .fab-action:nth-child(3) { animation-delay: 0.09s; }

@keyframes fabSlideUp {
	from { opacity: 0; transform: translate3d(0, 10px, 0) scale(0.95); }
	to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

/* Mobile Call Bar */
.mobile-call-bar {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 998;
	padding: 12px 16px;
	background: var(--color-bg-elevated);
	border-top: 1px solid var(--color-border);
	gap: 12px;
}

.mobile-call-btn {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px;
	border-radius: var(--radius-md);
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	text-decoration: none;
}

.mobile-call-btn--whatsapp { background: var(--color-whatsapp); }
.mobile-call-btn--call { background: var(--color-call); }

.mobile-call-btn:hover { color: #fff; }

/* Contact Modal */
.contact-modal {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.contact-modal[hidden] {
	display: none;
}

.contact-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(4px);
}

.contact-modal__content {
	position: relative;
	width: 100%;
	max-width: 480px;
	max-height: 90vh;
	overflow-y: auto;
	padding: 40px;
	background: var(--color-bg-card);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-lg);
	animation: modalIn 0.3s ease;
}

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

.contact-modal__close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-surface);
	border: none;
	border-radius: 50%;
	color: var(--color-text-muted);
	cursor: pointer;
	transition: all var(--transition);
}

.contact-modal__close:hover {
	background: var(--color-bg);
	color: var(--color-text);
}

.contact-modal__header {
	margin-bottom: 24px;
}

.contact-modal__header h2 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 8px;
}

.contact-modal__header p {
	font-size: 14px;
	color: var(--color-text-muted);
}

.contact-modal__alt {
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid var(--color-border);
	text-align: center;
}

.contact-modal__alt p {
	font-size: 13px;
	color: var(--color-text-muted);
	margin-bottom: 8px;
}

.contact-phone-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 18px;
	font-weight: 700;
	color: var(--color-accent);
}

/* Footer legal links */
.footer-legal-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 10px 0 8px;
}

.footer-legal-link {
	background: none;
	border: none;
	padding: 0;
	font: inherit;
	font-size: 13px;
	font-weight: 600;
	color: #94a3b8;
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.footer-legal-link:hover {
	color: #fde68a;
}

/* Cookie Banner */
.cookie-banner {
	position: fixed;
	left: 16px;
	right: 16px;
	bottom: 16px;
	z-index: 100001;
	max-width: 920px;
	margin: 0 auto;
}

body.has-cookie-banner .ek-ai-widget {
	display: none !important;
	visibility: hidden !important;
	pointer-events: none !important;
}

.cookie-banner[hidden] {
	display: none;
}

.cookie-banner__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 18px 20px;
	background: linear-gradient(160deg, rgba(26, 34, 52, 0.98), rgba(10, 14, 23, 0.98));
	border: 1px solid rgba(251, 191, 36, 0.28);
	border-radius: 18px;
	box-shadow:
		0 20px 50px rgba(0, 0, 0, 0.45),
		0 0 30px rgba(251, 191, 36, 0.08);
	animation: cookieIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.cookie-banner__text {
	min-width: 0;
	flex: 1;
}

.cookie-banner__text strong {
	display: block;
	font-size: 14px;
	color: #fde68a;
	margin-bottom: 6px;
}

.cookie-banner__text p {
	margin: 0;
	font-size: 13px;
	line-height: 1.55;
	color: #cbd5e1;
}

.cookie-banner__link {
	background: none;
	border: none;
	padding: 0;
	font: inherit;
	font-weight: 700;
	color: #60a5fa;
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.cookie-banner__link:hover {
	color: #93c5fd;
}

.cookie-banner__actions {
	display: flex;
	flex-shrink: 0;
	gap: 8px;
}

.cookie-banner__btn {
	white-space: nowrap;
	padding: 10px 16px;
	font-size: 13px;
}

/* Legal Modal */
.legal-modal {
	position: fixed;
	inset: 0;
	z-index: 2100;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
}

.legal-modal[hidden] {
	display: none;
}

.legal-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.72);
}

.legal-modal__panel {
	position: relative;
	width: min(720px, 100%);
	max-height: min(86vh, 820px);
	display: flex;
	flex-direction: column;
	background: #111827;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
	overflow: hidden;
	animation: modalIn 0.3s ease;
}

.legal-modal__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 16px 18px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(15, 23, 42, 0.9);
}

.legal-modal__top h2 {
	margin: 0;
	font-size: 17px;
	font-weight: 700;
	color: #f8fafc;
}

.legal-modal__close {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	color: #94a3b8;
	cursor: pointer;
	flex-shrink: 0;
}

.legal-modal__close:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

.legal-modal__body {
	padding: 18px 20px 28px;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	outline: none;
}

.legal-doc__header {
	margin-bottom: 18px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-doc__header h3 {
	margin: 0 0 6px;
	font-size: 20px;
	color: #fde68a;
}

.legal-doc__header p {
	margin: 0;
	font-size: 12px;
	color: #94a3b8;
}

.legal-doc section {
	margin-bottom: 18px;
}

.legal-doc h4 {
	margin: 0 0 8px;
	font-size: 14px;
	font-weight: 700;
	color: #e2e8f0;
}

.legal-doc p,
.legal-doc li {
	font-size: 13px;
	line-height: 1.65;
	color: #cbd5e1;
}

.legal-doc p {
	margin: 0 0 8px;
}

.legal-doc ul {
	margin: 0 0 8px;
	padding-left: 18px;
}

.legal-doc li {
	margin-bottom: 4px;
}

.legal-doc strong {
	color: #f1f5f9;
}

@media (max-width: 768px) {
	.cookie-banner {
		left: 10px;
		right: 10px;
		bottom: calc(72px + env(safe-area-inset-bottom, 0px));
	}

	.cookie-banner__inner {
		flex-direction: column;
		align-items: stretch;
		gap: 14px;
		padding: 14px;
	}

	.cookie-banner__actions {
		width: 100%;
	}

	.cookie-banner__btn {
		flex: 1;
	}

	.legal-modal {
		padding: 10px;
		align-items: flex-end;
	}

	.legal-modal__panel {
		max-height: 88vh;
		border-radius: 18px 18px 14px 14px;
	}
}

/* Animations */
[data-animate] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
	opacity: 1;
	transform: translateY(0);
}

/* Page Content */
.page-content {
	padding-top: calc(var(--header-height) + 40px);
	min-height: 60vh;
}

.entry-content {
	color: var(--color-text-muted);
	line-height: 1.8;
}

.entry-content h2, .entry-content h3 {
	color: var(--color-text);
	margin: 32px 0 16px;
}

/* Responsive */
@media (max-width: 1024px) {
	.hero__inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.hero__subtitle,
	.hero__lead {
		margin-left: auto;
		margin-right: auto;
	}

	.hero__features {
		max-width: 600px;
		margin-left: auto;
		margin-right: auto;
	}

	.hero__actions {
		justify-content: center;
	}

	.hero__stats {
		margin-left: auto;
		margin-right: auto;
	}

	.hero__keywords {
		justify-content: center;
		margin-left: auto;
		margin-right: auto;
	}

	.hero__showcase {
		order: 0;
		height: 420px;
		max-width: 500px;
		margin: 0 auto;
	}

	.hero-phone--main .hero-phone__frame {
		width: 200px;
		height: 410px;
	}

	.hero-phone--back .hero-phone__frame {
		width: 130px;
		height: 270px;
	}

	.hero-float-card--2 {
		left: 0;
	}

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

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

	.why-us__grid {
		grid-template-columns: 1fr;
	}

	.references-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.cta-box {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	.hero-orbit__ring--2 {
		display: none;
	}

	.mini-app__banner,
	.mini-app__grid span,
	.mini-app__delivery-dot,
	.mini-app__map {
		animation: none !important;
	}

	:root {
		--header-height: 64px;
	}

	.site-header {
		overflow: visible;
	}

	.header-inner {
		position: relative;
	}

	.main-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--color-bg-elevated);
		border-bottom: 1px solid var(--color-border);
		padding: 16px 20px 20px;
		box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
		transform: translate3d(0, -12px, 0);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: transform var(--transition-transform), opacity var(--transition-opacity), visibility 0s linear 0.3s;
		z-index: 999;
	}

	.main-nav.active {
		transform: translate3d(0, 0, 0);
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transition: transform var(--transition-transform), opacity var(--transition-opacity), visibility 0s;
	}

	.main-nav .nav-list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.main-nav a {
		display: block;
		font-size: 20px;
		font-weight: 600;
		padding: 14px 4px;
		color: var(--color-text);
		text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
		transition: color var(--transition);
	}

	.main-nav a::after {
		display: none;
	}

	.main-nav a:hover,
	.main-nav a:focus {
		color: #60a5fa;
		transform: none;
	}

	.nav-toggle {
		display: flex;
	}

	.header-call {
		display: none !important;
	}

	.section {
		padding: 60px 0;
	}

	.services-grid,
	.process-timeline {
		grid-template-columns: 1fr;
	}

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

	.form-row {
		grid-template-columns: 1fr;
	}

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

	.mobile-call-bar {
		display: flex;
	}

	.site-footer {
		padding-bottom: 100px;
	}

	.cta-section {
		padding-bottom: 120px;
	}

	/* Mobile Hero - Premium */
	.hero {
		position: relative;
		min-height: auto;
		padding-top: calc(var(--header-height) + 20px);
	}

	.hero::before {
		content: '';
		position: absolute;
		top: var(--header-height);
		left: 50%;
		transform: translateX(-50%);
		width: 90%;
		height: 55%;
		background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
		pointer-events: none;
		z-index: 0;
	}

	.hero__inner {
		display: flex;
		flex-direction: column;
		gap: 20px;
		padding: 0 16px 20px;
		text-align: center;
		position: relative;
		z-index: 1;
	}

	/* Metin önce — müşteri ilk bakışta ne iş yaptığımızı görsün */
	.hero__content {
		order: 0;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 14px;
		padding: 22px 16px 20px;
		text-align: center;
		background: linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
		border: 1px solid rgba(255, 255, 255, 0.1);
		border-radius: 20px;
		box-shadow:
			0 16px 40px rgba(0, 0, 0, 0.3),
			inset 0 1px 0 rgba(255, 255, 255, 0.08);
	}

	.hero__showcase {
		display: none !important;
	}

	.hero-mobile-visual {
		display: block;
		order: 1;
		width: 100%;
	}

	.hmv {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 18px;
		padding: 22px 18px 18px;
		background:
			linear-gradient(160deg, rgba(30, 41, 59, 0.98) 0%, rgba(10, 14, 23, 0.99) 100%);
		border: 1px solid rgba(255, 255, 255, 0.1);
		border-radius: 24px;
		box-shadow:
			0 20px 48px rgba(0, 0, 0, 0.4),
			inset 0 1px 0 rgba(255, 255, 255, 0.07);
		overflow: hidden;
		position: relative;
		text-align: center;
	}

	.hmv::before {
		content: '';
		position: absolute;
		top: -30%;
		left: 50%;
		transform: translateX(-50%);
		width: 240px;
		height: 240px;
		background: radial-gradient(circle, rgba(59, 130, 246, 0.28), transparent 70%);
		pointer-events: none;
	}

	.hmv__device {
		position: relative;
		display: flex;
		justify-content: center;
		z-index: 1;
	}

	.hmv__glow {
		position: absolute;
		inset: 8% -30%;
		background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.4), transparent 70%);
		filter: blur(14px);
		opacity: 0.85;
	}

	.hmv__phone {
		position: relative;
		width: 148px;
		height: 290px;
		padding: 9px;
		border-radius: 28px;
		background: linear-gradient(165deg, #475569 0%, #1e293b 40%, #020617 100%);
		box-shadow:
			0 24px 48px rgba(0, 0, 0, 0.5),
			0 0 0 1px rgba(255, 255, 255, 0.14),
			inset 0 1px 0 rgba(255, 255, 255, 0.2);
		animation: hmvFloat 5s ease-in-out infinite;
	}

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

	.hmv__notch {
		position: absolute;
		top: 14px;
		left: 50%;
		transform: translateX(-50%);
		width: 48px;
		height: 10px;
		border-radius: 999px;
		background: #020617;
		z-index: 2;
	}

	.hmv__screen {
		height: 100%;
		border-radius: 20px;
		overflow: hidden;
		background: #0b1220;
	}

	.hmv-ui {
		height: 100%;
		padding: 30px 14px 14px;
		display: flex;
		flex-direction: column;
		gap: 8px;
		background:
			linear-gradient(180deg, rgba(59, 130, 246, 0.2) 0%, transparent 40%),
			#0b1220;
	}

	.hmv-ui__top {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.hmv-ui__logo {
		width: 28px;
		height: 28px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		border-radius: 8px;
		background: linear-gradient(135deg, #3b82f6, #2563eb);
		color: #fff;
		font-size: 11px;
		font-weight: 800;
	}

	.hmv-ui__live {
		font-size: 10px;
		font-weight: 700;
		color: #4ade80;
		background: rgba(34, 197, 94, 0.15);
		border: 1px solid rgba(34, 197, 94, 0.35);
		border-radius: 999px;
		padding: 3px 8px;
	}

	.hmv-ui__label {
		margin: 6px 0 0;
		font-size: 11px;
		color: #94a3b8;
	}

	.hmv-ui__value {
		font-size: 22px;
		line-height: 1.1;
		font-weight: 800;
		color: #f8fafc;
		letter-spacing: -0.03em;
	}

	.hmv-ui__bars {
		display: flex;
		align-items: flex-end;
		gap: 5px;
		height: 72px;
		margin-top: 6px;
	}

	.hmv-ui__bars span {
		flex: 1;
		height: var(--h);
		border-radius: 5px 5px 2px 2px;
		background: linear-gradient(180deg, #93c5fd, #2563eb);
		opacity: 0.95;
	}

	.hmv-ui__row {
		margin-top: auto;
		display: flex;
		align-items: center;
		justify-content: space-between;
		font-size: 11px;
		color: #94a3b8;
		padding-top: 8px;
		border-top: 1px solid rgba(255, 255, 255, 0.08);
	}

	.hmv-ui__up {
		color: #4ade80;
		font-weight: 700;
	}

	.hmv__info {
		position: relative;
		z-index: 1;
		width: 100%;
		text-align: center;
	}

	.hmv__kicker {
		margin: 0 0 6px;
		font-size: 11px;
		font-weight: 700;
		letter-spacing: 0.08em;
		text-transform: uppercase;
		color: #60a5fa;
	}

	.hmv__title {
		margin: 0 0 8px;
		font-size: 18px;
		font-weight: 800;
		line-height: 1.3;
		color: #f8fafc;
		letter-spacing: -0.02em;
	}

	.hmv__text {
		margin: 0 0 14px;
		font-size: 13px;
		line-height: 1.5;
		color: #94a3b8;
	}

	.hmv__stores {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 8px;
		margin-bottom: 12px;
	}

	.hmv-store {
		display: flex;
		align-items: center;
		gap: 8px;
		padding: 10px 12px;
		border-radius: 14px;
		background: rgba(255, 255, 255, 0.04);
		border: 1px solid rgba(255, 255, 255, 0.08);
		text-align: left;
	}

	.hmv-store--play {
		border-color: rgba(0, 240, 118, 0.28);
		background: rgba(0, 240, 118, 0.07);
	}

	.hmv-store--apple {
		border-color: rgba(255, 255, 255, 0.16);
		background: rgba(255, 255, 255, 0.06);
	}

	.hmv-store small {
		display: block;
		font-size: 9px;
		color: #94a3b8;
		line-height: 1.1;
	}

	.hmv-store strong {
		display: block;
		font-size: 12px;
		font-weight: 700;
		color: #f1f5f9;
		line-height: 1.2;
	}

	.hmv__chips {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 6px;
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.hmv__chips li {
		font-size: 11px;
		font-weight: 600;
		color: #e2e8f0;
		padding: 6px 10px;
		border-radius: 999px;
		background: rgba(59, 130, 246, 0.14);
		border: 1px solid rgba(59, 130, 246, 0.25);
	}

	.hero__badge {
		margin-bottom: 0;
		font-size: 11px;
		padding: 8px 12px;
		justify-content: center;
		text-align: center;
		line-height: 1.35;
	}

	.hero__title {
		font-size: clamp(24px, 7.2vw, 34px);
		font-weight: 800;
		letter-spacing: -0.03em;
		line-height: 1.18;
		margin-bottom: 0;
		width: 100%;
	}

	.hero__keywords {
		justify-content: center;
		gap: 6px;
		margin-bottom: 0;
		max-width: 100%;
	}

	.hero__keywords li {
		font-size: 11px;
		padding: 6px 10px;
	}

	.hero__title-main {
		color: #ffffff;
		text-shadow: 0 2px 20px rgba(255, 255, 255, 0.12);
	}

	.hero__title-accent {
		margin-top: 8px;
	}

	.hero__subtitle {
		font-size: 14px;
		line-height: 1.6;
		color: #cbd5e1;
		margin-bottom: 0;
		max-width: 100%;
		padding: 0 2px;
	}

	.hero__subtitle strong {
		color: #f1f5f9;
	}

	.hero__features {
		grid-template-columns: 1fr;
		width: 100%;
		gap: 8px;
		margin-bottom: 0;
	}

	.hero-feature {
		padding: 12px 14px;
		text-align: left;
	}

	.hero-feature:hover {
		transform: none;
	}

	.hero-feature__text {
		font-size: 13px;
	}

	.hero-feature__text small {
		font-size: 11px;
	}

	.hero__actions {
		flex-direction: column;
		width: 100%;
		margin-bottom: 0;
		gap: 10px;
	}

	.hero__actions .btn {
		width: 100%;
		padding: 14px 20px;
		font-size: 15px;
	}

	.hero__stats {
		width: 100%;
		justify-content: center;
		padding: 12px 16px;
		margin-top: 0;
	}

	.hero__marquee {
		margin-top: 4px;
		padding: 12px 0;
	}

	.hero__marquee-track span {
		font-size: 12px;
	}

	.hero-stat .stat-number {
		font-size: 24px;
	}
}

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

	.hero-reveal {
		opacity: 1 !important;
		transform: none !important;
		animation: none !important;
	}

	.hero__particles {
		display: none;
	}

	.hmv__phone {
		animation: none !important;
	}
}

@media (min-width: 769px) {
	.header-call {
		display: inline-flex;
	}
}

@media (max-width: 480px) {
	.hero__stats {
		flex-wrap: wrap;
		justify-content: center;
		gap: 12px;
		padding: 12px 14px;
	}

	.hero-stat-divider {
		display: none;
	}

	.hmv__phone {
		width: 136px;
		height: 268px;
	}

	.hmv__title {
		font-size: 17px;
	}

	.hero__keywords li:nth-child(n+6) {
		display: none;
	}

	.cta-box {
		padding: 32px 24px;
	}

	.cta-box__actions {
		flex-direction: column;
	}

	.cta-box__actions .btn {
		width: 100%;
	}
}
