:root {
	--ept-navy: #0d2338;
	--ept-navy-2: #153651;
	--ept-ink: #172433;
	--ept-muted: #5f6c78;
	--ept-orange: #f5a623;
	--ept-orange-dark: #d88400;
	--ept-cream: #fff8ec;
	--ept-soft: #f3f6f8;
	--ept-white: #fff;
	--ept-line: #dce3e8;
	--ept-shadow: 0 18px 55px rgba(13, 35, 56, 0.12);
	--ept-radius: 18px;
	--ept-shell: 1180px;
	--ept-header-height: 88px;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 110px;
}

body.ept-modern {
	margin: 0;
	background: var(--ept-white);
	color: var(--ept-ink);
	font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

.ept-modern img {
	display: block;
	max-width: 100%;
	height: auto;
}

.ept-modern a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.ept-modern button,
.ept-modern input,
.ept-modern select,
.ept-modern textarea {
	font: inherit;
}

.ept-modern h1,
.ept-modern h2,
.ept-modern h3,
.ept-modern h4 {
	margin: 0 0 0.55em;
	color: var(--ept-navy);
	font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.035em;
}

.ept-modern h1 {
	font-size: clamp(2.55rem, 5.8vw, 5.35rem);
}

.ept-modern h2 {
	font-size: clamp(2rem, 4.1vw, 3.5rem);
}

.ept-modern h3 {
	font-size: clamp(1.2rem, 2vw, 1.55rem);
	letter-spacing: -0.02em;
}

.ept-modern p {
	margin: 0 0 1.2em;
}

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

.ept-icon,
.ept-button svg,
.ept-text-link svg,
.ept-check-list svg,
.ept-quote__phone svg,
.ept-mobile-actions svg {
	display: inline-flex;
	width: 1.15em;
	height: 1.15em;
	flex: 0 0 auto;
	fill: currentColor;
}

.ept-skip-link {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 9999;
	padding: 10px 14px;
	background: var(--ept-white);
	color: var(--ept-navy);
	transform: translateY(-150%);
}

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

.ept-eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
	color: var(--ept-orange-dark);
	font-size: 0.77rem;
	font-weight: 800;
	letter-spacing: 0.15em;
	line-height: 1.2;
	text-transform: uppercase;
}

.ept-eyebrow::before,
.ept-eyebrow > span {
	display: inline-block;
	width: 28px;
	height: 3px;
	background: currentColor;
	border-radius: 999px;
	content: "";
}

.ept-eyebrow > span + * {
	display: none;
}

.ept-eyebrow--light {
	color: #ffc763;
}

.ept-button-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
}

.ept-modern .ept-button {
	display: inline-flex;
	min-height: 54px;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 13px 22px;
	border: 2px solid var(--ept-orange);
	border-radius: 10px;
	background: var(--ept-orange);
	box-shadow: none;
	color: #111f2b;
	font-size: 0.92rem;
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.ept-modern .ept-button:hover,
.ept-modern .ept-button:focus-visible {
	border-color: #ffc15a;
	background: #ffc15a;
	color: #081827;
	transform: translateY(-2px);
}

.ept-button--compact {
	min-height: 46px;
	padding: 10px 17px;
}

.ept-modern .ept-button--dark {
	border-color: var(--ept-navy);
	background: var(--ept-navy);
	color: var(--ept-white);
}

.ept-modern .ept-button--dark:hover,
.ept-modern .ept-button--dark:focus-visible {
	border-color: var(--ept-navy-2);
	background: var(--ept-navy-2);
	color: var(--ept-white);
}

.ept-modern .ept-button--light {
	border-color: var(--ept-white);
	background: var(--ept-white);
	color: var(--ept-navy);
}

.ept-modern .ept-button--outline-light {
	border-color: rgba(255, 255, 255, 0.65);
	background: rgba(255, 255, 255, 0.04);
	color: var(--ept-white);
	backdrop-filter: blur(8px);
}

.ept-modern .ept-button--outline-light:hover,
.ept-modern .ept-button--outline-light:focus-visible {
	border-color: var(--ept-white);
	background: var(--ept-white);
	color: var(--ept-navy);
}

.ept-modern .ept-hero .ept-button--outline-light {
	background: var(--ept-navy);
}

.ept-modern .ept-hero .ept-button--outline-light:hover,
.ept-modern .ept-hero .ept-button--outline-light:focus-visible {
	background: var(--ept-white);
}

.ept-text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--ept-navy);
	font-size: 0.93rem;
	font-weight: 800;
	text-decoration: none;
}

.ept-text-link svg {
	transition: transform 0.2s ease;
}

.ept-text-link:hover svg,
.ept-text-link:focus-visible svg {
	transform: translateX(4px);
}

.ept-text-link--light {
	color: var(--ept-white);
}

/* Header */
.ept-header {
	position: relative;
	z-index: 1000;
	background: var(--ept-white);
}

.ept-topbar {
	background: var(--ept-navy);
	color: rgba(255, 255, 255, 0.84);
	font-size: 0.76rem;
	font-weight: 650;
	letter-spacing: 0.03em;
}

