@charset "UTF-8";

:root {
	--bg: #050a12;
	--bg-soft: #091321;
	--surface: rgba(13, 27, 45, 0.86);
	--surface-solid: #0c1828;
	--line: rgba(129, 208, 255, 0.15);
	--line-strong: rgba(46, 188, 255, 0.42);
	--text: #edf8ff;
	--muted: #9fb3c6;
	--blue: #24b7ff;
	--blue-light: #63d7ff;
	--green: #7de36a;
	--shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
	--radius: 24px;
	--container: 1240px;
}

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

html { scroll-behavior: smooth; }

body {
	margin: 0;
	color: var(--text);
	background:
		radial-gradient(circle at 80% 8%, rgba(26, 139, 255, 0.12), transparent 30%),
		linear-gradient(180deg, #040811 0%, #07101b 48%, #050911 100%);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.7;
	overflow-x: hidden;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
	background-size: 72px 72px;
	mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent 82%);
}

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

a { color: var(--blue-light); text-decoration: none; }
a:hover { color: #fff; }

button,
input,
textarea { font: inherit; }

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

.section {
	padding: 110px 0;
	position: relative;
	scroll-margin-top: 95px;
}

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

.screen-reader-text:focus {
	position: fixed !important;
	top: 10px;
	left: 10px;
	width: auto;
	height: auto;
	padding: 12px 18px;
	clip: auto;
	background: #fff;
	color: #000;
	z-index: 10000;
	border-radius: 8px;
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	border-bottom: 1px solid transparent;
	transition: .25s ease;
}

.admin-bar .site-header { top: 32px; }

.site-header.is-scrolled {
	background: rgba(4, 9, 17, .92);
	backdrop-filter: blur(18px);
	border-bottom-color: var(--line);
	box-shadow: 0 12px 40px rgba(0,0,0,.24);
}

.header-inner {
	min-height: 86px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.brand {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
}

.brand img {
	display: block;
	width: 220px;
	height: 64px;
	object-fit: contain;
	object-position: left center;
}

.primary-navigation {
	display: flex;
	align-items: center;
	gap: 24px;
}

.menu {
	display: flex;
	align-items: center;
	gap: 26px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.menu > li { position: relative; }

.menu a {
	color: #d8e7f2;
	font-size: 14px;
	font-weight: 700;
}

.menu a:hover { color: #fff; }

.menu-arrow {
	font-size: 13px;
	margin-left: 3px;
}

.sub-menu {
	position: absolute;
	top: calc(100% + 20px);
	left: 50%;
	transform: translateX(-50%) translateY(8px);
	width: 390px;
	display: grid;
	gap: 3px;
	list-style: none;
	padding: 12px;
	margin: 0;
	border: 1px solid var(--line);
	border-radius: 18px;
	background: rgba(5, 12, 21, .98);
	backdrop-filter: blur(18px);
	box-shadow: var(--shadow);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: .2s ease;
}

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

.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
}

.sub-menu a {
	display: block;
	padding: 11px 12px;
	border-radius: 10px;
	color: #bfd2df;
	font-size: 13px;
	line-height: 1.35;
}

.sub-menu a:hover {
	background: rgba(36,183,255,.09);
	color: #fff;
}

.nav-toggle {
	display: none;
	width: 46px;
	height: 46px;
	border-radius: 13px;
	border: 1px solid var(--line);
	background: rgba(255,255,255,.035);
	padding: 11px;
}

.nav-toggle i {
	display: block;
	height: 2px;
	background: #fff;
	margin: 5px 0;
	border-radius: 2px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 13px 25px;
	border: 1px solid transparent;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--blue), #1676ff);
	color: #03111f;
	font-weight: 900;
	box-shadow: 0 16px 36px rgba(23, 154, 255, .25);
	transition: transform .2s ease, box-shadow .2s ease;
	cursor: pointer;
}

.button:hover {
	color: #03111f;
	transform: translateY(-2px);
	box-shadow: 0 20px 42px rgba(23, 154, 255, .34);
}

.button-small {
	min-height: 42px;
	padding: 9px 16px;
	border-radius: 11px;
	font-size: 14px;
}

.button-ghost {
	background: transparent;
	color: #eaf7ff;
	border-color: var(--line-strong);
	box-shadow: none;
}

.button-ghost:hover {
	color: #fff;
	background: rgba(36,183,255,.08);
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 12px;
	font-weight: 900;
	color: #c8edff;
}

.eyebrow span {
	width: 38px;
	height: 2px;
	background: linear-gradient(90deg, var(--blue), transparent);
}

.home-hero {
	position: relative;
	min-height: 820px;
	padding: 168px 0 100px;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.home-hero-overlay {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 78% 42%, rgba(36,183,255,.14), transparent 34%),
		linear-gradient(110deg, rgba(4,9,17,.1), rgba(4,9,17,.64));
}

.home-hero-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: .95fr 1.05fr;
	align-items: center;
	gap: 72px;
}

.home-hero-copy h1 {
	font-size: clamp(50px, 6.1vw, 86px);
	line-height: .99;
	letter-spacing: -4px;
	margin: 22px 0 28px;
}

.home-hero-copy > p {
	max-width: 680px;
	color: var(--muted);
	font-size: 19px;
	margin: 0 0 34px;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.company-points {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 40px;
}

.company-points span {
	padding: 8px 11px;
	border: 1px solid var(--line);
	border-radius: 999px;
	color: #bfd1df;
	background: rgba(255,255,255,.025);
	font-size: 12px;
	font-weight: 800;
}

.home-hero-visual {
	position: relative;
	min-height: 550px;
	border-radius: 30px;
	overflow: hidden;
	border: 1px solid rgba(89, 211, 255, .3);
	background: #07111c;
	box-shadow: var(--shadow);
}

.home-hero-visual::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(2,8,15,.78), transparent 48%);
	pointer-events: none;
}

