/**
 * Pikselya teması - ana stil dosyası.
 * Bağımlılıksız, mobil öncelikli CSS.
 */

:root {
	--background: #fbfbfe;
	--foreground: #1c2334;
	--card: #ffffff;
	--primary: #1f4fe0;
	--primary-dark: #163cb0;
	--primary-foreground: #ffffff;
	--secondary: #9ef0c8;
	--muted: #f2f4f9;
	--muted-foreground: #626b7e;
	--border: #dfe3ec;
	--ink: #11162a;
	--blue-soft: #e8eeff;
	--green: #17c390;
	--radius: 6px;
	--container: 1160px;
}

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

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--background);
	color: var(--foreground);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.6;
}

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

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

a:hover {
	text-decoration: underline;
}

h1, h2, h3, h4 {
	line-height: 1.15;
	color: var(--ink);
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--ink);
	color: #fff;
	padding: 10px 16px;
	z-index: 100;
}

.skip-link:focus {
	left: 12px;
	top: 12px;
}

.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;
}

.container,
.site-container {
	width: min(var(--container), calc(100% - 40px));
	margin-inline: auto;
}

/* Butonlar */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 48px;
	padding-inline: 22px;
	border: 1px solid transparent;
	border-radius: var(--radius);
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover {
	text-decoration: none;
}

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

.btn--primary:hover {
	background: #102d86;
	color: #fff;
}

.main-nav .nav-actions .btn--primary,
.main-nav .nav-actions .btn--primary:hover {
	color: var(--primary-foreground);
}

.btn--ghost,
.btn--outline {
	background: transparent;
	border-color: var(--border);
	color: var(--ink);
}

.btn--ghost:hover,
.btn--outline:hover {
	border-color: var(--primary);
	color: var(--primary);
}

.btn--light {
	background: #fff;
	color: var(--ink);
}

.btn--sm {
	height: 42px;
	padding-inline: 18px;
	font-size: 14px;
}

.btn .icon {
	width: 16px;
	height: 16px;
}

.icon {
	width: 18px;
	height: 18px;
	flex: none;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* Üst bar */
.topbar {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(251, 251, 254, 0.94);
	border-bottom: 1px solid var(--border);
	backdrop-filter: blur(16px);
}

.topbar-inner {
	min-height: 76px;
	display: flex;
	align-items: center;
	gap: 24px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 21px;
	font-weight: 800;
	color: var(--ink);
}

.brand:hover {
	text-decoration: none;
}

.brand img {
	max-height: 44px;
	width: auto;
}

.brand-mark {
	width: 29px;
	height: 29px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3px;
	transform: rotate(-7deg);
}

.brand-mark span {
	display: block;
	background: var(--primary);
	border-radius: 2px;
}

.brand-mark span:nth-child(1) {
	grid-row: span 2;
}

.brand-mark span:nth-child(2) {
	background: var(--green);
}

.brand-mark span:nth-child(3) {
	background: var(--ink);
}

.main-nav {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 26px;
}

.main-nav > .main-nav__list {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0;
	padding: 0;
}

.main-nav .menu-item {
	position: relative;
}

.main-nav > .main-nav__list > .menu-item {
	display: flex;
	align-items: center;
	height: 76px;
}

.main-nav > .main-nav__list > .menu-item > a {
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
	padding: 0 11px;
}

.main-nav > .main-nav__list > .menu-item > a::after {
	content: "";
	position: absolute;
	left: 11px;
	right: 11px;
	bottom: 0;
	height: 3px;
	background: var(--primary);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 180ms ease;
}

.main-nav > .main-nav__list > .menu-item:hover > a::after,
.main-nav > .main-nav__list > .current-menu-item > a::after,
.main-nav > .main-nav__list > .current-menu-ancestor > a::after {
	transform: scaleX(1);
}

.main-nav .menu-item-has-children > a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.submenu-toggle {
	display: inline-grid;
	place-items: center;
	width: 32px;
	height: 40px;
	margin-left: -8px;
	padding: 0;
	border: 0;
	border-radius: var(--radius);
	background: transparent;
	color: var(--muted-foreground);
	cursor: pointer;
	transition: background-color 180ms ease, color 180ms ease;
}

.submenu-toggle:hover,
.main-nav .submenu-open > .submenu-toggle {
	background: var(--blue-soft);
	color: var(--primary);
}

.submenu-toggle:focus-visible,
.menu-button:focus-visible,
.main-nav a:focus-visible {
	outline: 3px solid var(--secondary);
	outline-offset: 2px;
}

.submenu-toggle::before {
	content: "";
	width: 7px;
	height: 7px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
	transition: transform 180ms ease;
}

.main-nav .sub-menu {
	position: absolute;
	top: calc(100% - 1px);
	left: 0;
	z-index: 50;
	display: grid;
	width: max-content;
	min-width: 230px;
	gap: 0;
	margin: 0;
	padding: 12px;
	list-style: none;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: 0 18px 44px rgba(17, 22, 42, 0.14);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.main-nav .sub-menu::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -10px;
	height: 10px;
}

.main-nav .sub-menu a {
	display: flex;
	align-items: center;
	padding: 10px 12px;
	border-radius: calc(var(--radius) - 2px);
	font-weight: 600;
	line-height: 1.4;
	white-space: nowrap;
	transition: background-color 160ms ease, color 160ms ease, padding-left 160ms ease;
}

.main-nav .sub-menu a:hover,
.main-nav .sub-menu a:focus-visible {
	background: var(--muted);
	color: var(--primary);
	padding-left: 16px;
}

.main-nav .menu-item-has-children:hover > .sub-menu,
.main-nav .menu-item-has-children:focus-within > .sub-menu,
.main-nav .menu-item-has-children.submenu-open > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.main-nav .menu-item-has-children.submenu-open > .submenu-toggle::before {
	transform: translateY(2px) rotate(225deg);
}

.main-nav a {
	font-size: 14px;
	font-weight: 600;
	color: var(--muted-foreground);
	line-height: 1.2;
}

.main-nav a:hover {
	color: var(--primary);
	text-decoration: none;
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

.nav-phone {
	font-size: 14px;
	font-weight: 700;
	color: var(--ink);
}

.menu-button {
	display: none;
	margin-left: auto;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	gap: 5px;
	flex-direction: column;
	background: transparent;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	cursor: pointer;
}

.menu-button span {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--ink);
}

/* Hero */
.hero-preview {
	position: relative;
	min-height: 640px;
	display: flex;
	align-items: center;
	isolation: isolate;
	border-bottom: 1px solid var(--border);
	background: var(--blue-soft);
}

.hero-preview-image,
.hero-overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.hero-preview-image {
	object-fit: cover;
	object-position: center;
	z-index: -2;
}

.hero-overlay {
	z-index: -1;
	background: linear-gradient(90deg, #fbfbfe 0%, rgba(251, 251, 254, 0.96) 32%, rgba(251, 251, 254, 0.6) 56%, rgba(251, 251, 254, 0) 78%);
}

.hero-preview-inner {
	padding-block: 76px;
}

.hero-copy {
	width: min(660px, 66%);
}

.kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 18px;
	color: var(--primary);
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
}

.hero-copy h1 {
	margin: 0;
	font-size: clamp(40px, 5.2vw, 70px);
	line-height: 1.05;
}

.hero-copy h1 em {
	color: var(--primary);
	font-style: normal;
}

.hero-lead {
	max-width: 590px;
	margin: 22px 0 0;
	color: var(--muted-foreground);
	font-size: 19px;
	line-height: 1.7;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

.hero-proof {
	display: flex;
	margin: 46px 0 0;
	padding: 0;
	list-style: none;
}

.hero-proof li {
	display: grid;
	padding-right: 26px;
	margin-right: 26px;
	border-right: 1px solid var(--border);
}

.hero-proof li:last-child {
	border-right: 0;
	margin-right: 0;
}

.hero-proof strong {
	color: var(--ink);
	font-size: 23px;
}

.hero-proof span {
	color: var(--muted-foreground);
	font-size: 12px;
}

/* Güven şeridi */
.trust-strip {
	background: var(--ink);
	color: #fff;
}

.trust-items {
	min-height: 72px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	align-items: center;
	gap: 20px;
	padding-block: 14px;
}

.trust-items span {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	font-size: 13px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.8);
}

.trust-items .icon {
	width: 17px;
	color: var(--green);
}

/* Bölümler */
.page-section,
.section {
	padding-block: 96px;
}

.section--alt {
	background: var(--muted);
}

.section-heading,
.section__head {
	margin-bottom: 46px;
}

.section-heading h2,
.section__title {
	margin: 0;
	font-size: clamp(32px, 4vw, 48px);
	line-height: 1.1;
}

.section__desc,
.split-heading > p {
	max-width: 520px;
	margin: 14px 0 0;
	color: var(--muted-foreground);
	font-size: 17px;
}

.split-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 48px;
}

