/* ==========================================================================
   Codin Yazılım — Modern Tasarım Katmanı
   main.css'in ürettiği mevcut yapı/JS davranışlarını bozmadan
   üzerine yüklenir; renk, tipografi, kart ve boşluk düzenini yeniler.
   ========================================================================== */

:root {
	--c-primary: #ff497c;
	--c-primary-dark: #e13763;
	--c-primary-light: #ffe1ea;
	--c-dark: #1f2732;
	--c-dark-2: #323232;
	--c-text: #4a5160;
	--c-text-light: #808080;
	--c-border: #e9e9ef;
	--c-bg-soft: #f7f7fb;
	--c-white: #ffffff;
	--radius-md: 14px;
	--radius-lg: 22px;
	--shadow-sm: 0 4px 16px rgba(31, 39, 50, 0.06);
	--shadow-md: 0 12px 32px rgba(31, 39, 50, 0.10);
	--shadow-lg: 0 24px 60px rgba(31, 39, 50, 0.16);
	--font-heading: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
	--font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

html, body {
	font-family: var(--font-body);
	color: var(--c-text);
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.step-title, .intro_featured_word {
	font-family: var(--font-heading) !important;
	font-weight: 700;
	letter-spacing: -0.01em;
}

a { transition: color .2s ease, background-color .2s ease, transform .2s ease, box-shadow .2s ease; }

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

/* ---------- Buttons ---------- */
.btn,
.btn-outline-maincolor,
.white-btn {
	font-family: var(--font-heading);
	font-weight: 600;
	letter-spacing: .02em;
	border-radius: 999px !important;
	padding: 14px 32px !important;
	transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.btn:hover,
.btn-outline-maincolor:hover,
.white-btn:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.header_phone .btn {
	background: linear-gradient(135deg, var(--c-primary), var(--c-primary-dark)) !important;
	color: #fff !important;
	border: none !important;
	box-shadow: 0 8px 20px rgba(255, 73, 124, .35);
}

/* ---------- Header / Nav ---------- */
.modern-header {
	background-color: rgba(31, 39, 50, .97) !important;
}

.about-modern-title {
	font-size: 1.85rem;
	margin: 18px 0 16px;
	letter-spacing: -0.03em;
}

@media (max-width: 991px) {
	.page_header.mobile-active .top-nav,
	.page_header.mobile-active .sf-menu {
		position: fixed !important;
		inset: 0;
		height: 100vh;
		max-height: none;
		width: 100%;
		overflow: auto !important;
		opacity: 1 !important;
		visibility: visible !important;
		right: 0 !important;
		z-index: 1002;
	}
	.page_header.mobile-active .sf-menu {
		background: #fff;
		padding: 80px 24px 40px;
	}
	.page_header.mobile-active .sf-menu > li {
		display: block;
		width: 100%;
	}
	.page_header.mobile-active .sf-menu > li > a {
		color: #1f2732 !important;
		padding: 14px 8px;
		font-size: 16px;
	}
}

.modern-header .logo img { max-height: 54px; width: auto; }

.top-nav .sf-menu > li > a {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 13.5px;
	letter-spacing: .04em;
}

.top-nav .sf-menu > li > a:hover,
.top-nav .sf-menu > li.active > a {
	color: var(--c-primary) !important;
}

.top-nav .sf-menu ul {
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

/* ---------- Page title banner ---------- */
.modern-page-title {
	background: linear-gradient(135deg, var(--c-dark) 0%, #2d3848 100%);
	position: relative;
}

.modern-page-title h1 {
	color: #fff;
	font-size: 2.4rem;
	margin-bottom: 10px;
}

.modern-page-title .breadcrumb {
	background: transparent;
	justify-content: center;
	font-size: 13px;
}

.modern-page-title .breadcrumb-item a { color: rgba(255,255,255,.75); }
.modern-page-title .breadcrumb-item.active { color: var(--c-primary); }
.modern-page-title .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ---------- Cards: hizmet / referans / blog ---------- */
.vertical-item {
	transition: transform .25s ease, box-shadow .25s ease;
}

.service-item2 .vertical-item,
.card-modern {
	background: var(--c-white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	padding: 44px 28px;
	min-height: 240px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}

.service-item2 .vertical-item:hover,
.card-modern:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-md);
}

.service-item2 .item-media {
	width: 88px;
	height: 88px;
	border-radius: 50%;
	background: var(--c-primary-light);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 22px;
}

.service-item2 .item-media img { max-height: 44px; max-width: 44px; width: auto; }

.service-item2 .item-content h6 {
	font-size: 19px;
	margin-bottom: 0;
}

.service-item2 .item-content h6 a,
.card-modern h6 a { color: var(--c-dark); font-size: 19px; }

/* Blog grid */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 991px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
	background: var(--c-white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
	transition: transform .25s ease, box-shadow .25s ease;
	height: 100%;
}

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

.blog-card .blog-card-img { height: 210px; overflow: hidden; background: var(--c-bg-soft); }
.blog-card .blog-card-img img { width: 100%; height: 100%; object-fit: cover; }

.blog-card .blog-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }

.blog-card .blog-card-cat {
	display: inline-block;
	background: var(--c-primary-light);
	color: var(--c-primary-dark);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
	padding: 5px 12px;
	border-radius: 999px;
	margin-bottom: 12px;
	align-self: flex-start;
}

.blog-card h3 {
	font-size: 18px;
	line-height: 1.4;
	margin-bottom: 10px;
}

.blog-card h3 a { color: var(--c-dark); }
.blog-card h3 a:hover { color: var(--c-primary); }

.blog-card p.excerpt { color: var(--c-text-light); font-size: 14px; flex: 1; }

.blog-card .blog-card-meta {
	font-size: 12px;
	color: var(--c-text-light);
	margin-top: 16px;
	display: flex;
	justify-content: space-between;
	border-top: 1px solid var(--c-border);
	padding-top: 14px;
}

/* Blog detay */
.blog-article h1 { font-size: 2rem; }
.blog-article .blog-article-cover { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 30px; box-shadow: var(--shadow-sm); }
.blog-article .blog-article-cover img { width: 100%; }
.blog-article .blog-article-body { font-size: 16px; line-height: 1.85; color: var(--c-text); }
.blog-article .blog-article-body h2 { font-size: 1.5rem; margin-top: 2em; }
.blog-article .blog-article-body h3 { font-size: 1.2rem; margin-top: 1.6em; }
.blog-article .blog-article-body img { border-radius: var(--radius-md); width: 100%; height: auto; }
.blog-article .blog-figure {
	margin: 28px 0;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	background: var(--c-bg-soft);
}
.blog-article .blog-figure img { display: block; }
.blog-article .blog-figure figcaption {
	padding: 10px 16px 14px;
	font-size: 13px;
	color: var(--c-text-light);
}
.blog-article .blog-faq-item {
	padding: 16px 0;
	border-bottom: 1px solid var(--c-border);
}
.blog-article .blog-links { margin: 18px 0 8px; }
.blog-article .blog-links a { font-weight: 600; }
.blog-article .blog-article-cta {
	margin-top: 40px;
	padding: 32px;
	border-radius: var(--radius-lg);
	background: linear-gradient(135deg, var(--c-dark), #2d3848);
	color: #fff;
	text-align: center;
}
.blog-article .blog-article-cta a.btn {
	background: var(--c-primary);
	color: #fff;
	border: none;
	margin-top: 14px;
	display: inline-block;
}

.blog-filter { text-align: center; margin-bottom: 40px; }
.blog-filter a {
	display: inline-block;
	margin: 4px;
	padding: 8px 18px;
	border-radius: 999px;
	border: 1px solid var(--c-border);
	color: var(--c-text);
	font-size: 13px;
	font-weight: 600;
}
.blog-filter a.active,
.blog-filter a:hover {
	background: var(--c-primary);
	border-color: var(--c-primary);
	color: #fff;
}

/* ---------- Footer ---------- */
.modern-footer {
	background: var(--c-dark) !important;
}

.modern-footer .footer-about {
	color: rgba(255,255,255,.6);
	font-size: 13px;
	max-width: 320px;
	margin: 16px auto 0;
}

.modern-footer .footer-title {
	color: #fff;
	font-size: 15px;
	margin-bottom: 18px;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.modern-footer .footer-links { padding: 0; margin: 0; }
.modern-footer .footer-links li { margin-bottom: 10px; }
.modern-footer .footer-links a { color: rgba(255,255,255,.65); font-size: 14px; }
.modern-footer .footer-links a:hover { color: var(--c-primary); }

/* ---------- Contact / teaser icons ---------- */
.border-icon {
	transition: transform .25s ease;
}
.border-icon:hover { transform: translateY(-4px); }

/* ---------- Forms ---------- */
.form-control {
	border-radius: 10px !important;
	border: 1px solid var(--c-border) !important;
	padding: 12px 16px !important;
}
.form-control:focus {
	border-color: var(--c-primary) !important;
	box-shadow: 0 0 0 3px var(--c-primary-light) !important;
}

/* ---------- 404 ---------- */
.error-404-modern {
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	flex-direction: column;
	padding: 60px 20px;
}
.error-404-modern .code-404 {
	font-family: var(--font-heading);
	font-size: 7rem;
	font-weight: 800;
	color: var(--c-primary);
	line-height: 1;
}

/* ---------- Utility ---------- */
.text-muted-soft { color: var(--c-text-light); }
.section-eyebrow {
	display: inline-block;
	color: var(--c-primary);
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	font-size: 12px;
	margin-bottom: 12px;
}

/* ---------- Hero / Slider ---------- */
.main_slider .flexslider-overlay {
	background: linear-gradient(135deg, rgba(31, 39, 50, .78) 0%, rgba(31, 39, 50, .45) 100%) !important;
}

.main_slider .intro_before_featured_word,
.main_slider h3 {
	color: #fff !important;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 2.6rem;
	text-shadow: 0 4px 24px rgba(0, 0, 0, .45);
	max-width: 780px;
	margin: 0 auto;
	line-height: 1.25;
}

@media (max-width: 767px) {
	.main_slider .intro_before_featured_word,
	.main_slider h3 {
		font-size: 1.7rem;
	}
}

/* ---------- Section headings ---------- */
.about-home-h1 {
	font-size: 2.6rem;
	margin: 8px 0 12px;
	color: var(--c-dark);
}
.h1-like {
	font-family: var(--font-heading);
	font-size: 2.4rem;
	font-weight: 700;
	color: var(--c-dark);
	line-height: 1.2;
}
.about-home h5,
.s-pt-30 > .container h2,
section h2 {
	font-size: 2.1rem;
	color: var(--c-dark);
}

.about-home p,
.icon-content p {
	font-size: 16px;
	line-height: 1.8;
	max-width: 680px;
	margin-left: auto;
	margin-right: auto;
}

/* ---------- WhatsApp / telefon kısayol butonları ---------- */
.shortcut_container {
	display: block;
	position: fixed;
	left: 10px;
	bottom: 20px;
	width: 54px;
	height: auto;
	z-index: 999;
	text-align: right;
}

.shortcut_icon {
	display: block;
	width: 48px;
	height: 48px;
	border-radius: 32px;
	box-shadow: 0 0 15px 0 rgba(0, 0, 0, .25);
	margin-top: 10px;
	text-align: right;
	background-color: #fff;
	overflow: hidden;
}

.shortcut_icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.shortcut_icon:hover {
	margin-left: -10px;
	box-shadow: 0 0 15px 0 rgba(0, 0, 0, .75);
}

/* ---------- Codin anasayfa ---------- */
.cx-kicker {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--c-primary);
	margin-bottom: 14px;
}
.cx-title {
	font-size: clamp(2rem, 4.6vw, 3.4rem);
	line-height: 1.15;
	letter-spacing: -0.03em;
	color: var(--c-dark);
	max-width: 16ch;
	margin-bottom: 18px;
}
.cx-title-sm {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	color: var(--c-dark);
	letter-spacing: -0.02em;
	margin: 0;
}
.cx-lead { max-width: 540px; font-size: 17px; line-height: 1.75; margin-bottom: 28px; }
.cx-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cx-section-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 16px;
	margin-bottom: 28px;
}
.cx-section-top h2 { margin: 0; font-size: 1.8rem; }
.cx-soft { padding: 72px 28px; background: var(--c-bg-soft); }
.cx-soft-inner { width: 100%; }
.cx-soft-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
	gap: 36px;
	align-items: center;
}
.cx-soft-visual {
	position: relative;
	min-height: 420px;
	border-radius: 28px;
	overflow: hidden;
	background: var(--c-dark);
	box-shadow: var(--shadow-lg);
}
.cx-soft-visual > img { min-height: 420px; }
.cx-soft-card {
	position: absolute;
	left: 22px;
	right: 22px;
	bottom: 22px;
	padding: 18px 20px;
	border-radius: 18px;
	background: rgba(255,255,255,.94);
	box-shadow: var(--shadow-md);
}
.cx-soft-card small {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--c-primary);
	margin-bottom: 6px;
}
.cx-soft-card strong { display: block; color: var(--c-dark); font-size: 16px; }
.cx-soft-card p { margin: 6px 0 0; font-size: 13px; color: var(--c-text); }
.cx-soft-stat {
	position: absolute;
	top: 22px;
	right: 22px;
	min-width: 92px;
	padding: 12px 14px;
	border-radius: 16px;
	background: #fff;
	box-shadow: var(--shadow-md);
	text-align: center;
}
.cx-soft-stat b {
	display: block;
	font-size: 28px;
	line-height: 1;
	color: var(--c-primary);
}
.cx-soft-stat span { font-size: 11px; font-weight: 600; color: var(--c-text); }
.cx-soft-copy .cx-lead { margin-bottom: 22px; max-width: none; }
.cx-soft-list {
	list-style: none;
	padding: 0;
	margin: 0 0 28px;
}
.cx-soft-list li {
	padding: 14px 0 14px 16px;
	border-left: 3px solid var(--c-primary-light);
	margin-bottom: 8px;
}
.cx-soft-list li:first-child { border-left-color: var(--c-primary); }
.cx-soft-list strong { display: block; color: var(--c-dark); margin-bottom: 4px; }
.cx-soft-list span { font-size: 14px; color: var(--c-text); }
.studio-blog { padding: 64px 0 70px; background: #fff; }
.studio-blog-card { margin-bottom: 28px; }
.studio-blog-card a { color: inherit; }
.studio-blog-card img {
	width: 100%;
	height: 190px;
	object-fit: cover;
	margin-bottom: 12px;
	border-radius: 16px;
}
.studio-blog-card small { color: var(--c-text-light); }
.studio-blog-card h3 { font-size: 1.05rem; margin-top: 6px; color: var(--c-dark); }
.cx-cta { padding: 64px 0; background: var(--c-bg-soft); }
.cx-cta h2 { margin-bottom: 10px; }
.cx-cta-phone { margin-top: 14px; font-weight: 600; }

.cx-home-hero { padding: 48px 0 56px; background: #fff; }
.cx-home-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
	gap: 48px;
	align-items: center;
}
.cx-home-hero-copy .cx-title { max-width: 14ch; }
.cx-home-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	padding: 0;
	margin: 28px 0 0;
}
.cx-home-pills li {
	margin: 0;
	padding: 8px 14px;
	border-radius: 999px;
	background: var(--c-bg-soft);
	font-size: 13px;
	font-weight: 600;
	color: var(--c-dark);
}
.cx-home-visual {
	position: relative;
	min-height: 420px;
	height: 100%;
	border-radius: 28px;
	overflow: hidden;
	background: var(--c-dark);
	box-shadow: var(--shadow-lg);
}
.cx-home-visual img,
.cx-soft-visual > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transform-origin: center;
	animation: cx-kenburns 18s ease-in-out infinite alternate;
}
@keyframes cx-kenburns {
	from { transform: scale(1); }
	to { transform: scale(1.08); }
}

