/* ==========================================================================
   Telefon Tamircisi - Tema Değişkenleri
   ========================================================================== */
:root {
	--bg: #090c12;
	--bg-elevated: #11151e;
	--surface: #161b27;
	--surface-2: #1d2331;
	--border: rgba(255, 255, 255, .08);
	--border-strong: rgba(255, 255, 255, .14);
	--text: #f5f7fb;
	--text-muted: #97a1b8;
	--accent: #ff6a3d;
	--accent-2: #ffb02e;
	--accent-soft: rgba(255, 106, 61, .12);
	--green: #25d366;
	--green-soft: rgba(37, 211, 102, .12);
	--radius-lg: 22px;
	--radius-md: 16px;
	--radius-sm: 10px;
	--container: 1240px;
	--shadow-lg: 0 24px 60px -20px rgba(0, 0, 0, .55);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	background: var(--bg);
	color: var(--text);
	font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

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

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

.tt-container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* Elementor ile kurulan sayfalarda varsayılan başlık alanını gizle */
.elementor-page .page-header { display: none; }

/* ==========================================================================
   Header
   ========================================================================== */
.tt-header {
	position: sticky;
	top: 0;
	z-index: 999;
	background: rgba(9, 12, 18, .8);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--border);
}

.tt-header__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 16px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	position: relative;
}

.tt-logo {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
}

.tt-logo__img { height: 38px; width: auto; display: block; }

.tt-logo--footer .tt-logo__img { height: 40px; }

.tt-nav {
	display: flex;
	align-items: center;
	gap: 32px;
	flex: 1;
	justify-content: flex-end;
}

.tt-nav__list {
	display: flex;
	align-items: center;
	gap: 28px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.tt-nav__list a {
	font-size: .95rem;
	font-weight: 600;
	color: var(--text-muted);
	transition: color .15s ease;
	white-space: nowrap;
}

.tt-nav__list a:hover { color: var(--text); }

.tt-header__cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.tt-nav-toggle {
	display: none;
	align-items: center;
	gap: 10px;
	background: transparent;
	border: 1px solid var(--border-strong);
	border-radius: 10px;
	padding: 9px 14px;
	color: var(--text);
	font-family: inherit;
	font-size: .9rem;
	font-weight: 600;
	cursor: pointer;
}

.tt-nav-toggle__icon { display: flex; flex-direction: column; gap: 4px; width: 18px; }

.tt-nav-toggle__icon span {
	display: block;
	height: 2px;
	width: 100%;
	background: currentColor;
	border-radius: 2px;
	transition: transform .2s ease, opacity .2s ease;
}

.tt-nav-toggle[aria-expanded="true"] .tt-nav-toggle__icon span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.tt-nav-toggle[aria-expanded="true"] .tt-nav-toggle__icon span:nth-child(2) { opacity: 0; }
.tt-nav-toggle[aria-expanded="true"] .tt-nav-toggle__icon span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ==========================================================================
   Butonlar
   ========================================================================== */
.tt-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	font-size: .95rem;
	padding: 12px 22px;
	border-radius: 999px;
	border: 1px solid transparent;
	transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
	white-space: nowrap;
	cursor: pointer;
}

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

.tt-btn--primary {
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	color: #15110b;
	box-shadow: 0 14px 30px -10px rgba(255, 106, 61, .55);
}

.tt-btn--whatsapp {
	background: var(--green);
	color: #06210f;
	box-shadow: 0 14px 30px -10px rgba(37, 211, 102, .5);
}

.tt-btn--ghost {
	background: transparent;
	border-color: var(--border-strong);
	color: var(--text);
}

.tt-btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

.tt-btn--lg { padding: 16px 32px; font-size: 1.05rem; }

.tt-btn--block { width: 100%; justify-content: center; }

/* Elementor Buton widget'ını .tt-btn görünümüne eşitle */
.tt-btn-primary .elementor-button,
.tt-btn-whatsapp .elementor-button,
.tt-btn-ghost .elementor-button {
	font-family: inherit;
	font-weight: 700;
	font-size: 1.05rem;
	padding: 16px 32px;
	border-radius: 999px;
	border: 1px solid transparent;
	transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, color .15s ease;
}

.tt-btn-primary .elementor-button:hover,
.tt-btn-whatsapp .elementor-button:hover,
.tt-btn-ghost .elementor-button:hover { transform: translateY(-1px); }