.centered-heading {
	max-width: 660px;
	margin-inline: auto;
	text-align: center;
}

/* Hizmet ızgarası */
.service-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid var(--border);
	border-left: 1px solid var(--border);
}

.service-card {
	position: relative;
	min-height: 290px;
	padding: 32px;
	background: var(--card);
	border-right: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
	z-index: 2;
	transform: translateY(-4px);
	box-shadow: 0 18px 45px rgba(17, 22, 42, 0.1);
}

.service-icon {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: var(--radius);
	background: var(--blue-soft);
	color: var(--primary);
}

.service-icon .icon {
	width: 23px;
	height: 23px;
}

.card-number {
	position: absolute;
	top: 36px;
	right: 32px;
	color: var(--muted-foreground);
	font-size: 13px;
	font-weight: 800;
}

.service-card h3 {
	margin: 26px 0 10px;
	font-size: 20px;
}

.service-card p {
	margin: 0 0 22px;
	color: var(--muted-foreground);
	font-size: 14px;
	line-height: 1.7;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: var(--primary);
	font-size: 13px;
	font-weight: 800;
}

.text-link .icon {
	width: 15px;
	height: 15px;
}

/* Süreç */
.process-section {
	background: var(--ink);
	color: #fff;
}

.process-section h2,
.process-section .section__title {
	color: #fff;
}

.process-section .kicker {
	color: var(--green);
}

.process-grid {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin: 0;
	padding: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.process-grid li {
	position: relative;
	padding: 34px 28px 18px 0;
}

.process-grid li:not(:last-child)::after {
	content: "";
	position: absolute;
	top: -4px;
	right: 24px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--green);
}

.process-number {
	display: block;
	color: var(--green);
	font-size: 13px;
	font-weight: 800;
}

.process-grid h3 {
	margin: 28px 0 12px;
	color: #fff;
	font-size: 20px;
}

.process-grid p {
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 14px;
	line-height: 1.7;
}

/* Projeler */
.projects-section {
	background: var(--muted);
}

.project-grid,
.grid--3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.grid--2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
}

.project-card {
	background: var(--card);
	border: 1px solid var(--border);
	overflow: hidden;
}

.project-card img {
	display: block;
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	transition: transform 350ms ease;
}

.project-card:hover img {
	transform: scale(1.03);
}

.project-meta {
	padding: 22px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.project-meta .tag {
	color: var(--primary);
	font-size: 11px;
	text-transform: uppercase;
	font-weight: 800;
	letter-spacing: 0.1em;
}

.project-meta h3 {
	margin: 7px 0 0;
	font-size: 19px;
}

.project-meta h3 a {
	color: var(--ink);
}

.card--reference {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background: var(--card);
	border: 1px solid var(--border);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.card--reference:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 45px rgba(17, 22, 42, 0.1);
}

.card--reference .card__media {
	overflow: hidden;
}

.card--reference .card__image {
	transition: transform 350ms ease;
}

.card--reference:hover .card__image {
	transform: scale(1.025);
}

.card--reference .card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 24px;
}

