/* Dijio Ajans Premium Main CSS */
:root {
	--bg: #030E21;
	--bg-2: #0A192F;
	--bg-3: #071B37;
	--card: rgba(255,255,255,.07);
	--card-strong: rgba(255,255,255,.11);
	--line: rgba(255,255,255,.14);
	--text: #FFFFFF;
	--muted: #CBD5E1;
	--soft: #8EA4BF;
	--accent: #00DDEE;
	--accent-2: #07A5B8;
	--shadow: 0 24px 80px rgba(0,0,0,.34);
	--radius: 28px;
	--radius-sm: 18px;
	--container: 1180px;
	--font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-heading: "Urbanist", "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }

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

body {
	margin: 0;
	background:
		radial-gradient(circle at 12% 18%, rgba(0,221,238,.18), transparent 32rem),
		radial-gradient(circle at 88% 4%, rgba(7,165,184,.20), transparent 30rem),
		linear-gradient(180deg, var(--bg), #041126 45%, var(--bg));
	color: var(--text);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.65;
	overflow-x: hidden;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

img, svg, video, iframe {
	max-width: 100%;
	height: auto;
}

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

a:hover,
a:focus-visible {
	color: var(--accent);
}

button, input, select, textarea {
	font: inherit;
}

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

.narrow {
	width: min(calc(100% - 40px), 880px);
}

.section {
	padding: clamp(72px, 8vw, 128px) 0;
	position: relative;
}

.site-main {
	min-height: 60vh;
}

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

.skip-link:focus {
	position: fixed;
	left: 16px;
	top: 16px;
	width: auto;
	height: auto;
	padding: 12px 16px;
	background: var(--accent);
	color: #031225;
	border-radius: 12px;
	z-index: 9999;
	clip: auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 999;
	background: rgba(3,14,33,.76);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(255,255,255,.08);
	transition: box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
	background: rgba(3,14,33,.92);
	box-shadow: 0 10px 30px rgba(0,0,0,.28);
}

.header-inner {
	min-height: 82px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 22px;
}

.brand img {
	display: block;
	width: clamp(118px, 12vw, 176px);
	height: auto;
	max-height: 64px;
	object-fit: contain;
}

.custom-logo-link img {
	width: clamp(118px, 12vw, 176px);
	height: auto;
	max-height: 64px;
	object-fit: contain;
}

.primary-menu {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(18px, 2.2vw, 34px);
	margin: 0;
	padding: 0;
}

.primary-menu a {
	color: rgba(255,255,255,.86);
	font-weight: 800;
	font-size: 15px;
	letter-spacing: -.01em;
	padding: 12px 0;
	position: relative;
}

.primary-menu a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 4px;
	height: 2px;
	background: var(--accent);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .25s ease;
}

.primary-menu a:hover::after,
.primary-menu .current-menu-item > a::after {
	transform: scaleX(1);
	transform-origin: left;
}

.menu-toggle {
	display: none;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(255,255,255,.16);
	background: rgba(255,255,255,.07);
	border-radius: 16px;
	padding: 11px;
	cursor: pointer;
}

.menu-toggle span:not(.screen-reader-text) {
	display: block;
	height: 2px;
	background: #fff;
	border-radius: 2px;
	margin: 5px 0;
	transition: transform .25s ease, opacity .25s ease;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 54px;
	padding: 14px 24px;
	border-radius: 999px;
	font-weight: 900;
	line-height: 1;
	border: 1px solid transparent;
	transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
	white-space: nowrap;
}

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

.btn-primary {
	color: #031225;
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	box-shadow: 0 14px 36px rgba(0,221,238,.20);
}

.btn-primary:hover,
.btn-primary:focus-visible {
	color: #031225;
	box-shadow: 0 18px 52px rgba(0,221,238,.32);
}

.btn-secondary {
	color: #fff;
	background: rgba(255,255,255,.06);
	border-color: rgba(255,255,255,.18);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
	border-color: var(--accent);
	background: rgba(0,221,238,.10);
}

.btn-small {
	min-height: 46px;
	padding: 12px 20px;
	font-size: 14px;
}

.section-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--accent);
	font-weight: 900;
	letter-spacing: .15em;
	font-size: 13px;
	text-transform: uppercase;
	margin-bottom: 16px;
}