.tt-btn-primary .elementor-button {
	background: linear-gradient(135deg, var(--accent), var(--accent-2)) !important;
	color: #15110b !important;
	box-shadow: 0 14px 30px -10px rgba(255, 106, 61, .55);
}

.tt-btn-whatsapp .elementor-button {
	background: var(--green) !important;
	color: #06210f !important;
	box-shadow: 0 14px 30px -10px rgba(37, 211, 102, .5);
}

.tt-btn-ghost .elementor-button {
	background: transparent !important;
	border-color: var(--border-strong) !important;
	color: var(--text) !important;
}

.tt-btn-ghost .elementor-button:hover { border-color: var(--accent) !important; color: var(--accent) !important; }

.tt-btn--block .elementor-button-wrapper { width: 100%; }
.tt-btn--block .elementor-button { width: 100%; justify-content: center; }

/* ==========================================================================
   Genel bölüm yapısı
   ========================================================================== */
.tt-section { padding: 96px 0; }
.tt-section--alt { background: var(--bg-elevated); }
.tt-section--tight { padding: 64px 0; }

.tt-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: .8rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--accent);
	background: var(--accent-soft);
	border: 1px solid rgba(255, 106, 61, .25);
	border-radius: 999px;
	padding: 6px 16px;
	margin-bottom: 18px;
}

.tt-section__head { max-width: 680px; margin: 0 0 56px; }
.tt-section__head--center { margin-inline: auto; text-align: center; }

.tt-section__title {
	font-size: clamp(2rem, 4vw, 2.6rem);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -.01em;
	margin: 0 0 14px;
	color: var(--text);
}

.tt-section__title .tt-accent { color: var(--accent); }

.tt-section__subtitle {
	color: var(--text-muted);
	font-size: 1.05rem;
	margin: 0;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.tt-hero {
	position: relative;
	padding: 88px 0 80px;
	overflow: hidden;
	background: var(--bg);
	isolation: isolate;
}

/* Animasyonlu mesh arka plan */
.tt-hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
}

.tt-mesh {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	animation: tt-meshFloat 22s ease-in-out infinite;
}

.tt-mesh-1 { width: 520px; height: 520px; top: -12%; right: -10%; background: radial-gradient(circle, var(--accent), transparent 65%); opacity: .35; }
.tt-mesh-2 { width: 420px; height: 420px; bottom: -15%; left: -5%; background: radial-gradient(circle, var(--accent-2), transparent 70%); opacity: .2; animation-delay: -8s; }
.tt-mesh-3 { width: 360px; height: 360px; top: 40%; left: 30%; background: radial-gradient(circle, var(--green), transparent 70%); opacity: .16; animation-delay: -14s; }

@keyframes tt-meshFloat {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33% { transform: translate(60px, -40px) scale(1.1); }
	66% { transform: translate(-40px, 50px) scale(.95); }
}

.tt-hero-grid-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image:
		linear-gradient(var(--border) 1px, transparent 1px),
		linear-gradient(90deg, var(--border) 1px, transparent 1px);
	background-size: 80px 80px;
	mask-image: radial-gradient(circle at center, black 0%, transparent 70%);
	-webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 70%);
	opacity: .5;
	pointer-events: none;
}

.tt-particles { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }

.tt-particle {
	position: absolute;
	bottom: 0;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 8px var(--accent);
	animation: tt-particleRise linear infinite;
	opacity: 0;
}

@keyframes tt-particleRise {
	0% { opacity: 0; transform: translateY(0) translateX(0); }
	10% { opacity: .6; }
	90% { opacity: .6; }
	100% { opacity: 0; transform: translateY(-560px) translateX(40px); }
}

.tt-hero__grid > .elementor-container {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	gap: 56px;
	align-items: center;
}

.tt-hero__grid > .elementor-container > .elementor-column {
	width: 100% !important;
	max-width: 100% !important;
}

/* Durum etiketi (pill) */
.tt-hero__pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 16px;
	border-radius: 100px;
	border: 1px solid var(--border-strong);
	background: rgba(17, 21, 30, .6);
	backdrop-filter: blur(10px);
	font-size: .8rem;
	font-weight: 600;
	color: var(--text-muted);
	margin-bottom: 22px;
}

.tt-hero__pill-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--green);
	position: relative;
}

.tt-hero__pill-dot::after {
	content: '';
	position: absolute;
	inset: -3px;
	border-radius: 50%;
	background: var(--green);
	animation: tt-ping 2s infinite;
	opacity: .4;
}