.card--reference .card__role {
	margin: 0 0 8px;
	color: var(--primary);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

.card--reference .card__title {
	margin: 0;
	font-size: 21px;
}

.card--reference .card__company {
	margin: 5px 0 14px;
	color: var(--muted-foreground);
	font-size: 13px;
	font-weight: 700;
}

.card--reference .card__terms {
	display: none;
}

.card--reference .card__text {
	margin: 0;
	color: var(--muted-foreground);
	font-size: 14px;
	line-height: 1.7;
}

.card--reference .card__link {
	margin-top: auto;
	padding-top: 20px;
}

.reference-facts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
	align-items: center;
	gap: 24px;
	padding: 24px 0;
	margin-bottom: 34px;
	border-bottom: 1px solid var(--border);
}

.reference-facts div {
	display: grid;
	gap: 4px;
}

.reference-facts span {
	color: var(--muted-foreground);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

.reference-facts strong {
	color: var(--ink);
}

.round-arrow {
	width: 38px;
	height: 38px;
	flex: none;
	display: grid;
	place-items: center;
	border: 1px solid var(--border);
	border-radius: 50%;
	color: var(--primary);
}

/* Blog / yazılar */
.journal-layout {
	display: grid;
	grid-template-columns: 0.8fr 1.5fr;
	gap: 80px;
}

.journal-intro h2 {
	margin: 0 0 18px;
	font-size: 42px;
	line-height: 1.1;
}

.journal-intro p {
	color: var(--muted-foreground);
	line-height: 1.7;
	margin-bottom: 22px;
}

.article-list {
	border-top: 1px solid var(--border);
}

.article-list article {
	position: relative;
	padding: 22px 46px 22px 0;
	border-bottom: 1px solid var(--border);
}

.article-list article::after {
	content: "\2192";
	position: absolute;
	right: 4px;
	top: 42%;
	color: var(--primary);
	font-size: 22px;
}

.article-list .meta {
	color: var(--primary);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

.article-list h3 {
	margin: 8px 0;
	font-size: 20px;
}

.article-list h3 a {
	color: var(--ink);
}

.article-list p {
	margin: 0;
	color: var(--muted-foreground);
	font-size: 14px;
}

/* CTA bandı */
.cta-section {
	background: var(--primary);
	color: #fff;
	padding-block: 72px;
}

.cta-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.cta-section h2 {
	color: #fff;
	margin: 0;
	font-size: clamp(30px, 4vw, 46px);
}

.cta-section .kicker {
	color: var(--secondary);
}

.cta-section p:not(.kicker) {
	color: rgba(255, 255, 255, 0.82);
	margin: 12px 0 0;
}

/* Alt bilgi */
.site-footer {
	background: var(--ink);
	color: #fff;
	padding-top: 68px;
}

.site-footer .brand {
	color: #fff;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr repeat(3, 1fr);
	gap: 56px;
	padding-bottom: 54px;
}

.footer-grid h2 {
	margin: 3px 0 18px;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.78);
}

.footer-grid ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-grid a,
.footer-grid p {
	color: rgba(255, 255, 255, 0.72);
	font-size: 13px;
	margin: 0;
}

.footer-grid a:hover {
	color: var(--green);
	text-decoration: none;
}

.footer-contact__label {
	display: block;
	margin-bottom: 2px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.footer-contact address {
	font-style: normal;
	line-height: 1.65;
}

.footer-about p {
	max-width: 300px;
	margin-top: 20px;
	line-height: 1.7;
}

.footer-bottom {
	min-height: 70px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.78);
	font-size: 12px;
}

.whatsapp-float {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 30;
	width: 52px;
	height: 52px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--green);
	color: var(--ink);
	box-shadow: 0 10px 30px rgba(17, 22, 42, 0.25);
}

/* İç sayfalar */
.page-header {
	padding-block: 64px 32px;
	background: var(--muted);
	border-bottom: 1px solid var(--border);
}

.page-header h1 {
	margin: 10px 0 0;
	font-size: clamp(32px, 4vw, 46px);
}

.breadcrumbs {
	font-size: 13px;
	color: var(--muted-foreground);
}

.entry-content {
	max-width: 760px;
}

.entry-content p,
.entry-content ul,
.entry-content ol {
	line-height: 1.8;
}

.card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 26px;
}

.card__title {
	margin: 0 0 10px;
	font-size: 20px;
}

.card__text {
	margin: 0;
	color: var(--muted-foreground);
	font-size: 14px;
	line-height: 1.7;
}

.muted {
	color: var(--muted-foreground);
}

.content-layout {
	display: grid;
	grid-template-columns: 2.2fr 1fr;
	gap: 48px;
	padding-block: 64px;
}

/* Formlar */
.form-wrap {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px;
}

.pikselya-form label {
	display: block;
	margin-bottom: 16px;
	font-size: 14px;
	font-weight: 600;
}

.pikselya-form input[type="text"],
.pikselya-form input[type="email"],
.pikselya-form input[type="tel"],
.pikselya-form select,
.pikselya-form textarea,
.search-field {
	width: 100%;
	margin-top: 6px;
	padding: 12px 14px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	font: inherit;
	background: #fff;
	color: inherit;
}

.pikselya-form textarea {
	min-height: 150px;
	resize: vertical;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 40px;
	padding-block: 64px;
}

.notice {
	padding: 14px 16px;
	border-radius: var(--radius);
	margin-bottom: 18px;
}

.notice--success {
	background: #e6f9f1;
	color: #0b6b4f;
}

.notice--error {
	background: #fdecec;
	color: #99231f;
}