.ept-topbar__inner {
	display: flex;
	min-height: 36px;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.ept-topbar p {
	display: flex;
	align-items: center;
	gap: 7px;
	margin: 0;
}

.ept-nav-wrap {
	position: relative;
	border-bottom: 1px solid rgba(13, 35, 56, 0.08);
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 8px 24px rgba(13, 35, 56, 0.04);
}

.ept-nav {
	display: flex;
	min-height: var(--ept-header-height);
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.ept-brand {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	text-decoration: none;
}

.ept-brand__logo {
	width: min(235px, 24vw);
	height: auto;
}

.ept-nav__panel {
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: flex-end;
	gap: clamp(20px, 3vw, 42px);
}

.ept-nav__list {
	display: flex;
	align-items: center;
	gap: clamp(15px, 2vw, 29px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.ept-nav__list a {
	position: relative;
	display: block;
	padding: 15px 0;
	color: var(--ept-ink);
	font-size: 0.89rem;
	font-weight: 750;
	text-decoration: none;
}

.ept-nav__list a::after {
	position: absolute;
	right: 0;
	bottom: 8px;
	left: 0;
	height: 2px;
	background: var(--ept-orange);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.2s ease;
}

.ept-nav__list a:hover::after,
.ept-nav__list a:focus-visible::after,
.ept-nav__list a[aria-current="page"]::after {
	transform: scaleX(1);
	transform-origin: left;
}

.ept-nav__actions {
	display: flex;
	align-items: center;
	gap: 17px;
}

.ept-nav__phone {
	display: flex;
	align-items: center;
	gap: 9px;
	color: var(--ept-navy);
	font-size: 0.9rem;
	font-weight: 800;
	line-height: 1.15;
	text-decoration: none;
}

.ept-nav__phone .ept-icon {
	width: 34px;
	height: 34px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--ept-cream);
	color: var(--ept-orange-dark);
}

.ept-nav__phone svg {
	width: 17px;
	height: 17px;
}

.ept-nav__phone small {
	display: block;
	margin-bottom: 2px;
	color: var(--ept-muted);
	font-size: 0.65rem;
	font-weight: 650;
}

.ept-menu-toggle {
	display: none;
}

/* Heroes */
.ept-hero {
	position: relative;
	min-height: 735px;
	display: flex;
	align-items: center;
	isolation: isolate;
	overflow: hidden;
	background: var(--ept-navy);
	color: var(--ept-white);
}

.ept-hero__media,
.ept-hero__overlay {
	position: absolute;
	inset: 0;
}

.ept-hero__media {
	z-index: -3;
}

.ept-hero__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 48%;
}

.ept-hero__overlay {
	z-index: -2;
	background: linear-gradient(90deg, rgba(7, 25, 42, 0.96) 0%, rgba(7, 25, 42, 0.82) 47%, rgba(7, 25, 42, 0.2) 100%), linear-gradient(0deg, rgba(7, 25, 42, 0.42), transparent 55%);
}

.ept-hero__content {
	position: relative;
	padding: 115px 0 155px;
}

.ept-hero h1 {
	max-width: 940px;
	margin-bottom: 24px;
	color: var(--ept-white);
}

.ept-hero__lead {
	max-width: 720px;
	margin-bottom: 34px;
	color: rgba(255, 255, 255, 0.84);
	font-size: clamp(1.05rem, 1.8vw, 1.3rem);
	line-height: 1.6;
}

.ept-trust-strip {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	background: rgba(255, 255, 255, 0.97);
	box-shadow: 0 -12px 30px rgba(8, 25, 42, 0.08);
	color: var(--ept-ink);
}

.ept-trust-strip > div {
	position: relative;
	padding: 22px 26px;
}

.ept-trust-strip > div:not(:last-child)::after {
	position: absolute;
	top: 25%;
	right: 0;
	bottom: 25%;
	width: 1px;
	background: var(--ept-line);
	content: "";
}

.ept-trust-strip strong,
.ept-trust-strip span {
	display: block;
}

.ept-trust-strip strong {
	color: var(--ept-navy);
	font-size: 1rem;
}

.ept-trust-strip span {
	margin-top: 3px;
	color: var(--ept-muted);
	font-size: 0.74rem;
}

.ept-page-hero {
	position: relative;
	min-height: 430px;
	display: flex;
	align-items: center;
	isolation: isolate;
	overflow: hidden;
	background: radial-gradient(circle at 86% 20%, rgba(245, 166, 35, 0.24), transparent 28%), linear-gradient(130deg, var(--ept-navy), #102f4c 72%);
	color: var(--ept-white);
}

.ept-page-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.65fr) minmax(260px, 0.8fr);
	align-items: end;
	gap: clamp(40px, 8vw, 110px);
	padding-block: 90px;
}

.ept-page-hero h1 {
	max-width: 800px;
	margin: 0;
	color: var(--ept-white);
	font-size: clamp(2.6rem, 5vw, 4.6rem);
}

.ept-page-hero__inner > p {
	margin: 0 0 8px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 1.05rem;
}

.ept-page-hero--image .ept-page-hero__media,
.ept-page-hero--image .ept-page-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.ept-page-hero--image .ept-page-hero__overlay {
	z-index: -1;
	background: linear-gradient(90deg, rgba(7, 25, 42, 0.96), rgba(7, 25, 42, 0.73) 70%, rgba(7, 25, 42, 0.48));
}

.ept-page-hero--compact {
	min-height: 315px;
}

.ept-page-hero--compact .ept-page-hero__inner {
	grid-template-columns: 1fr;
	padding-block: 70px;
}

/* General sections */
.ept-section {
	padding-block: clamp(76px, 10vw, 128px);
}

.ept-section--soft {
	background: var(--ept-soft);
}

.ept-section--dark {
	background: var(--ept-navy);
	color: rgba(255, 255, 255, 0.78);
}

.ept-section--dark h2,
.ept-section--dark h3 {
	color: var(--ept-white);
}

.ept-section-heading {
	margin-bottom: clamp(40px, 6vw, 68px);
}

.ept-section-heading--split {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
	align-items: end;
	gap: clamp(36px, 8vw, 110px);
}

.ept-section-heading--split h2 {
	max-width: 790px;
	margin-bottom: 0;
}

.ept-section-heading--split > p,
.ept-section-heading--split > .ept-text-link {
	margin-bottom: 7px;
	color: var(--ept-muted);
}

.ept-section-heading--center {
	max-width: 760px;
	margin-inline: auto;
	text-align: center;
}

.ept-section-heading--center .ept-eyebrow {
	justify-content: center;
}

.ept-section-action {
	margin-top: 42px;
	text-align: center;
}

/* Services */
.ept-section--services {
	background: linear-gradient(180deg, var(--ept-white), #f8fafb);
}

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

.ept-service-card {
	position: relative;
	min-height: 330px;
	display: flex;
	flex-direction: column;
	padding: 32px;
	border: 1px solid var(--ept-line);
	border-radius: var(--ept-radius);
	background: var(--ept-white);
	box-shadow: 0 10px 30px rgba(13, 35, 56, 0.035);
	color: var(--ept-ink);
	text-decoration: none;
	overflow: hidden;
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.ept-service-card::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 4px;
	background: var(--ept-orange);
	content: "";
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.25s ease;
}

.ept-service-card:hover,
.ept-service-card:focus-visible {
	border-color: rgba(245, 166, 35, 0.65);
	box-shadow: var(--ept-shadow);
	transform: translateY(-5px);
}

.ept-service-card:hover::before,
.ept-service-card:focus-visible::before {
	transform: scaleX(1);
}

.ept-service-card__number {
	position: absolute;
	top: 24px;
	right: 27px;
	color: #c8d0d6;
	font-size: 0.74rem;
	font-weight: 800;
}

.ept-service-card__icon {
	display: grid;
	width: 52px;
	height: 52px;
	place-items: center;
	margin-bottom: 25px;
	border-radius: 13px;
	background: var(--ept-cream);
	color: var(--ept-orange-dark);
}

.ept-service-card__icon svg {
	width: 25px;
	height: 25px;
	fill: currentColor;
}

.ept-service-card h3 {
	margin-bottom: 13px;
}

.ept-service-card p {
	color: var(--ept-muted);
	font-size: 0.91rem;
}

.ept-service-card .ept-text-link {
	margin-top: auto;
}

.ept-anchor-nav {
	position: sticky;
	top: 0;
	z-index: 90;
	border-bottom: 1px solid var(--ept-line);
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 10px 25px rgba(13, 35, 56, 0.04);
	backdrop-filter: blur(12px);
}

.ept-anchor-nav .ept-shell {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	scrollbar-width: none;
}

.ept-anchor-nav .ept-shell::-webkit-scrollbar {
	display: none;
}

.ept-anchor-nav a {
	flex: 0 0 auto;
	padding: 18px 15px;
	color: var(--ept-navy);
	font-size: 0.8rem;
	font-weight: 750;
	text-decoration: none;
}

.ept-service-list {
	border-top: 1px solid var(--ept-line);
}

.ept-service-detail {
	display: grid;
	grid-template-columns: 80px minmax(0, 1fr);
	gap: clamp(20px, 5vw, 65px);
	padding: 45px 0;
	border-bottom: 1px solid var(--ept-line);
}

.ept-service-detail > span {
	color: var(--ept-orange-dark);
	font-size: 0.83rem;
	font-weight: 850;
	letter-spacing: 0.1em;
}

.ept-service-detail > div {
	display: grid;
	grid-template-columns: minmax(220px, 0.7fr) minmax(260px, 1fr) minmax(220px, 0.65fr);
	align-items: start;
	gap: clamp(25px, 6vw, 75px);
}

.ept-service-detail h3 {
	font-size: clamp(1.55rem, 2.7vw, 2.2rem);
}

.ept-service-detail p {
	margin: 0;
	color: var(--ept-muted);
}

.ept-service-detail ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ept-service-detail li {
	position: relative;
	padding: 5px 0 5px 18px;
	font-size: 0.9rem;
}

.ept-service-detail li::before {
	position: absolute;
	top: 16px;
	left: 0;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--ept-orange);
	content: "";
}

.ept-service-detail h3 a {
	color: inherit;
	text-decoration: none;
}

.ept-service-detail h3 a:hover,
.ept-service-detail h3 a:focus-visible {
	color: var(--ept-orange-dark);
}

.ept-breadcrumbs {
	margin-bottom: 25px;
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.8rem;
}

.ept-breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ept-breadcrumbs li {
	display: flex;
	gap: 8px;
}

.ept-breadcrumbs a:hover,
.ept-breadcrumbs a:focus-visible {
	color: var(--ept-white);
}

.ept-page-hero--compact > .ept-shell {
	padding-block: 54px;
}

.ept-service-hero__content {
	max-width: 940px;
}

.ept-service-hero__content > p:last-child {
	max-width: 780px;
	margin: 18px 0 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 1.08rem;
}

.ept-service-page__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	align-items: start;
	gap: clamp(45px, 8vw, 100px);
}