@keyframes tt-ping {
	0% { transform: scale(.8); opacity: .5; }
	100% { transform: scale(2.2); opacity: 0; }
}

.tt-hero__title {
	font-size: clamp(2.4rem, 5vw, 3.6rem);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -.02em;
	margin: 0 0 20px;
	color: var(--text);
}

.tt-hero__title .tt-accent {
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 50%, var(--accent) 100%);
	background-size: 200% 100%;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: tt-gradientShift 5s ease-in-out infinite;
}

@keyframes tt-gradientShift {
	0%, 100% { background-position: 0% 0%; }
	50% { background-position: 100% 0%; }
}

.tt-hero__text {
	color: var(--text-muted);
	font-size: 1.1rem;
	max-width: 520px;
	margin: 0 0 32px;
}

.tt-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.tt-hero__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 28px 40px;
}

.tt-stat__value {
	display: block;
	font-size: 1.6rem;
	font-weight: 800;
	letter-spacing: -.01em;
}

.tt-stat__value .tt-accent { color: var(--accent); }

.tt-stat__label { color: var(--text-muted); font-size: .85rem; }

/* ─── Hero telefon görseli ─── */
.tt-hero__visual {
	position: relative;
	height: 560px;
	display: grid;
	place-items: center;
}

.tt-phone-stage {
	position: relative;
	width: 280px;
	height: 100%;
}

.tt-phone {
	position: absolute;
	border-radius: 42px;
	background: linear-gradient(180deg, var(--surface-2) 0%, var(--bg-elevated) 100%);
	border: 1px solid var(--border-strong);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, .08),
		0 40px 80px rgba(0, 0, 0, .55),
		0 0 0 6px rgba(255, 255, 255, .025);
	overflow: hidden;
}

.tt-phone-main {
	inset: 30px 0;
	width: 280px;
	z-index: 3;
	animation: tt-phoneFloat 8s ease-in-out infinite;
}

.tt-phone-back {
	width: 220px;
	height: 460px;
	top: 0;
	left: -100px;
	opacity: .55;
	z-index: 1;
	--tt-rot: rotate(-12deg);
	transform: var(--tt-rot);
	animation: tt-phoneFloat 8s ease-in-out infinite -2s;
}

.tt-phone-back-2 {
	width: 200px;
	height: 420px;
	top: 80px;
	right: -90px;
	opacity: .4;
	z-index: 2;
	--tt-rot: rotate(14deg);
	transform: var(--tt-rot);
	animation: tt-phoneFloat 8s ease-in-out infinite -4s;
}

@keyframes tt-phoneFloat {
	0%, 100% { transform: translateY(0) var(--tt-rot, rotate(0deg)); }
	50% { transform: translateY(-14px) var(--tt-rot, rotate(0deg)); }
}

.tt-phone-screen {
	position: absolute;
	inset: 10px;
	border-radius: 32px;
	background:
		radial-gradient(circle at 50% 30%, rgba(255, 106, 61, .45) 0%, transparent 60%),
		linear-gradient(180deg, var(--bg) 0%, var(--surface-2) 100%);
	overflow: hidden;
}

.tt-phone-notch {
	position: absolute;
	top: 22px;
	left: 50%;
	transform: translateX(-50%);
	width: 28%;
	height: 24px;
	border-radius: 100px;
	background: var(--bg);
	z-index: 4;
}

.tt-phone-time {
	position: absolute;
	top: 64px;
	left: 0;
	right: 0;
	text-align: center;
	font-size: 48px;
	font-weight: 700;
	letter-spacing: -.03em;
	color: var(--text);
}

.tt-phone-date {
	position: absolute;
	top: 122px;
	left: 0;
	right: 0;
	text-align: center;
	font-size: 12px;
	font-weight: 500;
	color: var(--text-muted);
	padding: 0 20px;
}

.tt-phone-logo {
	position: absolute;
	top: 154px;
	left: 0;
	right: 0;
	text-align: center;
}

.tt-phone-logo svg { margin: 0 auto; }

.tt-phone-bar {
	position: absolute;
	bottom: 14px;
	left: 50%;
	transform: translateX(-50%);
	width: 130px;
	height: 5px;
	border-radius: 100px;
	background: rgba(255, 255, 255, .45);
}