h1, h2, h3, h4 {
	font-family: var(--font-heading);
	color: #fff;
	line-height: .98;
	letter-spacing: -.045em;
	margin: 0 0 22px;
}

h1 {
	font-size: clamp(48px, 7vw, 94px);
	max-width: 980px;
}

h2 {
	font-size: clamp(34px, 4.5vw, 64px);
	max-width: 920px;
}

h3 {
	font-size: clamp(22px, 2.2vw, 30px);
}

p {
	color: var(--muted);
	margin: 0 0 18px;
}

.hero {
	padding: clamp(88px, 9vw, 150px) 0 clamp(70px, 7vw, 120px);
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(3,14,33,.96), rgba(3,14,33,.78) 55%, rgba(0,221,238,.12)),
		radial-gradient(circle at 73% 34%, rgba(0,221,238,.18), transparent 26rem);
	pointer-events: none;
}

.hero-grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.07fr) minmax(340px, .93fr);
	gap: clamp(38px, 6vw, 90px);
	align-items: center;
}

.hero h1 span {
	color: var(--accent);
	font-style: italic;
}

.hero-content > p {
	font-size: clamp(18px, 2vw, 23px);
	max-width: 720px;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin: 34px 0 34px;
}

.trust-row {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	max-width: 880px;
}

.trust-row span {
	padding: 16px;
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 18px;
	background: rgba(255,255,255,.055);
	color: var(--soft);
	font-weight: 700;
	min-width: 0;
}

.trust-row strong {
	display: block;
	color: #fff;
	font-family: var(--font-heading);
	font-size: 30px;
	line-height: 1;
	margin-bottom: 6px;
}

.hero-visual {
	min-height: 520px;
	position: relative;
	display: grid;
	place-items: center;
}

.hero-logo-card {
	width: min(100%, 560px);
	aspect-ratio: 1.08 / .78;
	display: grid;
	place-items: center;
	border-radius: 42px;
	background:
		linear-gradient(140deg, rgba(255,255,255,.12), rgba(255,255,255,.04)),
		linear-gradient(180deg, rgba(0,221,238,.12), rgba(255,255,255,.03));
	border: 1px solid rgba(255,255,255,.18);
	box-shadow: var(--shadow);
	transform: rotate(-3deg);
}

.hero-logo-card img {
	width: 76%;
	max-height: 72%;
	object-fit: contain;
	filter: drop-shadow(0 16px 22px rgba(0,0,0,.35));
}

.floating-chip {
	position: absolute;
	padding: 15px 18px;
	border-radius: 18px;
	background: rgba(255,255,255,.92);
	color: #071B37;
	font-weight: 900;
	font-size: 14px;
	box-shadow: 0 18px 55px rgba(0,0,0,.25);
}

.chip-one { left: 2%; top: 15%; }
.chip-two { left: 8%; bottom: 16%; }
.chip-three { right: 0; top: 42%; }

.split-grid,
.contact-grid {
	display: grid;
	grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
	gap: clamp(28px, 5vw, 76px);
	align-items: start;
}

.rich-card,
.service-card,
.process-card,
.value-card,
.post-card,
.portfolio-card,
.sticky-note {
	border: 1px solid var(--line);
	background:
		linear-gradient(180deg, rgba(255,255,255,.095), rgba(255,255,255,.045)),
		rgba(255,255,255,.02);
	border-radius: var(--radius);
	box-shadow: 0 18px 60px rgba(0,0,0,.20);
}

.rich-card {
	padding: clamp(26px, 3.2vw, 46px);
}

.rich-text p,
.rich-text li {
	font-size: 18px;
	color: var(--muted);
}

.rich-text a {
	color: var(--accent);
	text-decoration: underline;
	text-underline-offset: 4px;
}