.cx-section-head {
	text-align: center;
	margin-bottom: 28px;
}
.cx-section-head h2 {
	margin: 0 0 8px;
	font-size: clamp(1.6rem, 3vw, 2.1rem);
	color: var(--c-dark);
	letter-spacing: -0.02em;
}
.cx-section-head .btn-link { display: inline-block; }

.cx-home-svc { padding: 20px 28px 0; background: #fff; }
.cx-home-svc .container { padding-bottom: 8px; }
.cx-home-svc-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	width: 100%;
}
.cx-home-svc-card {
	display: block;
	border-radius: 18px;
	overflow: hidden;
	background: var(--c-dark);
	color: #fff;
	position: relative;
}
.cx-home-svc-card img {
	width: 100%;
	height: 320px;
	object-fit: cover;
	display: block;
	transition: transform .45s ease;
}
.cx-home-svc-card:hover img { transform: scale(1.05); }
.cx-home-svc-body {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 20px 18px 18px;
	background: linear-gradient(transparent, rgba(31,39,50,.88));
}
.cx-home-svc-body strong { display: block; font-size: 18px; margin-bottom: 6px; color: #fff; }
.cx-home-svc-body p { margin: 0 0 8px; font-size: 13px; line-height: 1.5; color: rgba(255,255,255,.8); }
.cx-home-svc-body i { font-style: normal; font-size: 12px; font-weight: 700; color: var(--c-primary); }

.cx-home-work { padding: 56px 0 80px; background: #fff; overflow: hidden; }
.cx-home-marquee {
	overflow: hidden;
	width: 100%;
	margin-top: 8px;
}
.cx-home-marquee-track {
	display: flex;
	gap: 18px;
	width: max-content;
	animation: cx-ref-move 42s linear infinite;
}
.cx-home-marquee:hover .cx-home-marquee-track { animation-play-state: paused; }
@keyframes cx-ref-move {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}
.cx-win {
	flex: 0 0 calc(25vw - 14px);
	min-width: 260px;
	max-width: 420px;
	display: flex;
	flex-direction: column;
	background: #1b212a;
	border-radius: 16px;
	overflow: hidden;
	color: #fff;
	box-shadow: var(--shadow-md);
}
.cx-win-bar {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 10px 12px;
	background: #14191f;
}
.cx-win-bar i {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #3d4652;
}
.cx-win-bar i:nth-child(1) { background: #ff5f57; }
.cx-win-bar i:nth-child(2) { background: #febc2e; }
.cx-win-bar i:nth-child(3) { background: #28c840; }
.cx-win-screen {
	display: block;
	height: 220px;
	overflow: hidden;
	background: #111;
}
.cx-win-screen img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .5s ease;
}
.cx-win:hover .cx-win-screen img { transform: scale(1.05); }
.cx-win-name {
	display: block;
	padding: 12px 14px 14px;
	font-size: 14px;
	font-weight: 700;
}

@media (max-width: 991px) {
	.cx-home-hero-grid { grid-template-columns: 1fr; gap: 28px; }
	.cx-home-visual { min-height: 280px; }
	.cx-home-svc-grid { grid-template-columns: 1fr 1fr; }
	.cx-home-svc-card img { height: 240px; }
	.cx-win { flex-basis: 70vw; max-width: none; }
	.cx-soft-grid { grid-template-columns: 1fr; gap: 28px; }
	.cx-soft-visual,
	.cx-soft-visual > img { min-height: 320px; }
}
@media (max-width: 575px) {
	.cx-home-visual { min-height: 240px; border-radius: 20px; }
	.cx-home-svc { padding-left: 14px; padding-right: 14px; }
	.cx-home-svc-grid { grid-template-columns: 1fr; }
	.cx-home-svc-card img { height: 220px; }
	.cx-win { flex-basis: 84vw; }
}

.cx-work { padding: 28px 0 4px; background: #fff; }
.cx-work-bc {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--c-text-light);
	margin-bottom: 28px;
}
.cx-work-bc a { color: var(--c-text-light); }
.cx-work-bc a:hover { color: var(--c-primary); }
.cx-work-bc strong { color: var(--c-dark); font-weight: 600; }
.cx-work-hero {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
	padding-bottom: 36px;
}
.cx-work-hero-copy { max-width: 640px; }
.cx-work-hero .cx-title { max-width: 11ch; margin-bottom: 16px; }
.cx-work-count {
	flex: 0 0 auto;
	min-width: 140px;
	padding-bottom: 8px;
	border-bottom: 3px solid var(--c-primary);
}
.cx-work-count strong {
	display: block;
	font-size: clamp(2.6rem, 5vw, 4rem);
	line-height: .95;
	color: var(--c-dark);
	letter-spacing: -0.04em;
}
.cx-work-count span {
	display: block;
	margin-top: 6px;
	font-size: 13px;
	font-weight: 600;
	color: var(--c-text-light);
	letter-spacing: .04em;
	text-transform: uppercase;
}

.cx-work-featured { padding: 0; background: #fff; }
.cx-feat-bento {
	display: grid;
	grid-template-columns: 1.35fr 1fr 1fr;
	grid-template-rows: minmax(240px, 28vw) minmax(240px, 28vw);
	gap: 0;
	width: 100%;
}
.cx-feat-card {
	position: relative;
	display: block;
	min-height: 240px;
	border-radius: 0;
	overflow: hidden;
	background: var(--c-dark);
	color: #fff;
}
.cx-feat-card.is-hero {
	grid-row: 1 / 3;
	grid-column: 1;
}
.cx-feat-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .55s ease;
}
.cx-feat-card:hover img,
.cx-folio-card:hover img { transform: scale(1.06); }
.cx-feat-shade,
.cx-folio-shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(31,39,50,.05) 28%, rgba(31,39,50,.78) 100%);
	transition: background .3s ease;
}
.cx-feat-card:hover .cx-feat-shade,
.cx-folio-card:hover .cx-folio-shade {
	background: linear-gradient(180deg, rgba(31,39,50,.12) 20%, rgba(31,39,50,.88) 100%);
}
.cx-tag {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 2;
	padding: 6px 11px;
	border-radius: 999px;
	background: rgba(255,255,255,.18);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.cx-feat-meta,
.cx-folio-meta {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 16px;
	z-index: 2;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 12px;
}
.cx-feat-meta strong { font-size: 22px; line-height: 1.2; color: #fff; }
.cx-folio-meta strong { font-size: 17px; line-height: 1.3; color: #fff; }
.cx-feat-meta i,
.cx-folio-meta i {
	font-style: normal;
	font-size: 12px;
	font-weight: 700;
	color: #fff;
	white-space: nowrap;
	opacity: 0;
	transform: translateY(6px);
	transition: opacity .25s ease, transform .25s ease;
}
.cx-feat-card:hover i,
.cx-folio-card:hover i {
	opacity: 1;
	transform: none;
	color: var(--c-primary);
}

.cx-work-grid { padding: 0 0 80px; background: #fff; }
.cx-work-grid .cx-work-empty[hidden] { display: none !important; }
.cx-work-bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin: 0;
	padding: 18px 0;
	position: sticky;
	top: 0;
	z-index: 5;
	background: rgba(255,255,255,.94);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}
.cx-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.cx-filter {
	border: 1px solid var(--c-border);
	background: #fff;
	color: var(--c-dark);
	border-radius: 999px;
	padding: 8px 16px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
}
.cx-filter:hover { border-color: var(--c-primary); color: var(--c-primary); }
.cx-filter.is-on {
	background: var(--c-dark);
	border-color: var(--c-dark);
	color: #fff;
}
.cx-work-search { margin: 0; min-width: 220px; }
.cx-work-search input {
	width: 100%;
	border: 1px solid var(--c-border);
	border-radius: 999px;
	padding: 10px 16px;
	background: var(--c-bg-soft);
}
.cx-folio {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	width: 100%;
}
.cx-folio-item.is-hidden { display: none; }
.cx-folio-card {
	display: block;
	position: relative;
	height: 280px;
	border-radius: 0;
	overflow: hidden;
	background: var(--c-bg-soft);
}
.cx-folio-item:nth-child(5n+1) .cx-folio-card,
.cx-folio-item:nth-child(5n+4) .cx-folio-card { height: 280px; }
.cx-folio-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .5s ease;
}
.cx-work-empty { text-align: center; padding: 40px 0; color: var(--c-text-light); }
.cx-work-more { text-align: center; margin-top: 36px; }

@media (max-width: 991px) {
	.cx-feat-bento {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 240px 200px 200px;
	}
	.cx-feat-card.is-hero { grid-column: 1 / 3; grid-row: 1; }
	.cx-folio { grid-template-columns: repeat(2, 1fr); }
	.cx-folio-card,
	.cx-folio-item:nth-child(5n+1) .cx-folio-card,
	.cx-folio-item:nth-child(5n+4) .cx-folio-card { height: 240px; }
	.cx-work-hero { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 575px) {
	.cx-feat-bento {
		grid-template-columns: 1fr;
		grid-template-rows: none;
	}
	.cx-feat-card,
	.cx-feat-card.is-hero { grid-column: auto; grid-row: auto; height: 240px; }
	.cx-folio { grid-template-columns: 1fr; }
	.cx-folio-card,
	.cx-folio-item:nth-child(5n+1) .cx-folio-card,
	.cx-folio-item:nth-child(5n+4) .cx-folio-card { height: 230px; }
	.cx-work-search { width: 100%; }
	.cx-feat-meta i,
	.cx-folio-meta i { opacity: 1; transform: none; }
}

/* ---------- Mobile ---------- */
@media (max-width: 767px) {
	.modern-page-title h1 { font-size: 1.7rem; }
	.blog-card .blog-card-img { height: 180px; }
	.cx-intro { padding-top: 48px; }
	.cx-title { max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
	.cx-home-marquee-track,
	.cx-home-visual img,
	.cx-soft-visual > img { animation: none; }
}
