:root {
	--bg: #050816;
	--bg-elevated: #0b1020;
	--primary: #6366f1;
	--primary-soft: rgba(99, 102, 241, 0.18);
	--accent: #22d3ee;
	--accent-soft: rgba(34, 211, 238, 0.12);
	--text: #f9fafb;
	--muted: #9ca3af;
	--border-subtle: rgba(148, 163, 184, 0.25);
	--radius-xl: 24px;
	--radius-full: 999px;
	--shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.85);
	--shadow-subtle: 0 10px 35px rgba(15, 23, 42, 0.55);
	--blur-strong: blur(26px);
	--transition-fast: 180ms ease-out;
	--transition-med: 220ms ease-out;
	--container-width: 1120px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
		"Segoe UI", sans-serif;
	background:
		radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.06), transparent 50%),
		radial-gradient(circle at 100% 0, rgba(129, 140, 248, 0.12), transparent 55%),
		radial-gradient(circle at 50% 100%, rgba(15, 23, 42, 0.95), #020617);
	color: var(--text);
	min-height: 100vh;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

.container {
	width: 100%;
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 1.5rem;
}

/* HEADER & NAV */

header {
	position: sticky;
	top: 0;
	z-index: 50;
	backdrop-filter: blur(18px);
	background: linear-gradient(to bottom,
			rgba(15, 23, 42, 0.92),
			rgba(15, 23, 42, 0.74),
			transparent);
	border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1rem 1rem 1rem;
	gap: 1.5rem;
}

.nav-left {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.logo-orb {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background:
		conic-gradient(from 210deg,
			#22d3ee,
			#6366f1,
			#a855f7,
			#22c55e,
			#22d3ee);
	box-shadow:
		0 0 0 1px rgba(148, 163, 184, 0.4),
		0 12px 30px rgba(37, 99, 235, 0.7);
	position: relative;
	overflow: hidden;
}

.logo-orb::after {
	content: "";
	position: absolute;
	inset: 3px;
	border-radius: inherit;
	background: radial-gradient(circle at 30% 0, #f9fafb, transparent 60%);
	mix-blend-mode: screen;
	opacity: 0.95;
}

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

.brand-name {
	font-size: 1.1rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.brand-tagline {
	font-size: 0.75rem;
	color: var(--muted);
}

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

.nav-links a {
	color: var(--muted);
	text-decoration: none;
	position: relative;
	padding: 0.35rem 0;
	transition: color var(--transition-fast);
}

.nav-links a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0%;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(to right, var(--accent), var(--primary));
	transition: width var(--transition-med);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
	width: 100%;
}

.nav-cta {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.pill {
	padding: 0.4rem 0.85rem;
	border-radius: var(--radius-full);
	font-size: 0.75rem;
	border: 1px solid rgba(148, 163, 184, 0.5);
	color: var(--muted);
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

.pill-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #22c55e;
	box-shadow: 0 0 12px rgba(34, 197, 94, 0.9);
}

.btn-primary,
.btn-ghost {
	border-radius: var(--radius-full);
	font-size: 0.9rem;
	padding: 0.55rem 1.3rem;
	border: 1px solid transparent;
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	cursor: pointer;
	transition: transform var(--transition-fast),
		box-shadow var(--transition-med),
		border-color var(--transition-med),
		background var(--transition-med),
		color var(--transition-med);
	white-space: nowrap;
}

.btn-primary {
	background: radial-gradient(circle at 0 0, var(--accent), transparent 45%),
		linear-gradient(135deg, var(--primary), #8b5cf6);
	color: #0b1020;
	box-shadow: 0 18px 45px rgba(79, 70, 229, 0.65);
	font-weight: 600;
}

.btn-primary:hover {
	transform: translateY(-1px) translateZ(0);
	box-shadow: 0 20px 50px rgba(79, 70, 229, 0.8);
}

.btn-primary:active {
	transform: translateY(0);
	box-shadow: 0 12px 30px rgba(79, 70, 229, 0.7);
}

.btn-ghost {
	border-color: rgba(148, 163, 184, 0.5);
	color: var(--muted);
	background: rgba(15, 23, 42, 0.6);
}

.btn-ghost:hover {
	color: var(--text);
	border-color: rgba(148, 163, 184, 0.9);
	box-shadow: var(--shadow-subtle);
	background: rgba(15, 23, 42, 0.9);
}

.nav-toggle {
	display: none;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	border: 1px solid rgba(148, 163, 184, 0.55);
	background: radial-gradient(circle at 0 0, rgba(129, 140, 248, 0.6), transparent 70%);
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
}

.nav-toggle-bar {
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: #e5e7eb;
	position: relative;
	transition: transform 180ms ease, background 180ms ease;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
	content: "";
	position: absolute;
	left: 0;
	width: 18px;
	height: 2px;
	border-radius: inherit;
	background: inherit;
	transition: transform 180ms ease, opacity 150ms ease;
}

.nav-toggle-bar::before {
	top: -6px;
}

.nav-toggle-bar::after {
	top: 6px;
}

.nav-toggle.open .nav-toggle-bar {
	transform: rotate(45deg);
}

.nav-toggle.open .nav-toggle-bar::before {
	transform: rotate(-90deg) translateX(-6px);
}

.nav-toggle.open .nav-toggle-bar::after {
	opacity: 0;
}

/* HERO */

.hero {
	padding: 4.5rem 0 4rem;
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 3fr) minmax(0, 2.8fr);
	gap: 3rem;
	align-items: center;
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.25rem 0.8rem;
	border-radius: var(--radius-full);
	border: 1px solid rgba(148, 163, 184, 0.55);
	background: radial-gradient(circle at 0 100%,
			rgba(56, 189, 248, 0.14),
			transparent 60%);
	color: var(--muted);
	font-size: 0.8rem;
	margin-bottom: 1.1rem;
}

.hero-eyebrow-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 12px rgba(34, 211, 238, 0.9);
}

.hero-title {
	font-size: clamp(2.6rem, 4vw, 3.2rem);
	font-weight: 700;
	letter-spacing: 0.03em;
	margin-bottom: 1rem;
}

.hero-title span {
	background: linear-gradient(120deg, #38bdf8, #a855f7, #f97316);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
}

.hero-subtitle {
	font-size: 1rem;
	color: var(--muted);
	max-width: 32rem;
	margin-bottom: 1.6rem;
}

.hero-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-bottom: 1.8rem;
}

.hero-badge {
	font-size: 0.75rem;
	padding: 0.35rem 0.85rem;
	border-radius: var(--radius-full);
	border: 1px solid rgba(148, 163, 184, 0.4);
	background: radial-gradient(circle at 0 0, rgba(129, 140, 248, 0.45), transparent 60%);
	color: #e5e7eb;
}

.hero-badge.secondary {
	background: radial-gradient(circle at 0 0, rgba(34, 211, 238, 0.35), transparent 60%);
}

.hero-cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 2rem;
}

.hero-metrics {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
	font-size: 0.8rem;
	color: var(--muted);
}

.hero-metric strong {
	display: block;
	font-size: 1.2rem;
	color: var(--text);
}

.hero-visual {
	position: relative;
	padding-bottom: 70px; /* floating card için yer aç */
	overflow: visible;
}

.hero-glass {
	position: relative;
	border-radius: var(--radius-xl);
	background: radial-gradient(circle at 0 0,
			rgba(34, 211, 238, 0.18),
			transparent 60%),
		radial-gradient(circle at 100% 0,
			rgba(129, 140, 248, 0.4),
			transparent 65%),
		rgba(15, 23, 42, 0.95);
	border: 1px solid rgba(148, 163, 184, 0.4);
	padding: 1.4rem;
	box-shadow: var(--shadow-soft);
	overflow: hidden;
}

.hero-glow {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 10% 0, rgba(56, 189, 248, 0.32), transparent 60%),
		radial-gradient(circle at 80% 0, rgba(129, 140, 248, 0.42), transparent 65%);
	filter: var(--blur-strong);
	opacity: 0.9;
	mix-blend-mode: screen;
	pointer-events: none;
}

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

.hero-glass-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.9rem;
}

.hero-glass-company {
	font-size: 0.8rem;
	color: var(--muted);
}

.hero-status-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.25rem 0.7rem;
	border-radius: var(--radius-full);
	border: 1px solid rgba(22, 163, 74, 0.75);
	background: rgba(22, 163, 74, 0.16);
	font-size: 0.75rem;
	color: #bbf7d0;
}

