/* Sakarya Halı Yıkama — Kurumsal Tema */

:root {
	--blue-50: #eff8ff;
	--blue-100: #dbeafe;
	--blue-200: #bfdbfe;
	--blue-400: #38bdf8;
	--blue-500: #0ea5e9;
	--blue-600: #0284c7;
	--blue-700: #0369a1;
	--blue-800: #075985;
	--blue-900: #0c4a6e;
	--blue-950: #082f49;

	--gradient-primary: linear-gradient(135deg, #0ea5e9 0%, #0284c7 45%, #0369a1 100%);
	--gradient-primary-hover: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 50%, #0284c7 100%);
	--gradient-hero: linear-gradient(145deg, #f0f9ff 0%, #e0f2fe 35%, #f8fafc 70%, #eff6ff 100%);
	--gradient-surface: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	--gradient-card-shine: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.4) 100%);
	--gradient-dark: linear-gradient(160deg, #0c4a6e 0%, #075985 40%, #0369a1 100%);
	--gradient-glow: radial-gradient(ellipse at 50% 0%, rgba(14, 165, 233, 0.25), transparent 70%);
	--surface-a: #f8fcff;
	--surface-b: #f3f9fd;
	--surface-c: #ffffff;
	--card-surface: rgba(255, 255, 255, 0.92);
	--card-border: rgba(14, 165, 233, 0.11);
	--card-shadow: 0 1px 2px rgba(2, 132, 199, 0.05), 0 10px 28px rgba(3, 105, 161, 0.09);

	--color-primary: #0284c7;
	--color-primary-dark: #0369a1;
	--color-primary-light: #e0f2fe;
	--color-accent: #38bdf8;
	--color-navy: #0c4a6e;
	--color-text: #0f172a;
	--color-muted: #64748b;
	--color-border: rgba(14, 165, 233, 0.12);
	--color-bg: #f0f9ff;
	--color-white: #ffffff;

	--font-body: "DM Sans", system-ui, sans-serif;
	--font-heading: "Outfit", system-ui, sans-serif;
	--shadow-sm: 0 2px 8px rgba(2, 132, 199, 0.08);
	--shadow-md: 0 12px 32px rgba(2, 132, 199, 0.14);
	--shadow-lg: 0 24px 56px rgba(3, 105, 161, 0.18);
	--shadow-card: 0 4px 6px rgba(2, 132, 199, 0.06), 0 12px 28px rgba(3, 105, 161, 0.12);
	--shadow-card-hover: 0 8px 16px rgba(2, 132, 199, 0.1), 0 24px 48px rgba(3, 105, 161, 0.2);
	--shadow-inset: inset 0 1px 0 rgba(255, 255, 255, 0.8);
	--radius: 16px;
	--radius-lg: 24px;
	--radius-pill: 999px;
	--header-h: 80px;
	--container: 1180px;
	--transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: clip;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.65;
	color: var(--color-text);
	background: var(--surface-c);
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
}

.site-main {
	overflow-x: clip;
}

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

a {
	color: var(--color-primary);
	text-decoration: none;
	transition: color var(--transition);
}

a:hover {
	color: var(--color-primary-dark);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	font-weight: 700;
	line-height: 1.2;
	color: var(--color-navy);
	margin: 0 0 0.75rem;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1rem; }

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

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 0.95rem;
	border-radius: var(--radius-pill);
	border: none;
	cursor: pointer;
	transition: all var(--transition);
	white-space: nowrap;
	box-shadow: var(--shadow-sm);
}

.btn-primary {
	background: var(--gradient-primary);
	color: var(--color-white);
	box-shadow: 0 4px 14px rgba(2, 132, 199, 0.4);
}

.btn-primary:hover {
	background: var(--gradient-primary-hover);
	color: var(--color-white);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(2, 132, 199, 0.45);
}

.btn-outline {
	background: var(--color-white);
	color: var(--blue-700);
	border: 2px solid var(--blue-200);
	box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
	background: var(--gradient-hero);
	border-color: var(--blue-400);
	color: var(--blue-800);
	transform: translateY(-2px);
}

.btn-white {
	background: var(--color-white);
	color: var(--color-primary);
}

.btn-white:hover {
	background: var(--color-primary-light);
	color: var(--color-primary-dark);
}

.btn-outline-white {
	background: transparent;
	color: var(--color-white);
	border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
	background: rgba(255, 255, 255, 0.15);
	color: var(--color-white);
}

.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 1.75rem; font-size: 1rem; }
.btn-block { width: 100%; }

@media (max-width: 480px) {
	.btn {
		white-space: normal;
		text-align: center;
	}
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(240, 249, 255, 0.92) 100%);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--color-border);
	height: var(--header-h);
	transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
	box-shadow: var(--shadow-md);
	background: rgba(255, 255, 255, 0.98);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--header-h);
	gap: 1.5rem;
}

.site-branding {
	flex-shrink: 1;
	min-width: 0;
	max-width: 100%;
}

.site-branding a,
.custom-logo-link {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--color-navy);
	text-decoration: none;
	min-width: 0;
}

.site-logo-text:hover { color: var(--color-navy); }

.custom-logo-link img,
.custom-logo {
	max-height: 48px;
	width: auto;
	height: auto;
}