/* Duyarlılık */
@media (max-width: 900px) {
	.main-nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		padding: 18px 20px;
		background: var(--background);
		border-bottom: 1px solid var(--border);
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.main-nav.is-open {
		display: flex;
	}

	.main-nav > .main-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.main-nav > .main-nav__list > li {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
		height: auto;
	}

	.main-nav > .main-nav__list > li > a {
		display: block;
		height: auto;
		padding: 13px 0;
		border-bottom: 1px solid var(--border);
	}

	.main-nav > .main-nav__list > li > a::after {
		display: none;
	}

	.submenu-toggle {
		width: 44px;
		height: 44px;
		margin-left: 0;
		border-left: 1px solid var(--border);
		border-radius: 0;
	}

	.main-nav .sub-menu {
		position: static;
		grid-column: 1 / -1;
		display: none;
		width: 100%;
		min-width: 0;
		padding: 4px 0 8px 16px;
		border: 0;
		border-bottom: 1px solid var(--border);
		border-radius: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.main-nav .menu-item-has-children:hover > .sub-menu,
	.main-nav .menu-item-has-children:focus-within > .sub-menu {
		display: none;
	}

	.main-nav .menu-item-has-children.submenu-open > .sub-menu {
		display: grid;
	}

	.main-nav .sub-menu a {
		padding: 11px 12px;
		white-space: normal;
	}

	.nav-actions {
		margin-top: 14px;
		flex-direction: column;
		align-items: stretch;
	}

	.menu-button {
		display: flex;
	}

	.hero-copy {
		width: 74%;
	}

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

	.content-layout,
	.contact-grid,
	.layout-with-sidebar {
		grid-template-columns: 1fr;
	}

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

	.footer-grid > div:last-child {
		grid-column: 1 / -1;
	}
}

@media (max-width: 640px) {
	.container,
	.site-container {
		width: min(100% - 32px, var(--container));
	}

	.hero-preview {
		min-height: 700px;
		align-items: flex-end;
	}

	.hero-preview-image {
		object-position: 66% center;
	}

	.hero-overlay {
		background: linear-gradient(180deg, rgba(251, 251, 254, 0.15) 0%, rgba(251, 251, 254, 0.7) 38%, #fbfbfe 72%);
	}

	.hero-preview-inner {
		padding-block: 44px;
	}

	.hero-copy {
		width: 100%;
	}

	.hero-copy h1 {
		font-size: 40px;
	}

	.hero-lead {
		font-size: 16px;
	}

	.hero-actions .btn {
		flex: 1;
	}

	.hero-proof {
		margin-top: 32px;
		justify-content: space-between;
	}

	.hero-proof li {
		padding-right: 12px;
		margin-right: 12px;
	}

	.trust-items {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.trust-items span {
		justify-content: flex-start;
		font-size: 11px;
	}

	.page-section,
	.section {
		padding-block: 68px;
	}

	.split-heading,
	.cta-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.service-grid,
	.process-grid,
	.project-grid,
	.grid--3,
	.grid--2,
	.journal-layout,
	.value-grid,
	.services-intro,
	.service-method__grid {
		grid-template-columns: 1fr;
	}

	.services-intro,
	.service-method__grid {
		gap: 24px;
	}

	.content-block .feature-list {
		grid-template-columns: 1fr;
	}

	.cta-band__inner,
	.btn-group {
		align-items: stretch;
		flex-direction: column;
	}

	.process-grid li {
		padding: 24px 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	}

	.process-grid li::after {
		display: none;
	}

	.journal-layout {
		gap: 40px;
	}

	.journal-intro h2 {
		font-size: 34px;
	}

	.cta-section .btn {
		width: 100%;
	}

	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 34px 24px;
	}

	.footer-about {
		grid-column: 1 / -1;
	}

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		padding-block: 18px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}

/* Nasıl Çalışıyoruz sayfası */
.page-intro { padding: 48px 0 8px; }
.page-intro__lead { font-size: 1.15rem; font-weight: 500; color: var(--ink); max-width: 800px; margin: 0 0 16px; line-height: 1.7; }
.page-intro__text { color: #4a5168; max-width: 800px; margin: 0; line-height: 1.7; }
.process-detail { padding: 32px 0 56px; }
.process-detail__list { list-style: none; margin: 0; padding: 0; counter-reset: step; display: grid; gap: 24px; }
.process-detail__item { display: flex; gap: 20px; background: #fff; border: 1px solid var(--color-border, #dfe3ec); border-radius: var(--radius, 6px); padding: 28px; }
.process-detail__number { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: #fff; font-weight: 700; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; }
.process-detail__title { margin: 4px 0 10px; font-size: 1.3rem; }
.process-detail__desc { color: #4a5168; line-height: 1.7; margin: 0 0 12px; }
.check-list { list-style: none; margin: 0 0 12px; padding: 0; display: grid; grid-template-columns: 1fr; gap: 8px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; color: #2b3044; line-height: 1.5; }
.check-list svg { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 2px; color: var(--color-green, #17c390); }
.why-us { padding: 0 0 64px; }
.why-us__card { background: var(--color-blue-soft, #e8eeff); border-radius: var(--radius, 6px); padding: 40px; }
.why-us__title { margin: 0 0 14px; font-size: 1.6rem; }
.why-us__card p { color: #2b3044; line-height: 1.7; margin: 0 0 12px; }
.why-us__card .btn, .why-us__card .cta-buttons { margin-top: 8px; }
@media (min-width: 900px) {
	.check-list { grid-template-columns: repeat(2, 1fr); }
	.page-intro__lead { font-size: 1.25rem; }
}
@media (max-width: 640px) {
	.process-detail__item { flex-direction: column; padding: 22px; }
	.why-us__card { padding: 26px; }
}

/* Breadcrumb */
.breadcrumb {
	font-size: 13px;
	color: var(--muted-foreground);
}

.breadcrumb__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.breadcrumb__item {
	display: flex;
	align-items: center;
	gap: 8px;
}

.breadcrumb__item + .breadcrumb__item::before {
	content: "/";
	color: var(--border);
}

.breadcrumb a {
	color: var(--muted-foreground);
	text-decoration: none;
}

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

.breadcrumb [aria-current="page"] {
	color: var(--ink);
	font-weight: 600;
}

/* İletişim sayfası */
.contact-grid {
	align-items: start;
}

.contact-info .entry-content {
	margin-bottom: 28px;
}

.contact-cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.contact-card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 20px;
}

.contact-card__label {
	display: block;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted-foreground);
	margin-bottom: 8px;
}

.contact-card__value {
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
	color: var(--ink);
	font-weight: 600;
	overflow-wrap: anywhere;
}

.contact-card__value a {
	color: inherit;
	text-decoration: none;
}

.contact-card__link {
	display: inline-block;
	margin-top: 10px;
	font-size: 13px;
	font-weight: 600;
	color: var(--primary);
	text-decoration: none;
}

.contact-map {
	margin-top: 24px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	line-height: 0;
}

.contact-map iframe {
	width: 100%;
	height: 340px;
	border: 0;
	display: block;
}

/* Hizmetler ve zengin içerik sayfaları */
.services-intro,
.service-method__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
	gap: 72px;
	align-items: end;
	margin-bottom: 46px;
}

.services-intro h2,
.service-method h2,
.content-block h2 {
	margin: 0;
	font-size: clamp(30px, 4vw, 46px);
}

.services-intro > p,
.service-method p,
.service-detail-intro p,
.page-lead p {
	color: var(--muted-foreground);
	line-height: 1.8;
}

.service-grid--landing .service-card {
	min-height: 380px;
}

.service-card h3 a {
	color: var(--ink);
}

.service-card__features,
.feature-list {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
}

.service-card__features li,
.feature-list li {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	margin: 8px 0;
	color: var(--foreground);
	font-size: 14px;
}

.service-card__features .icon {
	width: 16px;
	height: 16px;
	margin-top: 3px;
	color: var(--green);
}

.value-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.value-grid article {
	padding: 28px;
	background: var(--card);
	border: 1px solid var(--border);
}

.value-grid span {
	color: var(--primary);
	font-size: 13px;
	font-weight: 800;
}

.value-grid h3 {
	margin: 18px 0 10px;
}

.value-grid p {
	margin: 0;
	color: var(--muted-foreground);
}

.service-method__grid {
	align-items: start;
	margin-bottom: 0;
}

.service-method .btn {
	margin-top: 16px;
}

.service-detail__content,
.entry__content {
	max-width: 920px;
}

.lead {
	font-size: 20px;
	line-height: 1.7;
	color: var(--ink);
}

.content-block {
	padding-top: 56px;
	margin-top: 56px;
	border-top: 1px solid var(--border);
}

.content-block .feature-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 24px;
	margin-top: 28px;
}

.content-block .feature-list li::before {
	content: "✓";
	display: grid;
	place-items: center;
	width: 22px;
	height: 22px;
	flex: none;
	border-radius: 50%;
	background: var(--secondary);
	color: var(--ink);
	font-size: 12px;
	font-weight: 800;
}

.compact-process {
	list-style: none;
	margin: 28px 0 0;
	padding: 0;
	border-top: 1px solid var(--border);
}

.compact-process li {
	display: grid;
	grid-template-columns: 58px 1fr;
	align-items: center;
	min-height: 72px;
	border-bottom: 1px solid var(--border);
}

.compact-process span {
	color: var(--primary);
	font-size: 13px;
	font-weight: 800;
}

.faq-list {
	margin-top: 28px;
	border-top: 1px solid var(--border);
}

.faq-list details {
	border-bottom: 1px solid var(--border);
}

.faq-list summary {
	padding: 20px 36px 20px 0;
	font-weight: 700;
	color: var(--ink);
	cursor: pointer;
}

.faq-list details p {
	margin: -6px 0 22px;
	color: var(--muted-foreground);
}

.service-grid--related .service-card {
	min-height: 260px;
}

.card__media,
.card__image {
	display: block;
	width: 100%;
}

.card__image {
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.card__title a {
	color: var(--ink);
}

.card__link {
	display: inline-block;
	margin-top: 18px;
	font-weight: 700;
}

.layout-with-sidebar {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(240px, 0.7fr);
	gap: 48px;
}

.cta-band {
	padding-block: 64px;
	background: var(--primary);
	color: var(--primary-foreground);
}

.cta-band__inner,
.btn-group {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.cta-band__title {
	margin: 0;
	color: var(--primary-foreground);
}

.cta-band .btn--primary {
	background: var(--card);
	color: var(--ink);
}

.cta-band .btn--ghost {
	border-color: rgba(255, 255, 255, 0.5);
	color: var(--primary-foreground);
}

.form-wrap__text {
	margin: 0 0 18px;
	color: var(--muted-foreground);
	font-size: 14px;
}

@media (max-width: 640px) {
	.reference-facts {
		grid-template-columns: 1fr;
	}

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

	.value-grid,
	.services-intro,
	.service-method__grid,
	.content-block .feature-list {
		grid-template-columns: 1fr;
	}

	.services-intro,
	.service-method__grid {
		gap: 24px;
	}

	.cta-band__inner,
	.btn-group {
		align-items: stretch;
		flex-direction: column;
	}

	.contact-map iframe {
		height: 260px;
	}
}

/* -----------------------------------------------------------------------------
 * Sayfalama (pagination)
 * -------------------------------------------------------------------------- */

.pagination,
.nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 48px;
}

ul.page-numbers {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

ul.page-numbers li {
	margin: 0;
	padding: 0;
}

.nav-links {
	gap: 8px;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 16px;
	border: 1px solid var(--border);
	border-radius: 12px;
	background: #fff;
	color: var(--ink);
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

a.page-numbers:hover,
a.page-numbers:focus-visible {
	background: var(--primary);
	border-color: var(--primary);
	color: #fff;
	transform: translateY(-1px);
}

.page-numbers.current {
	background: var(--primary);
	border-color: var(--primary);
	color: #fff;
	cursor: default;
}

.page-numbers.dots {
	border-color: transparent;
	background: transparent;
	color: var(--muted-foreground);
	cursor: default;
}

.page-numbers.prev,
.page-numbers.next {
	padding: 0 18px;
}

@media (max-width: 640px) {
	.pagination,
	.nav-links {
		margin-top: 32px;
	}

	.page-numbers {
		min-width: 40px;
		height: 40px;
		padding: 0 12px;
		font-size: 14px;
	}
}

/* Ana sayfa içerik SEO bölümleri */
.editorial-split,
.compact-section-layout,
.faq-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 72px;
	align-items: start;
}

.editorial-split h2,
.compact-section-layout h2,
.faq-layout h2 {
	margin: 0;
	font-size: clamp(32px, 4vw, 48px);
}

.editorial-copy p {
	margin: 0 0 18px;
	color: var(--muted-foreground);
	font-size: 17px;
	line-height: 1.8;
}

.editorial-copy .btn {
	margin-top: 10px;
}

.value-grid--six {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-grid--five {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-grid--five li {
	padding-right: 20px;
}

.process-grid--five h3 {
	font-size: 18px;
}

.section-action {
	display: flex;
	justify-content: center;
	margin-top: 38px;
}

.technology-section {
	background: var(--ink);
	color: var(--primary-foreground);
}

.technology-section h2 {
	color: var(--primary-foreground);
}

.technology-section .kicker {
	color: var(--green);
}

.technology-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.technology-list li {
	min-width: 112px;
	padding: 14px 18px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--radius);
	color: rgba(255, 255, 255, 0.86);
	font-size: 14px;
	font-weight: 700;
	text-align: center;
}

.faq-layout .faq-list {
	margin-top: 0;
}

.cta-actions {
	display: flex;
	flex: none;
	flex-wrap: wrap;
	gap: 12px;
}

.btn--cta-outline {
	border-color: rgba(255, 255, 255, 0.55);
	color: var(--primary-foreground);
}

.btn--cta-outline:hover {
	border-color: var(--primary-foreground);
	color: var(--primary-foreground);
}

.cta-section .cta-inner > div:first-child {
	max-width: 680px;
}

@media (max-width: 900px) {
	.editorial-split,
	.compact-section-layout,
	.faq-layout {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.value-grid--six,
	.process-grid--five {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.process-grid--five li:last-child {
		grid-column: 1 / -1;
	}
}

@media (max-width: 640px) {
	.hero-preview {
		min-height: 760px;
	}

	.hero-copy h1 {
		font-size: 36px;
	}

	.hero-proof {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		width: 100%;
	}

	.hero-proof li {
		min-width: 0;
		padding-right: 8px;
		margin-right: 8px;
	}

	.hero-proof strong {
		font-size: 20px;
	}

	.hero-proof span {
		font-size: 10px;
		line-height: 1.35;
	}

	.value-grid--six,
	.process-grid--five {
		grid-template-columns: 1fr;
	}

	.process-grid--five li:last-child {
		grid-column: auto;
	}

	.technology-list {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.technology-list li {
		min-width: 0;
	}

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

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

/* Web Tasarım landing page */
.web-design-hero {
	position: relative;
	overflow: hidden;
	background: var(--blue-soft);
}

.web-design-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
	gap: 72px;
	align-items: center;
	min-height: 620px;
	padding-block: 72px;
}

.web-design-hero .breadcrumb {
	margin-bottom: 42px;
}

.web-design-hero .kicker {
	margin-bottom: 14px;
}

.web-design-hero h1 {
	max-width: 720px;
	margin: 0;
	font-size: clamp(46px, 6vw, 76px);
	letter-spacing: 0;
}

.web-design-hero__lead {
	max-width: 720px;
	margin: 24px 0 0;
	color: var(--foreground);
	font-size: 18px;
	line-height: 1.75;
}

.web-design-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 32px;
}

.web-design-hero__visual {
	position: relative;
}

.browser-preview {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--card);
	box-shadow: 22px 28px 0 var(--secondary);
	transform: rotate(2deg);
}

.browser-preview__bar {
	display: flex;
	align-items: center;
	gap: 7px;
	height: 44px;
	padding-inline: 16px;
	border-bottom: 1px solid var(--border);
	background: var(--muted);
}

.browser-preview__bar span {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--border);
}

.browser-preview__bar span:first-child { background: var(--primary); }
.browser-preview__bar span:nth-child(2) { background: var(--green); }

.browser-preview__body {
	padding: 12% 10%;
}

.browser-preview__eyebrow,
.browser-preview__title,
.browser-preview__button,
.browser-preview__cards span {
	display: block;
	border-radius: 3px;
}

.browser-preview__eyebrow {
	width: 24%;
	height: 8px;
	margin-bottom: 18px;
	background: var(--green);
}

.browser-preview__title {
	width: 84%;
	height: 22px;
	margin-bottom: 12px;
	background: var(--ink);
}

.browser-preview__title--short { width: 58%; }

.browser-preview__button {
	width: 112px;
	height: 38px;
	margin-top: 26px;
	background: var(--primary);
}

.browser-preview__cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-top: 42px;
}

.browser-preview__cards span {
	aspect-ratio: 1.35;
	background: var(--muted);
	border: 1px solid var(--border);
}

.web-design-trust {
	border-block: 1px solid var(--border);
	background: var(--card);
}

.web-design-trust__items {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	min-height: 80px;
}

.web-design-trust__items span {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px 10px;
	color: var(--foreground);
	font-size: 13px;
	font-weight: 700;
	text-align: center;
}

.web-design-trust__items .icon {
	width: 16px;
	height: 16px;
	color: var(--green);
}

.web-design-section .section-heading {
	margin-bottom: 42px;
}

.web-design-section .centered-heading {
	max-width: 850px;
	margin-inline: auto;
	text-align: center;
}

.web-design-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.web-design-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 250px;
	padding: 30px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--card);
}

.web-design-card__number {
	color: var(--primary);
	font-size: 13px;
	font-weight: 800;
}

.web-design-card h3 {
	margin: 32px 0 12px;
	font-size: 21px;
}

.web-design-card:not(:has(.web-design-card__number)) h3 {
	margin-top: 0;
}

.web-design-card p {
	margin: 0;
	color: var(--muted-foreground);
	line-height: 1.7;
}

.web-design-card .text-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: auto;
	padding-top: 22px;
	font-size: 14px;
	font-weight: 700;
}

.web-design-card .text-link .icon {
	width: 15px;
	height: 15px;
}

.web-design-process {
	background: var(--ink);
	color: var(--primary-foreground);
}

.web-design-process h2,
.web-design-process h3 {
	color: var(--primary-foreground);
}

.web-design-process .kicker { color: var(--green); }
.web-design-process .split-heading > p { color: var(--primary-foreground); opacity: 0.75; }

.web-design-process__list {
	list-style: none;
	margin: 44px 0 0;
	padding: 0;
	border-top: 1px solid color-mix(in srgb, var(--primary-foreground) 18%, transparent);
}

.web-design-process__list li {
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr);
	gap: 20px;
	align-items: start;
	padding: 28px 0;
	border-bottom: 1px solid color-mix(in srgb, var(--primary-foreground) 18%, transparent);
}

.web-design-process__list > li > span {
	color: var(--green);
	font-size: 14px;
	font-weight: 800;
}

.web-design-process__list h3 {
	margin: 0 0 8px;
	font-size: 21px;
}

.web-design-process__list p {
	max-width: 760px;
	margin: 0;
	color: var(--primary-foreground);
	opacity: 0.72;
}

.web-design-technologies .compact-section-layout { align-items: center; }

.web-design-reference-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.web-design-reference-card {
	overflow: hidden;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--card);
}

.web-design-reference-card__media {
	display: block;
	overflow: hidden;
	aspect-ratio: 3 / 2;
	background: var(--muted);
}

.web-design-reference-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 220ms ease;
}

.web-design-reference-card:hover .web-design-reference-card__image { transform: scale(1.025); }

.web-design-reference-card__body { padding: 22px; }

.web-design-reference-card__body p {
	margin: 0 0 8px;
	color: var(--primary);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.web-design-reference-card__body h3 {
	margin: 0;
	font-size: 20px;
}

.web-design-reference-card__body h3 a { color: var(--ink); }

.section-support {
	max-width: 560px;
	color: var(--muted-foreground);
	line-height: 1.7;
}

.web-design-checklist {
	list-style: none;
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--border);
}

.web-design-checklist li {
	position: relative;
	padding: 15px 0 15px 32px;
	border-bottom: 1px solid var(--border);
	color: var(--foreground);
}

.web-design-checklist li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 15px;
	color: var(--green);
	font-weight: 800;
}

.web-design-inline-link {
	margin-top: 18px !important;
	font-size: 14px !important;
}

.web-design-final-cta .btn--light {
	background: var(--card);
	color: var(--ink);
}

/* Kurumsal Web Tasarım landing page */
.corporate-web-hero {
	background: color-mix(in srgb, var(--blue-soft) 82%, var(--card));
}

.corporate-browser-preview {
	box-shadow: 22px 28px 0 color-mix(in srgb, var(--green) 72%, var(--card));
}

.corporate-browser-preview .browser-preview__body {
	background: linear-gradient(135deg, var(--card) 0 64%, var(--blue-soft) 64% 100%);
}

.corporate-audience-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 28px;
}

.corporate-solutions {
	border-block: 1px solid var(--border);
}

.corporate-solution-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.corporate-solution {
	display: flex;
	flex-direction: column;
	min-height: 390px;
	padding: 38px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--card);
}

.corporate-solution h2 {
	margin: 0 0 18px;
	font-size: clamp(28px, 3vw, 38px);
	line-height: 1.16;
}

.corporate-solution > p:not(.kicker) {
	margin: 0;
	color: var(--muted-foreground);
	line-height: 1.75;
}

.corporate-solution .text-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-top: auto;
	padding-top: 28px;
	font-weight: 800;
}

