body.page-home {
	background: #f6f7f9;
	color: #1c2028;
}

.page-home .main-nav-outer {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid rgba(18, 24, 38, 0.08);
	box-shadow: none;
	transition: box-shadow .3s ease, border-color .3s ease;
}

body.page-home.nav-scrolled .main-nav-outer {
	box-shadow: 0 8px 30px rgba(22, 26, 34, 0.08);
	border-bottom-color: rgba(18, 24, 38, 0.14);
}

.page-home .main-nav li a {
	margin: 5px 20px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .06em;
	color: #2f3541;
}

.home-minimal {
	overflow: hidden;
}

.hero-minimal {
	padding: 88px 0 72px;
	position: relative;
}

.hero-minimal:before {
	content: "";
	position: absolute;
	width: 420px;
	height: 420px;
	right: -120px;
	top: -120px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(64, 151, 220, 0.22) 0%, rgba(64, 151, 220, 0) 72%);
	pointer-events: none;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	gap: 34px;
	align-items: center;
}

.hero-copy h1 {
	font-size: 52px;
	line-height: 1.08;
	font-weight: 700;
	letter-spacing: -1.2px;
	margin: 10px 0 18px;
	color: #121826;
	text-transform: none;
}

.hero-copy p {
	font-size: 18px;
	line-height: 1.75;
	color: #4f5868;
	max-width: 620px;
}

.hero-tag {
	display: inline-flex;
	align-items: center;
	padding: 6px 14px;
	border-radius: 999px;
	border: 1px solid rgba(64, 151, 220, 0.25);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: #2b6b9a;
	background: rgba(255, 255, 255, 0.8);
}

.hero-actions {
	display: flex;
	gap: 12px;
	margin-top: 28px;
	flex-wrap: wrap;
}

.btn-minimal {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 20px;
	border-radius: 12px;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: .06em;
	transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease;
	border: 1px solid transparent;
}

.btn-minimal:hover {
	transform: translateY(-2px);
	text-decoration: none;
}

.btn-primary-minimal {
	background: #121826;
	color: #fff;
	box-shadow: 0 14px 26px rgba(18, 24, 38, 0.16);
}

.btn-primary-minimal:hover {
	color: #fff;
	background: #1a2234;
}

.btn-secondary-minimal {
	background: #fff;
	color: #1f2633;
	border-color: rgba(31, 38, 51, 0.14);
}

.btn-secondary-minimal:hover {
	color: #1f2633;
	box-shadow: 0 10px 18px rgba(31, 38, 51, 0.08);
}

.hero-media {
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 30px 70px rgba(16, 20, 32, 0.18);
}

.hero-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .7s ease;
}

.hero-media:hover img {
	transform: scale(1.04);
}

.section-minimal {
	padding: 80px 0;
}

.section-alt {
	background: #ffffff;
}

.section-head {
	max-width: 840px;
	margin: 0 auto 34px;
	text-align: center;
}

.section-head h2 {
	font-size: 34px;
	text-transform: none;
	letter-spacing: -.6px;
	margin-bottom: 14px;
	color: #111724;
}

.section-head p {
	font-size: 17px;
	line-height: 1.8;
	color: #5b6473;
	text-align: center;
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.card-minimal {
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(18, 24, 38, 0.08);
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 8px 22px rgba(15, 19, 30, 0.06);
	transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.card-minimal:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 32px rgba(15, 19, 30, 0.10);
	border-color: rgba(64, 151, 220, 0.3);
}

.card-minimal h3 {
	color: #161d2c;
	font-weight: 700;
	font-size: 19px;
	margin-bottom: 10px;
	text-transform: none;
}

.card-minimal p {
	color: #596174;
	line-height: 1.72;
	text-align: left;
}

.service-grid .card-minimal:nth-child(4) {
	grid-column: span 3;
}

.presence-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 18px;
}

.presence-map {
	display: flex;
	align-items: center;
	justify-content: center;
}

.presence-map img {
	max-width: 100%;
	height: auto;
	filter: saturate(.92);
}

.presence-table .table th,
.presence-table .table td {
	padding: .45rem .35rem;
	font-size: 13px;
	color: #3c4455;
	border-top: 1px solid rgba(16, 22, 34, 0.08);
}

.presence-table .table thead th {
	border-top: 0;
	font-weight: 700;
	color: #1a2234;
}

.values-list {
	margin-top: 22px;
	text-align: center;
}

.values-list span {
	display: block;
	font-weight: 600;
	color: #1a2234;
	margin-bottom: 12px;
}

.values-list ul {
	display: flex;
	justify-content: center;
	gap: 10px;
	padding: 0;
	margin: 0;
	list-style: none;
	flex-wrap: wrap;
}

.values-list li {
	padding: 8px 13px;
	border-radius: 999px;
	background: #eef1f5;
	color: #3e4657;
	font-size: 13px;
	font-weight: 600;
}

.contact-grid {
	display: grid;
	grid-template-columns: .95fr 1.05fr;
	gap: 18px;
}

.contact-info p {
	margin-bottom: 10px;
}

.minimal-form .form-control {
	height: auto;
	border-radius: 10px;
	border: 1px solid rgba(18, 24, 38, 0.14);
	padding: 12px 13px;
	box-shadow: none;
	color: #1f2635;
}

.minimal-form textarea.form-control {
	min-height: 140px;
}

.minimal-form .form-control:focus {
	border-color: rgba(64, 151, 220, .45);
	box-shadow: 0 0 0 3px rgba(64, 151, 220, .12);
}

#sendmessage,
#errormessage {
	border-radius: 10px;
	margin-bottom: 12px;
}

.reveal {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 991px) {
	.hero-copy h1 {
		font-size: 40px;
	}

	.hero-grid,
	.presence-grid,
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.service-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.service-grid .card-minimal:nth-child(4) {
		grid-column: span 2;
	}
}

@media (max-width: 767px) {
	.hero-minimal {
		padding-top: 64px;
	}

	.hero-copy h1 {
		font-size: 32px;
	}

	.section-head h2 {
		font-size: 28px;
	}

	.section-head p,
	.hero-copy p {
		font-size: 16px;
	}

	.service-grid {
		grid-template-columns: 1fr;
	}

	.service-grid .card-minimal:nth-child(4) {
		grid-column: auto;
	}
}