.logo-text {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.logo-text strong {
	font-family: var(--font-heading);
	font-size: 1.1rem;
}

.logo-text small {
	font-size: 0.75rem;
	color: var(--color-muted);
	font-weight: 400;
}

.logo-icon { color: var(--color-primary); }

.primary-nav .nav-menu {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	list-style: none;
	margin: 0;
	padding: 0.25rem;
	background: linear-gradient(180deg, #f8fafc 0%, #eff6ff 100%);
	border-radius: var(--radius-pill);
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-inset), var(--shadow-sm);
}

.primary-nav .nav-menu a {
	display: inline-flex;
	align-items: center;
	padding: 0.55rem 1.15rem;
	color: var(--blue-800);
	font-weight: 600;
	font-size: 0.875rem;
	border-radius: var(--radius-pill);
	border: 1px solid transparent;
	transition: all var(--transition);
}

.primary-nav .nav-menu a:hover,
.primary-nav .current-menu-item a {
	color: var(--color-white);
	background: var(--gradient-primary);
	border-color: transparent;
	box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
	transform: translateY(-1px);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-shrink: 0;
}

.header-mobile-controls {
	display: none;
	align-items: center;
	gap: 0.45rem;
	flex-shrink: 0;
}

.header-offer-mobile {
	white-space: nowrap;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 0.85rem;
	text-transform: uppercase;
	border-radius: 10px;
	letter-spacing: 0.02em;
}

.nav-mobile-actions {
	display: none;
}

.header-phone {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	color: var(--blue-800);
	font-weight: 600;
	font-size: 0.875rem;
	border-radius: var(--radius-pill);
	background: var(--color-white);
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-sm);
}

.header-phone:hover {
	color: var(--blue-700);
	border-color: var(--blue-300);
	box-shadow: var(--shadow-md);
}

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--color-border);
	background: var(--gradient-primary);
	border-radius: 12px;
	cursor: pointer;
	box-shadow: var(--shadow-sm);
}

.nav-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--color-white);
	margin: 0 auto;
	transition: var(--transition);
}

/* Hero */
.hero {
	position: relative;
	padding: 4rem 0 2.5rem;
	overflow: visible;
	background: var(--gradient-hero);
}

.hero-bg {
	position: absolute;
	inset: 0;
	background:
		var(--gradient-glow),
		radial-gradient(ellipse 70% 50% at 100% 0%, rgba(56, 189, 248, 0.2), transparent),
		radial-gradient(ellipse 50% 40% at 0% 100%, rgba(2, 132, 199, 0.15), transparent);
	pointer-events: none;
}

.hero-inner {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.hero-visual {
	position: relative;
	z-index: 2;
	min-width: 0;
	width: 100%;
	max-width: 100%;
	overflow: visible;
}

.hero-badge {
	display: inline-block;
	padding: 0.4rem 1.1rem;
	background: var(--gradient-primary);
	border-radius: var(--radius-pill);
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--color-white);
	margin-bottom: 1.25rem;
	box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
}

.hero-lead {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--color-navy);
	max-width: 36rem;
	margin-bottom: 2rem;
	line-height: 1.55;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 2.5rem;
}

.hero-content {
	min-width: 0;
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem 1.75rem;
	list-style: none;
	margin: 0;
	padding: 0;
	max-width: 100%;
}

.hero-stats li {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.15rem;
	min-width: 0;
	font-family: var(--font-base);
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.35;
	color: var(--blue-800);
}

.hero-stats strong,
.hero-stats span {
	display: block;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
}

.hero-image-card {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: visible;
	box-shadow: var(--shadow-lg);
	border: 1px solid rgba(255, 255, 255, 0.6);
}

.hero-image-card__picture {
	position: relative;
	z-index: 0;
	display: block;
	line-height: 0;
	overflow: hidden;
	border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.hero-image-card__picture::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 30%, rgba(8, 47, 73, 0.85) 100%);
	z-index: 1;
	pointer-events: none;
}

.hero-satisfaction-badge {
	position: absolute;
	top: 0.5rem;
	left: -2.25rem;
	z-index: 10;
	width: 10rem;
	max-width: 65%;
	transform: rotate(-30deg);
	transform-origin: top left;
	pointer-events: none;
	line-height: 0;
}

@media (min-width: 769px) and (max-width: 991px) {
	.hero-satisfaction-badge {
		top: 0.75rem;
		left: -4.5rem;
		width: 18rem;
		max-width: 55%;
	}
}

@media (min-width: 992px) {
	.hero-satisfaction-badge {
		top: 1rem;
		left: -8rem;
		width: 40rem;
		max-width: 50%;
	}
}

.hero-satisfaction-badge img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	filter: drop-shadow(0 4px 14px rgba(8, 47, 73, 0.35));
}

.hero-image-card__picture img {
	width: 100%;
	height: auto;
	min-height: 380px;
	object-fit: cover;
	display: block;
}

.hero-image-card__overlay {
	position: absolute;
	inset: auto 0 0 0;
	padding: 1.75rem;
	z-index: 2;
	color: var(--color-white);
	border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.hero-image-card__title {
	color: var(--color-white);
	margin: 0 0 0.75rem;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 1.35rem;
	line-height: 1.25;
}

.hero-image-card__badge {
	display: inline-block;
	padding: 0.3rem 0.85rem;
	margin-bottom: 0.75rem;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	background: var(--gradient-primary);
	border-radius: var(--radius-pill);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-checklist {
	list-style: none;
	margin: 0;
	padding: 0;
}

.hero-checklist li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.45rem;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.92);
}

.hero-checklist li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--blue-400);
	font-weight: 700;
}

/* Sections */
.section {
	padding: 5rem 0;
}

/* Ana sayfa bölüm yüzeyleri — hero ile uyumlu yumuşak geçişler */
.section--surface {
	position: relative;
	overflow: hidden;
}

.section--surface > .container {
	position: relative;
	z-index: 1;
}

.section--surface::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 110% 75% at 50% -35%, rgba(56, 189, 248, 0.1), transparent 58%),
		radial-gradient(ellipse 45% 55% at 0% 100%, rgba(14, 165, 233, 0.05), transparent 72%),
		radial-gradient(ellipse 45% 50% at 100% 15%, rgba(56, 189, 248, 0.04), transparent 70%);
}