.ept-service-page__content {
	min-width: 0;
}

.ept-service-page__content h2 {
	margin-top: 1.45em;
	font-size: clamp(1.75rem, 3.2vw, 2.7rem);
}

.ept-service-page__content h2:first-of-type {
	margin-top: 0;
}

.ept-service-page__content h3 {
	margin-top: 1.5em;
}

.ept-service-page__content p,
.ept-service-page__content li {
	color: var(--ept-muted);
}

.ept-service-page__content ul {
	margin: 24px 0 35px;
	padding-left: 1.2em;
}

.ept-service-page__content li + li {
	margin-top: 9px;
}

.ept-service-page__image {
	height: min(42vw, 470px);
	margin: 0 0 46px;
	border-radius: var(--ept-radius);
	overflow: hidden;
}

.ept-service-page__aside {
	position: sticky;
	top: 30px;
}

.ept-service-page__aside-card {
	padding: 32px;
	border-radius: var(--ept-radius);
	background: var(--ept-cream);
}

.ept-service-page__aside-card h2 {
	font-size: 1.8rem;
}

.ept-service-page__aside-card p:not(.ept-eyebrow) {
	color: var(--ept-muted);
	font-size: 0.94rem;
}

.ept-service-page__aside-card .ept-button {
	width: 100%;
	margin: 8px 0 22px;
}

.ept-service-page__hub-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 14px;
	padding: 17px 20px;
	border: 1px solid var(--ept-line);
	border-radius: 10px;
	color: var(--ept-navy);
	font-size: 0.88rem;
	font-weight: 800;
	text-decoration: none;
}