.text-link {
	display: inline-flex;
	color: var(--accent);
	font-weight: 900;
	margin-top: 8px;
}

.section-head {
	margin-bottom: clamp(34px, 5vw, 58px);
}

.section-head p {
	max-width: 780px;
	font-size: 18px;
}

.section-head-row {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.service-card {
	padding: 26px;
	min-height: 260px;
	position: relative;
	overflow: hidden;
	transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.service-card::before {
	content: "";
	position: absolute;
	inset: auto -30% -42% auto;
	width: 170px;
	height: 170px;
	background: rgba(0,221,238,.13);
	border-radius: 50%;
	filter: blur(8px);
	transition: transform .25s ease;
}

.service-card:hover {
	transform: translateY(-6px);
	border-color: rgba(0,221,238,.44);
	background: linear-gradient(180deg, rgba(0,221,238,.11), rgba(255,255,255,.05));
}

.service-card:hover::before {
	transform: scale(1.25);
}

.service-icon {
	display: inline-grid;
	place-items: center;
	width: 56px;
	height: 56px;
	border-radius: 18px;
	background: rgba(0,221,238,.12);
	border: 1px solid rgba(0,221,238,.24);
	font-size: 28px;
	margin-bottom: 20px;
}

.service-card h3 {
	font-size: 24px;
	line-height: 1.05;
	margin-bottom: 14px;
}

.service-card p,
.service-text p {
	margin: 0;
	font-size: 15px;
	color: var(--muted);
}

.process-grid,
.values-grid,
.post-grid,
.gallery-grid {
	display: grid;
	gap: 18px;
}

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

.process-card,
.value-card {
	padding: 26px;
}

.process-card span {
	display: inline-block;
	color: var(--accent);
	font-family: var(--font-heading);
	font-weight: 900;
	font-size: 42px;
	margin-bottom: 22px;
}

.process-card h3,
.value-card h3 {
	font-size: 25px;
	margin-bottom: 12px;
}

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

.value-card span {
	display: block;
	font-size: 34px;
	margin-bottom: 18px;
}

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

.portfolio-card {
	min-height: 300px;
	overflow: hidden;
	position: relative;
}

.portfolio-card a {
	display: block;
	height: 100%;
	color: #fff;
}

.portfolio-card img {
	width: 100%;
	height: 100%;
	min-height: 300px;
	object-fit: cover;
	display: block;
	transition: transform .4s ease, filter .4s ease;
}

.portfolio-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 24px;
	background: linear-gradient(180deg, transparent 20%, rgba(3,14,33,.88));
	opacity: .96;
}

.portfolio-overlay strong {
	font-family: var(--font-heading);
	font-size: 26px;
	line-height: 1;
}

.portfolio-overlay em {
	color: var(--accent);
	font-style: normal;
	font-weight: 900;
	margin-top: 8px;
}

.portfolio-card:hover img {
	transform: scale(1.06);
	filter: saturate(1.12) contrast(1.04);
}

.portfolio-placeholder {
	display: grid;
	place-items: center;
	padding: 24px;
	background:
		radial-gradient(circle at 20% 20%, rgba(0,221,238,.34), transparent 26rem),
		linear-gradient(140deg, #071B37, #030E21);
}

.portfolio-placeholder div {
	text-align: center;
}

.portfolio-placeholder span {
	color: var(--accent);
	font-weight: 900;
	letter-spacing: .22em;
}

.portfolio-placeholder strong,
.portfolio-placeholder em {
	display: block;
}

.portfolio-placeholder strong {
	font-family: var(--font-heading);
	font-size: 28px;
	margin-top: 8px;
}

.portfolio-placeholder em {
	color: var(--muted);
	font-style: normal;
}

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

.post-card {
	overflow: hidden;
}

.post-thumb {
	display: grid;
	place-items: center;
	min-height: 220px;
	background:
		radial-gradient(circle at center, rgba(0,221,238,.24), transparent 20rem),
		linear-gradient(145deg, #071B37, #030E21);
}

.post-thumb img {
	width: 100%;
	height: 240px;
	object-fit: cover;
	display: block;
}

.post-thumb-placeholder {
	font-family: var(--font-heading);
	font-size: 30px;
	font-weight: 900;
	color: rgba(255,255,255,.58);
}

.post-card-body {
	padding: 24px;
}

.post-date {
	display: inline-flex;
	color: var(--accent);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.post-card h3 {
	font-size: 25px;
	line-height: 1.06;
	margin-bottom: 12px;
}

.post-card p {
	font-size: 15px;
}

.contact-pills {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 24px;
}

.contact-pills a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	width: fit-content;
	padding: 13px 16px;
	border-radius: 999px;
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.12);
	font-weight: 800;
}

.dijio-form {
	display: grid;
	gap: 16px;
}

.form-row label {
	display: grid;
	gap: 8px;
	color: #fff;
	font-weight: 800;
	font-size: 14px;
}

.dijio-form input,
.dijio-form select,
.dijio-form textarea {
	width: 100%;
	background: rgba(3,14,33,.88);
	color: #fff;
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 16px;
	padding: 15px 16px;
	outline: none;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.dijio-form input:focus,
.dijio-form select:focus,
.dijio-form textarea:focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 4px rgba(0,221,238,.10);
}

.dijio-form textarea {
	resize: vertical;
	min-height: 140px;
}

.dijio-form .honeypot {
	display: none !important;
}

.form-message {
	padding: 14px 16px;
	border-radius: 16px;
	margin-bottom: 16px;
	font-weight: 800;
}

.form-message.success {
	background: rgba(34,197,94,.15);
	border: 1px solid rgba(34,197,94,.35);
}

.form-message.error {
	background: rgba(239,68,68,.14);
	border: 1px solid rgba(239,68,68,.35);
}

.map-embed {
	overflow: hidden;
	border-radius: 22px;
	border: 1px solid rgba(255,255,255,.12);
	margin-top: 24px;
	background: rgba(255,255,255,.06);
}

.map-embed iframe {
	width: 100%;
	height: 320px;
	border: 0;
	display: block;
	filter: grayscale(1) invert(.88) contrast(.84);
}

.page-hero {
	padding: clamp(82px, 8vw, 132px) 0 clamp(52px, 6vw, 84px);
	background:
		linear-gradient(180deg, rgba(255,255,255,.03), transparent),
		radial-gradient(circle at 70% 20%, rgba(0,221,238,.18), transparent 30rem);
}

.page-hero h1 {
	font-size: clamp(44px, 6vw, 84px);
}

.page-hero p {
	font-size: 20px;
}

.sticky-note {
	position: sticky;
	top: 112px;
	padding: 34px;
}

.single-thumb {
	border-radius: var(--radius);
	overflow: hidden;
	margin-bottom: 24px;
	border: 1px solid rgba(255,255,255,.12);
}

.single-thumb img {
	display: block;
	width: 100%;
	height: auto;
}

.pagination {
	margin-top: 38px;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.page-numbers {
	padding: 10px 14px;
	border-radius: 12px;
	background: rgba(255,255,255,.07);
	border: 1px solid rgba(255,255,255,.12);
	font-weight: 800;
}

.page-numbers.current {
	background: var(--accent);
	color: #031225;
}

.footer-cta {
	padding: 72px 0;
	background:
		radial-gradient(circle at 85% 30%, rgba(0,221,238,.20), transparent 26rem),
		linear-gradient(180deg, #071B37, #030E21);
	border-top: 1px solid rgba(255,255,255,.08);
	border-bottom: 1px solid rgba(255,255,255,.08);
}

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

.footer-cta h2 {
	font-size: clamp(32px, 4vw, 56px);
}

.footer-cta p {
	max-width: 660px;
}

.footer-cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: flex-end;
}

.site-footer {
	padding: 64px 0 28px;
	background: #020916;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.3fr .65fr .8fr;
	gap: 42px;
}

.footer-brand img {
	width: 160px;
	max-height: 70px;
	object-fit: contain;
}

.footer-brand p {
	max-width: 500px;
	margin-top: 20px;
}

.site-footer h3 {
	font-size: 20px;
	letter-spacing: 0;
}

.footer-menu,
.footer-contact {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
	color: var(--muted);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	align-items: center;
	border-top: 1px solid rgba(255,255,255,.08);
	margin-top: 44px;
	padding-top: 24px;
}

.footer-bottom p {
	margin: 0;
	font-size: 14px;
}

.footer-bottom a {
	color: var(--accent);
	font-weight: 900;
}

.floating-actions {
	position: fixed;
	right: max(18px, env(safe-area-inset-right));
	bottom: max(18px, env(safe-area-inset-bottom));
	z-index: 998;
	display: grid;
	gap: 10px;
}

.floating-actions a {
	width: 56px;
	height: 56px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	color: #031225;
	background: var(--accent);
	box-shadow: 0 14px 40px rgba(0,221,238,.30);
	font-size: 24px;
	border: 1px solid rgba(255,255,255,.20);
}

.floating-actions .floating-phone {
	background: #fff;
}

.dijio-lightbox {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: none;
	place-items: center;
	background: rgba(0,0,0,.86);
	padding: 24px;
}

.dijio-lightbox.is-open {
	display: grid;
}

.dijio-lightbox img {
	max-height: 86vh;
	width: auto;
	border-radius: 20px;
	box-shadow: 0 24px 90px rgba(0,0,0,.60);
}

.dijio-lightbox-close {
	position: fixed;
	right: 20px;
	top: 18px;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,.24);
	background: rgba(255,255,255,.10);
	color: #fff;
	font-size: 34px;
	line-height: 1;
	cursor: pointer;
}

.reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1100px) {
	.service-grid,
	.values-grid,
	.process-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.hero-visual {
		min-height: 420px;
	}

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

@media (max-width: 900px) {
	.header-inner {
		grid-template-columns: auto auto;
		justify-content: space-between;
	}

	.menu-toggle {
		display: block;
		order: 3;
	}

	.header-actions {
		display: none;
	}

	.main-navigation {
		position: fixed;
		inset: 82px 16px auto 16px;
		display: none;
		border: 1px solid rgba(255,255,255,.14);
		border-radius: 24px;
		background: rgba(3,14,33,.98);
		box-shadow: var(--shadow);
		padding: 18px;
	}

	body.menu-open .main-navigation {
		display: block;
	}

	.primary-menu {
		display: grid;
		justify-content: stretch;
		gap: 4px;
	}

	.primary-menu a {
		display: block;
		padding: 14px;
		border-radius: 14px;
		background: rgba(255,255,255,.05);
	}

	.primary-menu a::after {
		display: none;
	}

	body.menu-open .menu-toggle span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	body.menu-open .menu-toggle span:nth-child(2) {
		opacity: 0;
	}

	body.menu-open .menu-toggle span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.split-grid,
	.contact-grid,
	.footer-cta-inner,
	.footer-grid {
		grid-template-columns: 1fr;
		display: grid;
	}

	.footer-cta-actions {
		justify-content: flex-start;
	}

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

	.gallery-grid,
	.post-grid {
		grid-template-columns: 1fr;
	}

	.sticky-note {
		position: static;
	}
}

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

	.section {
		padding: 64px 0;
	}

	.hero {
		padding-top: 72px;
	}

	h1 {
		font-size: clamp(42px, 14vw, 58px);
	}

	h2 {
		font-size: clamp(30px, 10vw, 42px);
	}

	.hero-actions,
	.footer-cta-actions {
		display: grid;
	}

	.btn {
		width: 100%;
		white-space: normal;
		text-align: center;
	}

	.trust-row,
	.service-grid,
	.values-grid,
	.process-grid {
		grid-template-columns: 1fr;
	}

	.hero-visual {
		min-height: 340px;
	}

	.floating-chip {
		position: static;
		margin: 8px auto;
		width: fit-content;
		font-size: 12px;
	}

	.hero-logo-card {
		width: 100%;
		margin-bottom: 12px;
	}

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.floating-actions {
		right: 14px;
		bottom: 14px;
	}

	.floating-actions a {
		width: 52px;
		height: 52px;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}
	.reveal {
		opacity: 1;
		transform: none;
	}
}

/* Dijio Pro 2.0 refinements */
.section-action-center {
	margin-top: 34px;
	display: flex;
	justify-content: center;
}

.service-card-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	position: relative;
	z-index: 1;
}