/* Yüzen rozetler */
.tt-tool-badge {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 12px;
	background: rgba(17, 21, 30, .85);
	backdrop-filter: blur(12px);
	border: 1px solid var(--border-strong);
	border-radius: var(--radius-md);
	padding: 12px 18px;
	box-shadow: var(--shadow-lg);
	white-space: nowrap;
	z-index: 10;
}

.tt-tool-badge strong { display: block; font-size: 1rem; color: var(--text); }
.tt-tool-badge span { display: block; color: var(--text-muted); font-size: .78rem; }

.tt-tool-badge__icon {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: var(--green-soft);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	flex-shrink: 0;
}

.tt-tb-1 { top: 6%; left: -24px; animation: tt-badgeFloat 7s ease-in-out infinite; }
.tt-tb-2 { top: 42%; right: -28px; animation: tt-badgeFloat 7s ease-in-out infinite -2.3s; }
.tt-tb-3 { bottom: 8%; left: -10px; animation: tt-badgeFloat 7s ease-in-out infinite -4.6s; }

@keyframes tt-badgeFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-12px); }
}

/* ==========================================================================
   Elementor section/column'ları grid veya flex satıra çeviren yardımcılar.
   Elementor'ün satır içi genişlik stillerini ezerek (width:auto!important)
   düzeni tamamen bu sınıflara bırakıyoruz; içerik Elementor'dan düzenlenebilir
   kalır, görünüm bu CSS'ten gelir.
   ========================================================================== */
.tt-grid--2 > .elementor-container,
.tt-grid--3 > .elementor-container,
.tt-grid--4 > .elementor-container {
	display: grid !important;
	gap: 24px;
}

.tt-grid--2 > .elementor-container { grid-template-columns: repeat(2, 1fr); }
.tt-grid--3 > .elementor-container { grid-template-columns: repeat(3, 1fr); }
.tt-grid--4 > .elementor-container { grid-template-columns: repeat(4, 1fr); }

.tt-grid--2 > .elementor-container > .elementor-column,
.tt-grid--3 > .elementor-container > .elementor-column,
.tt-grid--4 > .elementor-container > .elementor-column {
	width: 100% !important;
	max-width: 100% !important;
}

.tt-flex-row > .elementor-container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
}

.tt-flex-row > .elementor-container > .elementor-column {
	width: auto !important;
	max-width: 100% !important;
	flex: 0 0 auto !important;
}

/* ==========================================================================
   Hizmet kartları
   ========================================================================== */
.tt-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: 32px 28px;
	height: 100%;
	transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.tt-card:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 106, 61, .35);
	background: var(--surface-2);
}

.tt-card > .elementor-widget-wrap { height: 100%; display: flex; flex-direction: column; }
.tt-card > .elementor-widget-wrap > .elementor-widget-icon-box { flex: 1; }

.tt-card .tt-service-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: .875rem;
	font-weight: 700;
	color: var(--accent);
	margin-top: 22px;
}

.tt-card .tt-service-link svg { transition: transform .25s ease; }
.tt-card:hover .tt-service-link svg { transform: translateX(4px); }

.tt-card .elementor-icon-box-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: var(--radius-sm);
	background: var(--accent-soft);
	color: var(--accent);
	margin-bottom: 20px;
}

.tt-card .elementor-icon-box-icon i,
.tt-card .elementor-icon-box-icon svg { font-size: 24px; width: 24px; height: 24px; }

.tt-card .elementor-icon-box-title {
	font-size: 1.1rem;
	font-weight: 700;
	margin: 0 0 8px;
	color: var(--text);
}

.tt-card .elementor-icon-box-title a { color: var(--text); }

.tt-card .elementor-icon-box-description {
	color: var(--text-muted);
	font-size: .92rem;
	margin: 0;
}

/* ==========================================================================
   Neden biz
   ========================================================================== */
.tt-why__grid > .elementor-container,
.tt-contact__grid > .elementor-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.tt-why__grid > .elementor-container > .elementor-column,
.tt-contact__grid > .elementor-container > .elementor-column {
	width: 100% !important;
	max-width: 100% !important;
}

.tt-why__list { display: flex; flex-direction: column; gap: 22px; margin-top: 32px; }

.tt-why__item { display: flex; gap: 16px; }

.tt-why__icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--green-soft);
	color: var(--green);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.tt-why__num {
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--accent-soft);
	color: var(--accent);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: .85rem;
	letter-spacing: -.02em;
}