.section--surface-a {
	background: linear-gradient(180deg, var(--surface-b) 0%, var(--surface-a) 42%, #eef6fc 100%);
}

.section--surface-b {
	background: linear-gradient(180deg, #eef6fc 0%, var(--surface-a) 45%, var(--surface-b) 100%);
}

.section--surface-c {
	background: linear-gradient(180deg, var(--surface-a) 0%, var(--surface-c) 88%);
}

.hero + .section--surface-a.services.services--tight {
	padding-top: 2.75rem;
	background: linear-gradient(180deg, #f3f9fd 0%, var(--surface-a) 38%, #eef6fc 100%);
}

.section-header {
	max-width: 36rem;
	margin-bottom: 3rem;
}

.section-header--center {
	text-align: center;
	margin-inline: auto;
}

.section-header p {
	color: var(--color-muted);
	font-size: 1.05rem;
}

.section-header h3 {
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
	line-height: 1.25;
	margin: 0 0 0.75rem;
}

.section-header--label-only {
	margin-bottom: 2rem;
}

.services-grid-intro {
	margin-top: 2.5rem;
}

.section-label {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 0.35rem 0.9rem;
	margin-bottom: 0.75rem;
	color: var(--blue-700);
	background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
	border-radius: var(--radius-pill);
	border: 1px solid var(--blue-200);
}

.section-label--light {
	color: var(--blue-100);
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.2);
}

.services__label {
	display: inline-block;
	margin-bottom: 1.25rem;
}

.showcase-card {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 0;
	margin-bottom: 2.5rem;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--card-surface);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: var(--card-shadow);
	border: 1px solid var(--card-border);
}

.showcase-card__media {
	position: relative;
}

.showcase-card__media img {
	width: 100%;
	height: 100%;
	min-height: 320px;
	object-fit: cover;
}

.showcase-card__body {
	padding: 2.5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: transparent;
}

.showcase-card__body h3 {
	font-size: 1.5rem;
	margin-bottom: 0.75rem;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.service-card {
	position: relative;
	background: var(--card-surface);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: var(--radius);
	padding: 1.75rem;
	border: 1px solid var(--card-border);
	box-shadow: var(--card-shadow);
	transition: transform var(--transition), box-shadow var(--transition);
	overflow: hidden;
}

.service-card--linked {
	display: block;
	color: inherit;
	text-decoration: none;
}

.service-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-primary);
	opacity: 0;
	transition: opacity var(--transition);
}

.service-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-card-hover);
}

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

.service-icon {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: var(--gradient-primary);
	margin-bottom: 1.25rem;
	position: relative;
	box-shadow: 0 6px 16px rgba(2, 132, 199, 0.35);
}

.service-icon::after {
	content: "";
	position: absolute;
	inset: 14px;
	background: #ffffff;
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
}

.service-icon--carpet::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M4 20V8l4-2 4 2 4-2 4 2v12H4zm2-2h2v-6H6v6zm4 0h2v-6h-2v6zm4 0h2v-6h-2v6zm4 0h2v-6h-2v6z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M4 20V8l4-2 4 2 4-2 4 2v12H4z'/%3E%3C/svg%3E"); }
.service-icon--sofa::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M20 10V7a2 2 0 00-2-2H6a2 2 0 00-2 2v3H4v8h16v-8h-2zM6 7h12v3H6V7z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M20 10V7H6v3H4v8h16v-8h-2z'/%3E%3C/svg%3E"); }
.service-icon--bed::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M4 18V8h16v10H4zm2-2h12v-4H6v4z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M4 18V8h16v10H4z'/%3E%3C/svg%3E"); }
.service-icon--curtain::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M6 4v16l6-3 6 3V4H6z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M6 4v16l6-3 6 3V4H6z'/%3E%3C/svg%3E"); }
.service-icon--blanket::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Crect x='4' y='7' width='16' height='10' rx='2'/%3E%3Cpath d='M8 10h8M8 13h8'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='4' y='7' width='16' height='10' rx='2'/%3E%3C/svg%3E"); }
.service-icon--rug::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Crect x='4' y='8' width='16' height='10' rx='1'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Crect x='4' y='8' width='16' height='10' rx='1'/%3E%3C/svg%3E"); }
.service-icon--delivery::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M3 17h2v-4H1l2-6h12v4h2l3 4v2h-2a3 3 0 11-6 0H9a3 3 0 11-6 0H3v2zm14-6V7H5.5L4 11h13z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M3 17h2v-4H1l2-6h12v4h2l3 4v2h-2a3 3 0 11-6 0H9a3 3 0 11-6 0H3v2z'/%3E%3C/svg%3E"); }

.service-card h3 { margin-bottom: 0.5rem; }
.service-card p {
	margin: 0;
	font-size: 0.95rem;
	color: var(--color-muted);
}

.service-card__link {
	display: inline-flex;
	margin-top: 0.8rem;
	font-size: 0.86rem;
	font-weight: 600;
	color: var(--color-primary);
}

.service-card__link--sub {
	margin-left: 0.8rem;
	color: var(--blue-700);
}

/* Features */
.features-layout {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 2.5rem;
	align-items: start;
}

.features-media {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.features-media img {
	width: 100%;
	height: auto;
	min-height: 420px;
	object-fit: cover;
	display: block;
}

.features-media__glow {
	position: absolute;
	inset: -20%;
	background: radial-gradient(circle, rgba(56, 189, 248, 0.35), transparent 60%);
	pointer-events: none;
	z-index: 1;
}

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

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

.feature-box {
	background: var(--color-white);
	border-radius: var(--radius);
	padding: 1.5rem;
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-card);
	transition: transform var(--transition), box-shadow var(--transition);
}

.feature-box:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-card-hover);
	border-color: var(--blue-200);
}

.feature-box h3 {
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.feature-box h3 {
	font-size: 1rem;
	margin-bottom: 0.35rem;
}

.feature-box p {
	margin: 0;
	font-size: 0.9rem;
	color: var(--color-muted);
}

/* Process */
.process {
	position: relative;
	color: var(--color-white);
	overflow: hidden;
	padding-top: 5.5rem;
}

.process::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 6.5rem;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(180deg, var(--surface-a) 0%, rgba(248, 252, 255, 0.55) 45%, transparent 100%);
}

.process-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	z-index: 0;
}

.process-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg, rgba(8, 47, 73, 0.92) 0%, rgba(3, 105, 161, 0.88) 50%, rgba(2, 132, 199, 0.85) 100%);
}

