:root {
	color-scheme: light;
	--bg: #fdfcf9;
	--ink: #0f110f;
	--muted: #6e6c67;
	--line: rgba(15, 17, 15, 0.08);
	--card: #ffffff;
	--accent: #ff4136;
	--accent-soft: rgba(255, 65, 54, 0.08);
	--secondary-font: 'Space Grotesk', sans-serif;
}
/* güncelle artık amına koyduğumun cloudflare'i */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Poppins', sans-serif;
	background: var(--bg);
	color: var(--ink);
	line-height: 1.6;
	min-height: 100vh;
	padding: 2.5rem clamp(1.5rem, 5vw, 4rem);
	position: relative;
}
html {
	scroll-behavior: smooth;
}

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

.grain {
	position: fixed;
	inset: 0;
	z-index: -2;
	background-image: radial-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 0);
	background-size: 3px 3px;
	opacity: 0.4;
}

a {
	color: inherit;
	text-decoration: none;
}

.accent-dot {
	color: var(--accent);
}

.hero {
	max-width: 1100px;
	margin: 0 auto 4rem;
	position: relative;
	overflow: hidden;
}

.hero-art {
	position: absolute;
	width: clamp(220px, 28vw, 380px);
	height: clamp(220px, 28vw, 380px);
	top: 2.5rem;
	right: -4rem;
	pointer-events: none;
	z-index: -1;
}

.hero-blob {
	position: absolute;
	border-radius: 40% 60% 55% 45% / 55% 45% 55% 45%;
	filter: blur(0.5px);
	opacity: 0.9;
	animation: float-slow 12s ease-in-out infinite;
}

.hero-blob-one {
	width: 65%;
	height: 65%;
	background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), transparent 55%),
		linear-gradient(135deg, #ff7569, #ff4136);
	box-shadow: 0 25px 60px rgba(255, 65, 54, 0.35);
}

.hero-blob-two {
	width: 55%;
	height: 55%;
	background: linear-gradient(135deg, rgba(6, 6, 6, 0.95), rgba(30, 30, 30, 0.85));
	left: 25%;
	top: 35%;
	animation-delay: -4s;
	mix-blend-mode: multiply;
}

.hero-grid {
	position: absolute;
	width: 80%;
	height: 80%;
	left: 10%;
	top: 10%;
	border: 1px solid rgba(255, 65, 54, 0.25);
	border-radius: 32px;
	background-image: linear-gradient(rgba(255, 65, 54, 0.18) 1px, transparent 1px),
		linear-gradient(90deg, rgba(15, 17, 15, 0.08) 1px, transparent 1px);
	background-size: 36px 36px;
	transform: rotate(-7deg);
}

.section-art {
	position: absolute;
	width: clamp(200px, 30vw, 360px);
	height: clamp(200px, 30vw, 360px);
	z-index: -1;
	opacity: 0.9;
	pointer-events: none;
}

.section-art .section-blob,
.section-art .section-grid {
	position: absolute;
	border-radius: 40% 60% 55% 45% / 55% 45% 55% 45%;
}

.section-art .section-blob:nth-child(1) {
	width: 70%;
	height: 70%;
	background: radial-gradient(circle at 25% 30%, rgba(255, 255, 255, 0.45), transparent 55%),
		linear-gradient(135deg, #ff7569, #ff4136);
	box-shadow: 0 25px 60px rgba(255, 65, 54, 0.25);
	animation: float-slow 14s ease-in-out infinite;
}

.section-art .section-blob:nth-child(2) {
	width: 55%;
	height: 55%;
	left: 30%;
	top: 35%;
	background: linear-gradient(135deg, rgba(6, 6, 6, 0.95), rgba(30, 30, 30, 0.75));
	mix-blend-mode: multiply;
	animation: float-slow 16s ease-in-out infinite;
	animation-delay: -5s;
}

.section-art .section-grid {
	width: 85%;
	height: 85%;
	left: 7.5%;
	top: 7.5%;
	border: 1px solid rgba(255, 65, 54, 0.18);
	border-radius: 32px;
	background-image: linear-gradient(rgba(255, 65, 54, 0.12) 1px, transparent 1px),
		linear-gradient(90deg, rgba(15, 17, 15, 0.06) 1px, transparent 1px);
	background-size: 32px 32px;
	transform: rotate(-5deg);
}

.section-art--services {
	top: -60px;
	right: -140px;
}

.section-art--approach {
	bottom: -80px;
	left: -160px;
	transform: scale(0.95) rotate(6deg);
}

.section-art--contact {
	top: -40px;
	right: -120px;
	transform: scale(0.85) rotate(-4deg);
}

@keyframes float-slow {
	0% {
		transform: translate3d(0, 0, 0) scale(1);
	}
	50% {
		transform: translate3d(-10px, 15px, 0) scale(1.05);
	}
	100% {
		transform: translate3d(0, 0, 0) scale(1);
	}
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--line);
}

.logo {
	font-weight: 600;
	font-size: 1.25rem;
	letter-spacing: 0.02em;
}