.tt-why__item h3 { margin: 0 0 4px; font-size: 1.05rem; font-weight: 700; color: var(--text); }
.tt-why__item p { margin: 0; color: var(--text-muted); font-size: .92rem; }

.elementor-column.tt-rating-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
}

.elementor-column.tt-rating-card > .elementor-widget-wrap { padding: 32px; }

.tt-rating-card__score {
	display: flex;
	align-items: baseline;
	gap: 12px;
	margin-bottom: 6px;
}

.tt-rating-card__score strong { font-size: 3rem; font-weight: 800; line-height: 1; color: var(--text); }

.tt-rating-card .elementor-star-rating { color: var(--accent-2); }

.tt-rating-card__desc { color: var(--text-muted); font-size: .92rem; margin: 12px 0 24px; }

.elementor-column.tt-why-cta { width: auto !important; max-width: 100% !important; }

.elementor-column.tt-why-cta .elementor-button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 22px;
	border-radius: 100px;
	background: var(--text) !important;
	color: var(--bg) !important;
	font-weight: 700;
	font-size: .92rem;
	border: none !important;
	width: fit-content;
}

.elementor-column.tt-why-cta .elementor-button:hover { transform: translateY(-2px); }
.elementor-column.tt-why-cta .elementor-button-icon { order: -1; }

/* ==========================================================================
   Süreç (4 adım)
   ========================================================================== */
.tt-steps { position: relative; }

.tt-step {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: 30px 26px;
	height: 100%;
	position: relative;
}

.tt-step__num {
	display: block;
	font-size: 3.2rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -.04em;
	color: transparent;
	-webkit-text-stroke: 1.5px var(--accent);
	opacity: .9;
	margin-bottom: 22px;
}

.tt-step .tt-eyebrow { margin-bottom: 10px; font-size: .7rem; padding: 4px 12px; }

.tt-step h3 { margin: 0 0 8px; font-size: 1.05rem; font-weight: 700; color: var(--text); }
.tt-step p { margin: 0; color: var(--text-muted); font-size: .92rem; }

/* ==========================================================================
   Galeri / Önce-Sonra
   ========================================================================== */
.tt-gallery-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	overflow: hidden;
	transition: transform .25s ease, border-color .25s ease;
}

.tt-gallery-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }

.tt-ba-compare {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--bg);
}

.tt-ba-img {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	padding: 24px;
}

.tt-ba-img.after {
	clip-path: inset(0 0 0 50%);
	transition: clip-path .4s ease;
}

.tt-ba-compare:hover .tt-ba-img.after { clip-path: inset(0 0 0 32%); }
.tt-ba-compare:hover .tt-ba-handle { left: 32%; }

.tt-ba-handle {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 3px;
	background: #fff;
	transform: translateX(-50%);
	pointer-events: none;
	z-index: 4;
	box-shadow: 0 0 20px rgba(0, 0, 0, .5);
	transition: left .4s ease;
}

.tt-ba-handle::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 4px 14px rgba(0, 0, 0, .3);
}

.tt-ba-handle::before {
	content: '⟷';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--accent);
	font-size: 18px;
	font-weight: 700;
	z-index: 5;
}

.tt-ba-label {
	position: absolute;
	top: 14px;
	padding: 6px 12px;
	border-radius: 100px;
	background: rgba(0, 0, 0, .7);
	backdrop-filter: blur(8px);
	font-size: .68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: #fff;
	z-index: 3;
}

.tt-ba-label.before { left: 14px; }
.tt-ba-label.after { right: 14px; background: var(--accent); }

.tt-gallery-info { padding: 18px 20px; }
.tt-gallery-info h4 { margin: 0 0 4px; font-size: 1rem; font-weight: 700; color: var(--text); }
.tt-gallery-info p { margin: 0; color: var(--text-muted); font-size: .88rem; }

/* Telefon illüstrasyonu (önce: çatlak / sonra: yenilenmiş) */
.tt-illus-phone {
	position: relative;
	border-radius: 28px;
	background: linear-gradient(180deg, var(--surface-2), var(--bg-elevated));
	border: 1px solid var(--border-strong);
	width: 100%;
	max-width: 150px;
	aspect-ratio: 9 / 19;
	box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
}

.tt-illus-screen {
	position: absolute;
	inset: 6px;
	border-radius: 22px;
	overflow: hidden;
	background: radial-gradient(circle at 30% 20%, rgba(255, 106, 61, .35), transparent 60%), var(--bg);
}

