/* ==========================================================================
   🎨 PINGMENOW - TAM SAYFA STİLLERİ (MAVİ TEMA)
   ========================================================================== */

/* ==========================================================================
   1. GLOBAL DEĞİŞKENLER & SIFIRLAMA
   ========================================================================== */

:root {
	/* Premium Mavi Tema Renkleri */
	--dark-bg: #0a0e27;
	--card-bg: rgba(15, 23, 42, 0.75);
	--glass-border: rgba(59, 130, 246, 0.25);
	--text-primary: #e2e8f0;
	--text-secondary: #94a3b8;
	
	/* Mavi Gradyan Renkleri */
	--neon-purple: #3b82f6;
	--neon-pink: #2563eb;
	--neon-cyan: #60a5fa;
	--neon-blue: #1e40af;
	
	/* Gradyan Tanımlamaları */
	--gradient-primary: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
	--gradient-secondary: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
	--gradient-accent: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
	
	/* Geçiş Hızları */
	--transition-fast: 0.2s ease;
	--transition-normal: 0.3s ease;
	--transition-slow: 0.5s ease;
}

/* Light Mode Renkleri */
[data-theme="light"] {
	--dark-bg: #f0f9ff;
	--card-bg: rgba(255, 255, 255, 0.95);
	--glass-border: rgba(30, 58, 138, 0.25);
	--text-primary: #0f172a;
	--text-secondary: #475569;
	--section-bg-light: #ffffff;
	--footer-bg-light: #e0f2fe;
	
	/* Light Mode Mavi Gradyanları */
	--neon-purple: #1e3a8a;
	--neon-pink: #3b82f6;
	--neon-cyan: #60a5fa;
	--neon-blue: #1e40af;
	
	--gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
	--gradient-secondary: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #3b82f6 100%);
}

/* ==========================================================================
   2. KEYFRAME ANIMASYONLARI
   ========================================================================== */

/* Parçacık Animasyonu 1 */
@keyframes particleFloat {
	0%, 100% {
		transform: translate(0, 0) scale(1);
		opacity: 0.3;
	}
	25% {
		transform: translate(30px, -40px) scale(1.2);
		opacity: 0.6;
	}
	50% {
		transform: translate(-20px, -80px) scale(0.8);
		opacity: 0.4;
	}
	75% {
		transform: translate(40px, -120px) scale(1.1);
		opacity: 0.7;
	}
}

/* Parçacık Animasyonu 2 */
@keyframes particleFloat2 {
	0%, 100% {
		transform: translate(0, 0) rotate(0deg);
		opacity: 0.2;
	}
	33% {
		transform: translate(-25px, -60px) rotate(120deg);
		opacity: 0.5;
	}
	66% {
		transform: translate(35px, -100px) rotate(240deg);
		opacity: 0.3;
	}
}

/* Parçacık Animasyonu 3 */
@keyframes particleFloat3 {
	0%, 100% {
		transform: translateY(0) scale(1);
		opacity: 0.25;
	}
	50% {
		transform: translateY(-150px) scale(1.3);
		opacity: 0.6;
	}
}

/* Grid Çizgisi Kayma */
@keyframes gridSlide {
	from {
		transform: translateX(-100%);
		opacity: 0;
	}
	to {
		transform: translateX(100%);
		opacity: 0.3;
	}
}

/* Grid Nabız */
@keyframes gridPulse {
	0%, 100% { opacity: 0.1; }
	50% { opacity: 0.3; }
}

/* Gradyan Kayma */
@keyframes gradientShift {
	0%, 100% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
}

/* Orb Animasyonu 1 */
@keyframes orbFloat1 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	25% { transform: translate(50px, -50px) scale(1.1); }
	50% { transform: translate(-30px, 30px) scale(0.9); }
	75% { transform: translate(40px, 40px) scale(1.05); }
}

/* Orb Animasyonu 2 */
@keyframes orbFloat2 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33% { transform: translate(-40px, 50px) scale(1.15); }
	66% { transform: translate(60px, -40px) scale(0.85); }
}

/* Hero Kayma */
@keyframes heroSlideIn {
	from { opacity: 0; transform: translateX(-60px); }
	to { opacity: 1; transform: translateX(0); }
}

/* Badge Nabız */
@keyframes badgePulse {
	0%, 100% { transform: scale(1); box-shadow: 0 0 30px transparent; }
	50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(59, 130, 246, 0.4); }
}

/* Badge İkon Dönüş */
@keyframes badgeIconSpin {
	0%, 100% { transform: rotate(0deg); }
	25% { transform: rotate(-15deg); }
	75% { transform: rotate(15deg); }
}

/* Başlık Kayma */
@keyframes titleSlide {
	from { opacity: 0; transform: translateY(30px); }
	to { opacity: 1; transform: translateY(0); }
}

/* İkon Zıplama */
@keyframes iconBounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

/* Kart Kayma */
@keyframes cardFloat {
	from { opacity: 0; transform: translateY(60px) scale(0.9); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Kart Parıltı */
@keyframes cardGlow {
	0%, 100% { transform: rotate(0deg); }
	50% { transform: rotate(180deg); }
}

/* Başlık Yüzme */
@keyframes titleFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

/* Uyarı Kayma */
@keyframes alertSlide {
	from { opacity: 0; transform: translateX(-30px) scale(0.9); }
	to { opacity: 1; transform: translateX(0) scale(1); }
}

/* Yukarı Belirme */
@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(30px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Belirme */
@keyframes fadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Platform Yukarı Kayma */
@keyframes platformSlideUp {
	from { opacity: 0; transform: translateY(40px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Orb Yüzme */
@keyframes orbFloat {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33% { transform: translate(50px, -30px) scale(1.1); }
	66% { transform: translate(-30px, 50px) scale(0.9); }
}

/* Nabız Efekti */
@keyframes pulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.5); }
	50% { box-shadow: 0 0 0 10px rgba(59, 130, 246, 0); }
}

/* Çizgi Çizme */
@keyframes drawLine {
	to { stroke-dashoffset: 0; }
}

/* Nokta Hareketi */
@keyframes moveDot {
	0%, 100% { transform: translateX(-50px); opacity: 0; }
	50% { transform: translateX(0); opacity: 1; }
}

/* Bar Büyüme */
@keyframes barGrow {
	from { height: 0; opacity: 0; }
	to { opacity: 1; }
}

/* Bayrak Dalgalanma */
@keyframes flagWave {
	0%, 100% { transform: rotate(0deg); }
	25% { transform: rotate(-5deg); }
	75% { transform: rotate(5deg); }
}

/* Telefon Yüzme */
@keyframes phoneFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-20px); }
}

/* Soldan Kayma */
@keyframes slideInLeft {
	from { opacity: 0; transform: translateX(-50px); }
	to { opacity: 1; transform: translateX(0); }
}

/* Sağdan Kayma */
@keyframes slideInRight {
	from { opacity: 0; transform: translateX(50px); }
	to { opacity: 1; transform: translateX(0); }
}

/* İmleç Zıplama */
@keyframes cursorBounce {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50% { transform: translateY(-10px) rotate(-10deg); }
}

/* Nokta Nabız */
@keyframes pulse-dot {
	0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.5); }
	50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(59, 130, 246, 0); }
}

/* İkon Nabız */
@keyframes iconPulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.1); }
}

/* ==========================================================================
   3. HERO SECTION - ANA BÖLÜM
   ========================================================================== */

.hero-section {
	min-height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
	position: relative;
	overflow: hidden;
	margin-top: 20px;
	background: var(--dark-bg);
}

/* Hero Arka Plan Orb 1 */
.hero-section::before {
	content: '';
	position: absolute;
	top: 20%;
	left: 10%;
	width: 600px;
	height: 600px;
	background: rgba(59, 130, 246, 0.03);
	border-radius: 50%;
	filter: blur(100px);
	animation: orbFloat1 20s ease-in-out infinite;
	opacity: 0.3;
}

/* Hero Arka Plan Orb 2 */
.hero-section::after {
	content: '';
	position: absolute;
	bottom: 15%;
	right: 8%;
	width: 550px;
	height: 550px;
	background: rgba(96, 165, 250, 0.03);
	border-radius: 50%;
	filter: blur(120px);
	animation: orbFloat2 18s ease-in-out infinite reverse;
	opacity: 0.3;
}

/* Hero Container Orb 1 */
.hero-container::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 300px;
	height: 300px;
	background: rgba(59, 130, 246, 0.02);
	border-radius: 50%;
	filter: blur(90px);
	animation: orbFloat1 25s ease-in-out infinite;
	z-index: 0;
	opacity: 0.2;
	pointer-events: none;
}

/* Hero Container Orb 2 */
.hero-container::after {
	content: '';
	position: absolute;
	top: 10%;
	right: 15%;
	width: 350px;
	height: 350px;
	background: rgba(96, 165, 250, 0.02);
	border-radius: 50%;
	filter: blur(110px);
	animation: orbFloat2 22s ease-in-out infinite;
	z-index: 0;
	opacity: 0.2;
	pointer-events: none;
}

/* Hero İçerik */
.hero-content {
	animation: heroSlideIn 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Hero Rozet */
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 24px;
	background: rgba(59, 130, 246, 0.15);
	border: 1px solid rgba(59, 130, 246, 0.4);
	border-radius: 50px;
	font-size: 14px;
	font-weight: 700;
	color: #3b82f6;
	margin-bottom: 32px;
	animation: badgePulse 3s ease-in-out infinite;
	box-shadow: 0 0 30px transparent;
}

.hero-badge::before {
	content: '✨';
	font-size: 18px;
	animation: badgeIconSpin 4s linear infinite;
}

/* Hero Başlık */
.hero-title {
	font-size: 4.5rem;
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 24px;
	letter-spacing: -2px;
}