.process-inner {
	position: relative;
	z-index: 2;
}

.process .section-label--light,
.process .section-header h2,
.process .section-header h3,
.process h2 {
	color: var(--color-white);
}

.process-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.process-step {
	position: relative;
	padding: 1.75rem 1.5rem;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.06) 100%);
	backdrop-filter: blur(12px);
	border-radius: var(--radius);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
	transition: transform var(--transition), box-shadow var(--transition);
}

.process-step:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.process-num {
	display: block;
	font-family: var(--font-heading);
	font-size: 2rem;
	font-weight: 800;
	background: linear-gradient(135deg, #7dd3fc 0%, #38bdf8 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.75rem;
}

.process-step h3 {
	color: var(--color-white);
	font-size: 1.1rem;
}

.process-step p {
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.9rem;
	margin: 0;
}

/* Halı türü etiketleri */
.carpet-types {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 2rem;
}

.carpet-types__tag {
	display: inline-block;
	padding: 0.4rem 0.9rem;
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--blue-800);
	background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
	border: 1px solid var(--blue-200);
	border-radius: var(--radius-pill);
	text-decoration: none;
	transition: var(--transition);
}

.carpet-types__tag:hover {
	color: var(--color-white);
	background: var(--gradient-primary);
	border-color: transparent;
}

.hero--landing {
	padding-top: 3rem;
}

.page-content--after-hero {
	padding-top: 3rem;
}

/* Teknoloji & hijyen bölümleri */
.tech-showcase {
	background: linear-gradient(180deg, #ffffff 0%, var(--color-bg) 100%);
}

.tech-showcase__intro {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
	margin-bottom: 2.5rem;
}

.tech-showcase__lead {
	font-size: 1.1rem;
	color: var(--color-muted);
	line-height: 1.7;
}

.tech-trust-list {
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
}

.tech-trust-list li {
	position: relative;
	padding-left: 1.6rem;
	margin-bottom: 0.6rem;
	font-weight: 500;
	color: var(--blue-800);
}

.tech-trust-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.45rem;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--gradient-primary);
	box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}

.tech-showcase__visual {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.tech-showcase__visual img {
	width: 100%;
	min-height: 360px;
	object-fit: cover;
	display: block;
}

.tech-showcase__badge {
	position: absolute;
	bottom: 1.25rem;
	left: 1.25rem;
	right: 1.25rem;
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 1rem 1.15rem;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-radius: var(--radius);
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-md);
}

.tech-showcase__badge-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--gradient-primary);
	color: var(--color-white);
	flex-shrink: 0;
}

.tech-showcase__badge strong {
	display: block;
	font-size: 0.95rem;
	color: var(--color-navy);
}

.tech-showcase__badge span {
	font-size: 0.8rem;
	color: var(--color-muted);
}

.tech-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}

.tech-stats__item {
	text-align: center;
	padding: 1.5rem 1rem;
	background: var(--color-white);
	border-radius: var(--radius);
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-card);
}

.tech-stats__item strong {
	display: block;
	font-family: var(--font-heading);
	font-size: 1.75rem;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.35rem;
}

.tech-stats__item span {
	font-size: 0.8rem;
	color: var(--color-muted);
	font-weight: 500;
	line-height: 1.35;
}

.tech-pillars {
	background: var(--color-white);
}

.tech-pillars__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.tech-pillar-card {
	padding: 1.75rem;
	border-radius: var(--radius);
	background: var(--gradient-surface);
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-card);
	transition: transform var(--transition), box-shadow var(--transition);
}

.tech-pillar-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-card-hover);
}

.tech-pillar-card__icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: var(--gradient-primary);
	margin-bottom: 1.15rem;
	box-shadow: 0 6px 16px rgba(2, 132, 199, 0.3);
	position: relative;
}

.tech-pillar-card__icon::after {
	content: "";
	position: absolute;
	inset: 13px;
	background: #fff;
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
}

.tech-pillar-card__icon--machine::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Crect x='2' y='6' width='20' height='12' rx='2'/%3E%3Cpath d='M6 10h4M14 10h4M8 14h8'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='2' y='6' width='20' height='12' rx='2'/%3E%3C/svg%3E"); }
.tech-pillar-card__icon--program::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M4 6h16M4 12h10M4 18h16'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 6h16M4 12h10M4 18h16'/%3E%3C/svg%3E"); }
.tech-pillar-card__icon--dust::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M12 2v4M12 18v4M2 12h4M18 12h4'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E"); }
.tech-pillar-card__icon--stain::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2C8 8 4 10 4 14a8 8 0 1016 0c0-4-4-6-8-12z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8 8 4 10 4 14a8 8 0 1016 0c0-4-4-6-8-12z'/%3E%3C/svg%3E"); }
.tech-pillar-card__icon--dry::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Ccircle cx='12' cy='12' r='5'/%3E%3Cpath d='M12 1v2M12 21v2M4.2 4.2l1.4 1.4M18.4 18.4l1.4 1.4'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='5'/%3E%3C/svg%3E"); }
.tech-pillar-card__icon--eco::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 22c-4-3-8-7-8-11a8 8 0 0116 0c0 4-4 8-8 11z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 22c-4-3-8-7-8-11a8 8 0 0116 0c0 4-4 8-8 11z'/%3E%3C/svg%3E"); }

.tech-pillar-card h3 {
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
}

.tech-pillar-card p {
	margin: 0;
	font-size: 0.92rem;
	color: var(--color-muted);
}

.tech-pipeline {
	background: var(--gradient-dark);
	color: var(--color-white);
}

.tech-pipeline__header {
	text-align: center;
	max-width: 40rem;
	margin: 0 auto 2.5rem;
}

.tech-pipeline__header h2 {
	color: var(--color-white);
}

.tech-pipeline__header p {
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
}

.section-label--on-dark {
	color: var(--blue-100);
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.2);
}

.tech-pipeline__track {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1rem;
	position: relative;
}