.hero-status-dot {
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: #22c55e;
	box-shadow: 0 0 14px rgba(22, 163, 74, 0.9);
}

.hero-chart {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.55rem;
	margin: 1rem 0 1.2rem;
	align-items: end;
	height: 120px;
}

.hero-bar {
	border-radius: 999px 999px 4px 4px;
	background: linear-gradient(180deg, rgba(56, 189, 248, 1), rgba(56, 189, 248, 0.1));
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(56, 189, 248, 0.4);
}

.hero-bar:nth-child(2) {
	height: 80%;
	background: linear-gradient(180deg, rgba(129, 140, 248, 1), rgba(129, 140, 248, 0.1));
	box-shadow: 0 10px 30px rgba(129, 140, 248, 0.45);
}

.hero-bar:nth-child(3) {
	height: 55%;
	background: linear-gradient(180deg, rgba(236, 72, 153, 1), rgba(236, 72, 153, 0.1));
	box-shadow: 0 10px 30px rgba(236, 72, 153, 0.45);
}

.hero-bar:nth-child(4) {
	height: 100%;
	background: linear-gradient(180deg, rgba(52, 211, 153, 1), rgba(52, 211, 153, 0.1));
	box-shadow: 0 10px 30px rgba(52, 211, 153, 0.45);
}