.hero-title-line1 {
	color: var(--text-primary);
	display: block;
	animation: titleSlide 1s ease 0.2s backwards;
}

.hero-title-line2 {
	background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #2563eb 100%);
	background-size: 200% 200%;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	display: block;
	animation: titleSlide 1s ease 0.3s backwards, gradientShift 4s ease infinite;
}

/* Hero Açıklama */
.hero-description {
	font-size: 1.25rem;
	line-height: 1.8;
	color: var(--text-secondary);
	margin-bottom: 40px;
	animation: titleSlide 1s ease 0.4s backwards;
}

/* Hero İstatistikler */
.hero-stats {
	display: flex;
	gap: 40px;
	margin-bottom: 40px;
	animation: titleSlide 1s ease 0.5s backwards;
}

.hero-stat {
	display: flex;
	align-items: center;
	gap: 12px;
}

.hero-stat-icon {
	font-size: 24px;
	animation: iconBounce 2s ease-in-out infinite;
}

.hero-stat-text {
	display: flex;
	flex-direction: column;
}

.hero-stat-number {
	font-size: 2rem;
	font-weight: 900;
	background: linear-gradient(135deg, #3b82f6, #2563eb);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 1;
}

.hero-stat-label {
	font-size: 0.875rem;
	color: var(--text-secondary);
	font-weight: 600;
}

/* Hero Sosyal Kanıt */
.hero-social-proof {
	display: flex;
	align-items: center;
	gap: 16px;
	animation: titleSlide 1s ease 0.6s backwards;
}

.hero-avatars {
	display: flex;
	align-items: center;
}

.hero-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 3px solid var(--dark-bg);
	margin-left: -12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s;
	background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.hero-avatar:first-child {
	margin-left: 0;
}

.hero-avatar:hover {
	transform: translateY(-5px) scale(1.1);
	z-index: 10;
}

.hero-social-text {
	font-size: 0.9375rem;
	color: var(--text-secondary);
}

.hero-social-text strong {
	color: var(--text-primary);
	font-weight: 700;
}

/* Parçacık Konteyneri */
.particles-container {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	z-index: 0;
}

.particle {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}

/* Parçacık Stilleri */
.particle-1 {
	top: 20%;
	left: 15%;
	width: 8px;
	height: 8px;
	background: rgba(59, 130, 246, 0.7);
	box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
	animation: particleFloat 15s ease-in-out infinite;
}

.particle-2 {
	top: 60%;
	left: 25%;
	width: 6px;
	height: 6px;
	background: rgba(96, 165, 250, 0.7);
	box-shadow: 0 0 15px rgba(96, 165, 250, 0.5);
	animation: particleFloat2 18s ease-in-out infinite 2s;
}

.particle-3 {
	top: 40%;
	right: 20%;
	width: 10px;
	height: 10px;
	background: rgba(37, 99, 235, 0.7);
	box-shadow: 0 0 25px rgba(37, 99, 235, 0.6);
	animation: particleFloat3 20s ease-in-out infinite 1s;
}

.particle-4 {
	top: 80%;
	right: 30%;
	width: 7px;
	height: 7px;
	background: rgba(59, 130, 246, 0.7);
	box-shadow: 0 0 18px rgba(59, 130, 246, 0.5);
	animation: particleFloat 22s ease-in-out infinite 3s;
}

.particle-5 {
	top: 30%;
	left: 70%;
	width: 9px;
	height: 9px;
	background: rgba(96, 165, 250, 0.7);
	box-shadow: 0 0 22px rgba(96, 165, 250, 0.5);
	animation: particleFloat2 16s ease-in-out infinite 4s;
}

.particle-6 {
	top: 15%;
	right: 40%;
	width: 5px;
	height: 5px;
	background: rgba(37, 99, 235, 0.7);
	box-shadow: 0 0 12px rgba(37, 99, 235, 0.6);
	animation: particleFloat3 19s ease-in-out infinite 2.5s;
}

.particle-7 {
	top: 70%;
	left: 40%;
	width: 8px;
	height: 8px;
	background: rgba(59, 130, 246, 0.7);
	box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
	animation: particleFloat 21s ease-in-out infinite 5s;
}

.particle-8 {
	top: 50%;
	right: 10%;
	width: 6px;
	height: 6px;
	background: rgba(96, 165, 250, 0.7);
	box-shadow: 0 0 16px rgba(96, 165, 250, 0.5);
	animation: particleFloat2 17s ease-in-out infinite 1.5s;
}

/* Animasyonlu Grid Çizgileri */
.grid-lines {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	z-index: 0;
}

.grid-line {
	position: absolute;
	height: 1px;
	width: 100%;
	background: linear-gradient(90deg, 
		transparent 0%, 
		rgba(59, 130, 246, 0.4) 50%, 
		transparent 100%);
	animation: gridSlide 8s ease-in-out infinite;
}

.grid-line-1 {
	top: 25%;
	animation-delay: 0s;
}

.grid-line-2 {
	top: 50%;
	animation-delay: 2s;
}

.grid-line-3 {
	top: 75%;
	animation-delay: 4s;
}

/* ==========================================================================
   4. SIGNIN CARD - GİRİŞ KARTI
   ========================================================================== */

.signin-card-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	animation: cardFloat 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.signin-card {
	width: 100%;
	max-width: 480px;
	background: rgba(15, 23, 42, 0.75);
	backdrop-filter: blur(40px) saturate(200%);
	-webkit-backdrop-filter: blur(40px) saturate(200%);
	border: 1px solid rgba(59, 130, 246, 0.25);
	border-radius: 32px;
	padding: 48px;
	box-shadow: 
		0 30px 80px rgba(0, 0, 0, 0.5),
		0 0 100px rgba(59, 130, 246, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	position: relative;
	overflow: hidden;
	transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.signin-card::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
	animation: cardGlow 8s ease-in-out infinite;
}

.signin-card:hover {
	transform: translateY(-10px);
	box-shadow: 
		0 40px 100px rgba(0, 0, 0, 0.6),
		0 0 120px rgba(59, 130, 246, 0.25),
		inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Light Mode Signin Card */
[data-theme="light"] .signin-card {
	background: rgba(255, 255, 255, 0.95);
	border-color: rgba(30, 58, 138, 0.25);
	box-shadow: 0 10px 40px rgba(30, 58, 138, 0.15);
}

/* Signin Başlık Bölümü */
.signin-header {
	text-align: center;
	margin-bottom: 40px;
	position: relative;
	z-index: 1;
}

.signin-title {
	font-size: 2.25rem;
	font-weight: 900;
	background: linear-gradient(135deg, #3b82f6, #60a5fa, #2563eb);
	background-size: 200% 200%;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 12px;
	animation: titleFloat 3s ease-in-out infinite, gradientShift 4s ease infinite;
}

.signin-subtitle {
	color: var(--text-secondary);
	font-size: 1rem;
	font-weight: 500;
}

/* ==========================================================================
   5. FORM ELEMANLARI
   ========================================================================== */

.modern-form {
	position: relative;
	z-index: 1;
}

/* Uyarı Mesajları */
.modern-alert {
	padding: 18px 24px;
	border-radius: 16px;
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	gap: 12px;
	animation: alertSlide 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.modern-alert-danger {
	background: rgba(239, 68, 68, 0.15);
	border: 1px solid rgba(239, 68, 68, 0.4);
	color: #f87171;
}

.modern-alert-success {
	background: rgba(59, 130, 246, 0.15);
	border: 1px solid rgba(59, 130, 246, 0.4);
	color: #60a5fa;
}

.modern-alert::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: currentColor;
	box-shadow: 0 0 10px currentColor;
}

.alert-close {
	margin-left: auto;
	background: transparent;
	border: none;
	color: currentColor;
	opacity: 0.6;
	cursor: pointer;
	font-size: 1.5rem;
	transition: all 0.3s;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
}

.alert-close:hover {
	opacity: 1;
	background: rgba(255, 255, 255, 0.1);
	transform: scale(1.1);
}

/* Form Grubu */
.modern-form-group {
	margin-bottom: 24px;
	position: relative;
}

.modern-label {
	display: block;
	font-size: 0.9375rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 10px;
	transition: color 0.3s;
}

/* Input Alanları */
.modern-input {
	width: 100%;
	padding: 16px 20px;
	border: 2px solid rgba(59, 130, 246, 0.25);
	border-radius: 16px;
	font-size: 1rem;
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	background: rgba(10, 14, 39, 0.5);
	color: var(--text-primary);
	font-weight: 500;
}

/* Light Mode Input */
[data-theme="light"] .modern-input {
	background: rgba(255, 255, 255, 0.9);
	color: var(--text-primary);
	border-color: rgba(30, 58, 138, 0.25);
}

.modern-input:focus {
	outline: none;
	border-color: #3b82f6;
	background: rgba(10, 14, 39, 0.8);
	box-shadow: 
		0 0 0 4px rgba(59, 130, 246, 0.15),
		0 12px 30px rgba(59, 130, 246, 0.25);
	transform: translateY(-3px);
}

[data-theme="light"] .modern-input:focus {
	background: rgba(255, 255, 255, 0.95);
	border-color: #1e3a8a;
	box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1), 0 10px 40px rgba(59, 130, 246, 0.2);
}

.modern-input::placeholder {
	color: var(--text-secondary);
}

/* Şifre Grubu */
.password-group {
	position: relative;
}

.forgot-link {
	position: absolute;
	right: 0;
	top: 0;
	font-size: 0.875rem;
	color: #3b82f6;
	text-decoration: none;
	font-weight: 700;
	transition: all 0.3s;
}

.forgot-link:hover {
	color: #60a5fa;
	transform: translateX(-3px);
	text-decoration: underline;
}

/* Checkbox */
.modern-checkbox {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 32px;
}

.modern-checkbox input[type="checkbox"] {
	width: 20px;
	height: 20px;
	border: 2px solid rgba(59, 130, 246, 0.3);
	border-radius: 6px;
	cursor: pointer;
	accent-color: #3b82f6;
	transition: all 0.3s;
}

.modern-checkbox input[type="checkbox"]:checked {
	transform: scale(1.1);
}

.modern-checkbox label {
	font-size: 1rem;
	color: var(--text-secondary);
	cursor: pointer;
	user-select: none;
	font-weight: 500;
}

/* Submit Butonu */
.modern-submit-btn {
	width: 100%;
	padding: 18px;
	background: linear-gradient(135deg, #3b82f6, #60a5fa, #2563eb);
	background-size: 200% 200%;
	border: none;
	border-radius: 16px;
	color: white;
	font-size: 1.125rem;
	font-weight: 800;
	cursor: pointer;
	transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
	box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
	position: relative;
	overflow: hidden;
	text-transform: uppercase;
	letter-spacing: 1px;
	animation: gradientShift 4s ease infinite;
}

.modern-submit-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.modern-submit-btn:hover::before {
	width: 400px;
	height: 400px;
}

.modern-submit-btn:hover {
	transform: translateY(-5px) scale(1.02);
	box-shadow: 
		0 20px 50px rgba(59, 130, 246, 0.5),
		0 0 80px rgba(59, 130, 246, 0.4);
}

.modern-submit-btn:active {
	transform: translateY(-2px) scale(0.98);
}

/* Ayırıcı */
.divider {
	text-align: center;
	position: relative;
	margin: 32px 0;
}

.divider::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.4), transparent);
}

.divider-text {
	position: relative;
	display: inline-block;
	padding: 0 20px;
	background: rgba(15, 23, 42, 0.75);
	color: var(--text-secondary);
	font-size: 0.875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}

[data-theme="light"] .divider-text {
	background: rgba(255, 255, 255, 0.95);
}

/* Kayıt Linki */
.signup-link {
	text-align: center;
	margin-top: 32px;
	padding-top: 32px;
	border-top: 1px solid rgba(59, 130, 246, 0.25);
	color: var(--text-secondary);
	font-size: 1rem;
}

.signup-link a {
	color: #3b82f6;
	text-decoration: none;
	font-weight: 800;
	transition: all 0.3s;
	position: relative;
}

.signup-link a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, #3b82f6, #2563eb);
	transform: scaleX(0);
	transition: transform 0.3s;
}