.nav-links {
	display: flex;
	gap: 1.5rem;
	font-size: 0.95rem;
}

.nav-links a:hover,
.cta-link:hover {
	color: var(--accent);
}

.cta-link {
	font-weight: 500;
	border: 1px solid var(--line);
	padding: 0.6rem 1.25rem;
	border-radius: 999px;
}

.hero-body {
	padding: 3rem 0 0;
}

.translation {
	font-style: italic;
	font-size: 1rem;
	color: var(--muted);
	margin-bottom: 1.25rem;
}

.translation span {
	font-weight: 500;
	color: var(--ink);
}

h1 {
	font-size: clamp(2.5rem, 4vw, 3.75rem);
	line-height: 1.1;
	margin-bottom: 1.25rem;
}

.lede {
	font-size: 1.05rem;
	max-width: 640px;
	color: var(--muted);
}

.hero-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin: 2rem 0 1.5rem;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	padding: 0.85rem 1.85rem;
	font-weight: 500;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
	transform: translateY(-2px);
}

.btn.primary {
	background: var(--ink);
	color: #fff;
	box-shadow: 0 10px 30px rgba(15, 17, 15, 0.15);
}

.btn.ghost {
	border: 1px solid var(--line);
	color: var(--ink);
}

.hero-stats {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	gap: 1.5rem;
	font-size: 0.95rem;
	color: var(--muted);
}

.hero-stats li {
	padding-right: 1.5rem;
}

.hero-stats li + li {
	border-left: 1px solid var(--line);
	margin-left: 1.5rem;
	padding-left: 1.5rem;
}

.hero-stats span {
	font-size: 1.5rem;
	font-weight: 500;
	color: var(--ink);
	display: block;
}

main {
	max-width: 1100px;
	margin: 0 auto;
}

.section {
	padding: 3.5rem 0;
	border-bottom: 1px solid var(--line);
	position: relative;
	overflow: hidden;
}

.section-heading {
	max-width: 720px;
	margin-bottom: 2.5rem;
}

.section h2 {
	font-size: clamp(2rem, 3vw, 2.85rem);
	line-height: 1.2;
}

.eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.25em;
	font-size: 0.75rem;
	color: var(--muted);
	margin-bottom: 0.75rem;
}

.card-grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.projects-grid {
	display: grid;
	gap: 1.75rem;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.projects-carousel {
	position: relative;
	border-radius: 42px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	overflow: hidden;
	box-shadow: none;
	background: #050505;
	width: 100%;
	min-height: clamp(280px, 52vw, 540px);
	aspect-ratio: 16 / 9;
}

.projects-carousel::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	background-size: 3px 3px;
	opacity: 0.4;
	pointer-events: none;
}

.carousel-track {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: inherit;
}

.carousel-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.7s ease, transform 1.4s ease;
	transform: scale(1.04);
	pointer-events: none;
	display: block;
}

.carousel-slide.active {
	opacity: 1;
	transform: scale(1);
	pointer-events: auto;
}

.carousel-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.carousel-slide::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(12, 12, 12, 0) 40%, rgba(12, 12, 12, 0.85) 100%);
}

.carousel-caption {
	position: absolute;
	left: clamp(1rem, 4vw, 2.75rem);
	bottom: clamp(1.25rem, 4vw, 2.9rem);
	color: #fff;
	max-width: min(500px, 45%);
	z-index: 2;
}

.carousel-caption h3 {
	font-size: clamp(1.4rem, 3vw, 2.1rem);
	margin-top: 0.35rem;
}

.projects-carousel .project-tag {
	color: rgba(255, 255, 255, 0.82);
}

.carousel-control {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	border: none;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(12px);
	transition: background 0.2s ease, transform 0.2s ease;
	z-index: 3;
}

.carousel-control span {
	font-size: 1.25rem;
	line-height: 1;
}

.carousel-control:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: translateY(-50%) scale(1.05);
}

.carousel-control.prev {
	left: clamp(0.5rem, 2vw, 1.5rem);
}

.carousel-control.next {
	right: clamp(0.5rem, 2vw, 1.5rem);
}

.carousel-indicators {
	position: absolute;
	bottom: clamp(0.75rem, 3vw, 1.75rem);
	right: clamp(0.75rem, 3vw, 2.25rem);
	display: flex;
	gap: 0.4rem;
}

.carousel-indicators .indicator {
	width: 26px;
	height: 4px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.35);
	transition: background 0.2s ease, width 0.2s ease;
	cursor: pointer;
}

.carousel-indicators .indicator.active {
	background: #fff;
	width: 44px;
}

@media (max-width: 720px) {
	.projects-carousel {
		border-radius: 26px;
		min-height: clamp(240px, 60vw, 420px);
	}

	.carousel-caption {
		max-width: 70%;
	}

	.carousel-control {
		width: 40px;
		height: 40px;
	}
}

.project-card {
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
	border: 1px solid var(--line);
	border-radius: 28px;
	padding: 1.25rem;
	background: rgba(255, 255, 255, 0.92);
	text-decoration: none;
	color: inherit;
	box-shadow: 0 18px 45px rgba(15, 17, 15, 0.07);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 28px 60px rgba(15, 17, 15, 0.12);
}