.tech-pipeline__track::before {
	content: "";
	position: absolute;
	top: 2rem;
	left: 8%;
	right: 8%;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.6), transparent);
	z-index: 0;
}

.tech-pipeline__step {
	position: relative;
	z-index: 1;
	padding: 1.25rem;
	text-align: center;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius);
	backdrop-filter: blur(8px);
}

.tech-pipeline__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-bottom: 0.75rem;
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: 0.9rem;
	border-radius: 50%;
	background: var(--gradient-primary);
	box-shadow: 0 4px 14px rgba(2, 132, 199, 0.45);
}

.tech-pipeline__step h3 {
	color: var(--color-white);
	font-size: 0.95rem;
	margin-bottom: 0.4rem;
}

.tech-pipeline__step p {
	margin: 0;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.5;
}

.tech-hygiene {
	background: linear-gradient(180deg, var(--color-bg) 0%, #fff 100%);
}

.tech-hygiene__layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.tech-hygiene__media {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.tech-hygiene__media img {
	width: 100%;
	min-height: 380px;
	object-fit: cover;
	display: block;
}

.tech-hygiene__chip {
	position: absolute;
	top: 1.25rem;
	left: 1.25rem;
	padding: 0.45rem 1rem;
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--color-white);
	background: var(--gradient-primary);
	border-radius: var(--radius-pill);
	box-shadow: var(--shadow-md);
}

.hygiene-checklist {
	list-style: none;
	margin: 1.25rem 0 1.75rem;
	padding: 0;
}

.hygiene-checklist li {
	position: relative;
	padding: 0.65rem 0 0.65rem 2rem;
	border-bottom: 1px solid var(--color-border);
	font-size: 0.95rem;
	color: var(--color-text);
}

.hygiene-checklist li:last-child {
	border-bottom: none;
}

.hygiene-checklist li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0.65rem;
	width: 1.35rem;
	height: 1.35rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.7rem;
	font-weight: 800;
	color: var(--color-white);
	background: var(--gradient-primary);
	border-radius: 6px;
}

.tech-assurance {
	padding: 0 0 4rem;
	background: var(--color-bg);
}

.tech-assurance__inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	padding: 1.5rem;
	background: var(--color-white);
	border-radius: var(--radius-lg);
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-card);
}

.tech-assurance__item {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	padding: 0.5rem;
}

.tech-assurance__item svg {
	flex-shrink: 0;
	color: var(--color-primary);
}

.tech-assurance__item strong {
	display: block;
	font-size: 0.9rem;
	color: var(--color-navy);
	margin-bottom: 0.2rem;
}

.tech-assurance__item span {
	font-size: 0.8rem;
	color: var(--color-muted);
	line-height: 1.4;
}

.tech-compact__hero {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 2rem;
	align-items: center;
	margin-bottom: 1.5rem;
}

.tech-compact__lead {
	color: var(--color-muted);
}

.tech-compact__media {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-card);
}

.tech-compact__media img {
	width: 100%;
	min-height: 280px;
	object-fit: cover;
}

.tech-compact__stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.tech-compact__stat {
	background: var(--card-surface);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid var(--card-border);
	border-radius: var(--radius);
	padding: 1rem 0.75rem;
	text-align: center;
	box-shadow: var(--card-shadow);
}

.tech-compact__stat strong {
	display: block;
	font-size: 1.4rem;
	font-family: var(--font-heading);
	color: var(--color-primary);
}

.tech-compact__stat span {
	display: block;
	font-size: 0.78rem;
	color: var(--color-muted);
	line-height: 1.35;
}

.tech-compact__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.tech-compact__card {
	background: var(--card-surface);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid var(--card-border);
	border-radius: var(--radius);
	padding: 1.25rem;
	box-shadow: var(--card-shadow);
}

.tech-compact__card h3 {
	font-size: 1.05rem;
	margin-bottom: 0.75rem;
}

.tech-compact__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.7rem;
}

.tech-compact__list li {
	padding-bottom: 0.6rem;
	border-bottom: 1px dashed var(--color-border);
}

.tech-compact__list li:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

.tech-compact__list strong {
	display: block;
	font-size: 0.9rem;
	color: var(--color-navy);
}

.tech-compact__list span {
	font-size: 0.84rem;
	color: var(--color-muted);
	line-height: 1.45;
}

/* Landing links */
.landing-links {
	background: linear-gradient(180deg, #fff 0%, var(--color-bg) 100%);
}

.landing-links__grid {
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: 1rem;
}

.landing-links__card {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	padding: 1.25rem;
	box-shadow: var(--shadow-card);
}

.landing-links__card h3 {
	font-size: 1rem;
	margin-bottom: 0.75rem;
}

.landing-links__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.45rem;
}

.landing-links__list a {
	display: block;
	padding: 0.45rem 0.65rem;
	border-radius: 8px;
	background: var(--gradient-surface);
	border: 1px solid var(--color-border);
	font-size: 0.88rem;
}

.landing-links__list--cols {
	grid-template-columns: 1fr 1fr;
	gap: 0.5rem;
}

.nap-check__box {
	background: var(--card-surface);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid var(--card-border);
	border-radius: var(--radius);
	padding: 1.25rem;
	box-shadow: var(--card-shadow);
}

.nap-check__list {
	list-style: none;
	margin: 0 0 1rem;
	padding: 0;
	display: grid;
	gap: 0.55rem;
}

.nap-check__list li {
	position: relative;
	padding-left: 1.5rem;
	font-size: 0.92rem;
	color: var(--color-text);
}

.nap-check__list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--color-primary);
	font-weight: 700;
}

.nap-check__note {
	margin: 0;
	font-size: 0.9rem;
	color: var(--color-muted);
}

.areas-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.areas-grid__item {
	padding: 1rem 1.25rem;
	text-align: center;
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--blue-800);
	background: var(--card-surface);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid var(--card-border);
	border-radius: var(--radius);
	box-shadow: var(--card-shadow);
	transition: transform var(--transition), box-shadow var(--transition);
}