.corporate-solution .text-link .icon {
	width: 16px;
	height: 16px;
}

/* Özel Yazılım landing page */
.custom-software-hero {
	background: color-mix(in srgb, var(--blue-soft) 78%, var(--card));
}

.custom-software-hero__visual,
.custom-software-media,
.custom-software-process-image {
	margin: 0;
	overflow: hidden;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--card);
}

.custom-software-hero__visual {
	box-shadow: 22px 28px 0 color-mix(in srgb, var(--green) 72%, var(--card));
}

.custom-software-hero__visual img,
.custom-software-media img,
.custom-software-process-image img {
	display: block;
	width: 100%;
	height: auto;
}

.custom-software-media-split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(380px, 0.95fr);
	gap: 64px;
	align-items: center;
}

.custom-software-media-split--reverse {
	grid-template-columns: minmax(380px, 0.95fr) minmax(0, 1fr);
}

.custom-software-card-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.custom-software-card-grid .web-design-card {
	min-height: 280px;
}

.custom-software-process-image {
	max-width: 920px;
	margin: 48px auto 0;
	border-color: color-mix(in srgb, var(--primary-foreground) 22%, transparent);
}

.custom-software-related-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.custom-software-reference-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.custom-software-reference-grid .web-design-reference-card__body > span {
	display: block;
	margin-top: 10px;
	color: var(--muted-foreground);
	font-size: 13px;
	line-height: 1.55;
}