.service-card-link:hover,
.service-card-link:focus-visible {
	color: inherit;
}

.service-card .text-link {
	margin-top: auto;
	padding-top: 18px;
}

.pro-blog-section {
	background:
		radial-gradient(circle at 8% 20%, rgba(0,221,238,.16), transparent 28rem),
		linear-gradient(180deg, rgba(255,255,255,.015), rgba(0,0,0,.10));
}

.post-grid-pro {
	align-items: stretch;
}

.post-card-featured {
	position: relative;
	background:
		linear-gradient(180deg, rgba(0,221,238,.095), rgba(255,255,255,.045)),
		rgba(255,255,255,.02);
	border-color: rgba(0,221,238,.18);
	transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.post-card-featured::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, transparent, rgba(0,221,238,.08), transparent);
	opacity: 0;
	transition: opacity .25s ease;
	pointer-events: none;
}

.post-card-featured:hover {
	transform: translateY(-6px);
	border-color: rgba(0,221,238,.44);
	box-shadow: 0 26px 80px rgba(0,0,0,.28);
}

.post-card-featured:hover::before {
	opacity: 1;
}

.post-card-featured .post-thumb {
	min-height: 248px;
	background:
		linear-gradient(135deg, rgba(0,221,238,.22), transparent),
		radial-gradient(circle at 30% 30%, rgba(255,255,255,.12), transparent 18rem),
		linear-gradient(145deg, #08304a, #030E21);
	position: relative;
	overflow: hidden;
}

.post-card-featured .post-thumb::after {
	content: "Marka Rehberi";
	position: absolute;
	right: 18px;
	bottom: 18px;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(3,14,33,.72);
	border: 1px solid rgba(255,255,255,.14);
	color: #fff;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.post-card-body {
	position: relative;
	z-index: 1;
}

.article-shell h2,
.article-shell h3 {
	margin-top: 32px;
}

.article-shell h2:first-child,
.article-shell h3:first-child {
	margin-top: 0;
}

.article-shell ul,
.service-info-card ul {
	margin: 18px 0 0;
	padding-left: 22px;
	color: var(--muted);
}

.article-shell li,
.service-info-card li {
	margin-bottom: 10px;
}

.single-cta {
	margin-top: 26px;
}

.service-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
	gap: clamp(28px, 5vw, 70px);
	align-items: center;
}

.service-hero-icon {
	display: inline-grid;
	place-items: center;
	width: clamp(60px, 7vw, 86px);
	height: clamp(60px, 7vw, 86px);
	border-radius: 24px;
	background: rgba(0,221,238,.12);
	border: 1px solid rgba(0,221,238,.28);
	font-size: clamp(32px, 4vw, 48px);
	margin-right: 16px;
	vertical-align: middle;
}

.service-info-card h2 {
	font-size: clamp(28px, 3vw, 42px);
}

.dijio-whatsapp-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.floating-actions .floating-whatsapp-alt {
	background: linear-gradient(135deg, #fff, var(--accent));
}

.page-hero-rehber {
	background:
		radial-gradient(circle at 78% 18%, rgba(0,221,238,.24), transparent 28rem),
		linear-gradient(180deg, rgba(255,255,255,.035), transparent);
}

@media (max-width: 900px) {
	.service-hero-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.service-hero-icon {
		display: flex;
		margin: 0 0 14px;
	}

	.dijio-whatsapp-row {
		display: grid;
	}
}