.signup-link a:hover {
	color: #2563eb;
}

.signup-link a:hover::after {
	transform: scaleX(1);
}

/* ==========================================================================
   6. FEATURES SECTION - ÖZELLİKLER BÖLÜMÜ
   ========================================================================== */

.features-section {
	padding: 120px 20px;
	position: relative;
	background: var(--dark-bg);
}

.features-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
}

.features-header {
	text-align: center;
	margin-bottom: 80px;
}

.features-title {
	font-size: 3.5rem;
	font-weight: 900;
	background: linear-gradient(135deg, #3b82f6, #60a5fa, #2563eb);
	background-size: 200% 200%;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 24px;
	animation: gradientShift 4s ease infinite;
}

.features-subtitle {
	font-size: 1.25rem;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 32px;
}

/* Özellik Kartları */
.feature-card {
	background: var(--card-bg);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	border: 1px solid rgba(59, 130, 246, 0.25);
	border-radius: 24px;
	padding: 40px;
	transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
	position: relative;
	overflow: hidden;
	cursor: pointer;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #3b82f6, #2563eb);
	transform: scaleX(0);
	transition: transform 0.5s;
	z-index: 1;
}

.feature-card::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.6s ease, height 0.6s ease;
	z-index: 0;
	pointer-events: none;
}

.feature-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 
		0 30px 80px rgba(0, 0, 0, 0.4),
		0 0 100px rgba(59, 130, 246, 0.3);
	border-color: rgba(59, 130, 246, 0.6);
}

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

.feature-card:hover::after {
	width: 400px;
	height: 400px;
}

.feature-icon {
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, #3b82f6, #2563eb);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	margin-bottom: 24px;
	box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
	transition: all 0.5s;
	position: relative;
	z-index: 1;
}

.feature-card:hover .feature-icon {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
}

.feature-title {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 12px;
	position: relative;
	z-index: 1;
}

.feature-description {
	color: var(--text-secondary);
	line-height: 1.7;
	font-size: 1rem;
	position: relative;
	z-index: 1;
}

/* ==========================================================================
   7. HOW IT WORKS - NASIL ÇALIŞIR BÖLÜMÜ
   ========================================================================== */

.how-it-works-section {
	padding: 120px 40px;
	background: var(--dark-bg);
	position: relative;
	overflow: hidden;
}

.works-container {
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.works-header {
	text-align: center;
	margin-bottom: 80px;
	animation: fadeInUp 0.8s ease;
}

.works-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 24px;
	background: rgba(59, 130, 246, 0.15);
	border: 1px solid rgba(59, 130, 246, 0.4);
	border-radius: 50px;
	font-size: 0.8rem;
	font-weight: 700;
	color: #3b82f6;
	letter-spacing: 1.5px;
	margin-bottom: 24px;
	position: relative;
}

.badge-pulse {
	width: 8px;
	height: 8px;
	background: #3b82f6;
	border-radius: 50%;
	animation: pulse 2s ease-in-out infinite;
}

.works-title {
	font-size: 3.5rem;
	font-weight: 900;
	color: var(--text-primary);
	line-height: 1.2;
	margin-bottom: 20px;
}

.gradient-text {
	background: linear-gradient(135deg, #3b82f6, #2563eb, #60a5fa);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: inline-block;
}

.works-subtitle {
	font-size: 1.125rem;
	color: var(--text-secondary);
	line-height: 1.7;
	max-width: 700px;
	margin: 0 auto;
}

/* Adım Kartları */
.works-steps {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 0;
	align-items: center;
	margin-bottom: 60px;
}

.step-card {
	grid-column: span 1;
	background: rgba(255, 255, 255, 0.02);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(59, 130, 246, 0.25);
	border-radius: 24px;
	padding: 36px 24px;
	transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
	position: relative;
	animation: fadeInUp 0.8s ease backwards;
}

.step-card[data-step="1"] { animation-delay: 0.1s; }
.step-card[data-step="2"] { animation-delay: 0.3s; }
.step-card[data-step="3"] { animation-delay: 0.5s; }
.step-card[data-step="4"] { animation-delay: 0.7s; }

.step-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.1));
	border-radius: 24px;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.step-card:hover::before {
	opacity: 1;
}

.step-card:hover {
	transform: translateY(-12px) scale(1.02);
	border-color: rgba(59, 130, 246, 0.6);
	box-shadow: 0 24px 60px rgba(59, 130, 246, 0.4);
}

.step-number-wrapper {
	position: relative;
	margin-bottom: 24px;
}

.step-number {
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, #3b82f6, #2563eb);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 900;
	color: white;
	box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
	transition: all 0.4s ease;
	position: relative;
	z-index: 1;
}

.step-card:hover .step-number {
	transform: scale(1.1) rotate(-5deg);
	box-shadow: 0 16px 40px rgba(59, 130, 246, 0.5);
}

.step-content {
	position: relative;
	z-index: 1;
}

.step-icon {
	width: 48px;
	height: 48px;
	background: rgba(59, 130, 246, 0.15);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	transition: all 0.4s ease;
}

.step-icon svg {
	width: 24px;
	height: 24px;
	color: #3b82f6;
}

.step-card:hover .step-icon {
	background: rgba(59, 130, 246, 0.25);
	transform: scale(1.1);
}

.step-title {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 12px;
}

.step-description {
	font-size: 0.95rem;
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 20px;
}

.step-features {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.feature-tag {
	display: inline-flex;
	align-items: center;
	padding: 7px 14px;
	background: rgba(59, 130, 246, 0.12);
	border: 1px solid rgba(59, 130, 246, 0.3);
	border-radius: 10px;
	font-size: 0.8rem;
	color: #3b82f6;
	font-weight: 600;
	transition: all 0.3s ease;
}

.feature-tag:hover {
	background: rgba(59, 130, 246, 0.2);
	border-color: rgba(59, 130, 246, 0.5);
	transform: translateX(4px);
}

/* Adım Ok İşareti */
.step-arrow {
	position: relative;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: fadeIn 1s ease 0.9s backwards;
}

.step-arrow svg {
	width: 100%;
	height: 100%;
}

.step-arrow path {
	stroke-dasharray: 200;
	stroke-dashoffset: 200;
	animation: drawLine 2s ease-in-out 1s forwards;
}

.arrow-dot {
	position: absolute;
	width: 12px;
	height: 12px;
	background: linear-gradient(135deg, #3b82f6, #2563eb);
	border-radius: 50%;
	box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
	animation: moveDot 2s ease-in-out 1s infinite;
}

/* CTA Butonu */
.works-cta {
	text-align: center;
	animation: fadeInUp 0.8s ease 0.9s backwards;
}

.works-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 18px 40px;
	background: linear-gradient(135deg, #3b82f6, #2563eb);
	border-radius: 16px;
	color: white;
	font-size: 1.125rem;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
	position: relative;
	overflow: hidden;
}

.works-cta-btn::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2));
	transform: translateX(-100%);
	transition: transform 0.6s ease;
}

.works-cta-btn:hover::before {
	transform: translateX(100%);
}

.works-cta-btn:hover {
	transform: translateY(-4px) scale(1.05);
	box-shadow: 0 20px 48px rgba(59, 130, 246, 0.5);
}

.btn-icon {
	font-size: 1.5rem;
	transition: transform 0.3s ease;
}