.ept-service-page__hub-link svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.ept-related-services {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.ept-related-services > a {
	display: flex;
	min-height: 245px;
	flex-direction: column;
	padding: 28px;
	border: 1px solid var(--ept-line);
	border-radius: var(--ept-radius);
	background: var(--ept-white);
	text-decoration: none;
}

.ept-related-services p {
	color: var(--ept-muted);
	font-size: 0.9rem;
}

.ept-related-services .ept-text-link {
	margin-top: auto;
}

.ept-content-link-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin: 24px 0 40px;
}

.ept-content-link-grid a {
	display: flex;
	min-height: 120px;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	padding: 22px;
	border: 1px solid var(--ept-line);
	border-radius: 12px;
	background: var(--ept-soft);
	color: var(--ept-navy);
	text-decoration: none;
}

.ept-content-link-grid a:last-child {
	grid-column: 1 / -1;
}

.ept-content-link-grid strong {
	font-size: 1.08rem;
}

.ept-content-link-grid span {
	color: var(--ept-muted);
	font-size: 0.86rem;
}

.ept-content-link-grid a:hover,
.ept-content-link-grid a:focus-visible {
	border-color: var(--ept-orange);
	box-shadow: 0 10px 24px rgba(13, 35, 56, 0.08);
}

/* About and feature content */
.ept-about-split__grid,
.ept-feature-split__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: center;
	gap: clamp(48px, 8vw, 105px);
}

.ept-about-split__media,
.ept-feature-split__media {
	position: relative;
	min-height: 540px;
	border-radius: 22px;
	overflow: hidden;
}

.ept-cover-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ept-about-split__badge {
	position: absolute;
	right: 0;
	bottom: 0;
	min-width: 210px;
	padding: 20px 24px;
	background: var(--ept-orange);
	color: var(--ept-navy);
}

.ept-about-split__badge strong,
.ept-about-split__badge span {
	display: block;
}

.ept-about-split__badge strong {
	font-size: 0.72rem;
	letter-spacing: 0.12em;
}

.ept-about-split__badge span {
	font-size: 1.3rem;
	font-weight: 850;
}

.ept-about-split__content > p:not(.ept-eyebrow) {
	font-size: 1.05rem;
}

.ept-check-list {
	display: grid;
	gap: 14px;
	margin: 30px 0 34px;
	padding: 0;
	list-style: none;
}

.ept-check-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	color: var(--ept-white);
	font-weight: 700;
}

.ept-check-list svg {
	width: 22px;
	height: 22px;
	margin-top: 2px;
	fill: var(--ept-orange);
}

.ept-check-list--dark li {
	color: var(--ept-ink);
}

.ept-feature-split--reverse .ept-feature-split__media {
	order: 2;
}

.ept-sector-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin: 30px 0;
}

.ept-sector-cards article {
	padding: 25px;
	border: 1px solid var(--ept-line);
	border-radius: 14px;
	background: var(--ept-white);
}

.ept-sector-cards p {
	margin: 0;
	color: var(--ept-muted);
	font-size: 0.9rem;
}

/* Process */
.ept-section--process {
	background: var(--ept-cream);
}

.ept-process {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ept-process li {
	position: relative;
	padding: 10px clamp(24px, 4vw, 55px) 10px 0;
}

.ept-process li:not(:last-child)::after {
	position: absolute;
	top: 31px;
	right: 28px;
	left: 58px;
	height: 1px;
	background: rgba(13, 35, 56, 0.2);
	content: "";
}

.ept-process li > span {
	position: relative;
	z-index: 1;
	display: grid;
	width: 44px;
	height: 44px;
	place-items: center;
	margin-bottom: 24px;
	border: 1px solid rgba(13, 35, 56, 0.18);
	border-radius: 50%;
	background: var(--ept-cream);
	color: var(--ept-orange-dark);
	font-size: 0.8rem;
	font-weight: 850;
}

.ept-process p {
	margin: 0;
	color: var(--ept-muted);
	font-size: 0.92rem;
}

/* Projects and gallery */
.ept-projects {
	background: #f8fafb;
}

.ept-project-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 340px;
	gap: 16px;
}

.ept-project {
	position: relative;
	margin: 0;
	border-radius: 16px;
	overflow: hidden;
	background: var(--ept-navy);
}

.ept-project--wide {
	grid-column: span 2;
}

.ept-project__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.ept-project:hover .ept-project__image {
	transform: scale(1.035);
}

.ept-project figcaption {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 42px 20px 18px;
	background: linear-gradient(transparent, rgba(7, 25, 42, 0.88));
	color: var(--ept-white);
	font-size: 0.84rem;
	font-weight: 750;
}

.ept-gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-flow: dense;
	gap: 14px;
}

.ept-gallery-item {
	position: relative;
	margin: 0;
	aspect-ratio: 3 / 4;
	border-radius: 13px;
	overflow: hidden;
	background: var(--ept-soft);
}

.ept-gallery-item figcaption {
	position: absolute;
	right: 12px;
	bottom: 12px;
	left: 12px;
	display: flex;
	justify-content: flex-start;
	pointer-events: none;
}

.ept-gallery-item figcaption a {
	display: inline-flex;
	width: auto;
	height: auto;
	padding: 8px 11px;
	border-radius: 7px;
	background: rgba(8, 28, 46, 0.92);
	color: #fff;
	font-size: 0.76rem;
	font-weight: 800;
	pointer-events: auto;
	text-decoration: none;
}

.ept-gallery-item figcaption a:hover,
.ept-gallery-item figcaption a:focus-visible {
	background: var(--ept-orange);
	color: var(--ept-navy);
}

.ept-gallery-item--wide {
	grid-column: span 2;
	aspect-ratio: 16 / 9;
}

.ept-gallery-item a {
	display: block;
	width: 100%;
	height: 100%;
}