.areas-grid__item:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-card-hover);
}

.areas-grid__link {
	display: block;
	color: inherit;
	font-weight: inherit;
}

.areas-note {
	text-align: center;
	margin-top: 1.5rem;
	color: var(--color-muted);
	font-size: 0.95rem;
}

.areas-note a {
	font-weight: 600;
}

/* SSS */
.process + .faq.section--surface {
	padding-top: 4.75rem;
}

.process + .faq.section--surface::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4.5rem;
	pointer-events: none;
	background: linear-gradient(180deg, rgba(7, 89, 133, 0.06) 0%, transparent 100%);
}

.faq-list {
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.faq-item {
	background: var(--card-surface);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid var(--card-border);
	border-radius: var(--radius);
	box-shadow: var(--card-shadow);
	overflow: hidden;
}

.faq-question {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.15rem 1.5rem;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 1rem;
	color: var(--color-navy);
	cursor: pointer;
	list-style: none;
}

.faq-question__text {
	flex: 1;
	min-width: 0;
}

.faq-question::-webkit-details-marker {
	display: none;
}

.faq-question::after {
	content: "+";
	flex-shrink: 0;
	font-size: 1.25rem;
	color: var(--color-primary);
	line-height: 1.2;
}

.faq-item[open] .faq-question::after {
	content: "−";
}

.faq-answer {
	padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
	margin: 0;
	color: var(--color-muted);
	font-size: 0.95rem;
	line-height: 1.65;
}

.process .process-intro {
	color: #ffffff;
	font-weight: 600;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
	max-width: 36rem;
	margin: 0 auto 2rem;
	text-align: center;
}

.contact-lead {
	color: var(--color-muted);
	margin-bottom: 1rem;
}

/* CTA Banner */
.cta-banner {
	padding: 0;
}

.cta-banner-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	background: var(--gradient-primary);
	color: var(--color-white);
	padding: 3rem;
	border-radius: var(--radius-lg);
	margin-block: -2rem;
	box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
	position: relative;
	overflow: hidden;
}

.cta-banner-inner::before {
	content: "";
	position: absolute;
	top: -50%;
	right: -20%;
	width: 60%;
	height: 200%;
	background: radial-gradient(ellipse, rgba(255, 255, 255, 0.15), transparent 70%);
	pointer-events: none;
}

.cta-banner h2 {
	color: var(--color-white);
	margin-bottom: 0.5rem;
}

.cta-banner p {
	margin: 0;
	opacity: 0.9;
}

.cta-banner-actions {
	display: flex;
	gap: 1rem;
	flex-shrink: 0;
}

/* Blog */
.posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.post-card {
	background: var(--gradient-surface);
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-card);
	transition: transform var(--transition), box-shadow var(--transition);
}

.post-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-card-hover);
}

.post-card-image {
	display: block;
	aspect-ratio: 3/2;
	overflow: hidden;
}

.post-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.post-card:hover .post-card-image img {
	transform: scale(1.05);
}

.post-card-body {
	padding: 1.25rem;
}

.post-card-body time {
	font-size: 0.8rem;
	color: var(--color-muted);
}

.post-card-body h3 {
	font-size: 1.1rem;
	margin: 0.35rem 0 0.5rem;
}

.post-card-body h3 a {
	color: var(--color-navy);
}

.read-more {
	font-weight: 600;
	font-size: 0.9rem;
}

.blog-empty {
	color: var(--color-muted);
	text-align: center;
	padding: 2rem;
	background: var(--color-bg);
	border-radius: var(--radius);
}

/* Contact */
.contact-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
}

.contact-list {
	list-style: none;
	margin: 2rem 0 0;
	padding: 0;
}

.contact-list li {
	margin-bottom: 1.25rem;
}

.contact-list strong {
	display: block;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--color-muted);
	margin-bottom: 0.25rem;
}

.contact-image-card {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-card);
	min-height: 300px;
}

.contact-image-card img {
	width: 100%;
	height: 100%;
	min-height: 300px;
	object-fit: cover;
}

.contact-image-card__content {
	position: absolute;
	inset: auto 0 0 0;
	padding: 1.75rem;
	background: linear-gradient(180deg, transparent, rgba(8, 47, 73, 0.9));
	color: var(--color-white);
	text-align: center;
}

.contact-image-card__content p {
	margin-bottom: 1rem;
	color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.site-footer {
	background: var(--gradient-dark);
	color: rgba(255, 255, 255, 0.85);
}

.footer-top {
	padding: 4rem 0 3rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: minmax(0, 2.75fr) minmax(220px, 1fr);
	gap: 2rem 3rem;
	align-items: start;
}

.footer-col h4,
.footer-col__title {
	color: var(--color-white);
	font-size: 1rem;
	font-family: var(--font-heading);
	font-weight: 700;
	margin: 0 0 1rem;
}

.footer-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-col li {
	margin-bottom: 0.5rem;
}

.footer-col a {
	color: rgba(255, 255, 255, 0.75);
}

.footer-col a:hover {
	color: var(--color-white);
}

.footer-brand p,
.footer-brand__text {
	font-size: 0.95rem;
	line-height: 1.65;
	max-width: none;
	margin: 0;
}

.footer-brand__text {
	text-align: left;
}

.footer-logo {
	font-family: var(--font-heading);
	font-size: 1.25rem;
	color: var(--color-white);
	display: block;
	margin-bottom: 1rem;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 1.25rem 0;
}

.footer-bottom p {
	margin: 0;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.6);
	text-align: center;
}

