/* 2. slider özel arka plan gradyanı */
.hero-slider .carousel-item .hero.hero-gradient-bg {
	background: linear-gradient(120deg, #2b7cff, 60%, #fff 100%) !important;
}
/* Özellik kartı hover gradyan efekti */
.features-list .feature {
	transition: background 0.3s, color 0.3s, box-shadow 0.3s;
	background: linear-gradient(135deg, #F96F12 0%, #ffb86c 100%);
	border-radius: 16px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    color: #fff;
}
.features-list .feature:hover, .features-list .feature:focus {
	background: linear-gradient(135deg, #F96F12 );
	color: #fff;
	box-shadow: 0 4px 16px rgba(249,111,18,0.15);
}

/* Section başlıklarını ortala */
section h2, .features h2, .screenshots h2, .about h2, .faq h2, .contact h2 {
	text-align: center;
	margin-bottom: 24px;
}
/* Topbar ve Dil Seçici */
.topbar {
	background: #fff;
	border-bottom: 1px solid #e3eaf6;
	padding: 0;
	position: sticky;
	top: 0;
	z-index: 100;
}
.topbar-inner {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	height: 44px;
}
.lang-switcher {
	display: flex;
	gap: 10px;
}
.lang-icon {
	width: 28px;
	height: 20px;
	border-radius: 4px;
	cursor: pointer;
	border: 2px solid transparent;
	transition: border 0.2s, box-shadow 0.2s;
	box-shadow: 0 1px 4px rgba(43,124,255,0.07);
}
.lang-icon:focus {
	outline: 2px solid var(--primary);
}
.lang-icon.active-lang {
	border: 2px solid var(--primary);
	box-shadow: 0 2px 8px rgba(43,124,255,0.13);
}
@media (max-width: 600px) {
	.topbar-inner {
		height: 36px;
	}
	.lang-icon {
	   width: 1.25rem;
        height: 1.25rem;
	}
}
/* Temel Reset ve Değişkenler */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
:root {
	--primary: #2b7cff;
	--secondary: #f5f7fa;
	--text: #222;
	--accent: #ffb300;
	--radius: 12px;
}
body {
	font-family: 'Segoe UI', Arial, sans-serif;
	background: var(--secondary);
	color: var(--text);
	line-height: 1.6;
}
.container {
	width: 90%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 32px 0;
}
/* Hero Section */
.hero {
	background: linear-gradient(135deg, #F96F12 0%, #ffb86c 100%);
	color: #fff;
	text-align: center;
	padding: 48px 0 32px 0;
}
.hero .logo {
width: 22rem;
}

.hero .slogan {
	font-size: 1.2rem;
	margin-bottom: 18px;
}
.download-buttons {
	margin-bottom: 18px;
}
.download-buttons img {
	height: 48px;
	object-fit: contain;
	margin: 0 8px;
	transition: transform 0.2s;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 1px 6px rgba(43,124,255,0.04);
}
.download-buttons img:hover {
	transform: scale(1.05);
	box-shadow: 0 2px 12px rgba(43,124,255,0.10);
}
@media (max-width: 600px) {
	.download-buttons img {
	
		height: 38px;
	}
}
.hero-screenshot {
	width: 220px;
	margin-top: 18px;
	border-radius: var(--radius);
	box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
/* Features */
.features {
	background: #fff;
	border-radius: var(--radius);
	margin: 32px 0;
	box-shadow: 0 2px 12px rgba(43,124,255,0.04);
}
.features-list {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	justify-content: center;
	margin-top: 24px;
}
.feature {
	flex: 1 1 180px;
	min-width: 180px;
	max-width: 240px;
	background: var(--secondary);
	border-radius: var(--radius);
	padding: 18px 12px;
	text-align: center;
	box-shadow: 0 1px 6px rgba(43,124,255,0.03);
}
.feature img {
	width: 48px;
	margin-bottom: 10px;
}
.feature h3 {
	font-size: 1.1rem;
	margin-bottom: 6px;
}
.feature p {
	font-size: 0.98rem;
}
/* Screenshots */
/* Slider'da en fazla 5 görsel yanyana */
.screenshots-slider {
	display: flex;
	gap: 18px;
	overflow-x: auto;
	padding: 12px 0;
	margin-top: 18px;
	scroll-snap-type: x mandatory;
}
.screenshots-slider .screenshot-img {
	flex: 0 0 auto;
	width: 180px;
	max-width: 19vw;
	border-radius: var(--radius);
	box-shadow: 0 2px 12px rgba(43,124,255,0.07);
	background: #fff;
	scroll-snap-align: start;
}
@media (max-width: 900px) {
	.screenshots-slider .screenshot-img {
		width: 120px;
		max-width: 32vw;
	}
}
@media (max-width: 600px) {
	.screenshots-slider .screenshot-img {
		width: 90px;
		max-width: 48vw;
	}
}
/* About */
.about {
	margin: 32px 0;
	background: #fff;
	border-radius: var(--radius);
	box-shadow: 0 2px 12px rgba(43,124,255,0.04);
	padding-bottom: 12px;
}
.about h2 {
	margin-bottom: 10px;
}
.about p {
	font-size: 1.05rem;
}
/* FAQ */
.faq {
	margin: 32px 0;
}
.faq-list {
	margin-top: 18px;
}
.faq-item {
	background: #fff;
	border-radius: var(--radius);
	margin-bottom: 12px;
	padding: 14px 18px;
	box-shadow: 0 1px 6px rgba(43,124,255,0.03);
}
.faq-item h3 {
	font-size: 1.05rem;
	margin-bottom: 4px;
}
.faq-item p {
	font-size: 0.98rem;
}
/* Contact */
.contact {
	margin: 32px 0;
	background: #fff;
	border-radius: var(--radius);
	box-shadow: 0 2px 12px rgba(43,124,255,0.04);
	padding-bottom: 12px;
}
.contact h2 {
	margin-bottom: 10px;
}
.social-links {
	margin: 12px 0 18px 0;
}
.social-links img {
	width: 36px;
	margin: 0 8px;
	vertical-align: middle;
}
.contact-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-width: 340px;
	margin: 0 auto;
}
.contact-form input,
.contact-form textarea {
	padding: 10px;
	border: 1px solid #dbeafe;
	border-radius: var(--radius);
	font-size: 1rem;
	resize: none;
}
.contact-form button {
	background: var(--primary);
	color: #fff;
	border: none;
	border-radius: var(--radius);
	padding: 10px;
	font-size: 1rem;
	cursor: pointer;
	transition: background 0.2s;
}
.contact-form button:hover {
	background: var(--accent);
	color: #222;
}
/* Footer */
.footer {
	background: #e3eaf6;
	color: #222;
	text-align: center;
	padding: 18px 0 10px 0;
	font-size: 0.98rem;
	border-radius: var(--radius) var(--radius) 0 0;
}
.footer-link {
	color: var(--primary);
	text-decoration: none;
	margin: 0 4px;
}
.footer-link:hover {
	text-decoration: underline;
}
/* Responsive Tasarım */
@media (max-width: 900px) {
	.features-list {
		flex-direction: column;
		align-items: center;
	}
	.screenshots-slider img {
		width: 140px;
	}
}
@media (max-width: 600px) {
	.container {
		width: 98%;
		padding: 18px 0;
	}
	.hero h1 {
		font-size: 1.6rem;
	}
	.hero-screenshot {
		width: 120px;
	}
	.features-list {
		gap: 12px;
	}
	.feature {
		min-width: 120px;
		max-width: 100%;
		padding: 10px 4px;
	}
	.screenshots-slider img {
		width: 90px;
	}
	.contact-form {
		max-width: 98vw;
	}
}