.hero-badge-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	font-size: 0.75rem;
}

.hero-badge-chip {
	padding: 0.25rem 0.6rem;
	border-radius: var(--radius-full);
	border: 1px solid rgba(148, 163, 184, 0.35);
	background: rgba(15, 23, 42, 0.8);
	color: var(--muted);
}

.hero-floating-card {
	position: absolute;
	right: -10px;
	bottom: -18px;
	transform: translateY(-8%);
	border-radius: 18px;
	border: 1px solid rgba(148, 163, 184, 0.45);
	background:
		radial-gradient(circle at 0 0, rgba(34, 211, 238, 0.3), transparent 60%),
		rgba(15, 23, 42, 0.98);
	padding: 0.7rem 0.9rem;
	min-width: 180px;
	box-shadow: var(--shadow-soft);
	font-size: 0.78rem;
}

.floating-label {
	color: var(--muted);
	margin-bottom: 0.25rem;
}

.floating-value {
	font-size: 1.1rem;
	font-weight: 600;
}

.floating-pill-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	margin-top: 0.35rem;
}

.floating-pill {
	padding: 0.12rem 0.45rem;
	border-radius: var(--radius-full);
	border: 1px solid rgba(148, 163, 184, 0.5);
	color: var(--muted);
}

/* SECTIONS */

section {
	padding: 3.5rem 0;
}

.section-header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.section-eyebrow {
	font-size: 0.8rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--accent);
}

.section-title {
	font-size: 1.6rem;
	font-weight: 600;
	margin-top: 0.35rem;
}

.section-description {
	font-size: 0.9rem;
	color: var(--muted);
	max-width: 28rem;
}

/* ABOUT */

.about-grid {
	display: grid;
	grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
	gap: 2.5rem;
}

.card {
	border-radius: var(--radius-xl);
	background: radial-gradient(circle at 0 0, rgba(129, 140, 248, 0.12), transparent 60%),
		rgba(15, 23, 42, 0.95);
	border: 1px solid rgba(148, 163, 184, 0.45);
	padding: 1.5rem 1.6rem;
	box-shadow: var(--shadow-subtle);
}

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

.card p {
	font-size: 0.9rem;
	color: var(--muted);
	margin-bottom: 0.7rem;
}

.card-list {
	list-style: none;
	margin-top: 0.5rem;
	font-size: 0.9rem;
	color: var(--muted);
}

.card-list li {
	position: relative;
	padding-left: 1.1rem;
	margin-bottom: 0.3rem;
}

.card-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55rem;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent), var(--primary));
	box-shadow: 0 0 14px rgba(37, 99, 235, 0.8);
}