.home-hero-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hero-visual-label {
	position: absolute;
	left: 28px;
	right: 28px;
	bottom: 25px;
	z-index: 2;
	display: flex;
	flex-direction: column;
}

.hero-visual-label small {
	color: var(--blue-light);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 800;
}

.hero-visual-label strong {
	font-size: 22px;
	line-height: 1.25;
}

.trust-strip {
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: rgba(255,255,255,.014);
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
}

.trust-grid span {
	padding: 23px;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #b7cbdb;
	font-size: 12px;
	font-weight: 900;
	border-right: 1px solid var(--line);
}

.trust-grid span:last-child { border-right: 0; }

.section-heading {
	max-width: 790px;
	margin-bottom: 52px;
}

.section-heading h2,
.intro-copy h2,
.why-copy h2,
.contact-copy h2 {
	font-size: clamp(38px, 5vw, 62px);
	line-height: 1.07;
	letter-spacing: -2.7px;
	margin: 16px 0 18px;
}

.section-heading p,
.intro-copy p,
.contact-copy p {
	color: var(--muted);
	font-size: 18px;
}

.intro-grid {
	display: grid;
	grid-template-columns: .92fr 1.08fr;
	gap: 80px;
	align-items: start;
}

.intro-grid .section-heading { margin-bottom: 0; }

.intro-copy > p:first-child {
	font-size: 22px;
	color: #dcecf7;
	margin-top: 0;
}

.intro-values {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin-top: 30px;
}

.intro-values span {
	position: relative;
	padding: 13px 14px 13px 40px;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: rgba(255,255,255,.02);
	color: #cadce9;
	font-size: 14px;
}

.intro-values span::before {
	content: "✓";
	position: absolute;
	left: 14px;
	color: var(--green);
	font-weight: 1000;
}

.services-section {
	background: linear-gradient(180deg, transparent, rgba(14,88,143,.045), transparent);
}

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