.works-cta-btn:hover .btn-icon {
	transform: translateX(6px);
}

.cta-note {
	margin-top: 16px;
	color: var(--text-secondary);
	font-size: 0.9rem;
}

/* ==========================================================================
   8. PLATFORMS - PLATFORMLAR BÖLÜMÜ
   ========================================================================== */

.platforms-section {
	padding: 100px 40px;
	background: var(--dark-bg);
	position: relative;
	overflow: hidden;
}

.platforms-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.05), transparent 70%);
	z-index: 0;
}

.platforms-container {
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.platforms-header {
	text-align: center;
	margin-bottom: 64px;
}

.platforms-subtitle {
	display: block;
	font-size: 0.95rem;
	font-weight: 600;
	color: #3b82f6;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 16px;
}

.platforms-title {
	font-size: 3rem;
	font-weight: 900;
	color: var(--text-primary);
	line-height: 1.3;
	margin-bottom: 20px;
}

.gradient-word {
	background: linear-gradient(135deg, #3b82f6, #2563eb);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.platforms-description {
	font-size: 1.1rem;
	color: var(--text-secondary);
}

/* Platform Grid */
.platforms-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-bottom: 48px;
}

/* Platform Kartları */
.platform-card {
	background: var(--card-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(59, 130, 246, 0.25);
	border-radius: 20px;
	padding: 40px 24px;
	text-align: center;
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	position: relative;
	overflow: hidden;
	cursor: pointer;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.platform-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #3b82f6, #2563eb);
	transform: scaleX(0);
	transition: transform 0.5s ease;
	z-index: 1;
}

.platform-card::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.6s ease, height 0.6s ease;
	z-index: 0;
	pointer-events: none;
}

.platform-card:hover {
	transform: translateY(-15px) scale(1.03);
	border-color: rgba(59, 130, 246, 0.6);
	box-shadow: 0 30px 70px rgba(59, 130, 246, 0.4),
	            0 0 0 1px rgba(59, 130, 246, 0.5);
}

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

.platform-card:hover::after {
	width: 350px;
	height: 350px;
}

.platform-card:active {
	transform: translateY(-10px) scale(1.01);
}

/* Platform İkonları */
.platform-icon-wrapper {
	width: 80px;
	height: 80px;
	margin: 0 auto 24px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
	position: relative;
	z-index: 1;
}

/* Platform Renkleri */
.platform-card[data-color="facebook"] .platform-icon-wrapper {
	background: linear-gradient(135deg, #1877f2, #0c63d4);
	box-shadow: 0 8px 24px rgba(24, 119, 242, 0.3);
}

.platform-card[data-color="instagram"] .platform-icon-wrapper {
	background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
	box-shadow: 0 8px 24px rgba(221, 42, 123, 0.3);
}

.platform-card[data-color="twitter"] .platform-icon-wrapper {
	background: linear-gradient(135deg, #000000, #333333);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.platform-card[data-color="youtube"] .platform-icon-wrapper {
	background: linear-gradient(135deg, #ff0000, #cc0000);
	box-shadow: 0 8px 24px rgba(255, 0, 0, 0.3);
}

.platform-card[data-color="tiktok"] .platform-icon-wrapper {
	background: linear-gradient(135deg, #00f2ea, #ff0050);
	box-shadow: 0 8px 24px rgba(0, 242, 234, 0.3);
}

.platform-card[data-color="telegram"] .platform-icon-wrapper {
	background: linear-gradient(135deg, #0088cc, #006699);
	box-shadow: 0 8px 24px rgba(0, 136, 204, 0.3);
}

.platform-card[data-color="snapchat"] .platform-icon-wrapper {
	background: linear-gradient(135deg, #fffc00, #ffe000);
	box-shadow: 0 8px 24px rgba(255, 252, 0, 0.3);
}

.platform-card[data-color="linkedin"] .platform-icon-wrapper {
	background: linear-gradient(135deg, #0077b5, #005885);
	box-shadow: 0 8px 24px rgba(0, 119, 181, 0.3);
}

.platform-card:hover .platform-icon-wrapper {
	transform: scale(1.15) rotate(8deg);
	box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
}

.platform-icon {
	width: 40px;
	height: 40px;
	color: white;
	transition: all 0.3s ease;
	z-index: 1;
}

.platform-card:hover .platform-icon {
	transform: scale(1.1);
}

.platform-name {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--text-primary);
	margin: 0;
	position: relative;
	z-index: 1;
	transition: color 0.3s ease;
}

.platform-card:hover .platform-name {
	color: #3b82f6;
}

/* Platforms Footer */
.platforms-footer {
	text-align: center;
	padding: 32px;
	background: rgba(59, 130, 246, 0.08);
	border: 1px solid rgba(59, 130, 246, 0.25);
	border-radius: 16px;
}

.platforms-more {
	font-size: 1rem;
	color: var(--text-secondary);
	margin: 0;
}

/* ==========================================================================
   9. TOP COUNTRIES - EN İYİ ÜLKELER BÖLÜMÜ
   ========================================================================== */

.top-countries-section {
	padding: 100px 20px;
	background: var(--dark-bg);
	position: relative;
	overflow: hidden;
}

.top-countries-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
}

.top-countries-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
}

.top-countries-header {
	text-align: center;
	margin-bottom: 80px;
}

.top-countries-title {
	font-size: 3rem;
	font-weight: 900;
	color: var(--text-primary);
	margin-bottom: 24px;
	background: linear-gradient(135deg, #3b82f6, #60a5fa, #2563eb);
	background-size: 200% 200%;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: gradientShift 4s ease infinite;
}

.top-countries-subtitle {
	font-size: 1.0625rem;
	line-height: 1.8;
	color: var(--text-secondary);
	max-width: 900px;
	margin: 0 auto;
}

/* Countries İçerik Grid */
.countries-content {
	display: grid;
	grid-template-columns: 1fr 2fr 1fr;
	gap: 40px;
	margin-bottom: 80px;
	align-items: start;
}

/* CTA Kartı */
.child-panel-cta {
	animation: slideInLeft 0.8s ease;
}

.cta-card {
	background: var(--card-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(59, 130, 246, 0.25);
	border-radius: 24px;
	padding: 32px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
	transition: all 0.5s;
}

.cta-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 30px 80px rgba(59, 130, 246, 0.4);
}

.cta-dots {
	display: flex;
	gap: 8px;
	margin-bottom: 24px;
}

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

.dot.red { background: #ef4444; box-shadow: 0 0 10px #ef4444; }
.dot.yellow { background: #f59e0b; box-shadow: 0 0 10px #f59e0b; }
.dot.green { 
	background: linear-gradient(135deg, #3b82f6, #2563eb); 
	box-shadow: 0 0 10px rgba(59, 130, 246, 0.6); 
}

.cta-title {
	font-size: 2.5rem;
	font-weight: 900;
	line-height: 1.2;
	color: var(--text-primary);
	margin-bottom: 32px;
}

.cta-cursor {
	font-size: 2rem;
	display: inline-block;
	animation: cursorBounce 1.5s ease-in-out infinite;
}

.cta-stats {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 16px;
	background: rgba(59, 130, 246, 0.12);
	border-radius: 12px;
	border: 1px solid rgba(59, 130, 246, 0.3);
}

.stats-label {
	font-size: 0.875rem;
	color: var(--text-secondary);
	font-weight: 600;
}

.stats-number {
	font-size: 1.5rem;
	font-weight: 900;
	color: #3b82f6;
	text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

/* Telefon Mockup */
.phone-mockup-wrapper {
	display: flex;
	justify-content: center;
	animation: phoneFloat 3s ease-in-out infinite;
}

.phone-mockup {
	width: 340px;
	height: 680px;
	background: linear-gradient(145deg, #1a1a2e, #0f0f1e);
	border-radius: 40px;
	padding: 12px;
	box-shadow: 
		0 40px 100px rgba(0, 0, 0, 0.6),
		0 0 0 8px rgba(59, 130, 246, 0.25),
		inset 0 0 40px rgba(59, 130, 246, 0.1);
	position: relative;
	overflow: hidden;
}

.phone-mockup::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 40px;
	padding: 2px;
	background: linear-gradient(145deg, #3b82f6, #2563eb, #60a5fa);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0.5;
}

.phone-notch {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 20px;
	color: var(--text-primary);
	font-size: 0.75rem;
	font-weight: 700;
}

.status-icons {
	display: flex;
	gap: 8px;
}

.phone-content {
	background: rgba(15, 23, 42, 0.8);
	border-radius: 28px;
	height: calc(100% - 40px);
	padding: 24px;
	padding-right: 12px;
	overflow-y: scroll;
	position: relative;
	scrollbar-width: thin;
	scrollbar-color: rgba(59, 130, 246, 0.8) transparent;
}

.phone-content::-webkit-scrollbar {
	width: 6px;
}

.phone-content::-webkit-scrollbar-track {
	background: rgba(59, 130, 246, 0.1);
	border-radius: 10px;
	margin: 10px 0;
}

.phone-content::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, #3b82f6, #2563eb);
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
	transition: all 0.3s;
}

.phone-content::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(180deg, #60a5fa, #3b82f6);
	box-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
}

.app-logo {
	text-align: center;
	margin-bottom: 24px;
}

.logo-text {
	font-size: 1.5rem;
	font-weight: 900;
	background: linear-gradient(135deg, #3b82f6, #2563eb);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* Bayraklar */
.countries-flags {
	margin-bottom: 24px;
}

.flags-label {
	font-size: 0.875rem;
	color: var(--text-secondary);
	margin-bottom: 12px;
	font-weight: 700;
}

.flags-row {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	align-items: center;
}

.flag-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(30, 30, 50, 0.6);
	border: 2px solid rgba(59, 130, 246, 0.3);
	border-radius: 50%;
	font-size: 1.5rem;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	position: relative;
	overflow: visible;
	flex-shrink: 0;
}

.flag-icon:hover {
	transform: scale(1.15) translateY(-3px);
	border-color: rgba(59, 130, 246, 0.7);
	background: rgba(59, 130, 246, 0.15);
	box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Servis Listesi */
.service-list {
	margin-bottom: 24px;
}

.service-header,
.pricing-header {
	font-size: 0.875rem;
	color: var(--text-secondary);
	margin-bottom: 12px;
	font-weight: 700;
}

.service-search {
	width: 100%;
	padding: 12px 16px;
	background: rgba(15, 23, 42, 0.8);
	border: 1px solid rgba(59, 130, 246, 0.25);
	border-radius: 12px;
	color: var(--text-primary);
	font-size: 0.875rem;
	outline: none;
	transition: all 0.3s;
}

.service-search:focus {
	border-color: #3b82f6;
	box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

/* Fiyatlandırma Öğeleri */
.pricing-items {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.pricing-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px;
	background: rgba(59, 130, 246, 0.06);
	border: 1px solid rgba(59, 130, 246, 0.2);
	border-radius: 12px;
	transition: all 0.3s;
}

.pricing-item:hover {
	background: rgba(59, 130, 246, 0.12);
	transform: translateX(5px);
}

.service-info {
	display: flex;
	align-items: center;
	gap: 12px;
}

.service-icon {
	font-size: 1.5rem;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	transition: all 0.3s;
}

/* Servis İkon Renkleri */
.pricing-item.facebook .service-icon {
	background: linear-gradient(135deg, #1877f2, #0a5cc5);
	box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.pricing-item.instagram .service-icon {
	background: linear-gradient(135deg, #e1306c, #fd1d1d, #fcaf45);
	box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.pricing-item.youtube .service-icon {
	background: linear-gradient(135deg, #ff0000, #cc0000);
	box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.pricing-item.spotify .service-icon {
	background: linear-gradient(135deg, #1db954, #1ed760);
	box-shadow: 0 4px 15px rgba(29, 185, 84, 0.3);
}

.pricing-item.twitter .service-icon {
	background: linear-gradient(135deg, #1da1f2, #0c85d0);
	box-shadow: 0 4px 15px rgba(29, 161, 242, 0.3);
}

.pricing-item.tiktok .service-icon {
	background: linear-gradient(135deg, #000000, #fe2c55, #00f2ea);
	box-shadow: 0 4px 15px rgba(254, 44, 85, 0.3);
}

.pricing-item.telegram .service-icon {
	background: linear-gradient(135deg, #0088cc, #229ed9);
	box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.pricing-item.linkedin .service-icon {
	background: linear-gradient(135deg, #0077b5, #005885);
	box-shadow: 0 4px 15px rgba(0, 119, 181, 0.3);
}

.pricing-item:hover .service-icon {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 8px 25px currentColor;
}

.service-details {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.service-name {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--text-primary);
}

.service-type {
	font-size: 0.75rem;
	color: var(--text-secondary);
}

.service-price {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 4px;
}

.old-price {
	font-size: 0.75rem;
	color: var(--text-secondary);
	text-decoration: line-through;
}

.new-price {
	font-size: 1rem;
	font-weight: 900;
	background: linear-gradient(135deg, #3b82f6, #2563eb);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.scroll-hidden {
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transform: translateY(-10px);
	transition: all 0.2s ease;
}

.scroll-hidden.visible {
	opacity: 1;
	max-height: 100px;
	transform: translateY(0);
}

/* YouTube Stats */
.youtube-stats {
	animation: slideInRight 0.8s ease;
}

.stats-card {
	background: var(--card-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(59, 130, 246, 0.25);
	border-radius: 24px;
	padding: 32px;
	text-align: center;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
	transition: all 0.5s;
}

.stats-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 30px 80px rgba(59, 130, 246, 0.4);
}

.stats-icon {
	margin: 0 auto 16px auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #ff0000, #cc0000);
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(255, 0, 0, 0.4);
	transition: all 0.4s;
}

.stats-icon svg {
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.stats-card:hover .stats-icon {
	transform: scale(1.1) rotate(-5deg);
	box-shadow: 0 15px 50px rgba(255, 0, 0, 0.6);
}

.stats-title {
	font-size: 1.5rem;
	font-weight: 900;
	color: var(--text-primary);
	margin-bottom: 8px;
}

.stats-growth {
	font-size: 1.125rem;
	font-weight: 700;
	color: #3b82f6;
	margin-bottom: 24px;
}

.stats-chart {
	display: flex;
	gap: 8px;
	justify-content: center;
	align-items: flex-end;
	height: 120px;
}

.chart-bar {
	width: 24px;
	background: linear-gradient(180deg, #3b82f6, #2563eb);
	border-radius: 8px 8px 0 0;
	animation: barGrow 1.5s ease backwards;
	box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
}

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

/* Ülke Kartları Slider */
.country-cards-slider {
	position: relative;
	margin-top: 80px;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 40px;
}

.country-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	margin-bottom: 60px;
	transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Ülke Kartları */
.country-card {
	background: var(--card-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(59, 130, 246, 0.25);
	border-radius: 24px;
	padding: 40px;
	text-align: center;
	transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
	position: relative;
	overflow: hidden;
	opacity: 1;
	cursor: pointer;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.country-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #3b82f6, #2563eb, #60a5fa);
	transform: scaleX(0);
	transition: transform 0.5s ease;
	z-index: 1;
}

.country-card::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.6s ease, height 0.6s ease;
	z-index: 0;
	pointer-events: none;
}

.country-card:hover {
	transform: translateY(-18px) scale(1.03);
	box-shadow: 0 35px 90px rgba(59, 130, 246, 0.4),
	            0 0 0 1px rgba(59, 130, 246, 0.5);
	border-color: rgba(59, 130, 246, 0.6);
}

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

.country-card:hover::after {
	width: 400px;
	height: 400px;
}

.country-card:active {
	transform: translateY(-12px) scale(1.01);
}

.country-flag-icon-large {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.3);
	border: 3px solid rgba(59, 130, 246, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 32px auto;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
	transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
	position: relative;
	z-index: 1;
}

.country-card:hover .country-flag-icon-large {
	transform: scale(1.2) rotate(8deg);
	border-color: rgba(59, 130, 246, 0.8);
	box-shadow: 0 20px 60px rgba(59, 130, 246, 0.5);
}

.country-card-title {
	font-size: 1.5rem;
	font-weight: 900;
	color: var(--text-primary);
	margin-bottom: 16px;
	position: relative;
	z-index: 1;
	transition: color 0.3s ease;
}

.country-card:hover .country-card-title {
	color: #3b82f6;
}

.country-card-text {
	font-size: 0.9375rem;
	line-height: 1.7;
	color: var(--text-secondary);
	margin-bottom: 24px;
	position: relative;
	z-index: 1;
}

.country-cta-btn {
	padding: 14px 32px;
	background: linear-gradient(135deg, #3b82f6, #2563eb);
	border: none;
	border-radius: 999px;
	color: white;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.country-cta-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.5s ease, height 0.5s ease;
}

.country-cta-btn:hover::before {
	width: 300px;
	height: 300px;
}

.country-cta-btn:hover {
	transform: translateY(-4px) scale(1.05);
	box-shadow: 0 15px 45px rgba(59, 130, 246, 0.5);
}

.country-cta-btn:active {
	transform: translateY(-2px) scale(1.02);
}

/* Slider Kontrolleri */
.slider-controls {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-top: 40px;
}

.slider-btn {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, #3b82f6, #2563eb);
	border: none;
	color: white;
	font-size: 1.5rem;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.slider-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.5s ease, height 0.5s ease;
}

.slider-btn:hover::before {
	width: 150px;
	height: 150px;
}

.slider-btn:hover {
	transform: scale(1.15) rotate(10deg);
	box-shadow: 0 12px 40px rgba(59, 130, 246, 0.5);
}

.slider-btn:active {
	transform: scale(1.05) rotate(5deg);
}

.slider-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: scale(1);
}

.slider-btn:disabled:hover {
	transform: scale(1);
	box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

/* ==========================================================================
   10. PREMIUM STATS SECTION - İSTATİSTİKLER BÖLÜMÜ
   ========================================================================== */

.premium-stats-section {
	padding: 100px 40px;
	background: var(--dark-bg);
	position: relative;
}

.premium-stats-container {
	max-width: 1300px;
	margin: 0 auto;
}

.premium-section-header {
	text-align: center;
	margin-bottom: 64px;
}

.header-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 24px;
	background: rgba(59, 130, 246, 0.12);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(59, 130, 246, 0.3);
	border-radius: 30px;
	margin-bottom: 24px;
	transition: all 0.3s ease;
}

.header-badge:hover {
	background: rgba(59, 130, 246, 0.18);
	transform: translateY(-2px);
}

.badge-dot {
	width: 8px;
	height: 8px;
	background: linear-gradient(135deg, #3b82f6, #2563eb);
	border-radius: 50%;
	box-shadow: 0 0 12px rgba(59, 130, 246, 0.6);
	animation: pulse-dot 2s ease-in-out infinite;
}

.badge-text {
	font-size: 0.75rem;
	font-weight: 700;
	background: linear-gradient(135deg, #3b82f6, #2563eb);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.premium-main-title {
	font-size: 3rem;
	font-weight: 900;
	color: var(--text-primary);
	line-height: 1.2;
	margin-bottom: 20px;
}

.gradient-title {
	background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #60a5fa 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: block;
}

.premium-subtitle {
	font-size: 1.125rem;
	color: var(--text-secondary);
	line-height: 1.7;
	max-width: 700px;
	margin: 0 auto;
}

.premium-subtitle strong {
	color: #3b82f6;
	font-weight: 700;
}

/* Trust Banner */
.trust-banner {
	background: rgba(59, 130, 246, 0.08);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border: 1px solid rgba(59, 130, 246, 0.25);
	border-radius: 28px;
	padding: 40px;
	margin-bottom: 48px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
	box-shadow: 
		0 20px 50px rgba(0, 0, 0, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	transition: all 0.4s ease;
}

.trust-banner:hover {
	background: rgba(59, 130, 246, 0.12);
	border-color: rgba(59, 130, 246, 0.4);
	transform: translateY(-4px);
}

.trust-badge {
	display: flex;
	align-items: center;
	gap: 24px;
}

.badge-icon {
	font-size: 4rem;
	filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.4));
	transition: transform 0.3s ease;
}

.trust-banner:hover .badge-icon {
	transform: scale(1.08);
}

.badge-content h3 {
	font-size: 1.75rem;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 8px;
}

.badge-content p {
	color: var(--text-secondary);
	font-size: 1rem;
}

.trust-stats-inline {
	display: flex;
	gap: 24px;
}

.inline-stat {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 20px;
	background: rgba(59, 130, 246, 0.12);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(59, 130, 246, 0.3);
	border-radius: 14px;
	transition: all 0.3s ease;
}

.inline-stat:hover {
	background: rgba(59, 130, 246, 0.18);
	border-color: rgba(59, 130, 246, 0.5);
	transform: translateY(-3px);
}

.stat-icon {
	font-size: 1.5rem;
}

.stat-text {
	color: var(--text-secondary);
	font-size: 0.95rem;
	font-weight: 600;
}

.stat-text strong {
	color: #3b82f6;
	font-weight: 800;
}

/* Premium Kartlar Grid */
.premium-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 48px;
}

/* Premium Kartlar */
.premium-card {
	background: rgba(15, 23, 42, 0.75);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border: 1px solid rgba(59, 130, 246, 0.25);
	border-radius: 24px;
	padding: 36px 28px;
	transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
	position: relative;
	overflow: hidden;
	cursor: pointer;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.premium-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #3b82f6, #2563eb, #60a5fa);
	transform: scaleX(0);
	transition: transform 0.6s ease;
	z-index: 2;
}

.premium-card::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.7s ease, height 0.7s ease;
	z-index: 0;
	pointer-events: none;
}

.premium-card:hover {
	background: rgba(15, 23, 42, 0.85);
	border-color: rgba(59, 130, 246, 0.6);
	transform: translateY(-12px) scale(1.02);
	box-shadow: 
		0 30px 70px rgba(0, 0, 0, 0.3),
		0 0 60px rgba(59, 130, 246, 0.3);
}

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

.premium-card:hover::after {
	width: 500px;
	height: 500px;
}

.premium-card:active {
	transform: translateY(-8px) scale(1.01);
}

.premium-highlight {
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(37, 99, 235, 0.12));
	border-color: rgba(59, 130, 246, 0.4);
}

.premium-highlight:hover {
	border-color: rgba(59, 130, 246, 0.7);
	box-shadow: 
		0 30px 70px rgba(59, 130, 246, 0.5),
		0 0 80px rgba(59, 130, 246, 0.4);
}

.premium-card-icon {
	margin-bottom: 24px;
	position: relative;
	z-index: 1;
}

.icon-wrapper {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, #3b82f6, #2563eb);
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.25rem;
	box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
	transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
	position: relative;
}

.premium-card:hover .icon-wrapper {
	transform: translateY(-8px) rotate(-8deg) scale(1.1);
	box-shadow: 0 20px 50px rgba(59, 130, 246, 0.5);
}

.premium-card-title {
	font-size: 1.4rem;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 20px;
	position: relative;
	z-index: 1;
	transition: color 0.3s ease;
}

.premium-card:hover .premium-card-title {
	color: #3b82f6;
}

/* İstatistik Listesi */
.premium-stats-list {
	display: flex;
	gap: 16px;
	margin: 24px 0;
	position: relative;
	z-index: 1;
}

.stat-item {
	flex: 1;
	text-align: center;
	padding: 20px 16px;
	background: rgba(59, 130, 246, 0.08);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(59, 130, 246, 0.2);
	border-radius: 16px;
	transition: all 0.3s ease;
}

.stat-item:hover {
	background: rgba(59, 130, 246, 0.15);
	border-color: rgba(59, 130, 246, 0.4);
	transform: translateY(-4px);
}

.stat-number {
	display: block;
	font-size: 2rem;
	font-weight: 900;
	background: linear-gradient(135deg, #3b82f6, #2563eb);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 6px;
}

.stat-label {
	display: block;
	font-size: 0.8rem;
	color: var(--text-secondary);
	text-transform: uppercase;
	letter-spacing: 0.8px;
	font-weight: 600;
}

/* Platform Rozetleri */
.platform-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 20px;
	position: relative;
	z-index: 1;
}

.mini-badge {
	padding: 7px 14px;
	background: rgba(59, 130, 246, 0.08);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(59, 130, 246, 0.2);
	border-radius: 10px;
	font-size: 0.8rem;
	color: var(--text-secondary);
	font-weight: 600;
	transition: all 0.3s ease;
}

.mini-badge:hover {
	background: rgba(59, 130, 246, 0.15);
	color: #3b82f6;
	border-color: rgba(59, 130, 246, 0.4);
	transform: translateY(-2px);
}

/* Performans Ölçer */
.performance-meter {
	margin: 28px 0;
	position: relative;
	z-index: 1;
}

.meter-bar {
	height: 36px;
	background: rgba(59, 130, 246, 0.08);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 18px;
	border: 1px solid rgba(59, 130, 246, 0.2);
	overflow: hidden;
	position: relative;
}

.meter-fill {
	height: 100%;
	background: linear-gradient(90deg, #3b82f6, #60a5fa, #2563eb);
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding-right: 18px;
	transition: width 2s cubic-bezier(0.65, 0, 0.35, 1);
	box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
}

.meter-label {
	font-weight: 900;
	color: white;
	font-size: 1rem;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.meter-description {
	margin-top: 10px;
	text-align: center;
	color: var(--text-secondary);
	font-size: 0.875rem;
}

/* Fiyat Vurgusu */
.price-highlight {
	text-align: center;
	padding: 40px 32px;
	background: rgba(59, 130, 246, 0.08);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(59, 130, 246, 0.3);
	border-radius: 20px;
	margin: 28px 0;
	transition: all 0.4s ease;
	position: relative;
	z-index: 1;
}

.price-highlight:hover {
	background: rgba(59, 130, 246, 0.12);
	border-color: rgba(59, 130, 246, 0.5);
	transform: translateY(-6px) scale(1.02);
	box-shadow: 0 16px 48px rgba(59, 130, 246, 0.4);
}

.price-from {
	display: block;
	font-size: 0.85rem;
	color: var(--text-secondary);
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	font-weight: 600;
}

.price-amount {
	display: block;
	font-size: 4rem;
	font-weight: 900;
	background: linear-gradient(135deg, #3b82f6, #2563eb);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	margin-bottom: 8px;
}

.price-currency {
	display: block;
	font-size: 1rem;
	color: var(--text-secondary);
	font-weight: 700;
	letter-spacing: 3px;
}

/* Güvenlik Özellikleri */
.security-features {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 28px 0;
	position: relative;
	z-index: 1;
}

.security-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 20px;
	background: rgba(59, 130, 246, 0.05);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(59, 130, 246, 0.2);
	border-radius: 14px;
	transition: all 0.3s ease;
}

.security-item:hover {
	background: rgba(59, 130, 246, 0.12);
	border-color: rgba(59, 130, 246, 0.4);
	transform: translateX(6px);
}

.security-icon {
	font-size: 1.3rem;
	color: #3b82f6;
}

.security-text {
	color: var(--text-secondary);
	font-size: 0.95rem;
	font-weight: 500;
}

/* Güven Rozetleri */
.trust-badges-row {
	display: flex;
	justify-content: center;
	gap: 28px;
	margin-top: 28px;
	position: relative;
	z-index: 1;
}

.trust-badge-icon {
	font-size: 2.75rem;
	opacity: 0.75;
	transition: all 0.3s ease;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.trust-badge-icon:hover {
	opacity: 1;
	transform: translateY(-4px) scale(1.1);
}

/* Alt Güven Barı */
.bottom-trust-bar {
	display: flex;
	justify-content: center;
	gap: 56px;
	padding: 36px;
	background: rgba(59, 130, 246, 0.05);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border: 1px solid rgba(59, 130, 246, 0.2);
	border-radius: 24px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease;
}

.bottom-trust-bar:hover {
	background: rgba(59, 130, 246, 0.08);
	border-color: rgba(59, 130, 246, 0.4);
}

.trust-indicator {
	display: flex;
	align-items: center;
	gap: 14px;
	transition: transform 0.3s ease;
}

.trust-indicator:hover {
	transform: translateY(-3px);
}

.indicator-icon {
	font-size: 2.25rem;
	filter: drop-shadow(0 4px 10px rgba(59, 130, 246, 0.4));
}

.indicator-text {
	color: var(--text-secondary);
	font-size: 1.05rem;
	font-weight: 600;
}

.indicator-text strong {
	color: #3b82f6;
	font-weight: 800;
	font-size: 1.15rem;
}

/* ==========================================================================
   11. TESTIMONIALS - MÜŞTERİ YORUMLARI BÖLÜMÜ
   ========================================================================== */

.testimonials-epic-section {
	padding: 120px 40px;
	background: var(--dark-bg);
	position: relative;
	overflow: hidden;
}

.testimonials-container {
	max-width: 1200px;
	margin: 0 auto;
}

.testimonials-header {
	text-align: center;
	margin-bottom: 80px;
}

.testimonials-main-title {
	font-size: 2.5rem;
	font-weight: 900;
	color: var(--text-primary);
	line-height: 1.3;
	margin-bottom: 16px;
	background: linear-gradient(135deg, #3b82f6, #60a5fa, #2563eb);
	background-size: 200% 200%;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: gradientShift 4s ease infinite;
}

.testimonials-slider {
	position: relative;
	padding: 0 80px;
}

.testimonial-track {
	position: relative;
	min-height: 500px;
}

/* Testimonial Kartları */
.testimonial-card {
	background: var(--card-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(59, 130, 246, 0.25);
	border-radius: 32px;
	padding: 60px 50px;
	text-align: center;
	position: absolute;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	transform: scale(0.9) translateY(20px);
	transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
	pointer-events: none;
	z-index: 1;
}

.testimonial-card.active {
	opacity: 1;
	visibility: visible;
	transform: scale(1) translateY(0);
	pointer-events: auto;
	z-index: 10;
}

.quote-icon-top {
	font-size: 6rem;
	color: rgba(59, 130, 246, 0.2);
	line-height: 1;
	position: absolute;
	top: 20px;
	left: 40px;
	font-family: Georgia, serif;
}

.quote-icon-bottom {
	font-size: 6rem;
	color: rgba(37, 99, 235, 0.2);
	line-height: 1;
	position: absolute;
	bottom: 20px;
	right: 40px;
	font-family: Georgia, serif;
	transform: rotate(180deg);
}

.testimonial-avatar {
	margin-bottom: 32px;
}

.avatar-circle {
	width: 120px;
	height: 120px;
	background: linear-gradient(135deg, #3b82f6, #2563eb);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	box-shadow: 0 12px 40px rgba(59, 130, 246, 0.4);
	border: 4px solid rgba(59, 130, 246, 0.2);
	overflow: hidden;
}

.avatar-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.testimonial-name {
	font-size: 1.75rem;
	font-weight: 900;
	color: var(--text-primary);
	margin-bottom: 8px;
	letter-spacing: 1px;
}

.testimonial-role {
	font-size: 1.1rem;
	color: #3b82f6;
	font-weight: 600;
	margin-bottom: 32px;
}

.testimonial-text {
	font-size: 1.15rem;
	line-height: 1.9;
	color: var(--text-secondary);
	max-width: 800px;
	margin: 0 auto 32px;
}

.testimonial-stars {
	font-size: 1.8rem;
	margin-top: 24px;
	filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

/* Navigasyon Butonları */
.testimonial-nav-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, #3b82f6, #2563eb);
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	z-index: 100;
	box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

.testimonial-nav-btn:hover {
	transform: translateY(-50%) scale(1.15);
	box-shadow: 0 12px 32px rgba(59, 130, 246, 0.5);
}

.testimonial-nav-btn svg {
	width: 24px;
	height: 24px;
	color: white;
}

.prev-testimonial {
	left: 0;
}

.next-testimonial {
	right: 0;
}

/* Nokta Navigasyonu */
.testimonial-dots {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-top: 60px;
}

.testimonial-dots .dot {
	width: 14px;
	height: 14px;
	background: rgba(59, 130, 246, 0.3);
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.testimonial-dots .dot:hover {
	background: rgba(59, 130, 246, 0.5);
	transform: scale(1.2);
}

.testimonial-dots .dot.active {
	background: linear-gradient(135deg, #3b82f6, #2563eb);
	border-color: rgba(255, 255, 255, 0.3);
	transform: scale(1.4);
	box-shadow: 0 0 16px rgba(59, 130, 246, 0.6);
}

/* ==========================================================================
   12. FAQ SECTION - SSS BÖLÜMÜ
   ========================================================================== */

.premium-faq-section {
	padding: 100px 40px;
	background: var(--dark-bg);
	position: relative;
}

.faq-container {
	max-width: 1400px;
	margin: 0 auto;
}

.faq-header {
	text-align: center;
	margin-bottom: 64px;
}

.faq-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 24px;
	background: rgba(59, 130, 246, 0.15);
	border: 1px solid rgba(59, 130, 246, 0.4);
	border-radius: 24px;
	margin-bottom: 24px;
}

.faq-badge-icon {
	font-size: 1.5rem;
	color: #3b82f6;
}

.faq-badge-text {
	font-size: 0.85rem;
	font-weight: 700;
	color: #3b82f6;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.faq-main-title {
	font-size: 3rem;
	font-weight: 900;
	color: var(--text-primary);
	line-height: 1.3;
	margin-bottom: 20px;
}

.faq-gradient-text {
	background: linear-gradient(135deg, #3b82f6, #2563eb);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.faq-subtitle {
	font-size: 1.1rem;
	color: var(--text-secondary);
}

/* FAQ Tabları */
.faq-tabs {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-bottom: 48px;
	flex-wrap: wrap;
}

.faq-tab {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 16px 32px;
	background: var(--card-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(59, 130, 246, 0.25);
	border-radius: 16px;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	color: var(--text-secondary);
	font-size: 1rem;
	font-weight: 600;
}

.faq-tab:hover {
	border-color: rgba(59, 130, 246, 0.5);
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
}

.faq-tab.active {
	background: linear-gradient(135deg, #3b82f6, #2563eb);
	border-color: transparent;
	color: white;
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(59, 130, 246, 0.5);
}

.tab-icon {
	font-size: 1.3rem;
}

.tab-text {
	white-space: nowrap;
}

/* FAQ İçerik */
.faq-content {
	position: relative;
}

.faq-tab-content {
	display: none;
	opacity: 0;
	animation: fadeIn 0.4s ease;
}

.faq-tab-content.active {
	display: block;
	opacity: 1;
}

.faq-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

/* FAQ Öğeleri */
.faq-item {
	background: var(--card-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(59, 130, 246, 0.25);
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-item:hover {
	border-color: rgba(59, 130, 246, 0.5);
	box-shadow: 0 12px 40px rgba(59, 130, 246, 0.3);
	transform: translateY(-4px);
}

.faq-question {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 24px;
	cursor: pointer;
	user-select: none;
	background: transparent;
	transition: background 0.3s;
}

.faq-question:hover {
	background: rgba(59, 130, 246, 0.05);
}

.faq-icon {
	font-size: 1.8rem;
	flex-shrink: 0;
	color: #3b82f6;
}

.faq-question h3 {
	flex: 1;
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--text-primary);
	margin: 0;
}

.faq-toggle {
	font-size: 2rem;
	font-weight: 300;
	color: #3b82f6;
	flex-shrink: 0;
	transition: transform 0.3s ease;
	line-height: 1;
}

.faq-item.active .faq-toggle {
	transform: rotate(45deg);
	color: #2563eb;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	padding: 0 24px;
}

.faq-item.active .faq-answer {
	max-height: 800px;
	padding: 0 24px 24px 24px;
	transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
}

.faq-answer p {
	color: var(--text-secondary);
	line-height: 1.7;
	margin: 0;
	font-size: 1rem;
	padding-top: 12px;
}

/* FAQ Footer CTA */
.faq-footer-cta {
	margin-top: 80px;
	padding: 48px;
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(37, 99, 235, 0.12));
	border: 2px solid rgba(59, 130, 246, 0.35);
	border-radius: 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 32px;
	transition: all 0.4s ease;
}

.faq-footer-cta:hover {
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(37, 99, 235, 0.18));
	border-color: rgba(59, 130, 246, 0.5);
	transform: translateY(-4px);
}

.cta-content h3 {
	font-size: 1.75rem;
	font-weight: 900;
	color: var(--text-primary);
	margin-bottom: 8px;
}

.cta-content p {
	font-size: 1.1rem;
	color: var(--text-secondary);
	margin: 0;
}

.cta-button {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 18px 36px;
	background: linear-gradient(135deg, #3b82f6, #2563eb);
	border-radius: 16px;
	color: white;
	font-size: 1.1rem;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	box-shadow: 0 8px 32px rgba(59, 130, 246, 0.4);
	border: none;
	cursor: pointer;
}

.cta-button:hover {
	transform: translateY(-4px) scale(1.05);
	box-shadow: 0 16px 48px rgba(59, 130, 246, 0.5);
}

.cta-icon {
	font-size: 1.5rem;
}

/* ==========================================================================
   13. PREMIUM FOOTER - ALT BİLGİ
   ========================================================================== */

.premium-footer {
	background: var(--dark-bg);
	border-top: 1px solid rgba(59, 130, 246, 0.25);
	padding: 80px 40px 0 40px;
	position: relative;
	overflow: hidden;
}

.footer-container {
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

/* Footer Arka Plan Orb'ları */
.footer-bg-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	opacity: 0.15;
	animation: orbFloat 20s ease-in-out infinite;
}

.footer-orb-1 {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, #3b82f6, transparent);
	top: -200px;
	left: -100px;
	animation-delay: 0s;
}

.footer-orb-2 {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, #2563eb, transparent);
	bottom: -150px;
	right: -100px;
	animation-delay: 3s;
}

/* Footer Üst Kısım */
.footer-top {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 60px;
	padding-bottom: 60px;
	border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.footer-brand {
	animation: fadeInUp 0.8s ease;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
}

.logo-icon {
	font-size: 2.5rem;
	filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.6));
	animation: iconPulse 3s ease-in-out infinite;
}

.logo-text {
	font-size: 2rem;
	font-weight: 900;
	background: linear-gradient(135deg, #3b82f6, #2563eb);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.footer-description {
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: 24px;
	font-size: 0.95rem;
}

/* Footer İstatistikleri */
.footer-stats {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 28px;
}

.footer-stat-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 16px;
	background: rgba(59, 130, 246, 0.08);
	border: 1px solid rgba(59, 130, 246, 0.2);
	border-radius: 10px;
	transition: all 0.3s ease;
}

.footer-stat-item:hover {
	background: rgba(59, 130, 246, 0.15);
	border-color: rgba(59, 130, 246, 0.4);
	transform: translateX(4px);
}

/* Sosyal Medya */
.footer-social {
	display: flex;
	gap: 12px;
}

.social-link {
	width: 44px;
	height: 44px;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(59, 130, 246, 0.2);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-secondary);
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-link:hover {
	background: linear-gradient(135deg, #3b82f6, #2563eb);
	border-color: transparent;
	color: white;
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

/* Footer Sütunları */
.footer-column {
	animation: fadeInUp 0.8s ease;
}

.footer-column:nth-child(2) { animation-delay: 0.1s; }
.footer-column:nth-child(3) { animation-delay: 0.2s; }
.footer-column:nth-child(4) { animation-delay: 0.3s; }

.footer-title {
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 24px;
	position: relative;
	display: inline-block;
}

.footer-title::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 40px;
	height: 3px;
	background: linear-gradient(90deg, #3b82f6, #2563eb);
	border-radius: 2px;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-links li a {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 500;
	transition: all 0.3s ease;
	padding: 6px 0;
}

.footer-links li a:hover {
	color: #3b82f6;
	transform: translateX(6px);
}

.link-icon {
	font-size: 1.1rem;
	transition: all 0.3s ease;
}

.footer-links li a:hover .link-icon {
	transform: scale(1.2);
}

/* Footer Alt Kısım */
.footer-bottom {
	padding: 32px 0;
	animation: fadeInUp 0.8s ease 0.4s backwards;
}

.footer-bottom-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 24px;
}

.copyright {
	color: var(--text-secondary);
	font-size: 0.9rem;
}

.copyright strong {
	color: #3b82f6;
	font-weight: 700;
}

/* Ödeme Yöntemleri */
.payment-methods {
	display: flex;
	align-items: center;
	gap: 16px;
}

.payment-label {
	color: var(--text-secondary);
	font-size: 0.875rem;
	font-weight: 600;
}

.payment-icons {
	display: flex;
	gap: 10px;
}

.payment-icon {
	font-size: 1.75rem;
	padding: 8px 12px;
	background: rgba(59, 130, 246, 0.05);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(59, 130, 246, 0.2);
	border-radius: 10px;
	transition: all 0.3s ease;
}

.payment-icon:hover {
	background: rgba(59, 130, 246, 0.15);
	border-color: rgba(59, 130, 246, 0.4);
	transform: translateY(-4px);
}

/* ==========================================================================
   14. LIGHT MODE - AYDINLIK MOD GEÇİŞLERİ
   ========================================================================== */

/* Light Mode Body */
[data-theme="light"] body {
	background: #ffffff;
}

[data-theme="light"] .hero-section,
[data-theme="light"] .features-section,
[data-theme="light"] .how-it-works-section,
[data-theme="light"] .platforms-section,
[data-theme="light"] .top-countries-section,
[data-theme="light"] .testimonials-epic-section,
[data-theme="light"] .premium-faq-section,
[data-theme="light"] .premium-stats-section {
	background: #ffffff;
}

/* Light Mode Orb'lar */
[data-theme="light"] .hero-section::before,
[data-theme="light"] .hero-section::after,
[data-theme="light"] .hero-container::before,
[data-theme="light"] .hero-container::after {
	opacity: 0.05;
	background: rgba(30, 58, 138, 0.02);
}

/* Light Mode Kartlar */
[data-theme="light"] .platform-card,
[data-theme="light"] .feature-card,
[data-theme="light"] .country-card,
[data-theme="light"] .testimonial-card,
[data-theme="light"] .faq-item,
[data-theme="light"] .premium-card,
[data-theme="light"] .signin-card,
[data-theme="light"] .step-card,
[data-theme="light"] .cta-card,
[data-theme="light"] .stats-card {
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid rgba(30, 58, 138, 0.2);
	box-shadow: 0 4px 20px rgba(30, 58, 138, 0.08);
}

[data-theme="light"] .platform-card:hover,
[data-theme="light"] .feature-card:hover,
[data-theme="light"] .country-card:hover {
	border-color: rgba(30, 58, 138, 0.5);
	box-shadow: 0 12px 40px rgba(30, 58, 138, 0.15);
}

/* Light Mode Footer */
[data-theme="light"] .premium-footer {
	background: #f8f9fa;
	border-top: 1px solid rgba(30, 58, 138, 0.15);
}

/* Light Mode Başlıklar */
[data-theme="light"] .hero-title-line2,
[data-theme="light"] .features-title,
[data-theme="light"] .platforms-title,
[data-theme="light"] .works-title,
[data-theme="light"] .testimonials-main-title,
[data-theme="light"] .faq-main-title,
[data-theme="light"] .premium-main-title,
[data-theme="light"] .top-countries-title,
[data-theme="light"] .signin-title {
	background: linear-gradient(135deg, #1e3a8a, #3b82f6, #60a5fa);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* Light Mode Butonlar */
[data-theme="light"] .modern-submit-btn,
[data-theme="light"] .works-cta-btn,
[data-theme="light"] .country-cta-btn,
[data-theme="light"] .cta-button,
[data-theme="light"] .slider-btn {
	background: linear-gradient(135deg, #1e3a8a, #3b82f6);
	box-shadow: 0 8px 24px rgba(30, 58, 138, 0.25);
}

[data-theme="light"] .modern-submit-btn:hover,
[data-theme="light"] .works-cta-btn:hover,
[data-theme="light"] .country-cta-btn:hover,
[data-theme="light"] .cta-button:hover,
[data-theme="light"] .slider-btn:hover {
	background: linear-gradient(135deg, #1e40af, #2563eb);
	box-shadow: 0 12px 36px rgba(30, 58, 138, 0.35);
}

/* Light Mode İkonlar */
[data-theme="light"] .platform-icon-wrapper,
[data-theme="light"] .feature-icon,
[data-theme="light"] .icon-wrapper {
	background: linear-gradient(135deg, #bfdbfe, #93c5fd);
	border: 2px solid rgba(30, 58, 138, 0.2);
	box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
}

[data-theme="light"] .platform-icon-wrapper:hover,
[data-theme="light"] .feature-icon:hover,
[data-theme="light"] .icon-wrapper:hover {
	background: linear-gradient(135deg, #93c5fd, #60a5fa);
	border-color: rgba(30, 58, 138, 0.4);
	box-shadow: 0 12px 32px rgba(59, 130, 246, 0.25);
}

/* ==========================================================================
   15. RESPONSIVE TASARIM - DUYARLI TASARIM
   ========================================================================== */

/* Tablet ve Küçük Ekranlar */
@media (max-width: 1200px) {
	.hero-title {
		font-size: 3.5rem;
	}

	.countries-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.phone-mockup-wrapper {
		order: -1;
	}

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

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

	.works-steps {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.step-arrow {
		display: none;
	}

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

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

	.footer-brand {
		grid-column: 1 / -1;
	}
}

/* Mobil Cihazlar */
@media (max-width: 968px) {
	.hero-section {
		margin-top: 20px;
		padding: 30px 20px 40px 20px;
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.hero-stats {
		flex-direction: column;
		gap: 24px;
	}

	.signin-card {
		padding: 36px 28px;
	}

	.signin-title {
		font-size: 1.75rem;
	}

	.features-title,
	.works-title,
	.platforms-title,
	.testimonials-main-title,
	.faq-main-title,
	.premium-main-title {
		font-size: 2rem;
	}

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

	.faq-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.faq-tabs {
		flex-direction: column;
	}

	.faq-tab {
		width: 100%;
		justify-content: center;
	}

	.faq-footer-cta {
		flex-direction: column;
		text-align: center;
		padding: 32px 24px;
	}

	.cta-button {
		width: 100%;
		justify-content: center;
	}

	.testimonials-slider {
		padding: 0 60px;
	}

	.testimonial-card {
		padding: 40px 30px;
	}

	.testimonial-nav-btn {
		width: 48px;
		height: 48px;
	}

	.quote-icon-top,
	.quote-icon-bottom {
		font-size: 4rem;
	}

	.trust-banner {
		flex-direction: column;
		text-align: center;
		padding: 36px 28px;
	}

	.trust-stats-inline {
		flex-direction: column;
		width: 100%;
	}

	.premium-stats-list {
		flex-direction: column;
	}

	.bottom-trust-bar {
		flex-direction: column;
		gap: 32px;
		text-align: center;
	}

	.trust-indicator {
		justify-content: center;
	}

	.premium-footer {
		padding: 60px 24px 0 24px;
	}

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

	.footer-bottom-content {
		flex-direction: column;
		text-align: center;
	}

	.payment-methods {
		flex-direction: column;
	}

	.top-countries-title {
		font-size: 2rem;
	}

	.phone-mockup {
		width: 300px;
		height: 600px;
	}

	.cta-title {
		font-size: 2rem;
	}
}

/* Küçük Mobil Cihazlar */
@media (max-width: 768px) {
	.platforms-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.platform-card {
		padding: 32px 20px;
	}

	.platform-icon-wrapper {
		width: 64px;
		height: 64px;
	}

	.platform-icon {
		width: 32px;
		height: 32px;
	}

	.country-cards {
		grid-template-columns: 1fr;
	}

	.slider-btn {
		width: 50px;
		height: 50px;
		font-size: 1.2rem;
	}

	.country-cards-slider {
		padding: 0 20px;
	}

	.premium-cards-grid {
		grid-template-columns: 1fr;
	}
}

/* Hareket Azaltma Erişilebilirliği */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}