.ept-modern .ept-gallery-item__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease, filter 0.35s ease;
}

.ept-gallery-item a:hover .ept-gallery-item__image,
.ept-gallery-item a:focus-visible .ept-gallery-item__image {
	filter: brightness(0.88);
	transform: scale(1.035);
}

/* Service area */
.ept-area {
	background: var(--ept-white);
}

.ept-area__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
	align-items: center;
	gap: clamp(45px, 10vw, 130px);
}

.ept-area__grid > div:first-child > p:not(.ept-eyebrow) {
	max-width: 720px;
	color: var(--ept-muted);
}

.ept-area__card {
	position: relative;
	padding: 38px;
	border-radius: 18px;
	background: radial-gradient(circle at 80% 10%, rgba(245, 166, 35, 0.17), transparent 36%), var(--ept-navy);
	box-shadow: var(--ept-shadow);
	color: rgba(255, 255, 255, 0.74);
}

.ept-area__pin {
	display: grid;
	width: 50px;
	height: 50px;
	place-items: center;
	margin-bottom: 38px;
	border-radius: 50%;
	background: var(--ept-orange);
	color: var(--ept-navy);
}

.ept-area__pin svg {
	width: 24px;
	height: 24px;
	fill: currentColor;
}

.ept-area__city {
	margin-bottom: 5px !important;
	color: var(--ept-white);
	font-size: 1.8rem;
	font-weight: 850;
	line-height: 1.1;
}

/* Quote and forms */
.ept-quote {
	background: linear-gradient(135deg, #0a1e31, #143956);
	color: rgba(255, 255, 255, 0.78);
}

.ept-quote h2 {
	color: var(--ept-white);
}

.ept-quote__grid,
.ept-contact-section__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
	align-items: start;
	gap: clamp(48px, 9vw, 110px);
}

.ept-quote__intro {
	position: sticky;
	top: 40px;
}

.ept-quote__phone {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	margin-top: 20px;
	color: var(--ept-white);
	font-size: 1.35rem;
	font-weight: 850;
	line-height: 1.1;
	text-decoration: none;
}

.ept-quote__phone > svg {
	width: 46px;
	height: 46px;
	padding: 12px;
	border-radius: 50%;
	background: var(--ept-orange);
	fill: var(--ept-navy);
}

.ept-quote__phone small {
	display: block;
	margin-bottom: 5px;
	color: rgba(255, 255, 255, 0.63);
	font-size: 0.7rem;
	font-weight: 650;
}

.ept-form-card {
	padding: clamp(27px, 4vw, 46px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 24px 65px rgba(0, 0, 0, 0.18);
	backdrop-filter: blur(12px);
}

.ept-form-card--light {
	border-color: var(--ept-line);
	background: var(--ept-white);
	box-shadow: var(--ept-shadow);
	color: var(--ept-ink);
}

.ept-form-card .wpcf7,
.ept-form-card form,
.ept-form-card .columns_wrap {
	margin: 0;
}

.ept-form-card .columns_wrap {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin-bottom: 16px;
}

.ept-form-card .column-1_1 {
	grid-column: 1 / -1;
}

.ept-form-card .column-1_2,
.ept-form-card .column-1_1 {
	width: auto;
	margin: 0;
	padding: 0;
}

.ept-form-card .wpcf7-form-control-wrap {
	display: block;
}

.ept-form-card .ept-field {
	display: grid;
	gap: 7px;
	color: rgba(255, 255, 255, 0.84);
	font-size: 0.76rem;
	font-weight: 750;
	letter-spacing: 0.02em;
}

.ept-form-card--light .ept-field {
	color: var(--ept-navy);
}

.ept-form-card input[type="text"],
.ept-form-card input[type="email"],
.ept-form-card input[type="tel"],
.ept-form-card select,
.ept-form-card textarea {
	width: 100%;
	min-height: 58px;
	margin: 0;
	padding: 14px 16px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 9px;
	outline: none;
	background: rgba(255, 255, 255, 0.1);
	box-shadow: none;
	color: var(--ept-white);
	font-size: 0.93rem;
	transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.ept-form-card textarea {
	height: 180px;
	min-height: 145px;
	max-height: 360px;
	resize: vertical;
}

.ept-form-card option {
	color: var(--ept-ink);
}

.ept-form-card input::placeholder,
.ept-form-card textarea::placeholder {
	color: rgba(255, 255, 255, 0.68);
}

.ept-form-card input:focus,
.ept-form-card select:focus,
.ept-form-card textarea:focus {
	border-color: var(--ept-orange);
	background: rgba(255, 255, 255, 0.14);
	box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.18);
}

.ept-form-card--light input[type="text"],
.ept-form-card--light input[type="email"],
.ept-form-card--light input[type="tel"],
.ept-form-card--light select,
.ept-form-card--light textarea {
	border-color: var(--ept-line);
	background: var(--ept-soft);
	color: var(--ept-ink);
}

.ept-form-card--light input::placeholder,
.ept-form-card--light textarea::placeholder {
	color: #697681;
}

.ept-form-card input[type="submit"] {
	min-height: 54px;
	padding: 13px 25px;
	border: 2px solid var(--ept-orange);
	border-radius: 9px;
	background: var(--ept-orange);
	box-shadow: none;
	color: var(--ept-navy);
	font-weight: 850;
	cursor: pointer;
}

.ept-form-card .alignright,
.ept-form-card .aligncenter {
	float: none;
	text-align: left;
}

.ept-form-card .wpcf7-acceptance label {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	font-size: 0.78rem;
	line-height: 1.45;
}

.ept-form-card .wpcf7-acceptance input {
	width: 18px;
	height: 18px;
	margin-top: 2px;
	accent-color: var(--ept-orange);
}

.ept-form-card .services_form_info {
	display: block;
	color: rgba(255, 255, 255, 0.67);
	font-size: 0.74rem;
}

.ept-form-card .wpcf7-not-valid-tip {
	margin-top: 5px;
	color: #ffb6a9;
	font-size: 0.75rem;
}

.ept-form-card .wpcf7-response-output {
	margin: 18px 0 0 !important;
	padding: 12px 15px !important;
	border-radius: 8px;
	font-size: 0.83rem;
}

.ept-contact-cards {
	position: relative;
	z-index: 3;
	margin-top: -45px;
}

.ept-contact-cards__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-radius: 18px;
	background: var(--ept-white);
	box-shadow: var(--ept-shadow);
	overflow: hidden;
}