.service-card,
.home-project-card,
.all-project-card,
.contact-card,
.project-features,
.entry-card,
.post-card {
	border: 1px solid var(--line);
	background: linear-gradient(180deg, rgba(14,29,48,.86), rgba(8,18,31,.88));
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.service-card {
	padding: 30px;
	min-height: 300px;
	transition: transform .22s ease, border-color .22s ease;
}

.service-card:hover {
	transform: translateY(-6px);
	border-color: var(--line-strong);
}

.service-icon {
	width: 58px;
	height: 58px;
	display: grid;
	place-items: center;
	border: 1px solid var(--line-strong);
	border-radius: 17px;
	background: rgba(36,183,255,.08);
	color: var(--blue-light);
	font-weight: 1000;
}

.service-card h3 {
	font-size: 22px;
	margin: 23px 0 10px;
}

.service-card p { color: var(--muted); }

.featured-projects-section {
	background: linear-gradient(180deg, rgba(7,14,24,0), rgba(15,105,165,.05), rgba(7,14,24,0));
}

.section-heading-wide {
	max-width: none;
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	gap: 60px;
	align-items: end;
}

.heading-action p { margin-top: 0; }
.text-link,
.card-link {
	font-weight: 900;
	color: var(--blue-light);
}

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

.home-project-card { overflow: hidden; }

.home-project-image {
	display: block;
	height: 250px;
	overflow: hidden;
	background: #07111c;
}

.home-project-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .3s ease;
}

.home-project-card:hover .home-project-image img { transform: scale(1.035); }

.home-project-content { padding: 26px; }

.status-badge {
	display: inline-flex;
	padding: 7px 10px;
	border: 1px solid rgba(83, 215, 255, .35);
	border-radius: 999px;
	background: rgba(36,183,255,.08);
	color: #c8f2ff;
	font-size: 10px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .65px;
}

.home-project-content h3 {
	font-size: 22px;
	line-height: 1.2;
	margin: 17px 0 10px;
}