/* WhatsApp float */
.whatsapp-float {
	position: fixed;
	bottom: 1.5rem;
	right: 1.5rem;
	width: 56px;
	height: 56px;
	background: #25d366;
	color: var(--color-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
	z-index: 999;
	transition: transform var(--transition);
}

.whatsapp-float:hover {
	transform: scale(1.08);
	color: var(--color-white);
}

/* Page templates */
.page-header {
	padding: 3rem 0 2rem;
	background: var(--gradient-hero);
	border-bottom: 1px solid var(--color-border);
}

.page-header h1 { margin: 0; }

.page-header--price .page-header__lead {
	max-width: 720px;
	margin: 0.75rem 0 0;
	color: var(--color-muted);
	line-height: 1.7;
}

/* Fiyat listesi */
.price-list {
	background: linear-gradient(180deg, #ffffff 0%, var(--color-bg) 100%);
}

.price-calc {
	background: var(--gradient-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: 2rem;
	margin-bottom: 2.5rem;
	box-shadow: var(--shadow-card);
}

.price-calc__header h2 {
	margin: 0 0 0.35rem;
	font-size: 1.35rem;
}

.price-calc__header p {
	margin: 0 0 1.25rem;
	color: var(--color-muted);
}

.price-calc__form {
	display: grid;
	grid-template-columns: 1fr 180px auto;
	gap: 1rem;
	align-items: end;
}

.price-calc__field label {
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 0.35rem;
	color: var(--blue-800);
}

.price-calc__field select,
.price-calc__field input {
	width: 100%;
	padding: 0.7rem 0.85rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	font: inherit;
	background: var(--color-white);
}

.price-calc__result {
	margin: 1rem 0 0;
	padding: 0.85rem 1rem;
	border-radius: var(--radius);
	background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
	border: 1px solid var(--blue-200);
	color: var(--blue-900);
}

.price-category {
	margin-bottom: 2rem;
}

.price-category__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 0.85rem;
}

.price-category__header h2 {
	margin: 0;
	font-size: 1.25rem;
}

.price-category__unit {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--blue-700);
	background: var(--blue-50);
	border: 1px solid var(--blue-200);
	padding: 0.3rem 0.65rem;
	border-radius: var(--radius-pill);
}

.price-table-wrap {
	overflow-x: auto;
	border-radius: var(--radius);
	border: 1px solid var(--color-border);
	background: var(--color-white);
	box-shadow: var(--shadow-card);
}

.price-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 440px;
}

.price-table th,
.price-table td {
	padding: 0.62rem 0.7rem;
	text-align: left;
	border-bottom: 1px solid var(--color-border);
}

.price-table th:first-child,
.price-table td:first-child {
	width: 52%;
}

.price-table thead th {
	background: var(--gradient-primary);
	color: var(--color-white);
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.price-table tbody tr:hover {
	background: #f8fbff;
}

.price-table__price {
	font-weight: 700;
	color: var(--blue-800);
	white-space: nowrap;
}

.price-table__per {
	font-weight: 500;
	font-size: 0.85rem;
	color: var(--color-muted);
}

.price-notes {
	margin-top: 2.5rem;
	padding: 1.75rem;
	border-radius: var(--radius-lg);
	background: var(--color-white);
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-card);
}

.price-notes h2 {
	margin: 0 0 1rem;
	font-size: 1.2rem;
}

.price-notes__list {
	margin: 0;
	padding-left: 1.2rem;
}

.price-notes__list li {
	margin-bottom: 0.65rem;
	line-height: 1.65;
	color: var(--color-muted);
}

.price-cta {
	background: var(--gradient-primary);
	color: var(--color-white);
}

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

.price-cta h2 {
	margin: 0 0 0.35rem;
	color: var(--color-white);
}

.price-cta p {
	margin: 0;
	opacity: 0.92;
}