.about-highlights {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.9rem;
	margin-top: 1rem;
}

.about-highlight {
	border-radius: 18px;
	padding: 0.75rem 0.9rem;
	background: radial-gradient(circle at 0 0,
			rgba(56, 189, 248, 0.23),
			transparent 55%),
		rgba(15, 23, 42, 0.95);
	border: 1px solid rgba(148, 163, 184, 0.5);
	font-size: 0.8rem;
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.about-highlight span:first-child {
	font-size: 0.85rem;
	color: var(--muted);
}

.about-highlight strong {
	font-size: 1.05rem;
}

/* TEAM */

.team-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.4rem;
}

.team-card {
	border-radius: 20px;
	background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.16), transparent 65%),
		rgba(15, 23, 42, 0.95);
	border: 1px solid rgba(148, 163, 184, 0.45);
	padding: 1.2rem 1.2rem 1.1rem;
	box-shadow: var(--shadow-subtle);
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	transition: transform var(--transition-fast), box-shadow var(--transition-med),
		border-color var(--transition-med);
	cursor: default;
}

.team-card:hover {
	transform: translateY(-4px) translateZ(0);
	border-color: rgba(129, 140, 248, 0.9);
	box-shadow: 0 22px 55px rgba(15, 23, 42, 0.9);
}

.team-avatar {
	width: 52px;
	height: 52px;
	border-radius: 999px;
	background: radial-gradient(circle at 30% 0, #e5e7eb, transparent 60%),
		linear-gradient(135deg, #6366f1, #22d3ee);
	border: 2px solid rgba(15, 23, 42, 0.9);
	box-shadow: 0 10px 25px rgba(79, 70, 229, 0.8);
}

.team-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
}

.team-info h3 {
	font-size: 0.98rem;
	margin-bottom: 0.15rem;
}

.team-role {
	font-size: 0.8rem;
	color: var(--accent);
}

.team-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	font-size: 0.75rem;
	color: var(--muted);
}

.team-pill {
	padding: 0.18rem 0.55rem;
	border-radius: var(--radius-full);
	border: 1px solid rgba(148, 163, 184, 0.5);
	background: rgba(15, 23, 42, 0.92);
}

.team-bio {
	font-size: 0.82rem;
	color: var(--muted);
}

.team-photo {
	width: 100%;
	border-radius: 12px;
	margin-bottom: 10px;
}

/* CONTACT */

.contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
	gap: 2.2rem;
}

.contact-card {
	border-radius: var(--radius-xl);
	border: 1px solid rgba(148, 163, 184, 0.5);
	background: radial-gradient(circle at 0 0, rgba(129, 140, 248, 0.2), transparent 60%),
		rgba(15, 23, 42, 0.97);
	padding: 1.6rem 1.6rem 1.4rem;
	box-shadow: var(--shadow-soft);
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 0.6rem;
}

.form-grid-full {
	grid-column: 1 / -1;
}

.field-label {
	font-size: 0.8rem;
	color: var(--muted);
	margin-bottom: 0.2rem;
	display: block;
}

.field-input,
.field-textarea {
	width: 100%;
	border-radius: 14px;
	border: 1px solid rgba(148, 163, 184, 0.7);
	background: rgba(15, 23, 42, 0.9);
	padding: 0.6rem 0.75rem;
	color: var(--text);
	font-size: 0.88rem;
	outline: none;
	transition: border-color var(--transition-med), box-shadow var(--transition-med),
		background var(--transition-med), transform var(--transition-fast);
}

.field-input:focus,
.field-textarea:focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.5);
	background: rgba(15, 23, 42, 0.98);
	transform: translateY(-1px);
}

.field-textarea {
	min-height: 110px;
	resize: vertical;
}

.small-note {
	font-size: 0.75rem;
	color: var(--muted);
	margin-top: 0.4rem;
}