/* E-Ticaret Sitesi landing page */
.ecommerce-hero {
	background: color-mix(in srgb, var(--blue-soft) 74%, var(--card));
}

.ecommerce-hero__visual {
	margin: 0;
	overflow: hidden;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--card);
	box-shadow: 22px 28px 0 color-mix(in srgb, var(--green) 72%, var(--card));
}

.ecommerce-hero__visual img {
	display: block;
	width: 100%;
	height: auto;
}

.ecommerce-intro-grid,
.ecommerce-feature-pair {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 72px;
	align-items: start;
}

.ecommerce-intro-grid h2,
.ecommerce-feature-pair h2 {
	margin-top: 0;
}

.ecommerce-card-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ecommerce-card-grid .web-design-card {
	min-height: 280px;
}

.ecommerce-process-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 48px;
}

.ecommerce-reference-grid .web-design-reference-card__body > span {
	display: block;
	margin-top: 10px;
	color: var(--muted-foreground);
	font-size: 13px;
	line-height: 1.55;
}

.ecommerce-audience-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 28px;
}

@media (max-width: 900px) {
	.web-design-hero__inner {
		grid-template-columns: 1fr;
		gap: 50px;
		padding-block: 54px 72px;
	}

	.web-design-hero__visual {
		width: min(620px, calc(100% - 24px));
	}

	.web-design-trust__items,
	.web-design-card-grid,
	.web-design-reference-grid,
	.corporate-solution-grid,
	.custom-software-related-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.custom-software-media-split,
	.custom-software-media-split--reverse {
		grid-template-columns: 1fr;
		gap: 38px;
	}

	.custom-software-media-split--reverse .custom-software-media {
		order: 2;
	}

	.ecommerce-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ecommerce-intro-grid,
	.ecommerce-feature-pair {
		gap: 40px;
	}
}