.home-project-content h3 a { color: #fff; }

.home-project-content p {
	color: var(--muted);
	font-size: 14px;
}

.why-grid {
	display: grid;
	grid-template-columns: .75fr 1.25fr;
	gap: 75px;
	align-items: center;
}

.why-visual {
	min-height: 480px;
	display: grid;
	place-items: center;
	border: 1px solid var(--line);
	border-radius: 28px;
	background:
		linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
		radial-gradient(circle at 50% 45%, rgba(36,183,255,.2), transparent 42%),
		#08121f;
	background-size: 34px 34px, 34px 34px, auto, auto;
	box-shadow: var(--shadow);
}

.why-visual img {
	width: 260px;
	filter: drop-shadow(0 0 35px rgba(36,183,255,.22));
}

.why-list {
	display: grid;
	gap: 14px;
	margin-top: 32px;
}

.why-list > div {
	display: grid;
	grid-template-columns: 48px 1fr;
	align-items: start;
	gap: 18px;
	padding: 18px 0;
	border-bottom: 1px solid var(--line);
}

.why-list b {
	color: var(--blue-light);
	letter-spacing: 1px;
}

.why-list span {
	color: var(--muted);
}

.why-list strong {
	display: block;
	color: #fff;
	font-size: 18px;
}

.contact-section {
	background: radial-gradient(circle at 24% 44%, rgba(34,166,255,.08), transparent 30%);
}

.contact-grid {
	display: grid;
	grid-template-columns: .82fr 1.18fr;
	align-items: start;
	gap: 72px;
}

.contact-details {
	display: grid;
	gap: 14px;
	margin-top: 34px;
}

.contact-details div {
	display: flex;
	flex-direction: column;
	padding: 17px 0;
	border-bottom: 1px solid var(--line);
}

.contact-details small {
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.contact-details a,
.contact-details span {
	color: #fff;
	font-size: 18px;
	font-weight: 800;
}

.contact-card { padding: 34px; }

.contact-form {
	display: grid;
	gap: 18px;
}

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

.contact-form label {
	display: grid;
	gap: 8px;
	color: #d9eaf5;
	font-size: 13px;
	font-weight: 800;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: rgba(3,10,18,.72);
	color: #fff;
	padding: 13px 14px;
	outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: var(--blue);
	box-shadow: 0 0 0 3px rgba(36,183,255,.12);
}

.contact-form textarea { resize: vertical; }

.form-note {
	margin: 0;
	color: var(--muted);
	font-size: 12px;
}

.honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.form-message {
	padding: 14px 16px;
	border-radius: 12px;
	margin-bottom: 18px;
	font-size: 14px;
}

.form-message.success {
	color: #a6f0b6;
	border: 1px solid rgba(132,232,154,.28);
	background: rgba(132,232,154,.08);
}

.form-message.error {
	color: #ffc5ce;
	border: 1px solid rgba(255,107,129,.28);
	background: rgba(255,107,129,.08);
}

.inner-hero {
	padding: 180px 0 90px;
	border-bottom: 1px solid var(--line);
	background:
		radial-gradient(circle at 70% 20%, rgba(36,183,255,.13), transparent 32%),
		linear-gradient(180deg, #06101b, #050a12);
}

.inner-hero-content {
	max-width: 900px;
	text-align: center;
}

.inner-hero-content .eyebrow { justify-content: center; }

.inner-hero h1 {
	font-size: clamp(50px, 7vw, 88px);
	line-height: 1;
	letter-spacing: -4px;
	margin: 20px 0;
}

.inner-hero p {
	color: var(--muted);
	font-size: 19px;
}

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

.all-project-card { overflow: hidden; }

.all-project-image {
	display: block;
	height: 360px;
	overflow: hidden;
	background: #07111c;
}

.all-project-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .32s ease;
}

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

.all-project-content { padding: 30px; }

.project-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	color: #849bb0;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .7px;
}

.all-project-content h2 {
	font-size: 27px;
	line-height: 1.2;
	margin: 17px 0 12px;
}

.all-project-content h2 a { color: #fff; }
.all-project-content p { color: var(--muted); }

.project-detail-hero {
	min-height: 760px;
	padding: 155px 0 90px;
	display: flex;
	align-items: center;
	background:
		radial-gradient(circle at 75% 36%, rgba(36,183,255,.14), transparent 32%),
		#050a12;
}

.project-detail-grid {
	display: grid;
	grid-template-columns: .86fr 1.14fr;
	gap: 65px;
	align-items: center;
}

.back-link {
	display: inline-block;
	margin-bottom: 26px;
	color: #9eb7c9;
	font-weight: 800;
	font-size: 13px;
}

.project-detail-copy h1 {
	font-size: clamp(44px, 5.3vw, 72px);
	line-height: 1.02;
	letter-spacing: -3px;
	margin: 22px 0;
}

.project-detail-copy > p {
	color: var(--muted);
	font-size: 19px;
	margin-bottom: 32px;
}

.project-detail-image {
	height: 540px;
	overflow: hidden;
	border: 1px solid var(--line-strong);
	border-radius: 28px;
	background: #07111c;
	box-shadow: var(--shadow);
}

.project-detail-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.project-content-section {
	background: linear-gradient(180deg, rgba(7,14,24,0), rgba(15,105,165,.04), rgba(7,14,24,0));
}

.project-content-grid {
	display: grid;
	grid-template-columns: 1.2fr .8fr;
	gap: 50px;
	align-items: start;
}

.project-description h2 {
	font-size: clamp(34px, 4vw, 50px);
	line-height: 1.1;
	letter-spacing: -2px;
	margin: 16px 0 20px;
}

.project-description p {
	color: var(--muted);
	font-size: 18px;
}

.editor-content {
	margin-top: 35px;
	padding-top: 30px;
	border-top: 1px solid var(--line);
}

.project-features {
	padding: 30px;
	position: sticky;
	top: 120px;
}

.project-features h2 {
	font-size: 24px;
	margin-top: 0;
}

.project-features ul {
	list-style: none;
	padding: 0;
	margin: 22px 0 30px;
	display: grid;
	gap: 12px;
}

.project-features li {
	position: relative;
	padding: 11px 12px 11px 38px;
	border: 1px solid var(--line);
	border-radius: 11px;
	color: #c9dce9;
	background: rgba(255,255,255,.02);
}

.project-features li::before {
	content: "✓";
	position: absolute;
	left: 13px;
	color: var(--green);
	font-weight: 1000;
}

.concept-note {
	padding: 18px;
	border: 1px solid rgba(255,183,76,.22);
	border-radius: 14px;
	background: rgba(255,153,0,.055);
}

.concept-note strong { color: #ffd08a; }
.concept-note p {
	margin-bottom: 0;
	color: #bcaa8e;
	font-size: 13px;
}

.site-footer {
	padding: 72px 0 25px;
	border-top: 1px solid var(--line);
	background: #03070d;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.35fr .8fr .85fr;
	gap: 70px;
}

.footer-brand img {
	width: 210px;
	height: 72px;
	object-fit: contain;
	object-position: left center;
}

.footer-brand-area p {
	max-width: 450px;
	color: var(--muted);
}

.footer-grid h2 {
	font-size: 16px;
	margin: 0 0 20px;
}

.footer-links,
.footer-contact {
	display: grid;
	gap: 10px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links a,
.footer-contact a {
	color: var(--muted);
	font-size: 14px;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	padding-top: 22px;
	margin-top: 48px;
	border-top: 1px solid var(--line);
	color: #71879a;
	font-size: 13px;
}

.content-area {
	min-height: 70vh;
	padding-top: 150px;
}

.content-narrow { max-width: 840px; }

.page-header { margin-bottom: 36px; }

.page-header h1 {
	font-size: clamp(40px, 5vw, 64px);
	line-height: 1.07;
	letter-spacing: -2px;
}

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

.post-card { overflow: hidden; }

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

.post-card-body { padding: 28px; }
.post-card-body h2 a { color: #fff; }

.entry-card { padding: clamp(28px, 5vw, 58px); }
.entry-content { color: #cfdfeb; }

.error-page {
	text-align: center;
	padding-top: 180px;
	min-height: 70vh;
}

.error-code {
	font-size: 120px;
	font-weight: 1000;
	line-height: 1;
	color: transparent;
	-webkit-text-stroke: 2px var(--blue);
}

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

.reveal.is-visible {
	opacity: 1;
	transform: none;
}

@media (max-width: 1100px) {
	.primary-navigation {
		position: fixed;
		top: 86px;
		left: 20px;
		right: 20px;
		display: none;
		padding: 22px;
		border: 1px solid var(--line);
		border-radius: 18px;
		background: rgba(4,10,18,.98);
		box-shadow: var(--shadow);
		max-height: calc(100vh - 120px);
		overflow-y: auto;
	}

	.admin-bar .primary-navigation { top: 118px; }
	.primary-navigation.is-open { display: grid; }

	.primary-navigation .menu {
		display: grid;
		gap: 8px;
	}

	.primary-navigation .menu > li > a {
		display: block;
		padding: 10px 4px;
	}

	.sub-menu {
		position: static;
		width: 100%;
		transform: none;
		display: none;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		margin: 2px 0 10px;
		box-shadow: none;
		background: rgba(255,255,255,.025);
	}

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

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

	.nav-toggle { display: block; }
	.nav-cta { width: 100%; }

	.home-hero-grid,
	.intro-grid,
	.why-grid,
	.contact-grid,
	.project-detail-grid,
	.project-content-grid {
		grid-template-columns: 1fr;
	}

	.home-hero-copy { text-align: center; }
	.home-hero-copy > p { margin-left: auto; margin-right: auto; }
	.hero-actions,
	.company-points,
	.home-hero-copy .eyebrow { justify-content: center; }

	.home-hero-visual {
		max-width: 850px;
		width: 100%;
		margin-inline: auto;
	}

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

	.home-project-grid { grid-template-columns: repeat(2, 1fr); }
	.home-project-card:last-child { grid-column: span 2; }

	.section-heading-wide {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.project-features { position: static; }

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

	.footer-brand-area { grid-column: span 2; }
}

@media (max-width: 760px) {
	.admin-bar .site-header { top: 46px; }
	.admin-bar .primary-navigation { top: 126px; }

	.container { width: min(calc(100% - 28px), var(--container)); }
	.section { padding: 78px 0; }

	.header-inner { min-height: 78px; }
	.brand img { width: 170px; height: 52px; }
	.primary-navigation { top: 78px; }

	.home-hero {
		min-height: auto;
		padding: 125px 0 75px;
	}

	.home-hero-grid { gap: 38px; }

	.home-hero-copy h1 {
		font-size: clamp(44px, 13vw, 64px);
		letter-spacing: -2.6px;
	}

	.home-hero-copy > p { font-size: 17px; }

	.hero-actions { display: grid; }
	.hero-actions .button { width: 100%; }

	.home-hero-visual { min-height: 390px; }

	.trust-grid,
	.service-grid,
	.home-project-grid,
	.all-project-grid,
	.form-row,
	.intro-values,
	.posts-grid {
		grid-template-columns: 1fr;
	}

	.trust-grid span {
		border-right: 0;
		border-bottom: 1px solid var(--line);
		padding: 17px;
	}

	.trust-grid span:last-child { border-bottom: 0; }

	.home-project-card:last-child { grid-column: auto; }

	.section-heading h2,
	.why-copy h2,
	.contact-copy h2 {
		font-size: 38px;
		letter-spacing: -1.6px;
	}

	.why-visual { min-height: 360px; }
	.why-visual img { width: 210px; }

	.contact-card { padding: 22px; }

	.inner-hero { padding: 145px 0 70px; }
	.inner-hero h1 { letter-spacing: -2px; }

	.all-project-image { height: 290px; }

	.project-detail-hero {
		min-height: auto;
		padding: 135px 0 75px;
	}

	.project-detail-image { height: 340px; }

	.project-detail-copy h1 {
		font-size: 43px;
		letter-spacing: -2px;
	}

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

	.footer-brand-area { grid-column: auto; }

	.footer-bottom {
		flex-direction: column;
		gap: 4px;
	}
}

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

	*,
	*::before,
	*::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}

	.reveal { opacity: 1; transform: none; }
}


/* =========================================================
   LUMAVIS V8 — TEMANIN KENDİ İÇİNDE ÜST BOŞLUKSUZ ÜRÜN VİTRİNİ
   Ek CSS alanı kullanılmaz.
   ========================================================= */

/* Sabit menünün bittiği yerde hero içeriği başlar. */
.home-hero {
	min-height: 100vh !important;
	padding: 86px 0 0 !important;
	align-items: stretch !important;
}

/* WordPress yönetici çubuğu açıkken doğru hizalama. */
.admin-bar .home-hero {
	padding-top: 118px !important;
}

.home-hero-grid {
	min-height: calc(100vh - 86px) !important;
	display: grid !important;
	grid-template-columns: minmax(470px, .88fr) minmax(650px, 1.12fr) !important;
	align-items: stretch !important;
	gap: 42px !important;
}

/* Sol metin dikey merkezde kalır. */
.home-hero-copy {
	align-self: center !important;
	padding: 32px 0 42px !important;
}

/* Sağ görseller menünün hemen altında başlar ve sayfanın altına kadar uzanır. */
.home-product-showcase {
	align-self: stretch !important;
	width: 100% !important;
	height: calc(100vh - 86px) !important;
	min-height: 700px !important;
	max-height: 900px !important;

	display: grid !important;
	grid-template-columns: minmax(0, 1.26fr) minmax(0, 1fr) !important;
	grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
	gap: 8px !important;

	padding: 0 !important;
	margin: 0 !important;
}

/* Yönetici çubuğunda da vitrin alta kadar dengeli uzar. */
.admin-bar .home-product-showcase {
	height: calc(100vh - 118px) !important;
}

/* Kutular arasında iç boşluk yoktur. */
.product-visual {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	min-width: 0 !important;
	min-height: 0 !important;
	overflow: hidden !important;

	padding: 0 !important;
	margin: 0 !important;

	border: 1px solid rgba(36, 183, 255, .72) !important;
	border-radius: 18px !important;
	background: #06101b !important;
	box-shadow: 0 20px 55px rgba(0, 0, 0, .38) !important;
}

.product-visual-main {
	grid-column: 1 !important;
	grid-row: 1 / 3 !important;
}

.product-visual-small:first-of-type {
	grid-column: 2 !important;
	grid-row: 1 !important;
}

.product-visual-small:last-of-type {
	grid-column: 2 !important;
	grid-row: 2 !important;
}

/* Görseller tek piksel boşluk bırakmadan kutuların tamamını doldurur. */
.product-visual img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	min-width: 100% !important;
	min-height: 100% !important;
	max-width: none !important;
	max-height: none !important;

	object-fit: cover !important;
	object-position: center center !important;

	padding: 0 !important;
	margin: 0 !important;
	border: 0 !important;
}

/* Ana kulede güneş paneli ve taşıma ünitesi dengeli görünür. */
.product-visual-main img {
	object-position: 50% 50% !important;
}

/* Buton metni tam sığar. */
.home-hero-copy .hero-actions .button {
	min-width: 294px !important;
	padding-left: 20px !important;
	padding-right: 20px !important;
	font-size: 15px !important;
	line-height: 1.25 !important;
	white-space: nowrap !important;
}

/* Orta boy masaüstü */
@media (min-width: 1101px) and (max-width: 1450px) {
	.home-hero-grid {
		grid-template-columns: minmax(430px, .82fr) minmax(610px, 1.18fr) !important;
		gap: 26px !important;
	}

	.home-product-showcase {
		min-height: 650px !important;
	}
}

/* Tablet */
@media (max-width: 1100px) {
	.home-hero,
	.admin-bar .home-hero {
		min-height: auto !important;
		padding-top: 120px !important;
		padding-bottom: 70px !important;
	}

	.home-hero-grid {
		min-height: auto !important;
		grid-template-columns: 1fr !important;
		gap: 38px !important;
	}

	.home-product-showcase,
	.admin-bar .home-product-showcase {
		width: min(100%, 920px) !important;
		height: 620px !important;
		min-height: 620px !important;
		max-height: none !important;
		margin-inline: auto !important;
	}
}

/* Telefon */
@media (max-width: 760px) {
	.home-hero,
	.admin-bar .home-hero {
		padding-top: 112px !important;
		padding-bottom: 55px !important;
	}

	.home-product-showcase,
	.admin-bar .home-product-showcase {
		width: 100% !important;
		height: auto !important;
		min-height: 0 !important;

		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		grid-template-rows: auto auto !important;
		gap: 8px !important;
	}

	.product-visual-main {
		grid-column: 1 / 3 !important;
		grid-row: 1 !important;
		height: auto !important;
		aspect-ratio: 620 / 660 !important;
	}

	.product-visual-small {
		height: auto !important;
		aspect-ratio: 391 / 278 !important;
	}

	.product-visual-small:first-of-type {
		grid-column: 1 !important;
		grid-row: 2 !important;
	}

	.product-visual-small:last-of-type {
		grid-column: 2 !important;
		grid-row: 2 !important;
	}

	.home-hero-copy .hero-actions .button {
		width: 100% !important;
		min-width: 0 !important;
		white-space: normal !important;
	}
}


/* =========================================================
   LUMAVIS V9 — ANA SAYFADA 1 BÜYÜK + 3 KÜÇÜK ÜRÜN GÖRSELİ
   ========================================================= */

.home-product-showcase {
	grid-template-columns: minmax(0, 1.28fr) minmax(0, 1fr) !important;
	grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
	gap: 8px !important;
}

.product-visual-main {
	grid-column: 1 !important;
	grid-row: 1 / 4 !important;
}

.product-visual-small:nth-of-type(2) {
	grid-column: 2 !important;
	grid-row: 1 !important;
}

.product-visual-small:nth-of-type(3) {
	grid-column: 2 !important;
	grid-row: 2 !important;
}

.product-visual-small:nth-of-type(4) {
	grid-column: 2 !important;
	grid-row: 3 !important;
}

/* Yeni dört kameralı ürünün tamamı kesilmeden görünür. */
.product-visual-four-camera img {
	object-fit: contain !important;
	object-position: center bottom !important;
	background: #050d18 !important;
}

/* Sağdaki yatay görseller alanı doldurur. */
.product-visual-small:not(.product-visual-four-camera) img {
	object-fit: cover !important;
	object-position: center center !important;
}

/* Tablet */
@media (max-width: 1100px) {
	.home-product-showcase,
	.admin-bar .home-product-showcase {
		height: 700px !important;
		min-height: 700px !important;
	}
}

/* Telefon: ana görsel üstte; üç küçük kart alt alta */
@media (max-width: 760px) {
	.home-product-showcase,
	.admin-bar .home-product-showcase {
		display: grid !important;
		grid-template-columns: 1fr !important;
		grid-template-rows: auto auto auto auto !important;
		height: auto !important;
		min-height: 0 !important;
		gap: 8px !important;
	}

	.product-visual-main {
		grid-column: 1 !important;
		grid-row: 1 !important;
		aspect-ratio: 620 / 660 !important;
	}

	.product-visual-small:nth-of-type(2) {
		grid-column: 1 !important;
		grid-row: 2 !important;
		aspect-ratio: 16 / 9 !important;
	}

	.product-visual-small:nth-of-type(3) {
		grid-column: 1 !important;
		grid-row: 3 !important;
		aspect-ratio: 16 / 9 !important;
	}

	.product-visual-small:nth-of-type(4) {
		grid-column: 1 !important;
		grid-row: 4 !important;
		aspect-ratio: 16 / 9 !important;
	}
}


/* =========================================================
   LUMAVIS FINAL — SON DÖRT ÜRÜN GÖRSELİ
   Ek CSS gerektirmez.
   ========================================================= */

.home-product-showcase {
	grid-template-columns: minmax(0, 1.34fr) minmax(300px, 1fr) !important;
	grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
	gap: 8px !important;
}

.product-visual-main {
	grid-column: 1 !important;
	grid-row: 1 / 4 !important;
}

.product-visual-small:nth-of-type(2) {
	grid-column: 2 !important;
	grid-row: 1 !important;
}

.product-visual-small:nth-of-type(3) {
	grid-column: 2 !important;
	grid-row: 2 !important;
}

.product-visual-small:nth-of-type(4) {
	grid-column: 2 !important;
	grid-row: 3 !important;
}

.product-visual img,
.product-visual-main img,
.product-visual-small img,
.product-visual-four-camera img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: contain !important;
	object-position: center center !important;
	padding: 0 !important;
	margin: 0 !important;
	background: #040a12 !important;
}

@media (max-width: 1100px) {
	.home-product-showcase,
	.admin-bar .home-product-showcase {
		height: 720px !important;
		min-height: 720px !important;
	}
}

@media (max-width: 760px) {
	.home-product-showcase,
	.admin-bar .home-product-showcase {
		grid-template-columns: 1fr !important;
		grid-template-rows: auto auto auto auto !important;
		height: auto !important;
		min-height: 0 !important;
	}

	.product-visual-main {
		grid-column: 1 !important;
		grid-row: 1 !important;
		height: auto !important;
		aspect-ratio: 5 / 7 !important;
	}

	.product-visual-small:nth-of-type(2) {
		grid-column: 1 !important;
		grid-row: 2 !important;
		height: auto !important;
		aspect-ratio: 12 / 7 !important;
	}

	.product-visual-small:nth-of-type(3) {
		grid-column: 1 !important;
		grid-row: 3 !important;
		height: auto !important;
		aspect-ratio: 12 / 7 !important;
	}

	.product-visual-small:nth-of-type(4) {
		grid-column: 1 !important;
		grid-row: 4 !important;
		height: auto !important;
		aspect-ratio: 12 / 7 !important;
	}
}