.tt-illus-screen.is-fixed {
	background: radial-gradient(circle at 30% 20%, rgba(255, 106, 61, .6), transparent 60%), var(--bg);
}

.tt-illus-crack {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(45deg, transparent 49%, rgba(255, 255, 255, .4) 49%, rgba(255, 255, 255, .4) 51%, transparent 51%),
		linear-gradient(-30deg, transparent 49.5%, rgba(255, 255, 255, .3) 49.5%, rgba(255, 255, 255, .3) 50.5%, transparent 50.5%),
		linear-gradient(80deg, transparent 49.7%, rgba(255, 255, 255, .25) 49.7%, rgba(255, 255, 255, .25) 50.3%, transparent 50.3%);
	mix-blend-mode: screen;
}

.tt-illus-crack::after {
	content: '';
	position: absolute;
	top: 30%;
	left: 40%;
	width: 60%;
	height: 60%;
	background: radial-gradient(circle, rgba(255, 255, 255, .4), transparent 30%);
}

.tt-illus-check {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--accent);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 800;
	font-size: 18px;
}

/* Pil illüstrasyonu (önce: az / sonra: dolu) */
.tt-illus-battery {
	width: 70px;
	height: 120px;
	border: 3px solid var(--border-strong);
	border-radius: 14px;
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 6px;
}

.tt-illus-battery::before {
	content: '';
	position: absolute;
	top: -9px;
	left: 50%;
	transform: translateX(-50%);
	width: 26px;
	height: 6px;
	background: var(--border-strong);
	border-radius: 3px 3px 0 0;
}

.tt-illus-battery-fill { width: 100%; border-radius: 6px; }
.tt-illus-battery-fill.low { height: 16%; background: #e2503a; }
.tt-illus-battery-fill.full { height: 90%; background: var(--green); }

/* LCD ekran illüstrasyonu (önce: renk lekeli / sonra: saat) */
.tt-illus-screen.is-lcd {
	background: linear-gradient(135deg, #ff00aa 0%, #00ddff 50%, #ffee00 100%);
}

.tt-illus-screen.is-lcd::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, .15) 2px, rgba(0, 0, 0, .15) 4px);
}

.tt-illus-screen.is-lcd::after {
	content: '';
	position: absolute;
	left: 30%;
	top: 20%;
	width: 40%;
	height: 60%;
	background: rgba(0, 0, 0, .4);
}

.tt-illus-time {
	position: absolute;
	top: 28%;
	left: 50%;
	transform: translateX(-50%);
	font-size: 1.4rem;
	font-weight: 800;
	color: #fff;
}

.tt-illus-bar {
	position: absolute;
	bottom: 14px;
	left: 50%;
	transform: translateX(-50%);
	width: 50%;
	height: 3px;
	border-radius: 100px;
	background: rgba(255, 255, 255, .45);
}

/* Arka kapak illüstrasyonu (önce: çizik / sonra: temiz) */
.tt-illus-cover {
	position: relative;
	width: 130px;
	height: 220px;
	border-radius: 24px;
	background: linear-gradient(180deg, var(--surface-2), var(--bg-elevated));
	border: 1px solid var(--border-strong);
	box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
}

.tt-illus-cover::before {
	content: '';
	position: absolute;
	inset: 8px;
	border-radius: 18px;
	background: linear-gradient(135deg, var(--surface-2), var(--border-strong));
}

.tt-illus-cover::after {
	content: '';
	position: absolute;
	top: 14px;
	right: 14px;
	width: 38px;
	height: 38px;
	border-radius: 14px;
	background: var(--bg-elevated);
	border: 1px solid var(--border);
}

.tt-illus-scratch {
	position: absolute;
	height: 2px;
	background: rgba(255, 255, 255, .25);
	border-radius: 2px;
	z-index: 1;
}

.tt-illus-scratch.s1 { top: 30%; left: 20%; width: 60%; transform: rotate(15deg); }
.tt-illus-scratch.s2 { top: 45%; left: 28%; width: 50%; transform: rotate(-25deg); }
.tt-illus-scratch.s3 { top: 60%; left: 15%; width: 65%; height: 1.5px; transform: rotate(40deg); }

/* Şarj kablosu illüstrasyonu (önce: kopuk / sonra: çalışıyor) */
.tt-illus-cable { width: 100%; max-width: 200px; }