@media (max-width: 640px) {
	.web-design-hero__inner {
		min-height: 0;
		padding-block: 36px 58px;
	}

	.web-design-hero .breadcrumb { margin-bottom: 30px; }

	.web-design-hero h1 { font-size: 40px; }
	.web-design-hero__lead { font-size: 16px; }

	.web-design-hero__actions {
		flex-direction: column;
	}

	.web-design-hero__actions .btn { width: 100%; }

	.browser-preview { box-shadow: 12px 16px 0 var(--secondary); }

	.custom-software-hero__visual {
		box-shadow: 12px 16px 0 color-mix(in srgb, var(--green) 72%, var(--card));
	}

	.ecommerce-hero__visual {
		box-shadow: 12px 16px 0 color-mix(in srgb, var(--green) 72%, var(--card));
	}

	.web-design-trust__items {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		padding-block: 8px;
	}

	.web-design-trust__items span {
		justify-content: flex-start;
		text-align: left;
	}

	.web-design-card-grid,
	.web-design-reference-grid,
	.corporate-solution-grid,
	.custom-software-related-grid,
	.corporate-audience-list {
		grid-template-columns: 1fr;
	}

	.web-design-card { min-height: 0; }

	.ecommerce-intro-grid,
	.ecommerce-feature-pair,
	.ecommerce-card-grid,
	.ecommerce-process-list,
	.ecommerce-audience-list {
		grid-template-columns: 1fr;
	}

	.corporate-solution {
		min-height: 0;
		padding: 28px;
	}

	.web-design-process__list li {
		grid-template-columns: 48px minmax(0, 1fr);
		gap: 12px;
	}
}