.project-meta h3 {
	font-size: 1.2rem;
	margin-bottom: 0.25rem;
}

.project-meta p {
	color: var(--muted);
	margin-bottom: 0.35rem;
}

.project-tag {
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--muted);
}

.project-link {
	font-weight: 500;
	color: var(--accent);
}

.card {
	background: var(--card);
	border-radius: 24px;
	padding: 1.75rem;
	border: 1px solid var(--line);
	box-shadow: 0 25px 60px rgba(15, 17, 15, 0.06);
	display: flex;
	flex-direction: column;
}

.card-label {
	font-family: var(--secondary-font);
	color: var(--muted);
	margin-bottom: 0.5rem;
}

.card h3 {
	font-size: 1.35rem;
	margin-bottom: 0.6rem;
}

.card-description {
	min-height: clamp(90px, 12vw, 130px);
	margin-bottom: 0.75rem;
}

.card-price {
	font-size: 1.3rem;
	font-weight: 600;
	margin: 0.75rem 0 0.5rem;
}

.card-price span {
	font-size: 0.9rem;
	font-weight: 400;
	color: var(--muted);
	margin-left: 0.35rem;
}

.card ul {
	list-style: none;
	margin-top: 1rem;
	color: var(--muted);
	display: grid;
	gap: 0.4rem;
}

.card-footer {
	margin-top: auto;
	padding-top: 1.25rem;
}

.card .card-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.work-grid {
	display: grid;
	gap: 1rem;
}

.work-grid article {
	border-radius: 24px;
	border: 1px solid var(--line);
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.7);
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.work-tag {
	display: inline-flex;
	align-self: flex-start;
	font-size: 0.75rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 0.3rem 0.85rem;
	border-radius: 999px;
	background: var(--accent-soft);
	color: var(--accent);
}

.approach .steps {
	list-style: none;
	display: grid;
	gap: 1.5rem;
	counter-reset: steps;
}

.approach .steps li {
	border: 1px solid var(--line);
	border-radius: 24px;
	padding: 1.5rem;
	position: relative;
	background: var(--card);
}

.approach .steps li::before {
	counter-increment: steps;
	content: counter(steps, decimal-leading-zero);
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	font-family: var(--secondary-font);
	color: var(--muted);
	font-size: 0.9rem;
}

.approach .steps h3 {
	margin-bottom: 0.5rem;
}

.dual-approach-grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.approach-card {
	border: 1px solid var(--line);
	border-radius: 24px;
	padding: 1.5rem;
	background: var(--card);
	box-shadow: 0 20px 50px rgba(15, 17, 15, 0.05);
	display: flex;
	flex-direction: column;
	gap: 1rem;
	height: 100%;
}

.approach-card > h3 {
	font-size: 1.4rem;
	margin-bottom: 0.5rem;
}

.founder {
	display: grid;
	gap: 2rem;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.founder-card {
	background: #10100f;
	color: #f5f3ee;
	border-radius: 32px;
	padding: 2.5rem;
	box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
}

.founder-card .eyebrow {
	color: rgba(245, 243, 238, 0.7);
}

.signature {
	margin-top: 1.5rem;
	font-family: var(--secondary-font);
	letter-spacing: 0.08em;
}

.founder-notes {
	list-style: none;
	display: grid;
	gap: 1.25rem;
}

.founder-notes li {
	border: 1px solid var(--line);
	border-radius: 24px;
	padding: 1.5rem;
	background: var(--card);
}

.cta {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.cta-panel {
	border-radius: 24px;
	border: 1px solid var(--line);
	padding: 1.75rem;
	background: #fff;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	align-items: center;
	text-align: center;
}

.cta-inline {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	font-size: 1.05rem;
}

.cta-mail {
	font-size: 1.3rem;
	font-weight: 600;
}

.pricing-callout {
	border: 1px solid var(--line);
	border-radius: 24px;
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.85);
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.pricing-list {
	list-style: none;
	display: grid;
	gap: 0.85rem;
}

.pricing-list li {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	font-weight: 500;
}

.pricing-list span {
	font-weight: 600;
}

.pricing-list strong {
	font-size: 1.2rem;
}

.pricing-list small {
	font-size: 0.8rem;
	color: var(--muted);
	margin-left: 0.4rem;
}

.pricing-note {
	font-size: 0.9rem;
	color: var(--muted);
}

.footer {
	max-width: 1100px;
	margin: 3rem auto 0;
	padding: 1.5rem 0 3rem;
	color: var(--muted);
	text-align: center;
}

@media (max-width: 740px) {
	body {
		padding: 1.5rem;
	}

	.nav {
		flex-direction: column;
		align-items: flex-start;
	}

	.nav-links {
		width: 100%;
		justify-content: space-between;
	}

	.hero-stats {
		flex-direction: column;
	}

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

	.cta-panel {
		text-align: center;
	}

	.hero-art {
		display: none;
	}
}