/* Su hasarı illüstrasyonu (önce: damlalar / sonra: yeşil onay) */
.tt-illus-screen.is-wet { background: #02030a; }

.tt-illus-drop {
	position: absolute;
	border-radius: 50%;
	filter: blur(2px);
	background: rgba(70, 140, 255, .4);
}

.tt-illus-drop.d1 { top: 20%; left: 25%; width: 50%; height: 8px; }
.tt-illus-drop.d2 { top: 50%; left: 35%; width: 30%; height: 8px; background: rgba(70, 140, 255, .5); }
.tt-illus-drop.d3 { top: 65%; left: 20%; width: 40%; height: 5px; background: rgba(70, 140, 255, .3); }

.tt-illus-check.is-green { background: var(--green); }

/* ==========================================================================
   Marka Desteği - kayan şerit
   ========================================================================== */
.tt-strip {
	position: relative;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	padding: 28px 0;
	background: var(--bg-elevated);
	overflow: hidden;
}

.tt-strip-track {
	display: flex;
	gap: 60px;
	align-items: center;
	width: max-content;
	animation: tt-scrollX 30s linear infinite;
}

@keyframes tt-scrollX {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

.tt-strip-item {
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--text-muted);
	letter-spacing: -.02em;
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 60px;
}

.tt-strip-item::after {
	content: '';
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--text-muted);
	opacity: .5;
}

/* ==========================================================================
   Hakkımızda
   ========================================================================== */
.tt-about__grid > .elementor-container {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	gap: 56px;
	align-items: center;
}

.tt-about__grid > .elementor-container > .elementor-column {
	width: 100% !important;
	max-width: 100% !important;
}

.tt-about-visual {
	position: relative;
	aspect-ratio: 4 / 5;
	border-radius: var(--radius-lg);
	background: linear-gradient(160deg, var(--surface) 0%, var(--bg-elevated) 100%);
	border: 1px solid var(--border);
	overflow: hidden;
	padding: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tt-about-visual::before {
	content: '';
	position: absolute;
	top: -30%;
	right: -30%;
	width: 80%;
	height: 80%;
	background: radial-gradient(circle, var(--accent-soft), transparent 65%);
	pointer-events: none;
}

.tt-workbench {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}

.tt-about-meta {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 36px;
}

.tt-meta-item {
	padding: 22px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
}

.tt-meta-num {
	font-size: 2.1rem;
	font-weight: 800;
	letter-spacing: -.03em;
	color: var(--accent);
	line-height: 1;
	margin-bottom: 8px;
}

.tt-meta-label { font-size: .88rem; color: var(--text-muted); font-weight: 500; }

/* ==========================================================================
   Yorumlar
   ========================================================================== */
.tt-reviews-head > .elementor-container {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
	gap: 24px;
}

.tt-reviews-head > .elementor-container > .elementor-column {
	width: auto !important;
	max-width: 100% !important;
}

.tt-reviews-head .tt-section__head { margin: 0; }

.tt-reviews-google {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 20px;
	border-radius: 16px;
	border: 1px solid var(--border);
	background: var(--surface);
	transition: border-color .25s ease;
	text-decoration: none;
}

.tt-reviews-google:hover { border-color: var(--border-strong); }

.tt-g-logo {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.tt-reviews-google .tt-g-rating { font-size: 1.4rem; font-weight: 800; letter-spacing: -.02em; line-height: 1; color: var(--text); }
.tt-reviews-google .tt-g-sub { font-size: .75rem; color: var(--text-muted); margin-top: 4px; font-weight: 500; }

.tt-review-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: .75rem;
	color: var(--text-muted);
	font-weight: 500;
	margin-top: 14px;
}

.tt-reviews-cta { text-align: center; margin-top: 44px; }

.tt-testimonial {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: 28px;
	height: 100%;
}

.tt-testimonial .elementor-testimonial-meta { margin-top: 18px; }

.tt-testimonial .elementor-star-rating { color: var(--accent-2); margin-bottom: 14px; }

.tt-testimonial .elementor-testimonial-content {
	color: var(--text);
	font-size: .98rem;
	font-style: normal;
	margin: 0;
}

.tt-testimonial .elementor-testimonial-name { color: var(--text); font-weight: 700; }
.tt-testimonial .elementor-testimonial-job { color: var(--text-muted); }

.tt-testimonial .elementor-testimonial-image img {
	border-radius: 999px;
	width: 44px;
	height: 44px;
}

/* ==========================================================================
   Konum / İletişim
   ========================================================================== */
.tt-contact__list { display: flex; flex-direction: column; gap: 18px; margin: 28px 0 32px; }

.tt-contact__row { display: flex; gap: 14px; align-items: flex-start; }

.tt-contact__row .tt-why__icon { background: var(--accent-soft); color: var(--accent); }

.tt-contact__row strong { display: block; font-size: .95rem; }
.tt-contact__row span, .tt-contact__row a { color: var(--text-muted); font-size: .9rem; }

.elementor-column.tt-map {
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--border);
	box-shadow: var(--shadow-lg);
}