/* Yenilenen mobil menü */
@media (max-width: 900px) {
	body.menu-is-open {
		overflow: hidden;
	}

	.topbar-inner {
		min-height: 68px;
	}

	.menu-button {
		position: relative;
		display: flex;
		width: 46px;
		height: 46px;
		padding: 0 11px;
		align-items: flex-end;
		justify-content: center;
		gap: 7px;
		border-color: var(--border);
		background: var(--card);
		box-shadow: 0 8px 24px rgba(17, 22, 42, 0.08);
	}

	.menu-button span {
		width: 16px;
		height: 2px;
		border-radius: 2px;
		transition: width 180ms ease, transform 180ms ease;
	}

	.menu-button span:last-child {
		width: 24px;
	}

	.menu-button[aria-expanded="true"] span {
		width: 23px;
	}

	.menu-button[aria-expanded="true"] span:first-child {
		transform: translateY(4.5px) rotate(45deg);
	}

	.menu-button[aria-expanded="true"] span:last-child {
		transform: translateY(-4.5px) rotate(-45deg);
	}

	.main-nav {
		top: 68px;
		max-height: calc(100vh - 68px);
		max-height: calc(100dvh - 68px);
		padding: 12px 20px 24px;
		overflow-y: auto;
		background: var(--card);
		box-shadow: 0 24px 45px rgba(17, 22, 42, 0.14);
	}

	.main-nav > .main-nav__list > li > a {
		padding: 16px 4px;
		color: var(--ink);
		font-size: 16px;
		font-weight: 700;
	}

	.main-nav > .main-nav__list > li:last-child > a {
		border-bottom: 0;
	}

	.submenu-toggle {
		width: 46px;
		height: 46px;
		border: 0;
		border-radius: var(--radius);
	}

	.main-nav .sub-menu {
		margin: 0 0 8px;
		padding: 6px 8px 8px 14px;
		background: var(--muted);
		border-radius: var(--radius);
	}

	.main-nav .sub-menu a {
		padding: 12px;
		border-bottom: 1px solid var(--border);
		color: var(--foreground);
		font-size: 14px;
	}

	.main-nav .sub-menu li:last-child a {
		border-bottom: 0;
	}

	.nav-actions {
		gap: 10px;
		padding-top: 18px;
		border-top: 1px solid var(--border);
	}

	.nav-phone {
		padding: 10px 0;
		text-align: center;
	}

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