.container {
	width: min(calc(100% - 2.5rem), var(--zes-container));
	margin-inline: auto;
}

.container--narrow {
	max-width: 900px;
}

.container--content {
	max-width: var(--zes-content);
}

.section {
	padding-block: clamp(4.5rem, 8vw, 8rem);
}

.section--light {
	background: var(--zes-light);
}

.section--navy {
	background: var(--zes-deep-navy);
	color: var(--zes-white);
}

.section--navy h2,
.section--navy h3,
.section--navy a {
	color: var(--zes-white);
}

.section--navy p {
	color: #b7c2d1;
}

.section-heading {
	max-width: 760px;
	margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-heading h2 {
	margin-bottom: 1rem;
}

.section-heading > p:last-child {
	max-width: 650px;
	font-size: 1.08rem;
}

.button-group {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	align-items: center;
}

.button {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	padding: 0.75rem 1.25rem;
	border: 2px solid transparent;
	border-radius: 3px;
	font-size: 0.92rem;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	transition: background var(--zes-transition), border-color var(--zes-transition), transform var(--zes-transition);
}

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

.button--primary {
	background: var(--zes-orange);
	color: var(--zes-white);
}

.button--primary:hover {
	background: var(--zes-orange-dark);
}

.button--outline-light {
	border-color: rgb(255 255 255 / 55%);
	color: var(--zes-white);
}

.button--small {
	min-height: 42px;
	background: var(--zes-navy);
	color: var(--zes-white);
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: var(--zes-orange-dark);
	font-weight: 800;
	text-decoration: none;
}

.text-link:hover {
	text-decoration: underline;
	text-underline-offset: 4px;
}

.zes-icon {
	width: 1.35rem;
	height: 1.35rem;
	flex: 0 0 auto;
}

.text-link .zes-icon,
.button .zes-icon {
	width: 1rem;
	height: 1rem;
}

.card-grid {
	display: grid;
	gap: 1.3rem;
}

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

.service-card {
	position: relative;
	padding: 2rem;
	border: 1px solid var(--zes-border);
	background: var(--zes-white);
	transition: border-color var(--zes-transition), box-shadow var(--zes-transition), transform var(--zes-transition);
}

.service-card:hover {
	border-color: rgb(255 90 0 / 45%);
	box-shadow: var(--zes-shadow);
	transform: translateY(-4px);
}

.service-card__icon {
	display: grid;
	width: 3rem;
	height: 3rem;
	margin-bottom: 1.5rem;
	place-items: center;
	background: rgb(255 90 0 / 10%);
	color: var(--zes-orange);
}

.service-card h3 a {
	text-decoration: none;
}

.project-card {
	overflow: hidden;
	border: 1px solid rgb(255 255 255 / 14%);
	background: #0b2548;
}

.project-card > div:last-child {
	padding: 1.5rem;
}

.project-card img,
.project-card__placeholder {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.project-card__placeholder {
	display: grid;
	place-items: center;
	background: linear-gradient(135deg, #0e315c, #06162d);
	color: var(--zes-orange);
}

.project-card__placeholder .zes-icon {
	width: 4rem;
	height: 4rem;
}

.split-layout {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: clamp(2.5rem, 7vw, 7rem);
	align-items: center;
}

.feature-list,
.contact-list {
	padding: 0;
	margin: 0;
	list-style: none;
}

.feature-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.feature-list li {
	display: flex;
	gap: 0.8rem;
	align-items: flex-start;
	padding: 1rem;
	border-left: 3px solid var(--zes-orange);
	background: var(--zes-light);
	font-weight: 700;
}

.feature-list .zes-icon {
	color: var(--zes-success);
}

.skip-link {
	position: fixed;
	z-index: 9999;
	top: 0.5rem;
	left: 0.5rem;
	padding: 0.8rem 1rem;
	background: var(--zes-white);
	color: var(--zes-navy);
	transform: translateY(-150%);
}

.skip-link:focus {
	transform: translateY(0);
}

:focus-visible {
	outline: 3px solid #ffb084;
	outline-offset: 3px;
}

.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	padding: 0;
	margin: 0 0 1.5rem;
	list-style: none;
	color: #95a4b8;
	font-size: 0.85rem;
}

.breadcrumbs li + li::before {
	margin-right: 0.5rem;
	content: "/";
}

.breadcrumbs a {
	color: inherit;
}

.page-hero {
	padding-block: clamp(4rem, 8vw, 7rem);
	background: var(--zes-deep-navy);
	color: var(--zes-white);
}

.page-hero h1 {
	max-width: 900px;
	margin-bottom: 0;
	color: var(--zes-white);
	font-size: clamp(2.7rem, 6vw, 5rem);
}

.page-hero > .container > p:last-child {
	max-width: 700px;
	color: #b7c2d1;
	font-size: 1.12rem;
}

.whatsapp-float {
	position: fixed;
	z-index: 80;
	right: 1.2rem;
	bottom: 1.2rem;
	display: grid;
	width: 3.5rem;
	height: 3.5rem;
	place-items: center;
	border: 3px solid var(--zes-white);
	border-radius: 50%;
	background: #25d366;
	box-shadow: 0 10px 28px rgb(3 18 38 / 28%);
	color: #07351a;
	font-weight: 900;
	text-decoration: none;
}

.empty-state {
	padding: 2.5rem;
	border: 1px solid rgb(255 255 255 / 15%);
	text-align: center;
}

.pagination .nav-links {
	display: flex;
	gap: 0.5rem;
	margin-top: 3rem;
}

.pagination a,
.pagination span {
	display: grid;
	min-width: 44px;
	min-height: 44px;
	place-items: center;
	border: 1px solid var(--zes-border);
	text-decoration: none;
}