.elementor-column.tt-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; filter: grayscale(.3) invert(.92) contrast(.85); }

/* ==========================================================================
   Footer
   ========================================================================== */
.tt-footer { background: var(--bg-elevated); border-top: 1px solid var(--border); padding-top: 72px; }

.tt-footer__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
	gap: 40px;
}

.tt-footer__col--brand .tt-logo { margin-bottom: 16px; }

.tt-footer__desc { color: var(--text-muted); font-size: .9rem; max-width: 340px; margin: 0 0 20px; }

.tt-footer__social { display: flex; gap: 10px; }

.tt-footer__social a {
	width: 38px;
	height: 38px;
	border-radius: 999px;
	border: 1px solid var(--border-strong);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .75rem;
	font-weight: 700;
	color: var(--text-muted);
	transition: color .15s ease, border-color .15s ease;
}

.tt-footer__social a:hover { color: var(--text); border-color: var(--accent); }

.tt-footer__title { font-size: .95rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; margin: 0 0 18px; }

.tt-footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }

.tt-footer__col ul a { color: var(--text-muted); font-size: .92rem; transition: color .15s ease; }
.tt-footer__col ul a:hover { color: var(--text); }

.tt-footer__contact li { display: flex; gap: 10px; align-items: flex-start; color: var(--text-muted); font-size: .9rem; }
.tt-footer__contact li svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.tt-footer__contact li a { color: var(--text-muted); }
.tt-footer__contact li a:hover { color: var(--text); }

.tt-footer__bottom {
	margin-top: 56px;
	border-top: 1px solid var(--border);
	padding: 22px 24px;
	max-width: var(--container);
	margin-inline: auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	color: var(--text-muted);
	font-size: .85rem;
}

.tt-footer__bottom p { margin: 0; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
	.tt-hero__grid > .elementor-container { grid-template-columns: 1fr; }
	.tt-hero__visual { max-width: 480px; height: 460px; margin: 0 auto; }
	.tt-why__grid > .elementor-container,
	.tt-contact__grid > .elementor-container,
	.tt-about__grid > .elementor-container { grid-template-columns: 1fr; }
	.tt-grid--3 > .elementor-container,
	.tt-grid--4 > .elementor-container { grid-template-columns: repeat(2, 1fr); }
	.tt-footer__inner { grid-template-columns: 1fr 1fr; }
	.tt-footer__col--brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
	.tt-nav-toggle { display: flex; }

	.tt-nav {
		position: absolute;
		top: calc(100% + 1px);
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 20px;
		background: var(--bg-elevated);
		border-bottom: 1px solid var(--border);
		padding: 24px;
		display: none;
	}

	.tt-nav.is-acik { display: flex; }

	.tt-nav__list { flex-direction: column; align-items: flex-start; gap: 16px; }

	.tt-header__cta { flex-direction: column; align-items: stretch; }
	.tt-header__cta .tt-btn { justify-content: center; }

	.tt-section { padding: 64px 0; }
	.tt-section__head { margin-bottom: 36px; }

	.tt-hero { padding: 48px 0 56px; }
	.tt-hero__stats { gap: 20px 28px; }
	.tt-hero__visual { height: 380px; }
	.tt-phone-stage { width: 220px; transform: scale(.85); }
	.tt-tb-1, .tt-tb-2, .tt-tb-3 { font-size: .85rem; padding: 10px 14px; }

	.tt-grid--2 > .elementor-container,
	.tt-grid--3 > .elementor-container,
	.tt-grid--4 > .elementor-container { grid-template-columns: 1fr; }

	.tt-reviews-head { text-align: center; }
	.tt-reviews-head .tt-section__head { margin-inline: auto; }
	.tt-reviews-google { margin-inline: auto; }

	.tt-footer__inner { grid-template-columns: 1fr; }

	.tt-footer__bottom { flex-direction: column; text-align: center; }
}