.contact-info-card {
	border-radius: var(--radius-xl);
	border: 1px solid rgba(148, 163, 184, 0.45);
	padding: 1.2rem 1.3rem;
	background: radial-gradient(circle at 0 0, rgba(34, 211, 238, 0.2), transparent 60%),
		rgba(15, 23, 42, 0.95);
	box-shadow: var(--shadow-subtle);
	display: flex;
	flex-direction: column;
	gap: 1rem;
	font-size: 0.9rem;
	color: var(--muted);
}

.info-line {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
}

.info-label {
	font-size: 0.78rem;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--accent);
}

.info-value {
	color: var(--text);
}

.info-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	font-size: 0.78rem;
}

.info-tag {
	padding: 0.2rem 0.7rem;
	border-radius: var(--radius-full);
	border: 1px solid rgba(148, 163, 184, 0.6);
	background: rgba(15, 23, 42, 0.95);
}

/* FOOTER */

footer {
	border-top: 1px solid rgba(148, 163, 184, 0.3);
	padding: 1.8rem 0 2.2rem;
	margin-top: 1rem;
	font-size: 0.78rem;
	color: var(--muted);
}

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

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

.footer-links a {
	color: var(--muted);
	text-decoration: none;
}

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

/* RESPONSIVE */

@media (max-width: 960px) {
	.hero-grid {
		grid-template-columns: minmax(0, 1.3fr);
	}

	.hero-visual {
		order: -1;
	}

	.hero {
		padding-top: 3.4rem;
	}

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

	.about-grid,
	.contact-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.hero-floating-card {
		position: static;
		margin-top: 0.7rem;
		transform: none;
	}

	.hero-glass {
		padding-bottom: 1.1rem;
	}
}

@media (max-width: 840px) {
	.nav-links {
		position: fixed;
		inset: 56px 1.5rem auto;
		border-radius: 18px;
		padding: 0.9rem 1rem;
		background: rgba(15, 23, 42, 0.98);
		border: 1px solid rgba(148, 163, 184, 0.6);
		box-shadow: var(--shadow-soft);
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
		transform-origin: top center;
		transform: scaleY(0.8);
		opacity: 0;
		pointer-events: none;
		transition: opacity var(--transition-med), transform var(--transition-med);
	}

	.nav-links.open {
		opacity: 1;
		pointer-events: auto;
		transform: scaleY(1);
	}

	.nav-cta {
		display: none;
	}

	.nav-toggle {
		display: inline-flex;
	}
}

@media (max-width: 720px) {
	.team-grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 520px) {
	.hero-cta-row {
		flex-direction: column;
		align-items: stretch;
	}

	.btn-primary,
	.btn-ghost {
		justify-content: center;
		width: 100%;
	}

	.hero-metrics {
		gap: 0.9rem;
	}
}

/* -------------------------
   SUPER RESPONSIVE FIXES
-------------------------- */

/* Ana tipografi ve spacing küçültme */
@media (max-width: 480px) {
    body {
        font-size: 14px;
        line-height: 1.45;
    }

    h1, .hero-title {
        font-size: 2.1rem !important;
    }

    .section-title {
        font-size: 1.35rem;
    }

	.hero-visual {
		display: none;
	}
}

/* Hero grid daha esnek */
@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: 1fr !important;
        text-align: left;
    }
}

/* Hero chart bar yükseklikleri mobilde aşırı görünmesin */
@media (max-width: 680px) {
    .hero-chart {
        height: 80px;
    }
}

/* Hero görselleri taşmaları engelle */
@media (max-width: 680px) {
    .hero-visual,
    .hero-glass {
        width: 100%;
    }
}

/* About 2 kolon → tablet: daha geniş 50-50 */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

/* Team grid iyileştirme */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Contact form iyileştirme */
@media (max-width: 720px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

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

/* Navigation: güvenli alan + tıklama kolaylığı */
@media (max-width: 840px) {
    .nav-links {
        inset: 60px 1rem auto !important;
        padding: 1rem 1.2rem;
        width: calc(100% - 2rem);
    }
}

/* CTA düğmeler tam responsive */
@media (max-width: 520px) {
    .btn-primary,
    .btn-ghost {
        width: 100%;
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
    }
}

/* Footer */
@media (max-width: 520px) {
    .footer-row {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Görseller esnemeli */
img,
.team-photo {
    max-width: 100%;
    height: auto;
}