.ept-contact-card {
	display: flex;
	gap: 18px;
	padding: 30px;
	color: var(--ept-ink);
	text-decoration: none;
}

.ept-contact-card:not(:last-child) {
	border-right: 1px solid var(--ept-line);
}

.ept-contact-card > span {
	display: grid;
	width: 45px;
	height: 45px;
	flex: 0 0 45px;
	place-items: center;
	border-radius: 50%;
	background: var(--ept-cream);
	color: var(--ept-orange-dark);
}

.ept-contact-card svg {
	width: 21px;
	height: 21px;
	fill: currentColor;
}

.ept-contact-card small,
.ept-contact-card strong {
	display: block;
}

.ept-contact-card small {
	margin-bottom: 3px;
	color: var(--ept-muted);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.ept-contact-card strong {
	color: var(--ept-navy);
	font-size: 0.96rem;
}

.ept-contact-card p {
	margin: 4px 0 0;
	color: var(--ept-muted);
	font-size: 0.77rem;
}

.ept-contact-note {
	margin-top: 35px;
	padding: 24px;
	border-left: 4px solid var(--ept-orange);
	background: var(--ept-cream);
}

.ept-contact-note p {
	margin: 5px 0 0;
	font-size: 0.88rem;
}

/* Story, values and license */
.ept-story__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	gap: clamp(50px, 10vw, 140px);
}

.ept-story__copy .ept-lead {
	color: var(--ept-navy);
	font-size: clamp(1.15rem, 2vw, 1.42rem);
	font-weight: 700;
	line-height: 1.5;
}

.ept-story__copy p:not(.ept-lead) {
	color: var(--ept-muted);
}

.ept-values__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: rgba(255, 255, 255, 0.15);
}

.ept-values__grid article {
	min-height: 275px;
	padding: 34px;
	background: var(--ept-navy);
}

.ept-values__grid article > span {
	display: block;
	margin-bottom: 45px;
	color: var(--ept-orange);
	font-size: 0.75rem;
	font-weight: 850;
}

.ept-values__grid p {
	margin: 0;
	font-size: 0.88rem;
}

.ept-license {
	background: var(--ept-cream);
}

.ept-license__grid {
	display: grid;
	grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
	align-items: center;
	gap: clamp(50px, 9vw, 120px);
}

.ept-license__mark {
	position: relative;
	padding: 42px;
	border: 2px solid var(--ept-navy);
	color: var(--ept-navy);
}

.ept-license__mark::before {
	position: absolute;
	top: -8px;
	left: 35px;
	width: 55px;
	height: 14px;
	background: var(--ept-orange);
	content: "";
}

.ept-license__mark span,
.ept-license__mark strong {
	display: block;
}

.ept-license__mark span {
	font-size: 2.5rem;
	font-weight: 900;
	letter-spacing: -0.05em;
}

.ept-license__mark strong {
	font-size: 1.2rem;
	letter-spacing: 0.05em;
}

/* FAQ */
.ept-faq__grid {
	display: grid;
	grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
	gap: clamp(50px, 10vw, 130px);
}

.ept-accordion {
	border-top: 1px solid var(--ept-line);
}

.ept-accordion details {
	border-bottom: 1px solid var(--ept-line);
}

.ept-accordion summary {
	position: relative;
	padding: 24px 50px 24px 0;
	color: var(--ept-navy);
	font-weight: 800;
	cursor: pointer;
	list-style: none;
}

.ept-accordion summary::-webkit-details-marker {
	display: none;
}

.ept-accordion summary::after {
	position: absolute;
	top: 20px;
	right: 0;
	display: grid;
	width: 30px;
	height: 30px;
	place-items: center;
	border-radius: 50%;
	background: var(--ept-cream);
	color: var(--ept-navy);
	content: "+";
}

.ept-accordion details[open] summary::after {
	content: "–";
}

.ept-accordion details p {
	padding-right: 45px;
	color: var(--ept-muted);
}

/* Prose and empty state */
.ept-prose {
	max-width: 900px;
}

.ept-prose h2,
.ept-prose h3,
.ept-prose h4,
.ept-prose h5 {
	margin-top: 1.7em;
}

.ept-prose p,
.ept-prose li {
	color: #3d4b58;
}

.ept-prose a {
	color: #0c5f98;
}

.ept-prose ul,
.ept-prose ol {
	padding-left: 1.3em;
}

.ept-empty-state__inner {
	max-width: 760px;
	text-align: center;
}

.ept-empty-state__inner .ept-eyebrow,
.ept-empty-state__inner .ept-button-row {
	justify-content: center;
}

.ept-empty-state__icon {
	display: grid;
	width: 72px;
	height: 72px;
	place-items: center;
	margin: 0 auto 30px;
	border-radius: 50%;
	background: var(--ept-cream);
	color: var(--ept-orange-dark);
}

.ept-empty-state__icon svg {
	width: 34px;
	height: 34px;
	fill: currentColor;
}

.ept-empty-state__inner > p:not(.ept-eyebrow) {
	color: var(--ept-muted);
}

/* Footer */
.ept-footer-cta {
	padding: 58px 0;
	background: var(--ept-orange);
	color: var(--ept-navy);
}

.ept-footer-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 35px;
}

.ept-footer-cta .ept-eyebrow {
	margin-bottom: 10px;
	color: rgba(13, 35, 56, 0.72);
}