.price-cta__actions {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.page-content .content-area,
.single-content {
	max-width: 760px;
}

.content-area h2,
.single-content h2 {
	margin-top: 2rem;
	margin-bottom: 0.75rem;
	font-size: 1.35rem;
}

.content-area h3,
.single-content h3 {
	margin-top: 1.5rem;
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
}

.content-area p,
.single-content p {
	margin-bottom: 1rem;
	line-height: 1.75;
}

.shy-district-links {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.5rem 1.25rem;
}

.shy-district-links a {
	font-weight: 600;
	color: var(--color-primary-dark);
	text-decoration: none;
}

.shy-district-links a:hover {
	color: var(--blue-800);
	text-decoration: underline;
}

@media (max-width: 600px) {
	.shy-district-links {
		grid-template-columns: 1fr;
	}
}

.content-area img,
.single-content img {
	border-radius: var(--radius);
}

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

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Pagination */
.pagination,
.nav-links {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 2rem;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 0.75rem;
	border-radius: 8px;
	background: var(--color-bg);
	color: var(--color-text);
	font-weight: 500;
}

.page-numbers.current {
	background: var(--gradient-primary);
	color: var(--color-white);
	box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
}

/* Tablet: menüyü mobil moda erken al */
@media (max-width: 991px) {
	.site-header {
		overflow: visible;
	}

	.header-inner {
		position: relative;
	}

	.nav-toggle {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		border-radius: 10px;
		flex-shrink: 0;
	}

	.header-mobile-controls {
		display: inline-flex;
	}

	.header-offer-mobile {
		height: 40px;
		padding-inline: 0.8rem;
	}

	.header-actions--desktop {
		display: none;
	}

	.primary-nav {
		position: fixed;
		top: var(--header-h);
		left: 0.875rem;
		right: 0.875rem;
		z-index: 999;
		max-height: min(76dvh, calc(100dvh - var(--header-h) - 1rem));
		overflow-y: auto;
		background: var(--color-white);
		border: 1px solid var(--color-border);
		border-radius: 14px;
		padding: 1rem;
		transform: translateY(-10px);
		opacity: 0;
		visibility: hidden;
		transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
		box-shadow: var(--shadow-md);
	}

	.primary-nav.is-open {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}

	.primary-nav .nav-menu {
		flex-direction: column;
		align-items: stretch;
		border-radius: var(--radius);
		padding: 0.5rem;
		width: 100%;
	}

	.primary-nav .nav-menu a {
		justify-content: center;
		width: 100%;
	}

	.nav-mobile-actions {
		display: flex;
		flex-direction: column;
		gap: 0.75rem;
		margin-top: 1rem;
		padding-top: 1rem;
		border-top: 1px solid var(--color-border);
	}

	.logo-text small {
		display: none;
	}

	.logo-text strong {
		font-size: 0.92rem;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		max-width: 13.25rem;
	}

	.header-inner {
		gap: 0.5rem;
	}

	.site-branding {
		flex: 1;
		min-width: 0;
	}

	.logo-icon svg {
		width: 30px;
		height: 30px;
	}

	.site-header.nav-open {
		box-shadow: var(--shadow-md);
	}
}

/* Responsive */
@media (max-width: 1024px) {
	.hero-inner,
	.features-layout,
	.contact-layout,
	.showcase-card,
	.tech-showcase__intro,
	.tech-hygiene__layout {
		grid-template-columns: 1fr;
	}

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

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

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

	.tech-pipeline__track::before {
		display: none;
	}

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

	.tech-compact__hero,
	.tech-compact__grid,
	.landing-links__grid {
		grid-template-columns: 1fr;
	}

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

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

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

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

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

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

@media (max-width: 768px) {
	:root {
		--header-h: 64px;
	}

	.container {
		padding-inline: 0.875rem;
	}

	.section {
		padding: 3rem 0;
	}

	.price-calc__form {
		grid-template-columns: 1fr;
	}

	.price-calc {
		padding: 1.25rem;
	}

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

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

	.section-header {
		margin-bottom: 2rem;
	}

	.logo-text strong {
		max-width: 12.25rem;
		font-size: 0.95rem;
	}

	.logo-icon svg {
		width: 28px;
		height: 28px;
	}

	.nav-toggle span {
		width: 18px;
	}

	.header-offer-mobile {
		font-size: 0.74rem;
		height: 40px;
		padding: 0 0.62rem;
	}

	.hero {
		padding: 2rem 0 2.5rem;
	}

	.hero-actions {
		flex-direction: column;
		width: 100%;
	}

	.hero-actions .btn {
		width: 100%;
	}

	.hero-stats {
		gap: 0.75rem 0.5rem;
		width: 100%;
	}

	.hero-stats li {
		align-items: center;
		text-align: center;
		font-size: 0.9rem;
	}

	.hero-image-card__picture img {
		min-height: 260px;
	}

	.hero-image-card__overlay {
		padding: 1.25rem;
	}

	.hero-satisfaction-badge {
		top: 0.4rem;
		left: -3.75rem;
		width: 8.5rem;
		max-width: 70%;
	}

	.showcase-card__body {
		padding: 1.5rem;
	}

	.service-card {
		padding: 1.25rem;
	}

	.service-card h3,
	.service-card p {
		text-align: center;
	}

	.service-icon {
		width: 50px;
		height: 50px;
		margin: 0 auto 0.95rem;
	}

	.service-icon::after {
		inset: 12px;
	}

	.showcase-card__media img {
		min-height: 220px;
	}

	.carpet-types__tag {
		font-size: 0.72rem;
		padding: 0.35rem 0.65rem;
	}

	.tech-showcase__intro {
		margin-bottom: 1.5rem;
	}

	.tech-showcase__badge {
		left: 0.75rem;
		right: 0.75rem;
		bottom: 0.75rem;
		padding: 0.85rem;
	}

	.tech-showcase__visual img,
	.tech-hygiene__media img {
		min-height: 240px;
	}

	.tech-hygiene__chip {
		left: 0.75rem;
		right: 0.75rem;
		max-width: calc(100% - 1.5rem);
		font-size: 0.72rem;
	}

	.tech-assurance {
		padding-bottom: 2.5rem;
	}

	.tech-assurance__inner {
		padding: 1rem;
	}

	.cta-banner-inner {
		flex-direction: column;
		text-align: center;
		padding: 1.75rem 1.25rem;
		margin-block: 0;
		border-radius: var(--radius);
	}

	.cta-banner-actions {
		flex-direction: column;
		width: 100%;
	}

	.cta-banner-actions .btn {
		width: 100%;
	}

	.faq-question {
		font-size: 0.92rem;
		padding: 1rem 1.15rem;
	}

	.faq-answer {
		padding: 0 1.15rem 1rem;
	}

	.areas-grid__item {
		font-size: 0.85rem;
		padding: 0.85rem;
	}

	.contact-image-card__content {
		padding: 1.25rem;
	}

	.footer-top {
		padding: 2.5rem 0 2rem;
	}

	.whatsapp-float {
		bottom: 1rem;
		right: 1rem;
		width: 52px;
		height: 52px;
	}

	body.nav-open {
		overflow: hidden;
	}
}

@media (max-width: 480px) {
	.logo-text strong {
		max-width: 11.25rem;
		font-size: 0.9rem;
	}

	.hero-stats {
		grid-template-columns: 1fr;
		gap: 0.65rem;
	}

	.hero-stats li {
		flex-direction: row;
		justify-content: flex-start;
		gap: 0.5rem;
		text-align: left;
	}

	.site-branding a,
	.custom-logo-link {
		gap: 0.45rem;
	}

	.custom-logo-link img,
	.custom-logo {
		max-height: 40px;
	}

	.header-offer-mobile {
		font-size: 0.7rem;
		height: 40px;
		padding: 0 0.56rem;
	}

	.tech-stats__item strong {
		font-size: 1.4rem;
	}

	.section-header p,
	.tech-showcase__lead {
		font-size: 0.95rem;
	}
}

@media (max-width: 768px) {
	.areas-grid,
	.services-grid,
	.features-grid,
	.process-steps,
	.posts-grid,
	.footer-grid,
	.tech-stats,
	.tech-pillars__grid,
	.tech-pipeline__track,
	.tech-assurance__inner,
	.showcase-card {
		grid-template-columns: 1fr;
	}

	.tech-compact__stats {
		grid-template-columns: 1fr;
	}

	.landing-links__list--cols {
		grid-template-columns: 1fr;
	}

	.tech-compact__card {
		padding: 1rem;
	}
}