.ept-footer-cta h2 {
	margin: 0;
	font-size: clamp(2rem, 4vw, 3.2rem);
}

.ept-footer-cta .ept-button--outline-light {
	border-color: var(--ept-navy);
	background: var(--ept-orange);
	color: var(--ept-navy);
}

.ept-footer {
	background: #081827;
	color: rgba(255, 255, 255, 0.66);
}

.ept-footer__grid {
	display: grid;
	grid-template-columns: 1.25fr 0.7fr 1.1fr;
	gap: clamp(45px, 9vw, 115px);
	padding-block: 75px;
}

.ept-footer__logo {
	width: 230px;
	margin-bottom: 22px;
	filter: brightness(0) invert(1);
	opacity: 0.95;
}

.ept-footer__brand p {
	max-width: 370px;
	font-size: 0.88rem;
}

.ept-footer__rbq {
	color: var(--ept-white);
	font-weight: 750;
}

.ept-modern .ept-footer__title {
	margin-bottom: 22px;
	color: var(--ept-white);
	font-size: 0.86rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.ept-footer .ept-nav__list {
	display: grid;
	gap: 2px;
}

.ept-footer .ept-nav__list a {
	display: inline-block;
	padding: 5px 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.86rem;
	font-weight: 600;
}

.ept-footer .ept-nav__list a::after {
	display: none;
}

.ept-footer__contact {
	display: grid;
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ept-footer__contact li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 0.84rem;
}

.ept-footer__contact .ept-icon {
	margin-top: 4px;
	color: var(--ept-orange);
}

.ept-footer__contact a {
	color: var(--ept-white);
	text-decoration: none;
}

.ept-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.ept-footer__bottom .ept-shell {
	display: flex;
	min-height: 68px;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	font-size: 0.74rem;
}

.ept-footer__bottom p {
	margin: 0;
}

.ept-footer__bottom a {
	color: rgba(255, 255, 255, 0.74);
}

.ept-mobile-actions {
	display: none;
}

/* Responsive */
@media (max-width: 1120px) {
	.ept-nav__phone {
		display: none;
	}

	.ept-nav__panel {
		gap: 22px;
	}

	.ept-service-detail > div {
		grid-template-columns: 0.8fr 1.2fr;
	}

	.ept-service-detail ul {
		grid-column: 2;
	}
}

@media (max-width: 940px) {
	:root {
		--ept-header-height: 76px;
	}

	.ept-shell {
		width: min(calc(100% - 32px), var(--ept-shell));
	}

	.ept-topbar__inner p:last-child {
		display: none;
	}

	.ept-brand__logo {
		width: 205px;
	}

	.ept-menu-toggle {
		display: flex;
		min-height: 44px;
		align-items: center;
		gap: 10px;
		padding: 8px 10px;
		border: 0;
		background: transparent;
		color: var(--ept-navy);
		font-size: 0.78rem;
		font-weight: 800;
		cursor: pointer;
	}

	.ept-menu-toggle__bars {
		display: grid;
		gap: 4px;
	}

	.ept-menu-toggle__bars i {
		display: block;
		width: 23px;
		height: 2px;
		background: currentColor;
		transition: transform 0.2s ease, opacity 0.2s ease;
	}

	.ept-menu-toggle[aria-expanded="true"] .ept-menu-toggle__bars i:first-child {
		transform: translateY(6px) rotate(45deg);
	}

	.ept-menu-toggle[aria-expanded="true"] .ept-menu-toggle__bars i:nth-child(2) {
		opacity: 0;
	}

	.ept-menu-toggle[aria-expanded="true"] .ept-menu-toggle__bars i:last-child {
		transform: translateY(-6px) rotate(-45deg);
	}

	.ept-nav__panel {
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		display: none;
		padding: 20px 16px 24px;
		border-top: 1px solid var(--ept-line);
		background: var(--ept-white);
		box-shadow: 0 20px 45px rgba(13, 35, 56, 0.14);
	}

	.ept-nav__panel.is-open {
		display: block;
	}

	.ept-nav__list {
		display: grid;
		gap: 0;
	}

	.ept-nav__list a {
		padding: 12px 4px;
		border-bottom: 1px solid var(--ept-line);
	}

	.ept-nav__list a::after {
		display: none;
	}

	.ept-nav__actions {
		margin-top: 18px;
	}

	.ept-nav__actions .ept-button {
		width: 100%;
	}

	.ept-service-page__grid {
		grid-template-columns: 1fr;
	}

	.ept-service-page__aside {
		position: static;
	}

	.ept-related-services {
		grid-template-columns: 1fr 1fr;
	}

	.ept-hero {
		min-height: 690px;
	}

	.ept-hero__content {
		padding-top: 90px;
	}

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

	.ept-trust-strip > div {
		padding: 16px 18px;
	}

	.ept-trust-strip > div:nth-child(2)::after {
		display: none;
	}

	.ept-trust-strip > div:nth-child(-n + 2) {
		border-bottom: 1px solid var(--ept-line);
	}

	.ept-page-hero__inner,
	.ept-section-heading--split,
	.ept-about-split__grid,
	.ept-feature-split__grid,
	.ept-story__grid,
	.ept-license__grid,
	.ept-area__grid,
	.ept-quote__grid,
	.ept-contact-section__grid,
	.ept-faq__grid {
		grid-template-columns: 1fr;
	}

	.ept-page-hero__inner {
		gap: 25px;
	}

	.ept-page-hero__inner > p {
		max-width: 680px;
	}

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

	.ept-about-split__media,
	.ept-feature-split__media {
		min-height: 470px;
	}

	.ept-feature-split--reverse .ept-feature-split__media {
		order: 0;
	}

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

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

	.ept-quote__intro {
		position: static;
	}

	.ept-contact-cards__grid {
		grid-template-columns: 1fr;
	}

	.ept-contact-card:not(:last-child) {
		border-right: 0;
		border-bottom: 1px solid var(--ept-line);
	}

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

	.ept-footer__grid {
		grid-template-columns: 1.2fr 0.8fr;
	}

	.ept-footer__grid > div:last-child {
		grid-column: 1 / -1;
	}
}

@media (max-width: 720px) {
	.ept-content-link-grid {
		grid-template-columns: 1fr;
	}

	.ept-content-link-grid a:last-child {
		grid-column: auto;
	}

	body.ept-modern {
		padding-bottom: 0;
		font-size: 16px;
	}

	.ept-shell {
		width: min(calc(100% - 28px), var(--ept-shell));
	}

	.ept-topbar {
		font-size: 0.69rem;
	}

	.ept-brand__logo {
		width: 176px;
	}

	.ept-hero {
		min-height: 720px;
		align-items: flex-start;
	}

	.ept-hero__overlay {
		background: linear-gradient(90deg, rgba(7, 25, 42, 0.96), rgba(7, 25, 42, 0.8)), linear-gradient(0deg, rgba(7, 25, 42, 0.65), transparent);
	}

	.ept-hero__content {
		padding-top: 72px;
		padding-bottom: 175px;
	}

	.ept-hero h1 {
		font-size: clamp(2.5rem, 11vw, 3.75rem);
	}

	.ept-hero__lead {
		font-size: 1.01rem;
	}

	.ept-hero .ept-button-row {
		display: grid;
	}

	.ept-hero .ept-button {
		width: 100%;
	}

	.ept-trust-strip strong {
		font-size: 0.85rem;
	}

	.ept-trust-strip span {
		font-size: 0.67rem;
	}

	.ept-page-hero {
		min-height: 390px;
	}

	.ept-page-hero__inner {
		padding-block: 65px;
	}

	.ept-page-hero h1 {
		font-size: clamp(2.35rem, 10vw, 3.4rem);
	}

	.ept-page-hero--compact > .ept-shell {
		padding-block: 46px;
	}

	.ept-service-page__image {
		height: 310px;
	}

	.ept-related-services {
		grid-template-columns: 1fr;
	}

	.ept-page-hero--compact {
		min-height: 270px;
	}

	.ept-anchor-nav {
		position: static;
	}

	.ept-anchor-nav .ept-shell {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0;
		padding-block: 8px;
		overflow: visible;
	}

	.ept-anchor-nav a {
		padding: 9px 7px;
		text-align: center;
	}

	.ept-anchor-nav a:last-child {
		grid-column: 1 / -1;
	}

	.ept-section {
		padding-block: 74px;
	}

	.ept-section-heading--split {
		gap: 22px;
	}

	.ept-service-grid {
		grid-template-columns: 1fr;
	}

	.ept-service-card {
		min-height: 290px;
		padding: 27px;
	}

	.ept-service-detail {
		grid-template-columns: 42px 1fr;
		gap: 15px;
		padding: 34px 0;
	}

	.ept-service-detail > div {
		display: block;
	}

	.ept-service-detail p {
		margin-bottom: 18px;
	}

	.ept-about-split__media,
	.ept-feature-split__media {
		min-height: 390px;
	}

	.ept-sector-cards {
		grid-template-columns: 1fr;
	}

	.ept-process {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.ept-process li {
		padding-right: 0;
		padding-left: 60px;
	}

	.ept-process li > span {
		position: absolute;
		top: 0;
		left: 0;
	}

	.ept-process li:not(:last-child)::after {
		top: 44px;
		right: auto;
		bottom: -28px;
		left: 22px;
		width: 1px;
		height: auto;
	}

	.ept-project-grid {
		grid-template-columns: 1fr;
		grid-auto-rows: 320px;
	}

	.ept-project--wide {
		grid-column: span 1;
	}

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

	.ept-gallery-item--wide {
		grid-column: span 2;
	}

	.ept-form-card .columns_wrap {
		grid-template-columns: 1fr;
	}

	.ept-form-card .column-1_2,
	.ept-form-card .column-1_1 {
		grid-column: 1;
	}

	.ept-form-card textarea {
		height: 180px;
		min-height: 140px;
		max-height: 300px;
	}

	.ept-values__grid {
		grid-template-columns: 1fr;
	}

	.ept-license__mark {
		padding: 32px;
	}

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

	.ept-footer-cta .ept-button-row,
	.ept-footer-cta .ept-button {
		width: 100%;
	}

	.ept-footer__grid {
		grid-template-columns: 1fr;
		padding-block: 60px;
	}

	.ept-footer__grid > div:last-child {
		grid-column: auto;
	}

	.ept-footer__bottom .ept-shell {
		align-items: flex-start;
		flex-direction: column;
		justify-content: center;
		padding-block: 15px;
	}

	.ept-mobile-actions {
		position: static;
		display: grid;
		grid-template-columns: 1fr 1fr;
		height: 66px;
		padding: 7px;
		background: rgba(8, 24, 39, 0.98);
		box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
	}

	.ept-mobile-actions a {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		border-radius: 8px;
		color: var(--ept-white);
		font-size: 0.82rem;
		font-weight: 800;
		text-decoration: none;
	}

	.ept-mobile-actions a:last-child {
		background: var(--ept-orange);
		color: var(--ept-navy);
	}
}

@media (max-width: 430px) {
	.ept-shell {
		width: min(calc(100% - 24px), var(--ept-shell));
	}

	.ept-menu-toggle__label {
		display: none;
	}

	.ept-brand__logo {
		width: 158px;
	}

	.ept-trust-strip > div {
		padding: 13px 12px;
	}

	.ept-trust-strip strong {
		font-size: 0.79rem;
	}

	.ept-about-split__media,
	.ept-feature-split__media {
		min-height: 330px;
	}

	.ept-gallery-grid {
		gap: 8px;
	}

	.ept-contact-card {
		padding: 24px 20px;
	}

	.ept-contact-card strong {
		font-size: 0.85rem;
		word-break: break-word;
	}

	.ept-form-card {
		padding: 22px 17px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
