/* styles/legacy.css */
:root {
	--bg: #ffffff;
	--accent: #ffffff;
	--text: #f5f5f5;
	--card-bg: rgba(174, 61, 61, 0.05);
	--border: rgba(255, 255, 255, 0.1);
	--dark-text: rgba(0, 0, 0, 0.6);
	--blue-gradient-bg: radial-gradient(circle at top, #353768 0%, #0d0b1f 100%);

	--full-container-width: 1290px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Segoe UI', sans-serif;
	background-color: var(--bg);
	color: var(--text);
	line-height: 1.6;
	overflow-x: hidden;
}

.hero {
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
	padding-top: 10rem;
	background: var(--blue-gradient-bg);
	padding-bottom: 10rem;
	position: relative;
	z-index: 1;
}

.hero-section {
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
	padding-top: 7rem;
	background: var(--blue-gradient-bg);
	padding-bottom: 10rem;
	position: relative;
	z-index: 1;
}

#home img {
	width: 800px;
}

.hero h1 {
	font-size: 3.5rem;
	color: var(--accent);
}

.hero p {
	font-size: 1.25rem;
	max-width: 600px;
	margin-top: 1rem;
}

.hero-section p {
	font-size: 1.25rem;
	max-width: 900px;
	margin-bottom: 1rem;
}


section {
	max-width: 100%;
	margin: auto;
}

section h2 {
	font-size: 2rem;
	margin-bottom: 2rem;
	color: var(--accent);
	text-align: center;
}

.services {
	margin-top: -80px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	position: relative;
	z-index: 2;
	padding-bottom: 2rem;
}

.image-pair {
	display: flex;
}


.image-pair-wrapper {
	margin-top: -140px;
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	position: relative;
	z-index: 2;
	padding-bottom: 2rem;
}

.image-toggle {
	display: none;
	margin-bottom: 1rem;
	gap: 10px;
}

.image-toggle button {
	background: none;
	border: none;
	padding: 8px;
	cursor: pointer;
	color: #666;
	border-radius: 6px;
}

.image-toggle button.active {
	background-color: #353768;
	color: #000;
}

.image-pair {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: center;
}

.image-pair img {
	max-width: 100%;
	height: auto;
}

.image-mobile,
.image-desktop {
	display: block;
}


.image-desktop {
	width: 850px;
	height: fit-content;
	border: 10px solid black;
	border-radius: 15px;
}

.image-mobile {
	width: 233px;
	height: fit-content;
	border: 10px solid black;
	border-radius: 15px;
}

.services .service-subtitle {
	font-weight: bold;
	font-size: 18px;
	text-align: left;
}

.service-card {
	background: white;
	border-radius: 12px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
	max-width: 300px;
	width: 300px;
	padding: 19px 25px 15px 15px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-list {
	color: #555;
	padding: 0px 5px 0px 17px;
	margin-bottom: 13px;
	text-align: left;
	font-size: 18px;
	margin-left: 10px;
}

.service-list li {
	margin-bottom: 3px;
}

.service-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.service-card-header {
	font-size: 25px;
	background: radial-gradient(circle at top, #2b2d5f 0%, #0a0254 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
}

.service-card p {
	font-size: 18px;
	color: #555;
	margin-bottom: 13px;
	line-height: 1.5;
}

.service-card .btn {
	display: inline-block;
	background: var(--blue-gradient-bg);
	color: #fff;
	padding: 8px 18px 8px 18px;
	border-radius: 6px;
	margin-top: 9px;
	text-decoration: none;
	font-weight: 500;
	margin-bottom: 8px;
	transition: #297ea6 0.25s ease;
}

.service-card .btn:hover {
	background: #225f7e;
}

.service-card .link {
	display: inline-block;
	font-size: 14px;
	background: radial-gradient(circle at top, #1b1c3a 0%, #0d0b1f 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
	text-decoration: none;
}

.service-card .link:hover {
	text-decoration: underline;
}

.service-category-card { display:flex; flex-direction:column; }
.service-category-card__label { align-self:flex-start; margin-bottom:11px; padding:4px 8px; border-radius:999px; background:#ededf4; color:#555777; font-size:10px; font-weight:800; letter-spacing:.09em; }
.service-category-card__services { margin:3px 0 14px; padding-left:19px; color:#626272; font-size:15px; }
.service-category-card__services li { margin:3px 0; }
.service-category-card .btn { margin-top:auto; align-self:flex-start; }

.service-links {
	background-color: #e5e5e5;
	border-radius: 5px;
	display: inline-flex;
	gap: 9px;
	padding: 10px 10px 3px 10px;
	margin: 15px 0px 13px 0px;
}

.gradient-header {
	background: radial-gradient(circle at top, #1b1c3a 0%, #0d0b1f 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
}

.service-final {
	font-size: 18px !important;
	font-weight: bold;
}

.about {
	margin: auto;
	max-width: var(--full-container-width);
	background: #fff;
	border-radius: 0 0 12px 12px;
	box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.15);
	padding: 45px;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	z-index: 2;
	margin-bottom: -18.5rem;
}

.about p {
	color: #555;
	font-size: 20px;
	max-width: 1000px;
}

.web-portfolio-title {
	font-size: 45px;
	margin-bottom: 0px;
}

.web-portfolio-label {
	font-size: 15px;
	margin-top: 5px !important;
}

.web-portfolio-visit {
	font-size: 17px;
	background-color: #0d0b1f;
	color: white;
	padding: 5px 10px;
	border-radius: 5px;
	text-decoration: none;
	margin-top: 15px;
	margin-bottom: 15px;
}

.web-portfolio-visit:hover {
	background-color: #353768;
}


.whatdone {
	margin: auto;
	max-width: var(--full-container-width);
	background: #fff;
	border-radius: 0 0 12px 12px;
	box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.15);
	padding: 25px;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	z-index: 2;
	margin-bottom: 100px;
}

.whatdone p {
	color: #555;
	font-size: 20px;
	padding-bottom: 20px;
}

.whatdone h3 {
	color: #333333;
	font-size: 23px;
	margin-bottom: 5px;
}

.whatdone a {
	font-weight: bold;
	text-decoration: none;
	color: #555;
}

.about-content {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 20px;
	padding: 10px 0;
	max-width: 685px;
	margin: 0 auto;
	text-align: left;
}

.about-header {
	background: var(--blue-gradient-bg);
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	padding: 1.25rem;
	text-align: center;
	color: white !important;
	max-width: var(--full-container-width);
	;
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.05);
	margin: auto;
}

.about-header h2 {
	margin: auto;
	font-size: 2rem;
	color: white;
}

.key-point-gradient {
	display: inline-block;
	background: radial-gradient(circle at top, #075100 0%, #064500 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
	font-weight: bold;
}

#projects {
	padding-top: 20rem;
	background: radial-gradient(circle at top, #1b1c3a 0%, #0d0b1f 100%);
	padding-bottom: 8.5rem;
	position: relative;
	z-index: 1;
}

.project-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	max-width: var(--full-container-width);
	;
	margin: auto;
}

.project-card {
	padding-bottom: 15px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	background: var(--blue-gradient-bg);
	border: 1px solid var(--border);
	border-radius: 12px;
	transition: transform 0.3s, box-shadow 0.3s;
	box-shadow: 0 0 10px rgba(0, 255, 110, 0.1);
	overflow: hidden;
}

.project-card:hover {
	transform: translateY(-10px);
	box-shadow: 0px 0px 5px 5px var(--accent);
}

.project-card-image {
	margin-bottom: 10px;
	object-fit: contain;
	display: block;
	background-color: #1a1a1a;
	max-width: 100%;
}

.project-card-title,
.project-card-type {
	color: white;
}

.project-card-title {
	font-size: 25px;
}

footer {
	background: #090818;
	text-align: center;
	padding: 2rem;
	font-size: 0.9rem;
	border-top: 1px solid var(--border);
}

.tick-icon {
	width: 20px;
	height: 20px;
	min-width: 20px;
	margin-top: 7px;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><defs><radialGradient id='greenGradient' cx='50%' cy='50%' r='50%'><stop offset='0%' stop-color='%2313d702'/><stop offset='100%' stop-color='%230a6801'/></radialGradient></defs><circle cx='50' cy='50' r='48' fill='url(%23greenGradient)'/><path d='M30 52 L44 66 L70 36' fill='none' stroke='white' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

#contact-form {
	padding-top: 0px;
}

#contact-form .form-field-name {
	color: white;
	text-align: left;
	font-weight: bold;
	margin-bottom: 4px;
	padding-left: 6px;
}

#contact-form label {
	color: white;
	text-align: left;
	font-weight: bold;
	margin-bottom: 4px;
	padding-left: 6px;
}

.contact-email { color:#111; text-decoration:none; font-weight:700; }
.about-closing { margin:auto; padding-top:15px; }

#contact-form form {
	display: flex;
	flex-direction: column;
	background: var(--blue-gradient-bg);
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

#contact-form input,
#contact-form textarea {
	padding: 12px;
	font-size: 16px;
	border: 1px solid #ccc;
	border-radius: 6px;
	resize: vertical;
	margin-bottom: 15px;
}

#contact-form button {
	padding: 12px;
	background: #fff;
	color: #000;
	font-weight: bold;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-size: 18px;
	transition: #1b1c3a 0.3s ease;
}

#contact-form button:hover {
	background: #fefad7;
}

#contact {
	margin-bottom: 2rem;
	background: white;
	border-radius: 12px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
	padding: 30px;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	z-index: 2;
	position: relative;
	margin-top: -4rem;
	width: 40%;
}

#contact h2 {
	color: black;
}

#contact p {
	color: black;
}

.linklogo-tooltip {
	position: absolute;
	bottom: calc(100% + 8px);
	left: 50%;
	transform: translateX(-50%);
	border-radius: 5px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	opacity: 0;
	transition: opacity 0.2s ease;
	z-index: 999;
	background-color: #fff;
	border-radius: 5px;
	width: 280px;
	color: #000;
	word-wrap: break-word;
	overflow-wrap: break-word;
	white-space: normal;
	gap: 15px;
}

.linklogo-tooltip p {
	margin-bottom: 0;
	font-size: 20px;
	color: #000;
	text-align: center;
	font-weight: bold;
	padding: 10px 5px;
}

.linklogo-tooltip .visit-page {
	display: flex;
	justify-content: center;
	align-items: center;
	;
	color: #000;
	font-size: 16px;
	background-color: #f8f5b4;
	border-radius: 5px;
}

.linklogo-tooltip .visit-page::before {
	content: "";
	display: inline-block;
	width: 1em;
	height: 1em;
	margin-right: 6px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	vertical-align: middle;
}


.linklogo-tooltip .visit-page svg {
	fill: #f8f5b4;
	stroke: #f8f5b4;
}

.svg-wrapper {
	display: inline-block;
}

.svg-wrapper svg {
	width: 100%;
	height: 100%;
}


@media (max-width: 1050px) {
	#home img {
		width: 35%;
	}

	.service-card {
		max-width: 45%;
		width: 45%;
	}


	#about {
		width: 90%;
	}


	.hero-section {
		padding-right: 20px;
		padding-left: 20px;
		padding-top: 6rem;
		padding-bottom: 10rem;
	}

	.project-grid {
		width: 90%;
	}
}

@media (max-width: 768px) {
	section {
		padding: 0;
	}

	nav a {
		margin-left: 1rem;
	}

	.hero h1 {
		font-size: 2.5rem;
	}

	.hero p {
		font-size: 1rem;
	}

	.about {
		max-width: 100%;
		padding: 25px 25px;
	}



	.web-portfolio-title {
		font-size: 30px;
	}


	.about p {
		font-size: 16px;
	}

	.project-grid {
		max-width: 100%;
	}

	.service-card {
		max-width: 100%;
		width: 90%;
	}

	#contact {
		max-width: 95%;
		width: 95%;
		padding: 0px 8px 0px 8px;
		margin-bottom: 10px;
	}

	#contact-form {
		padding: 0rem 12px 15px 12px;

	}

	.tick-icon {
		margin-top: 25px;
	}

	.hero {
		padding-top: 7rem;
		padding-bottom: 7rem;
	}

	.service-card .btn {
		padding: 39px 20px;
	}

	#contact p {
		padding: 0px 20px;
		font-size: 14px;
	}

	#contact h2 {
		margin-bottom: 0.5rem;
		padding-top: 10px;
	}



	.whatdone {
		margin-bottom: 100px;
	}

	.image-toggle {
		display: flex;
		margin-bottom: -20px;
	}

	.image-mobile,
	.image-desktop {
		display: none;
	}

	.image-mobile.show,
	.image-desktop.show {
		display: block;
	}




	.image-desktop {
		max-width: 90%;
		width: 90%;
	}

	.image-mobile {
		max-width: 90%;
		width: 90%;
	}

	.project-card-title {
		font-size: 22px;
	}

	.project-card-type {
		font-size: 15px;
	}

	.service-card {
		padding: 15px 7px;
	}

	#projects {
		padding-bottom: 6rem;
	}

	section h2 {
		margin-bottom: 1rem;
	}

	.service-card p {
		padding: 0px 15px;
	}

	.about-content {
		padding: 6px 0;
	}

	#formMessageBox {
		margin-bottom: 0 !important;
	}


	.service-card-header {
		padding-left: 15px;
	}

	.service-list {
		padding: 0px 5px 0px 34px
	}

	.service-card .btn {
		padding: 15px 15px;
		margin-left: 15px;
	}

	.service-links {
		margin: 15px 0px 15px 13px;
	}

	#home img {
		width: 75%;
	}
}

.project-card-title {
	margin-bottom: 0;
}

#typed-about p,
#typed-about h2 {
	white-space: pre-wrap;
	margin: 1rem 0;
	font-size: 1.1rem;
	text-align: center;
}

#typed-about h2 {
	font-size: 2rem;
	color: var(--accent);
}

#typed-about strong {
	font-weight: bold;
}

#typed-about p::after,
#typed-about h2::after {
	content: '|';
	animation: blink 0.8s infinite;
}

@keyframes blink {

	0%,
	50%,
	100% {
		opacity: 1;
	}

	25%,
	75% {
		opacity: 0;
	}
}


.pay-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 12px;
  margin-right: 20px;
  font-size: 20px;
  font-weight: bold;
  color: #000;
  border-radius: 8px;
  background: linear-gradient(45deg, #ffd900da, #ffc800c5, #ffb700c5, #ffd633d7);
  background-size: 400% 400%;
  box-shadow: -3px -3px 20px white;
  text-shadow: 3px 2px 11px rgba(255, 255, 255, 0.35);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: pulse 2s infinite;
}

/* Hover effect */
.pay-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}


#coffeePopup {
  position: fixed;
  bottom: 120px;
  right: 20px;
  width: 350px;
  background: linear-gradient(45deg, #c7c7c7e8, #ecececf5, #b3b3b3ef, #ffffffee);
  border: 2px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.6);
  padding: 15px;
  display: none;
  z-index: 9998;
  text-shadow: 8px 8px 12px white;
  font-weight: bold;
  animation: pulse 5s infinite;
}

#coffeePopup h4 {
  margin-top: 0;
  margin-bottom: 8px;
  color: black;
  font-size: 30px;
}

#coffeePopup p {
  color: black;
  font-size: 18px;
  margin: 0 0 15px 0;
  background: linear-gradient(45deg, #f5f3f3e8, #f0eeeef5, #e9e9e9ef, #ffffffee);
  border: 1px solid #f4f4f4;
    padding: 5px 10px;
    border-radius: 10px;
    margin-left: -5px;
    margin-right: -5px;
}

#coffeePopup #closeCoffeePopup {
  position: absolute;
  top: -8px;
  right: 8px;
  font-size: 30px;
  cursor: pointer;
  font-weight: bold;
  color: black;
}

#coffeePopup .close-btn {
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #00ff99, #00cc77);
  color: #000;
  margin-top: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

#coffeeBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 8px 15px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: bold;
  color: #000;
  font-size: 16px;
  z-index: 9999;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  background: linear-gradient(45deg, rgb(255 217 0), rgb(255 200 0), rgb(255 183 0 / 82%), rgb(255 214 51 / 80%)) 0% 0% / 400% 400%;
  background-size: 400% 400%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: pulse 2s infinite;
}

#coffeeBtn:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Pulse animation keyframes */
@keyframes pulse {
  0% { transform: scale(1); background-position: 0% 50%; }
  50% { transform: scale(1.03); background-position: 100% 50%; }
  100% { transform: scale(1); background-position: 0% 50%; }
}
/* styles/foundation.css */
:root {
  --site-bg: #f4f3ef;
  --site-surface: #ffffff;
  --site-surface-soft: #ececf2;
  --site-ink: #171724;
  --site-muted: #626271;
  --site-line: #dcdce4;
  --site-brand: #30325d;
  --site-brand-dark: #111225;
  --site-green: #2d6842;
  --site-radius: 18px;
  --site-shadow: 0 18px 55px rgba(19, 20, 43, .10);
  --full-container-width: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--site-bg);
  color: var(--site-ink);
  font-family: "Segoe UI", Inter, Arial, sans-serif;
  line-height: 1.65;
}

body::selection {
  background: #d7d8f4;
  color: #111225;
}

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

img {
  max-width: 100%;
}

.script-notice {
  margin: 20px auto;
  padding: 16px;
  max-width: 760px;
  border: 1px solid var(--site-line);
  border-radius: 12px;
  background: #fff;
  color: var(--site-ink);
  text-align: center;
}

.form-message {
  display: none;
  margin-bottom: 12px;
  padding: 11px 13px;
  border-radius: 10px;
  font-size: 13px;
}

.form-message.is-sending,
.form-message.is-success,
.form-message.is-error {
  display: block;
}

.form-message.is-sending {
  background: #ececf4;
  color: #353768;
}

.form-message.is-success {
  background: #dff4e6;
  color: #225d36;
}

.form-message.is-error {
  background: #fbe4e4;
  color: #852c2c;
}

.form-message a {
  color: inherit;
  font-weight: 800;
}

.hero,
.hero-section,
.service-hero {
  background: radial-gradient(circle at 70% 0%, #44477d 0%, #252747 35%, #111225 76%);
}

.hero {
  padding-top: 10px;
}

.hero-section {
  min-height: 600px;
  padding: 145px 24px 175px;
}

.hero-section h1,
.hero-section h2 {
  max-width: 1000px;
  color: #fff;
  font-size: clamp(44px, 7vw, 78px);
  line-height: 1;
  letter-spacing: -.045em;
}

.web-portfolio-label {
  margin: 14px 0 0 !important;
  color: #c8c9db !important;
  font-size: 13px !important;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.portfolio-hero-description {
  max-width: 780px !important;
  margin: 22px auto 0 !important;
  color: #e7e7ef !important;
  font-size: clamp(17px, 2.2vw, 21px) !important;
  line-height: 1.65;
    margin-bottom: 40px !important;
}

.web-portfolio-visit {
  margin-top: 27px;
  padding: 11px 17px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 9px;
  background: #fff;
  color: #171724;
  font-weight: 800;
}

.web-portfolio-visit:hover {
  background: #dfe0ff;
  color: #171724;
}

.hero-section:has(.market-visit) {
  z-index: auto;
}

.market-visit {
  position: relative;
  z-index: 60;
  width: min(760px, calc(100vw - 30px));
  margin: 27px auto 0;
  text-align: left;
}

.market-visit__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(420px, 100%);
  margin: auto;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 10px;
  background: #fff;
  color: #171724;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .16);
}

.market-visit__trigger span:last-child {
  font-size: 20px;
  line-height: 1;
  transition: transform .18s ease;
}

.market-visit__trigger[aria-expanded="true"] span:last-child {
  transform: rotate(180deg);
}

.market-visit__menu {
  position: absolute;
  top: calc(100% + 9px);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-height: 430px;
  overflow-y: auto;
  padding: 7px;
  border: 1px solid #d8d8e2;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 65px rgba(8, 9, 24, .28);
}

.market-visit__menu[hidden] {
  display: none;
}

.market-visit__row {
  display: grid;
  grid-template-columns: minmax(170px, .7fr) minmax(280px, 1.3fr);
  gap: 18px;
  align-items: center;
  min-height: 54px;
  padding: 8px 11px;
  border-radius: 9px;
  color: #25253a;
  text-decoration: none;
}

.market-visit__row:hover,
.market-visit__row:focus-visible {
  background: #ededf4;
  outline: none;
}

.market-visit__country {
  display: flex;
  align-items: center;
  gap: 10px;
}

.market-visit__country img {
  width: 40px;
  height: 30px;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .1);
}

.market-visit__country strong {
  font-size: 14px;
}

.market-visit__title {
  color: #55556b;
  font-size: 13px;
  text-align: right;
}

.home-services {
  position: relative;
  z-index: 3;
  margin-top: -76px;
  padding: 0 20px 110px;
}

.home-services__inner {
  max-width: 1180px;
  margin: auto;
}

.home-services__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 25px;
  padding: 32px 36px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  background: rgba(18, 19, 40, .92);
  color: #fff;
  box-shadow: 0 22px 65px rgba(12, 13, 32, .22);
  backdrop-filter: blur(18px);
}

.home-services__header h1,
.home-services__header h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(29px, 4.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.home-services__eyebrow {
  margin: 0 0 9px !important;
  color: #7779bc !important;
  font-size: 11px !important;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.home-services__header .home-services__eyebrow {
  color: #bfc1ff !important;
}

.home-services__website {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(500px, 1.3fr);
  gap: 28px;
  margin-bottom: 18px;
  padding: 34px;
  border: 1px solid var(--site-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--site-shadow);
}

.home-services__website-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 6px;
}

.home-services__website-copy h3,
.home-service-feature h3 {
  margin: 0;
  color: var(--site-ink);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.home-services__website-copy>p:not(.home-services__eyebrow) {
  max-width: 410px;
  margin: 19px 0;
  color: var(--site-muted);
}

.home-services__website-copy>a {
  margin-top: auto;
  color: var(--site-brand);
  font-weight: 800;
  text-decoration: none;
}

.home-services__website-copy>a span {
  margin-left: 6px;
}

.home-platform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.home-platform-card {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 126px;
  padding: 20px;
  border: 1px solid #e3e3ea;
  border-radius: 15px;
  background: #f7f7f9;
  color: var(--site-ink);
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.home-platform-card:hover {
  z-index: 1;
  transform: translateY(-3px);
  border-color: #bec0df;
  background: #fff;
}

.home-platform-card__copy {
  display: flex;
  flex-direction: column;
}

.home-platform-card strong {
  font-size: 18px;
}

.home-platform-card small {
  margin-top: 4px;
  color: var(--site-muted);
  font-size: 12px;
  line-height: 1.4;
}

.home-service-logo {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 7px;
  border: 1px solid #e1e1e8;
  border-radius: 12px;
  background: #fff;
  color: #30325d;
  font-size: 9px;
  font-weight: 800;
  text-align: center;
}

.home-service-logo svg {
  display: block;
  width: 100%;
  height: 100%;
}

.home-service-arrow {
  color: #777995;
  font-size: 18px;
  transition: transform .2s ease;
}

.home-platform-card:hover .home-service-arrow,
.home-service-feature:hover .home-service-arrow {
  transform: translate(3px, -3px);
}

.home-services__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.home-service-feature {
  position: relative;
  min-height: 310px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--site-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 38px rgba(19, 20, 43, .07);
  transition: transform .2s ease, box-shadow .2s ease;
}

.home-service-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--site-shadow);
}

.home-service-feature__top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.home-service-feature>p {
  max-width: 520px;
  margin: 20px 0 32px;
  color: var(--site-muted);
}

.home-service-feature__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.home-service-feature__logos .home-service-logo {
  width: 52px;
  height: 52px;
}

.home-service-badge {
  display: grid;
  place-items: center;
  min-width: 52px;
  height: 52px;
  padding: 0 10px;
  border: 1px solid #dcdde7;
  border-radius: 13px;
  background: #f0f0f5;
  color: #33355f;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
}

.home-service-feature__link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.home-service-feature--google {
  background: linear-gradient(145deg, #fff 45%, #eef4ff);
}

.home-service-feature--social {
  background: linear-gradient(145deg, #fff 45%, #f7efff);
}

.home-service-feature--email {
  background: linear-gradient(145deg, #fff 45%, #f0f8f0);
}

.home-service-feature--translation {
  background: linear-gradient(145deg, #242648, #111225);
  border-color: #33365f;
}

.home-service-feature--translation h3 {
  color: #fff;
}

.home-service-feature--translation>p {
  color: #d2d2df;
}

.home-service-feature--translation .home-services__eyebrow {
  color: #bfc1ff !important;
}

.home-service-feature--translation .home-service-arrow {
  color: #c9cae2;
}

.home-service-feature--translation .home-service-badge {
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .09);
  color: #fff;
}

.services {
  max-width: 1180px;
  margin: -72px auto 0;
  gap: 16px;
  padding: 0 20px 80px;
}

.service-card {
  flex: 1 1 210px;
  max-width: none;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  box-shadow: var(--site-shadow);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 23px 62px rgba(19, 20, 43, .14);
}

.service-card-header {
  font-size: 25px;
  letter-spacing: -.025em;
}

.service-category-card__services {
  color: var(--site-muted);
}

.service-card .btn {
  border-radius: 9px;
  background: var(--site-brand);
}

.about-header,
.about {
  max-width: 1180px;
}

.about-header {
  padding: 24px;
  border-radius: 18px 18px 0 0;
  background: var(--site-brand-dark);
}

.about {
  padding: 48px;
  border: 1px solid var(--site-line);
  border-top: 0;
  border-radius: 0 0 18px 18px;
  box-shadow: var(--site-shadow);
}

.about-content {
  max-width: 780px;
}

.about-content p {
  color: var(--site-ink);
  font-size: 21px;
}

.key-point-gradient {
  background: none;
  -webkit-text-fill-color: var(--site-green);
  color: var(--site-green);
}

#projects {
  padding: 340px 22px 130px;
  background: var(--site-brand-dark);
}

.project-grid {
  max-width: 1180px;
  gap: 18px;
}

.project-card {
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 16px;
  background: #1c1d34;
  box-shadow: none;
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, .28);
}

.project-card-image {
  aspect-ratio: 16/10;
  width: 100%;
  object-fit: cover;
}

.project-card-title {
  padding: 5px 20px 0;
  font-size: 23px;
}

.project-card-type {
  padding: 0 20px 15px;
  color: #c8c9da;
}

#contact {
  width: min(680px, calc(100% - 28px));
  margin-top: -55px;
  padding: 34px;
  border: 1px solid var(--site-line);
  border-radius: 18px;
  box-shadow: var(--site-shadow);
}

#contact-form form {
  padding: 26px;
  border-radius: 14px;
  background: var(--site-brand-dark);
}

#contact-form input,
#contact-form textarea {
  border: 1px solid #d7d7e0;
  border-radius: 9px;
  background: #fff;
}

#contact-form button {
  border-radius: 9px;
}

.contact-privacy {
  margin: 2px 0 14px !important;
  color: #c8c8d5 !important;
  font-size: 12px !important;
  line-height: 1.5;
}

.contact-privacy a {
  color: #fff;
  font-weight: 800;
}

.shared-client-notice {
  max-width: 1080px;
    margin: -62px auto 38px;
  padding: 24px 28px;
  border-color: var(--site-line);
  border-radius: 16px;
  box-shadow: 0 18px 55px rgba(18, 19, 41, .16);
  z-index: 8;
}

.shared-client-notice+.image-pair-wrapper {
  margin-top: 0;
  padding-top: 0;
}

.image-pair-wrapper {
  max-width: 1180px;
  margin: -95px auto 0;
  padding: 0 20px 35px;
}

.image-pair {
  gap: 18px;
  align-items: flex-start;
}

.image-desktop,
.image-mobile {
  border: 7px solid #171724;
  border-radius: 15px;
  box-shadow: 0 22px 55px rgba(18, 19, 41, .17);
}

.image-desktop {
  width: min(850px, 100%);
}

.image-mobile {
  width: 230px;
}

.image-toggle {
  padding: 5px;
  border-radius: 10px;
  background: #1b1c34;
}

.image-toggle button {
  border-radius: 7px;
}

.image-toggle button.active {
  background: #55588e;
}

.regency-projects {
  max-width: 1180px;
  margin: 15px auto 125px;
}

.regency-projects__intro {
  max-width: none;
  margin: 0 0 48px;
  padding: 34px 38px;
  border: 1px solid var(--site-line);
  border-radius: 18px;
  background: var(--site-surface);
  box-shadow: 0 12px 35px rgba(18, 19, 41, .07);
  text-align: left;
  position: static;
}

.regency-projects__intro h2 {
  max-width: 850px;
  color: var(--site-ink);
  text-align: left;
}

.regency-projects__intro>p:last-of-type {
  max-width: 820px;
  margin-left: 0;
  margin-right: 0;
}

.regency-projects__intro .regency-projects__stats {
  justify-content: flex-start;
}

.completed-projects-heading h2 {
  color: var(--site-ink);
}

.regency-projects__stats span {
  background: #fff;
  border-color: var(--site-line);
}

.ongoing-services {
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  background: linear-gradient(135deg, #171829, #30325d);
  box-shadow: var(--site-shadow);
}

.ongoing-service {
  background: rgba(255, 255, 255, .075);
}

.regency-projects .ongoing-services h2,
.regency-projects .ongoing-services h3 {
  color: #fff;
}

.regency-projects .ongoing-services p {
  color: #dadae7;
}

.regency-projects .ongoing-services .regency-projects__eyebrow {
  color: #bfc1ff;
}

.project-controls {
  position: sticky;
  top: 90px;
  z-index: 20;
  border-color: var(--site-line);
  background: rgba(244, 243, 239, .94);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 28px rgba(18, 19, 41, .07);
}

.history-item {
  border-color: var(--site-line);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(18, 19, 41, .055);
}

.history-item summary:hover,
.history-item[open] summary {
  background: #eeeef3;
}

.history-content {
  background: #eeeef3;
}

.history-service {
  background: var(--site-brand);
}

.service-page {
  background: var(--site-bg);
}

.service-hero {
  background: radial-gradient(circle at 70% 0%, #44477d, #252747 38%, #111225 78%);
}

.service-catalogue {
  max-width: 1180px;
}

.catalogue-service,
.task-card {
  border-color: var(--site-line);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(18, 19, 41, .055);
}

.included-support {
  border: 1px solid #cfe1d4;
}

#projects>h2,
.about-header h2 {
  color: #fff;
}

footer {
  background: #0d0e1b;
  color: #c9c9d4;
}

@media(max-width:768px) {
  .hero-section {
    min-height: auto;
    padding: 115px 18px 130px;
  }

  .market-visit__menu {
    max-height: 55vh;
  }

  .market-visit__row {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .market-visit__title {
    padding-left: 50px;
    text-align: left;
    font-size: 12px;
  }

  .home-services {
    margin-top: -52px;
    padding: 0 14px 80px;
  }

  .home-services__header {
    padding: 25px 22px;
  }

  .home-services__website {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .home-platform-grid,
  .home-services__split {
    grid-template-columns: 1fr;
  }

  .home-platform-card {
    min-height: 105px;
  }

  .home-service-feature {
    min-height: 270px;
    padding: 25px;
  }

  .services {
    margin-top: -55px;
    padding-inline: 14px;
  }

  .service-card {
    flex-basis: 100%;
  }

  .about {
    padding: 28px 22px;
  }

  .about-content p {
    font-size: 17px;
  }

  #projects {
    padding-top: 315px;
  }

  #contact {
    padding: 24px 12px;
  }

  .shared-client-notice {
    margin: -50px 14px -26px;
  }

  .shared-client-notice+.image-pair-wrapper {
    margin-top: 0;
  }

  .image-pair-wrapper {
    margin-top: -100px;
    padding-inline: 14px;
    padding-bottom: 10px !important;
  }

  .image-mobile,
  .image-desktop {
    width: 100%;
    border-width: 5px;
  }

  .project-controls {
    top: 72px;
  }

  .regency-projects {
    padding-inline: 0;
  }

  .regency-projects__intro {
        padding: 25px 21px;
        border-radius: 0 !important;
        margin-bottom: 0 !important;
  }
}

/* Homepage portfolio carousel */
#projects[data-module="portfolio-carousel"] {
  padding: 120px 0 145px;
  overflow: visible;
}

.portfolio-carousel__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 36px;
}

.portfolio-carousel__header>div:first-child>span {
  color: #aeb2ff;
  font: 800 11px/1 ui-monospace, Consolas, monospace;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.portfolio-carousel__header h2 {
  margin: 10px 0 0;
  color: #fff;
  font-size: clamp(42px, 7vw, 78px);
  line-height: .95;
  letter-spacing: -.055em;
}

.portfolio-carousel__controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.portfolio-carousel__controls button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.portfolio-carousel__controls button:hover { transform: scale(1.08); background: #fff; color: #171724; }
.portfolio-carousel__controls span { min-width: 62px; color: #c9cada; font: 700 11px/1 ui-monospace, Consolas, monospace; text-align: center; }

.portfolio-carousel__viewport {
  width: min(1180px, calc(100% - 40px));
  max-width: 1180px;
  margin-inline: auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  overflow-y: visible;
  padding: 10px 0 6px;
  margin-top: -10px;
}

.portfolio-carousel__viewport::-webkit-scrollbar { display: none; }
#projects[data-module="portfolio-carousel"] .project-grid { display: flex; flex-wrap: nowrap; gap: 22px; width: max-content; max-width: none; }
#projects[data-module="portfolio-carousel"] .project-card { flex: 0 0 min(760px, 72vw); width: min(760px, 72vw); scroll-snap-align: start; border-radius: 24px; }
#projects[data-module="portfolio-carousel"] .project-card-image { aspect-ratio: 16/8.7; }
.project-card-services {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: calc(100% - 52px);
  max-width: 660px;
  min-height: 248px;
  margin: 26px auto 0;
  padding: 27px clamp(22px, 4vw, 38px) 30px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  aspect-ratio: auto !important;
  background: transparent;
}
.project-card-services__eyebrow {
  color: #aeb1d8;
  font: 800 11px/1 ui-monospace, Consolas, monospace;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.project-card-services__icons {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
  max-width: 540px;
  width: 100%;
}
.project-service-icon {
  display: grid;
  grid-template-rows: 56px auto;
  place-items: center;
  gap: 10px;
  min-width: 70px;
  color: #fff;
  text-align: center;
}
.project-service-icon__mark {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: #fff;
  font: 900 23px/1 Arial, sans-serif;
  text-align: center;
}
.project-service-icon__mark svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.project-service-icon__mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.project-service-icon--klaviyo .project-service-icon__mark svg { filter: invert(1); }
.project-service-icon--python .project-service-icon__mark { color: #4d9be8; font-size: 19px; }
.project-service-icon--javascript .project-service-icon__mark { color: #f7df1e; font-size: 17px; }
.project-service-icon--html .project-service-icon__mark { color: #e34f26; }
.project-service-icon--css .project-service-icon__mark { color: #a58ce8; font-size: 18px; }
.project-service-icon b {
  display: grid;
  place-items: center;
  width: clamp(52px, 7vw, 74px);
  height: clamp(52px, 7vw, 74px);
  color: #bfc1ff;
  font: 900 clamp(28px, 4vw, 42px)/1 Arial, sans-serif;
}
.project-service-icon--google b { color: #4285f4; }
.project-service-icon small {
  color: #d2d3e3;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.25;
}
.project-card__body { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; padding: 22px 24px 25px; }
#projects .project-card__body .project-card-title { margin: 0; padding: 0; color: #fff; }
#projects .project-card__body .project-card-type { margin: 0; padding: 0; }
.project-card__link { margin-top: 12px; color: #fff; font-size: 13px; font-weight: 800; }
.portfolio-carousel__progress { width: min(1180px, calc(100% - 40px)); height: 2px; margin: 34px auto 0; overflow: hidden; background: rgba(255,255,255,.13); }
.portfolio-carousel__progress span { display: block; width: 20%; height: 100%; background: linear-gradient(90deg, var(--dev-cyan, #61dafb), var(--dev-violet, #9b8cff)); transition: width .25s ease; }

/* Shared project-builder module on the homepage */
.home-project-builder#contact {
  width: min(1240px, calc(100% - 28px));
  max-width: none;
  margin: 0 auto;
  padding: 110px 20px 130px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-project-builder .project-builder__heading { margin-inline: auto; }

@media(max-width:768px) {
  #projects[data-module="portfolio-carousel"] { padding: 82px 0 100px; }
  .portfolio-carousel__header { align-items: flex-start; flex-direction: column; }
  #projects[data-module="portfolio-carousel"] .project-card { flex-basis: 86vw; width: 86vw; }
  .project-card-services { aspect-ratio: auto !important; width: calc(100% - 32px); min-height: 250px; margin-top: 16px; padding: 23px 16px 25px; }
  .project-card-services__icons { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 12px; }
  .project-service-icon { min-width: 0; }
  .project-card__link { margin-top: 8px; }
  .home-project-builder#contact { padding: 80px 0 100px; }
}
/* styles/portfolio.css */
/* Source: portfolio\regency-chess.css */
.portfolio-overview-title {
  margin-top: 18px;
  font-size: 30px;
}

.shared-client-notice {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  max-width: 1180px;
  margin: -70px auto 105px;
  padding: 25px 28px;
  border: 1px solid #dfe0ec;
  border-radius: 17px;
  background: #fff;
  color: #222238;
  box-shadow: 0 16px 45px rgba(20, 20, 45, .12);
  position: relative;
  z-index: 4;
}

.shared-client-notice>div {
  max-width: 840px;
}

.shared-client-notice span:first-child {
  color: #6365a2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.shared-client-notice h2 {
  margin: 3px 0 6px;
  color: #1d1d30;
  font-size: 23px;
  text-align: left;
}

.shared-client-notice p {
  color: #626274;
  line-height: 1.6;
}

.shared-client-notice>a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 12px 17px;
  border-radius: 10px;
  background: #fff;
  color: #171724;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.shared-client-notice>a:hover,
.shared-client-notice>a:focus-visible {
  background: #eef0ff;
  color: #171724;
}

.regency-projects {
  --ink: #171727;
  --muted: #626276;
  --line: #e3e3ec;
  --brand: #353768;
  max-width: 1290px;
  margin: 70px auto 120px;
  padding: 0 24px;
  color: var(--ink);
}

.regency-projects__intro {
  max-width: 850px;
  margin-bottom: 38px;
}

.regency-projects__eyebrow {
  margin-bottom: 8px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.regency-projects h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.08;
  text-align: left;
  letter-spacing: -.035em;
}

.regency-projects__intro>p:last-of-type {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.regency-projects__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.regency-projects__stats span {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8f8fb;
  color: var(--muted);
  font-size: 14px;
}

.regency-projects__stats strong {
  color: var(--ink);
}

.ongoing-services {
  margin: 54px 0 70px;
  padding: 34px;
  border-radius: 22px;
  background: linear-gradient(135deg, #171727, #30325e);
}

.ongoing-services__heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.ongoing-services__heading .regency-projects__eyebrow {
  color: #b9bbff;
}

.ongoing-services__heading h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 42px);
}

.ongoing-services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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

.ongoing-service {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  background: rgba(255, 255, 255, .07);
}

.ongoing-service__status {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #dff5e5;
  color: #216837;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ongoing-service h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 23px;
}

.ongoing-service p {
  margin-bottom: 20px;
  color: #d8d8e8;
  font-size: 16px;
  line-height: 1.65;
}

.ongoing-service a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.ongoing-service a:hover {
  text-decoration: underline;
}

.completed-projects-heading {
  max-width: 800px;
  margin-bottom: 28px;
}

.completed-projects-heading h2 {
  font-size: clamp(30px, 4vw, 46px);
}

.completed-projects-heading>p:last-child {
  color: var(--muted);
  font-size: 17px;
}

.project-controls {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8f8fb;
}

.project-sort {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
}

.project-sort label,
.project-filters>span {
  color: #555570;
  font-size: 13px;
  font-weight: 800;
}

.project-sort select {
  padding: 9px 34px 9px 11px;
  border: 1px solid #d4d4e0;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  cursor: pointer;
}

.project-filters {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
}

.filter-tag {
  padding: 7px 11px;
  border: 1px solid #d4d4e0;
  border-radius: 999px;
  background: #fff;
  color: #555570;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: .18s ease;
}

.filter-tag:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.filter-tag.active {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.history-item[hidden] {
  display: none;
}

.project-history {
  position: relative;
  padding-left: 72px;
}

.project-history::before {
  content: "";
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 29px;
  width: 2px;
  background: linear-gradient(#353768, #bfc0d6);
}

.history-item {
  position: relative;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(20, 20, 45, .06);
  overflow: hidden;
}

.history-item::before {
  content: "";
  position: absolute;
  top: 33px;
  left: -52px;
  width: 16px;
  height: 16px;
  border: 5px solid #fff;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 2px var(--brand);
  z-index: 2;
}

.history-item[open]::before {
  background: #fff;
  box-shadow: 0 0 0 5px var(--brand);
}

.history-item--in-progress {
  border-color: #e1b64b;
}

.history-item--in-progress::before {
  background: #e1a92f;
  box-shadow: 0 0 0 2px #e1a92f;
}

.history-item--in-progress .history-tag {
  color: #8a5b00;
}

.history-item--in-progress .history-meta time {
  background: #fff1c9;
  color: #755000;
}

.history-item summary {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 32px;
  gap: 18px;
  align-items: center;
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
  transition: background-color .2s ease;
}

.history-item summary::-webkit-details-marker {
  display: none;
}

.history-item summary:hover,
.history-item[open] summary {
  background: #f4f4f9;
}

.history-item summary:focus-visible {
  outline: 3px solid #7375bb;
  outline-offset: -3px;
}

.history-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #f0f0f6;
  color: #676783;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
}

.history-heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.history-heading strong {
  font-size: 20px;
  line-height: 1.25;
}

.history-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.history-tag {
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.history-meta time,
.history-date {
  padding: 3px 8px;
  border-radius: 999px;
  background: #ececf4;
  color: #555570;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .035em;
}

.history-toggle {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ink);
}

.history-toggle::before,
.history-toggle::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 8px;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
}

.history-toggle::after {
  transform: rotate(90deg);
  transition: transform .2s ease;
}

.history-item[open] .history-toggle::after {
  transform: rotate(0);
}

.history-content {
  padding: 3px 86px 28px 102px;
  background: #f4f4f9;
}

.history-content p {
  max-width: 880px;
  color: #515165;
  font-size: 17px;
  line-height: 1.75;
}

.history-content h3 {
  margin: 0px 0 8px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.35;
}

.history-content ul {
  max-width: 850px;
  margin: 15px 0 22px;
  padding-left: 22px;
  color: #515165;
}

.history-content li {
  margin: 7px 0;
  padding-left: 4px;
  line-height: 1.55;
}

.history-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.history-service:hover {
  background: #222449;
}

.related-project {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 8px 0 0 10px;
  padding: 8px 11px;
  border: 1px solid #cfd0df;
  border-radius: 8px;
  color: #353768;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.related-project:hover {
  border-color: #353768;
  background: #fff;
}

@media (max-width:768px) {
  .regency-projects {
    margin: 50px auto 105px;
    padding: 0 14px;
  }

  .regency-projects__intro {
    margin-bottom: 26px;
  }

  .regency-projects__intro>p:last-of-type {
    font-size: 16px;
  }
  .project-sort {
    align-self: center;
  }.project-filters {
    display: flex;
    justify-content: center !important;
    flex-wrap: wrap;
    gap: 5px;
    text-align: center;
}

  .completed-projects-heading {
    max-width: 800px;
    margin-bottom: 28px;
    justify-items: center;
    display: grid;
    text-align: center;
    padding-top: 25px;
}

  .ongoing-services {
        margin: 0 !important;
        padding: 24px 16px;
        border-radius: 0 !important;
  }

  .ongoing-services__grid {
    grid-template-columns: 1fr;
  }

  .shared-client-notice {
    flex-direction: column;
    align-items: flex-start;
    margin: -55px 14px 80px;
    padding: 21px;
  }

  .ongoing-service {
    padding: 20px;
  }

  .project-controls {
    flex-direction: column;
    padding: 14px;
  }

  .project-filters {
    justify-content: flex-start;
  }

  .project-filters>span {
    width: 100%;
  }

  .project-history {
    padding-left: 27px;
        padding-right: 15px;
  }

  .project-history::before {
    left: 8px;
  }

  .history-item::before {
    left: -30px;
    width: 12px;
    height: 12px;
    border-width: 3px;
  }

  .history-item summary {
    grid-template-columns: 34px minmax(0, 1fr) 28px;
    gap: 10px;
    padding: 18px 14px;
  }

  .history-number {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    font-size: 11px;
  }

  .history-heading strong {
    font-size: 16px;
  }

  .history-tag {
    font-size: 10px;
  }

  .history-meta time,
  .history-date {
    font-size: 10px;
  }

  .history-content {
    padding: 0 18px 22px 58px;
  }

  .history-content p {
    font-size: 15px;
    line-height: 1.65;
  }

  .history-content h3 {
    font-size: 18px;
  }

  .history-content ul {
    font-size: 14px;
  }

  .related-project {
    margin-left: 0;
  }
}
/* Source: portfolio\custom-projects.css */
.custom-project-showcase,.zigzag-system{max-width:1240px;margin:-52px auto 100px;padding:clamp(28px,5vw,64px);position:relative;z-index:3;border:1px solid #e1e2eb;border-radius:26px;background:#fff;box-shadow:0 24px 70px rgba(18,20,48,.13)}
.custom-project-showcase{display:grid;grid-template-columns:.85fr 1.15fr;gap:52px;align-items:center}.custom-project-showcase__copy>span,.zigzag-system__intro>span{color:#5559a2;font-size:12px;font-weight:850;letter-spacing:.13em;text-transform:uppercase}.custom-project-showcase h2,.zigzag-system h2{margin:12px 0 18px;color:#171727;font-size:clamp(32px,4vw,54px);line-height:1.02;letter-spacing:-.04em}.custom-project-showcase p,.zigzag-system p{color:#626276;font-size:17px;line-height:1.7}.before-after-proof{display:grid;grid-template-columns:1fr 1fr;gap:10px}.before-after-proof figure{position:relative;margin:0;min-height:390px;overflow:hidden;border-radius:18px;background:#eee}.before-after-proof img{width:100%;height:100%;object-fit:cover}.before-after-proof figcaption{position:absolute;left:12px;bottom:12px;padding:7px 11px;border-radius:999px;background:#171727;color:#fff;font-size:11px;font-weight:850;letter-spacing:.1em;text-transform:uppercase}.custom-project-hero--progress{overflow:hidden}.portfolio-progress-pill{display:inline-flex;margin-bottom:18px;padding:7px 12px;border:1px solid rgba(255,255,255,.3);border-radius:999px;background:rgba(255,255,255,.1);color:#fff;font-size:11px;font-weight:850;letter-spacing:.1em;text-transform:uppercase}.zigzag-system{background:linear-gradient(145deg,#fff,#f2f3ff)}.zigzag-system__intro{max-width:730px}.zigzag-system__map{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-top:38px}.zigzag-system__map article{min-height:220px;padding:24px;border:1px solid #dedfec;border-radius:17px;background:rgba(255,255,255,.8)}.zigzag-system__map b{display:inline-grid;place-items:center;width:38px;height:38px;border-radius:10px;background:#252749;color:#fff;font-size:12px}.zigzag-system__map h3{margin:28px 0 9px;color:#1e1e32;font-size:20px}.zigzag-system__map p{font-size:14px;line-height:1.55}.project-card-placeholder{display:flex!important;flex-direction:column;align-items:center;justify-content:center;gap:12px;position:relative;overflow:hidden;background:linear-gradient(145deg,#171727,#46497f);color:#fff}.project-card-placeholder::before,.project-card-placeholder::after{content:"";position:absolute;width:180px;height:180px;border:1px solid rgba(255,255,255,.13);border-radius:50%}.project-card-placeholder::before{left:-50px;top:-80px}.project-card-placeholder::after{right:-70px;bottom:-90px}.project-card-placeholder span{font-size:10px;font-weight:850;letter-spacing:.18em;text-transform:uppercase}.project-card-placeholder strong{font-size:62px;line-height:1;letter-spacing:-.08em}.project-card-placeholder i{width:72px;height:3px;border-radius:4px;background:#b8bbff;animation:projectPulse 1.8s ease-in-out infinite}@keyframes projectPulse{50%{width:130px;opacity:.45}}
@media(max-width:850px){.custom-project-showcase{grid-template-columns:1fr}.before-after-proof figure{min-height:280px}.zigzag-system__map{grid-template-columns:1fr 1fr}.custom-project-showcase,.zigzag-system{margin:-35px 14px 70px;padding:28px 20px}}
@media(max-width:520px){.before-after-proof{grid-template-columns:1fr}.zigzag-system__map{grid-template-columns:1fr}.zigzag-system__map article{min-height:0}.project-card-placeholder strong{font-size:48px}}
@media(prefers-reduced-motion:reduce){.project-card-placeholder i{animation:none}}
.portfolio-visit-pending{display:inline-flex;margin-top:27px;padding:10px 15px;border:1px solid rgba(255,255,255,.25);border-radius:999px;color:#e7e7ef;font-size:12px;font-weight:800;letter-spacing:.08em;text-transform:uppercase}.about-portfolio__pending .project-card-placeholder{width:100%;height:190px;border-radius:12px}.about-portfolio__pending .project-card-placeholder span,.about-portfolio__pending .project-card-placeholder strong{color:#fff}

/* Keep custom-project content below the standard portfolio preview module. */
.image-pair-wrapper + :is(.custom-project-showcase,.zigzag-system){margin-top:65px}
@media(max-width:850px){.image-pair-wrapper + :is(.custom-project-showcase,.zigzag-system){margin-top:45px}}


.custom-project-showcase__logo{display:flex;align-items:center;justify-content:center;min-height:240px;padding:24px;border-radius:18px;background:transparent}.custom-project-showcase__logo img{display:block;width:min(100%,520px);height:auto;object-fit:contain}
/* styles/project-builder.css */
.project-builder-page {
    background: #f5f6fa
}

.project-builder-hero {
    padding: 150px 0px 50px !important;
}

.project-builder-shell {
    max-width: 1320px
}

.direct-contact-section {
    margin-top: -62px;
    padding: 32px;
    border: 1px solid #e2e3eb;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(24, 25, 55, .12)
}

.direct-contact-section .section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px
}

.direct-contact-section .section-heading p {
    max-width: 480px;
    color: #717184
}

.project-builder {
    margin-top: 100px
}

.project-builder__heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 28px
}

.project-builder__heading>div>span,
.wizard-step__heading>span,
.scope-module>header>span {
    color: #5c60a7;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase
}

.project-builder__heading h2 {
    margin: 8px 0 0;
    color: #171727;
    font-size: clamp(36px, 6vw, 67px);
    letter-spacing: -.05em;
    line-height: 1
}

.project-builder__heading>p {
    max-width: 400px;
    color: #6a6a7b;
    font-size: 16px
}

.project-wizard {
    overflow: hidden;
    border: 1px solid #292a46;
    border-radius: 28px;
    background: #17182b;
    color: #fff;
    box-shadow: 0 32px 90px rgba(18, 19, 43, .18)
}

.wizard-progress {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto;
    align-items: center;
    gap: 13px;
    padding: 20px 34px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    background: #131425
}

.wizard-progress span {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #82839a;
    font-size: 12px;
    font-weight: 800
}

.wizard-progress span b {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border: 1px solid #474861;
    border-radius: 50%;
    font-size: 11px
}

.wizard-progress span.is-active {
    color: #fff
}

.wizard-progress span.is-active b {
    border-color: #9ea2ff;
    background: #6064b5
}

.wizard-progress i {
    height: 1px;
    background: #35364d
}

.wizard-step {
    padding: clamp(28px, 5vw, 64px);
    animation: wizardIn .32s ease
}

.wizard-step[hidden] {
    display: none
}

.wizard-step__heading {
    max-width: 760px;
    margin-bottom: 35px
}

.wizard-step__heading h3 {
    margin: 9px 0;
    color: #fff;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -.035em
}

.wizard-step__heading p,
.scope-module>header p {
    color: #aeb0c2;
    font-size: 16px
}

.service-choice-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px
}

.service-choice {
    display: flex !important;
    flex-direction: column;
    position: relative;
    min-height: 235px;
    margin: 0 !important;
    padding: 21px;
    border: 1px solid #383a55;
    border-radius: 18px;
    background: #21223a;
    cursor: pointer;
    transition: .2s ease
}

.service-choice:hover {
    transform: translateY(-4px);
    border-color: #7175c5;
    background: #262743
}

.service-choice.is-selected {
    border-color: #a4a7ff;
    background: linear-gradient(145deg, #333665, #252642);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .2)
}

.service-choice input,
.option-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none
}

.service-choice__visual {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 15px;
    background: #fff
}

.choice-logo {
    display: grid;
    place-items: center;
    width: 37px;
    height: 37px;
    color: #25263e;
    font-size: 9px;
    font-weight: 900
}

.choice-logo svg {
    max-width: 100%;
    max-height: 100%
}

.choice-badge {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: linear-gradient(135deg, #777bdf, #25274d);
    color: #fff;
    font-size: 16px;
    font-weight: 900
}

.service-choice__copy {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto
}

.service-choice__copy strong {
    font-size: 18px;
    line-height: 1.2
}

.service-choice__copy small {
    color: #aeb0c2;
    line-height: 1.45
}

.service-choice__check {
    position: absolute;
    top: 17px;
    right: 17px;
    display: grid;
    place-items: center;
    width: 25px;
    height: 25px;
    border: 1px solid #555771;
    border-radius: 50%;
    color: transparent
}

.service-choice.is-selected .service-choice__check {
    border-color: #aeb1ff;
    background: #aeb1ff;
    color: #20213b
}

.wizard-error {
    min-height: 24px;
    margin-top: 15px;
    color: #ffb8b8;
    font-weight: 700
}

.wizard-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 36px
}

.wizard-actions--end {
    justify-content: flex-end
}

.wizard-next,
.wizard-submit,
.wizard-back {
    padding: 13px 18px;
    border-radius: 10px;
    font: inherit;
    font-weight: 850;
    cursor: pointer
}

.wizard-next,
.wizard-submit {
    border: 0;
    background: #fff;
    color: #181928
}

.wizard-next span,
.wizard-submit span {
    margin-left: 18px
}

.wizard-back {
    border: 1px solid #4a4c67;
    background: transparent;
    color: #d2d3df
}

.conditional-questions {
    display: grid;
    gap: 18px
}

.scope-module {
    padding: 31px;
    border: 1px solid #3a3c59;
    border-radius: 20px;
    background: #202137
}

.scope-module>header {
    max-width: 820px;
    margin-bottom: 26px
}

.scope-module>header h4 {
    margin: 8px 0;
    color: #fff;
    font-size: 28px
}

.field-group {
    margin-top: 21px
}

.field-group>label {
    display: block;
    margin-bottom: 9px;
    color: #f0f0f5;
    font-size: 13px;
    font-weight: 800
}

.field-group>label span {
    color: #9697aa;
    font-weight: 500
}

.field-group input,
.field-group select,
.field-group textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #484a67;
    border-radius: 10px;
    background: #17182a;
    color: #fff;
    font: inherit
}

.field-group textarea {
    min-height: 125px;
    resize: vertical
}

.field-group small {
    display: block;
    margin-top: 7px;
    color: #9294a9;
    font-size: 12px;
    line-height: 1.5
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 8px
}

.option-card {
    display: flex !important;
    align-items: center;
    gap: 11px;
    position: relative;
    margin: 0 !important;
    padding: 12px;
    border: 1px solid #484a65;
    border-radius: 11px;
    background: #191a2d;
    color: #dfe0e9 !important;
    cursor: pointer
}

.option-card:has(input:checked) {
    border-color: #a4a7ff;
    background: #343662;
    color: #fff !important
}

.option-card .choice-logo {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    padding: 3px;
    border-radius: 7px;
    background: #fff
}

.option-card i {
    margin-left: auto;
    color: transparent;
    font-style: normal
}

.option-card:has(input:checked) i {
    color: #c9cbff
}

.conditional-field[hidden] {
    display: none
}

.field-callout,
.linked-service-note,
.data-format-example,
.email-estimate {
    padding: 18px;
    border: 1px solid #51547b;
    border-radius: 13px;
    background: #292b4d
}

.field-callout>p,
.linked-service-note p,
.data-format-example p {
    margin-bottom: 12px;
    color: #c1c2d3;
    font-size: 13px;
    line-height: 1.55
}

.email-count-grid,
.project-common-questions,
.project-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 18px
}

.email-estimate {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 5px 18px;
    margin-top: 18px
}

.email-estimate span,
.data-format-example span,
.linked-service-note span {
    color: #b9bbff;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase
}

.email-estimate strong {
    grid-row: 1/3;
    grid-column: 2;
    font-size: 30px
}

.email-estimate small {
    color: #a7a9bb
}

.linked-service-note {
    margin-top: 18px
}

.linked-service-note a {
    color: #fff;
    font-weight: 800
}

.data-format-example {
    margin-top: 13px
}

.data-format-example code {
    display: block;
    margin: 9px 0;
    color: #fff;
    font-size: 15px
}

.field-group--full {
    grid-column: 1/-1
}

.field-group--budget small {
    color: #c5c7ff
}

.project-summary {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 32px;
    padding: 24px;
    border: 1px solid #444661;
    border-radius: 16px;
    background: #202137
}

.project-summary>div:first-child>span {
    color: #aeb1ff;
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .12em
}

.project-summary h4 {
    margin: 5px 0;
    font-size: 24px
}

.summary-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
    margin-bottom: 12px
}

.summary-services span {
    padding: 6px 9px;
    border-radius: 999px;
    background: #393b63;
    color: #e7e8ff;
    font-size: 11px;
    font-weight: 750
}

.project-summary p {
    color: #c4c5d3;
    font-size: 13px;
    text-align: right
}

.project-form__privacy {
    margin-top: 20px;
    color: #a8aabc;
    font-size: 12px
}

.project-form__privacy a {
    color: #fff
}

.project-form-status {
    margin-top: 14px;
    color: #cacbda
}

.wizard-submit:disabled {
    opacity: .55;
    cursor: wait
}

@keyframes wizardIn {
    from {
        opacity: 0;
        transform: translateY(9px)
    }
}

@media(max-width:1000px) {
    .service-choice-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .direct-contact-section .section-heading,
    .project-builder__heading {
        align-items: flex-start;
        flex-direction: column
    }

    .project-builder__heading>p {
        max-width: 650px
    }
}

@media(max-width:680px) {
    .project-builder-hero {
        padding-bottom: 100px
    }

    .project-builder-shell {
        padding-left: 12px;
        padding-right: 12px
    }

    .direct-contact-section {
        margin-top: -42px;
        padding: 21px
    }

    .project-builder {
        margin-top: 70px
    }

    .wizard-progress {
        padding: 15px
    }

    .wizard-progress span {
        font-size: 0
    }

    .wizard-progress span b {
        font-size: 11px
    }

    .wizard-step {
        padding: 28px 16px
    }

    .service-choice-grid {
        grid-template-columns: 1fr
    }

    .service-choice {
        min-height: 155px
    }

    .service-choice__copy {
        margin-top: 24px
    }

    .email-count-grid,
    .project-common-questions,
    .project-contact-grid {
        grid-template-columns: 1fr
    }

    .field-group--full {
        grid-column: auto
    }

    .scope-module {
        padding: 22px 15px
    }

    .option-grid {
        grid-template-columns: 1fr
    }

    .project-summary {
        flex-direction: column
    }

    .summary-services {
        justify-content: flex-start
    }

    .project-summary p {
        text-align: left
    }

    .wizard-actions {
        align-items: stretch;
        flex-direction: column-reverse
    }

    .wizard-actions button {
        width: 100%
    }
}

@media(prefers-reduced-motion:reduce) {
    .wizard-step {
        animation: none
    }

    .service-choice {
        transition: none
    }
}

.translation-volume {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.translation-estimate {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 20px;
    margin-top: 22px;
    padding: 22px;
    border: 1px solid #777bd0;
    border-radius: 15px;
    background: linear-gradient(135deg, #303365, #242641)
}

.translation-estimate>div {
    display: flex;
    flex-direction: column
}

.translation-estimate>div>span {
    color: #c6c8ff;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .11em;
    text-transform: uppercase
}

.translation-estimate>div>strong {
    margin: 10px 0 3px;
    font-size: clamp(35px, 5vw, 56px);
    line-height: 1
}

.translation-estimate>div>small {
    color: #b9bbcd;
    line-height: 1.45
}

.translation-estimate details {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 11px;
    background: rgba(12, 13, 29, .25)
}

.translation-estimate summary {
    color: #eef0ff;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer
}

.translation-estimate dl {
    display: grid;
    gap: 7px;
    margin: 15px 0 0
}

.translation-estimate dl>div {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.translation-estimate dt {
    color: #aaaec9;
    font-size: 11px
}

.translation-estimate dd {
    margin: 0;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-align: right
}

.translation-estimate dd small {
    display: block;
    color: #9396b0;
    font-weight: 500
}

.translation-estimate .translation-debug-final {
    padding: 8px;
    border: 0;
    border-radius: 8px;
    background: #fff
}

.translation-estimate .translation-debug-final dt,
.translation-estimate .translation-debug-final dd {
    color: #20213b
}

@media(max-width:680px) {

    .translation-volume,
    .translation-estimate {
        grid-template-columns: 1fr
    }
}

.translation-estimate__price {
    justify-content: center;
    padding: 8px 12px 8px 4px;
    border-right: 1px solid rgba(255, 255, 255, .13)
}

.translation-estimate__explanation {
    justify-content: center;
    padding: 5px 0
}

.translation-estimate__explanation>span {
    color: #c6c8ff;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .11em;
    text-transform: uppercase
}

.translation-estimate__explanation p {
    margin: 9px 0 0;
    color: #d6d7e7;
    font-size: 13px;
    line-height: 1.6
}

.translation-estimate__explanation [data-translation-rule] {
    color: #fff;
    font-size: 15px;
    font-weight: 750
}

.translation-estimate__price>strong {
    color: #fff
}

@media(max-width:680px) {
    .translation-estimate__price {
        padding: 0 0 20px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .13)
    }
}

.quick-contact {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: clamp(28px, 5vw, 68px);
    align-items: stretch;
    padding: clamp(25px, 4vw, 48px);
    overflow: hidden;
    background: radial-gradient(circle at 4% 100%, rgba(155, 140, 255, .12), transparent 30%), #fff
}

.quick-contact::before {
    content: "QUICK_MESSAGE";
    position: absolute;
    right: 22px;
    top: 16px;
    color: rgba(48, 50, 93, .08);
    font: 900 11px/1 ui-monospace, Consolas, monospace;
    letter-spacing: .13em
}

.quick-contact__intro {
    display: flex;
    flex-direction: column
}

.quick-contact .section-heading {
    display: block
}

.quick-contact .section-heading h2 {
    margin: 10px 0 13px;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1;
    letter-spacing: -.045em;
    text-align: left
}

.quick-contact .section-heading p {
    max-width: 520px;
    color: #676779;
    font-size: 16px
}

.quick-contact__email {
    margin-top: auto;
    padding: 20px;
    border: 1px solid #dde0ec;
    border-radius: 15px;
    background: linear-gradient(145deg, #f8f9ff, #eef0fa)
}

.quick-contact__email>span {
    display: block;
    color: #6569a8;
    font: 850 10px/1 ui-monospace, Consolas, monospace;
    letter-spacing: .12em;
    text-transform: uppercase
}

.quick-contact__email>a {
    display: block;
    margin: 9px 0 14px;
    color: #1b1c31;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 850;
    text-decoration: none;
    word-break: break-word
}

.quick-contact__email button {
    padding: 8px 11px;
    border: 1px solid #cfd2e3;
    border-radius: 8px;
    background: #fff;
    color: #30325d;
    font-size: 12px;
    font-weight: 850;
    cursor: pointer
}

.quick-contact__email button:hover {
    border-color: #777bbd
}

.quick-contact__email small {
    margin-left: 9px;
    color: #38704c;
    font-size: 11px;
    font-weight: 750
}

.quick-contact__form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 25px;
    border-radius: 18px;
    background: radial-gradient(circle at 90% 0, rgba(97, 218, 251, .1), transparent 30%), linear-gradient(145deg, #111426, #252953);
    box-shadow: 0 18px 45px rgba(18, 20, 48, .18)
}

.quick-contact__form label {
    display: block;
    margin-bottom: 7px;
    color: #e6e7f0;
    font-size: 12px;
    font-weight: 800
}

.quick-contact__form input,
.quick-contact__form textarea {
    width: 100%;
    padding: 12px 13px;
    border: 1px solid #484c6d;
    border-radius: 9px;
    background: #171a30;
    color: #fff;
    font: inherit
}

.quick-contact__form input:focus,
.quick-contact__form textarea:focus {
    outline: 2px solid #7379ca;
    outline-offset: 2px
}

.quick-contact__message {
    grid-column: 1/-1
}

.quick-contact__form textarea {
    resize: vertical
}

.quick-contact__form>button {
    grid-column: 1/-1;
    padding: 12px 16px;
    border: 0;
    border-radius: 9px;
    background: #fff;
    color: #17182b;
    font-weight: 900;
    cursor: pointer
}

.quick-contact__form>button span {
    float: right
}

.quick-contact__form>button:disabled {
    opacity: .6;
    cursor: wait
}

#quickContactStatus {
    grid-column: 1/-1;
    margin: 0;
    color: #c8cadc;
    font-size: 12px
}

#quickContactStatus a {
    color: #fff;
    font-weight: 800
}

@media(max-width:850px) {
    .quick-contact {
        grid-template-columns: 1fr
    }

    .quick-contact__email {
        margin-top: 24px
    }
}

@media(max-width:560px) {
    .quick-contact {
        padding: 22px 15px
    }

    .quick-contact__form {
        grid-template-columns: 1fr;
        padding: 20px 14px
    }

    .quick-contact__message,
    .quick-contact__form>button,
    #quickContactStatus {
        grid-column: auto
    }

    .quick-contact__email small {
        display: block;
        margin: 8px 0 0
    }
}

.budget-range {
    padding: 18px;
    border: 1px solid #484a67;
    border-radius: 13px;
    background: #17182a
}

.budget-range__values {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 17px
}

.budget-range__values output {
    min-width: 105px;
    padding: 8px 10px;
    border: 1px solid #4e5277;
    border-radius: 9px;
    background: #252849;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    text-align: center
}

.budget-range__values span {
    color: #8f92ab;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase
}

.budget-range__track {
    position: relative;
    height: 24px
}

.budget-range__track::before,
.budget-range__track>span {
    content: "";
    position: absolute;
    top: 10px;
    right: 0;
    left: 0;
    height: 4px;
    border-radius: 99px
}

.budget-range__track::before {
    background: #3a3c55
}

.budget-range__track>span {
    right: 0;
    background: linear-gradient(90deg, #61dafb, #9b8cff);
    box-shadow: 0 0 13px rgba(97, 218, 251, .22)
}

.budget-range input[type=range] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 24px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    pointer-events: none;
    appearance: none;
    -webkit-appearance: none
}

.budget-range input[type=range]::-webkit-slider-runnable-track {
    height: 4px;
    background: transparent
}

.budget-range input[type=range]::-webkit-slider-thumb {
    width: 20px;
    height: 20px;
    margin-top: -8px;
    border: 3px solid #17182a;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 2px #7479cf;
    cursor: grab;
    pointer-events: auto;
    appearance: none;
    -webkit-appearance: none
}

.budget-range input[type=range]::-moz-range-track {
    height: 4px;
    background: transparent
}

.budget-range input[type=range]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border: 3px solid #17182a;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 2px #7479cf;
    cursor: grab;
    pointer-events: auto
}

.budget-range input[type=range]:focus-visible::-webkit-slider-thumb {
    outline: 3px solid #61dafb;
    outline-offset: 3px
}

.budget-range input[type=range]:focus-visible::-moz-range-thumb {
    outline: 3px solid #61dafb;
    outline-offset: 3px
}

.budget-range__limits {
    display: flex;
    justify-content: space-between;
    margin-top: 4px;
    color: #83869d;
    font-size: 10px;
    font-weight: 750
}
/* styles/theme.css */
:root {
    --dev-cyan: #61dafb;
    --dev-violet: #9b8cff;
    --dev-green: #68d391;
    --dev-orange: #ffb86b;
    --dev-dark: #0b0d19;
    --dev-panel: #15182b;
    --dev-panel-soft: #20243d;
    --dev-grid: rgba(48, 50, 93, .055)
}

body {
    background-color: #f6f7fb !important;
    background-image: linear-gradient(var(--dev-grid) 1px, transparent 1px), linear-gradient(90deg, var(--dev-grid) 1px, transparent 1px) !important;
    background-size: 44px 44px !important;
    background-attachment: fixed
}

/* Keep hash navigation clear of the fixed header. */
#contact { scroll-margin-top: 96px; }
.wizard-progress { scroll-margin-top: 72px; }
@media (max-width: 700px) {
    #contact { scroll-margin-top: 76px; }
}

main,
body>section {
    position: relative
}

::selection {
    background: #cdd2ff;
    color: #101224
}

/* Shared developer hero language */
.hero,
.hero-section,
.service-hero,
.page-hero,
.legal-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: radial-gradient(circle at 78% 18%, rgba(97, 218, 251, .17), transparent 25%), radial-gradient(circle at 10% 90%, rgba(155, 140, 255, .2), transparent 30%), linear-gradient(145deg, #080a14, #171a35 58%, #282653)
}

.hero::before,
.hero-section::before,
.service-hero::before,
.page-hero::before,
.legal-hero::before {
    content: "</>";
    position: absolute;
    z-index: -1;
    right: clamp(-45px, 4vw, 65px);
    top: 90px;
    color: rgba(255, 255, 255, .04);
    font: 900 clamp(140px, 23vw, 340px)/1 ui-monospace, SFMono-Regular, Consolas, monospace;
    letter-spacing: -.14em;
    transform: rotate(-7deg);
    pointer-events: none
}

.hero::after,
.hero-section::after,
.service-hero::after,
.page-hero::after,
.legal-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(#000, transparent 92%);
    pointer-events: none
}

.hero-section h1,
.service-hero h1,
.page-hero h1,
.legal-hero h1 {
    background: linear-gradient(90deg, #fff 15%, #c3caff 62%, var(--dev-cyan));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent !important
}

.page-hero__eyebrow,
.service-kicker,
.regency-projects__eyebrow,
.legal-hero p,
.home-services__eyebrow {
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace !important
}

/* Section headings */
.section-heading>span,
.service-kicker,
.regency-projects__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    letter-spacing: .13em
}

.section-heading>span::before,
.service-kicker::before,
.regency-projects__eyebrow::before {
    content: "";
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--dev-cyan), var(--dev-violet))
}

.section-heading h2,
.service-intro h2,
.completed-projects-heading h2 {
    background: linear-gradient(110deg, #171724 35%, #4c518a);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent !important;
    letter-spacing: -.04em
}

/* Homepage modules */
.home-services__header {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 85% 0, rgba(97, 218, 251, .14), transparent 35%), linear-gradient(145deg, #111426, #252953) !important
}

.home-services__header::before {
    content: "services.config";
    position: absolute;
    right: 24px;
    top: 15px;
    color: rgba(255, 255, 255, .13);
    font: 10px/1 ui-monospace, Consolas, monospace
}

.home-services__website,
.home-service-feature,
.project-card {
    position: relative;
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease
}

.home-services__website::before,
.home-service-feature::before,
.project-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--dev-cyan), var(--dev-violet), var(--dev-green));
    opacity: .78
}

.home-services__website:hover,
.home-service-feature:hover,
.project-card:hover {
    transform: translateY(-5px);
    border-color: #b9bce8 !important;
    box-shadow: 0 24px 65px rgba(24, 26, 62, .15) !important
}

/* Keep the carousel's accent edge visible as cards lift over the track. */
#projects[data-module="portfolio-carousel"] .project-card {
    overflow: visible;
}

#projects[data-module="portfolio-carousel"] .project-card:hover {
    z-index: 2;
}

.home-platform-card {
    background: linear-gradient(145deg, #fafaff, #f1f3fb) !important
}

.home-platform-card::before {
    content: "+";
    position: absolute;
    right: 13px;
    bottom: 5px;
    color: rgba(48, 50, 93, .1);
    font: 900 54px/1 ui-monospace, monospace
}

.home-service-feature--translation {
    background: radial-gradient(circle at 85% 15%, rgba(97, 218, 251, .12), transparent 30%), linear-gradient(145deg, #1a1d38, #0e1020) !important
}

.about-header h2,
#projects>h2,
#contact>h2 {
    letter-spacing: -.04em
}

.about-content {
    position: relative;
    overflow: hidden
}

.about-content::after {
    content: "✓";
    position: absolute;
    right: 20px;
    color: rgba(48, 50, 93, .09);
    font: 900 60px/1 ui-monospace, monospace
}

/* Service catalogue */
.service-catalogue {
    position: relative
}

.service-intro,
.included-support,
.catalogue-service,
.category-tasks {
    position: relative;
    overflow: hidden
}

.service-intro::before {
    content: "01 / SCOPE";
    display: block;
    margin-bottom: 13px;
    color: #6468a7;
    font: 800 10px/1 ui-monospace, Consolas, monospace;
    letter-spacing: .14em
}

.catalogue-service {
    border-color: #dcdeeb !important;
    background: linear-gradient(145deg, #fff, #f7f8ff) !important;
    box-shadow: 0 13px 38px rgba(20, 22, 52, .07);
    transition: transform .2s ease, border-color .2s ease
}

.catalogue-service::before {
    content: "service.module";
    position: absolute;
    right: 18px;
    top: 13px;
    color: #a3a5b8;
    font: 9px/1 ui-monospace, Consolas, monospace
}

.catalogue-service:hover {
    transform: translateY(-4px);
    border-color: #aeb2e4 !important
}

.catalogue-service__icon {
    background: #171a30 !important;
    border-color: #303454 !important
}

.catalogue-service__icon>span {
    color: var(--dev-cyan) !important
}

.catalogue-service__tasks,
.history-service,
.service-hero a {
    background: linear-gradient(135deg, #353a73, #25284d) !important;
    box-shadow: 0 8px 22px rgba(36, 39, 82, .18)
}

.included-support {
    background: radial-gradient(circle at 90% 0, rgba(97, 218, 251, .15), transparent 30%), linear-gradient(145deg, #111426, #252953) !important
}

/* Portfolio system */
.image-pair-wrapper,
.custom-project-showcase,
.zigzag-system {
}

.regency-projects {
    position: relative
}

.regency-projects::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: -38px;
    width: 2px;
    background: linear-gradient(var(--dev-cyan), var(--dev-violet), var(--dev-green), transparent);
    opacity: .4
}

.regency-projects__stats span {
    background: #151821 !important;
    border: 1px solid rgba(255,255,255,.86) !important;
    color: #fff !important;
}

.regency-projects__stats span strong {
    color: #fff !important;
}

.regency-projects .history-tag {
    color: #d6dcff !important;
}

.history-number--service {
    display: grid !important;
    place-items: center !important;
    padding: 8px !important;
    font-size: 0 !important;
}
.history-service-logo,
.history-service-badge {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
}
.history-service-logo svg,
.history-service-logo img { width: 32px; height: 32px; object-fit: contain; }

/* Project records use a compact native accordion so long histories remain scannable. */
.regency-projects .history-toggle { display: block !important; }
.regency-projects .history-item > summary { cursor: pointer; }
.regency-projects .history-meta time,
.regency-projects .history-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px 5px 8px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(97,218,251,.18), rgba(126,110,255,.2)) !important;
    color: #fff !important;
    font-variant-numeric: tabular-nums;
    letter-spacing: .04em;
}
.regency-projects .history-meta time::before {
    content: "✓";
    display: inline-grid;
    place-items: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    color: #fff;
    font-size: 10px;
}

/* About journey logos should read as clean marks, not coloured UI chips. */
.career-logo-row a {
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}
.career-logo-row img[alt="Amazon"] { display: none !important; }
.career-logo-row a:has(img[alt="Amazon"])::after {
    content: "amazon";
    color: #ff9900;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -.04em;
}

/* One reusable, transparent Klaviyo mark for every surface. */
[data-service-logo="Klaviyo"] svg,
[data-icon="Klaviyo"] svg,
.career-service-logo svg {
    width: 100%;
    height: 100%;
    filter: invert(1) brightness(1.2);
}
.career-service-logo {
    display: block;
    width: 38px;
    height: 38px;
}

.career-chapter__content > span {
    display: none !important;
}

.ongoing-services {
    background: radial-gradient(circle at 90% 0, rgba(97, 218, 251, .14), transparent 32%), linear-gradient(145deg, #111426, #252953) !important
}

.history-item {
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease
}

.history-item:hover {
    transform: translateX(4px);
    border-color: #b5b8df;
    box-shadow: 0 15px 40px rgba(20, 22, 55, .1)
}

.history-item[open] {
    border-color: #9ea2d6
}

.history-number {
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace !important
}

.history-item[open] .history-number {
    background: #282b52;
    color: var(--dev-cyan)
}

.project-controls {
    box-shadow: inset 0 1px #fff
}

.filter-tag.active {
    background: linear-gradient(135deg, #353a73, #25284d) !important
}

.market-visit__menu {
    border-top: 3px solid var(--dev-cyan) !important
}

/* Project builder */
.project-builder__heading>div>span,
.wizard-step__heading>span,
.scope-module>header>span {
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace
}

.project-wizard {
    background: radial-gradient(circle at 95% 0, rgba(97, 218, 251, .09), transparent 25%), #111426 !important
}

.scope-module {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #1a1d34, #202442) !important
}

.scope-module::before {
    content: "module.active";
    position: absolute;
    right: 18px;
    top: 15px;
    color: #6f7498;
    font: 9px/1 ui-monospace, Consolas, monospace
}

.service-choice.is-selected,
.option-card:has(input:checked) {
    box-shadow: inset 3px 0 var(--dev-cyan), 0 12px 30px rgba(0, 0, 0, .14)
}

.translation-estimate {
    background: radial-gradient(circle at 90% 0, rgba(97, 218, 251, .14), transparent 35%), linear-gradient(135deg, #303365, #242641) !important
}

/* Legal pages */
.legal-content {
    position: relative
}

.legal-content::before {
    content: "LEGAL_DOCUMENT";
    display: block;
    margin-bottom: 18px;
    color: #686ca8;
    font: 800 10px/1 ui-monospace, Consolas, monospace;
    letter-spacing: .14em
}

.legal-content>section,
.legal-note,
.legal-link-grid a {
    position: relative;
    overflow: hidden;
    border-color: #dde0ec !important;
    background: linear-gradient(145deg, #fff, #f8f9ff) !important;
    box-shadow: 0 10px 32px rgba(20, 22, 54, .055)
}

.legal-content>section::before {
    content: "§";
    position: absolute;
    right: 18px;
    top: 8px;
    color: rgba(48, 50, 93, .07);
    font: 900 54px/1 ui-monospace, monospace
}

.legal-link-grid a {
    transition: transform .2s ease, border-color .2s ease
}

.legal-link-grid a:hover {
    transform: translateY(-4px);
    border-color: #afb3dd !important
}

/* Footer continuation */
.site-footer {
    background: radial-gradient(circle at 82% 10%, rgba(97, 218, 251, .09), transparent 25%), linear-gradient(145deg, #080a14, #161933) !important
}

.site-footer__project-link {
    box-shadow: 0 0 0 1px rgba(97, 218, 251, .18), 0 12px 30px rgba(0, 0, 0, .22)
}

/* Contrast enforcement on dark blue surfaces */
:is(.hero, .hero-section, .service-hero, .page-hero, .legal-hero, .home-services__header, .home-service-feature--translation, .included-support, .ongoing-services, .project-wizard, .scope-module, .quick-contact__form, .translation-estimate, .site-footer) :is(h1, h2, h3, h4, strong, legend, label) {
    color: #fff !important
}

:is(.hero, .hero-section, .service-hero, .page-hero, .legal-hero, .home-services__header, .home-service-feature--translation, .included-support, .ongoing-services, .project-wizard, .scope-module, .quick-contact__form, .translation-estimate, .site-footer) :is(p, li, small) {
    color: #c8cada
}

.home-service-feature--translation .home-services__eyebrow,
.included-support>span,
.ongoing-services .regency-projects__eyebrow,
.scope-module>header>span {
    color: #bfc5ff !important
}

@media(max-width:1220px) {
    .regency-projects::after {
        display: none
    }
}

@media(max-width:760px) {

    .hero::before,
    .hero-section::before,
    .service-hero::before,
    .page-hero::before,
    .legal-hero::before {
        right: -75px;
        top: 150px
    }

    .home-services__header::before,
    .catalogue-service::before {
        display: none
    }

    .history-item:hover {
        transform: none
    }

    .image-pair-wrapper::before {
        left: 12px;
        top: 10px
    }

    .about-content::after {
        font-size: 42px
    }
}

@media(prefers-reduced-motion:reduce) {

    .home-services__website,
    .home-service-feature,
    .project-card,
    .catalogue-service,
    .history-item,
    .legal-link-grid a {
        transition: none
    }

    .home-services__website:hover,
    .home-service-feature:hover,
    .project-card:hover,
    .catalogue-service:hover,
    .history-item:hover,
    .legal-link-grid a:hover {
        transform: none
    }
}

/* Graphite content surfaces
   Keep the blue hero/feature language, but give every light content surface
   the same depth, contrast and glass treatment as the dark modules. */
:root {
    --graphite-page: #17191e;
    --graphite-card: radial-gradient(circle at 92% 0, rgba(157, 166, 178, .12), transparent 34%), linear-gradient(145deg, #34383e 0%, #282c31 54%, #1d2025 100%);
    --graphite-card-soft: linear-gradient(145deg, rgba(61, 66, 73, .92), rgba(31, 34, 39, .96));
    --graphite-glass: rgba(255, 255, 255, .055);
    --graphite-glass-hover: rgba(255, 255, 255, .09);
    --graphite-line: rgba(255, 255, 255, .14);
    --graphite-inner-line: rgba(255, 255, 255, .09);
    --graphite-text: #f7f8fb;
    --graphite-muted: #c6c9d2;
    --graphite-subtle: #a7abb6;
}

body {
    background-color: var(--graphite-page) !important;
    background-image: linear-gradient(rgba(255, 255, 255, .026) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .026) 1px, transparent 1px) !important;
    background-size: 44px 44px !important;
    color: var(--graphite-text);
}

/* Outer content cards: one quiet border, one graphite gradient. */
:is(.home-services__website, .home-service-feature--google, .home-service-feature--social, .home-service-feature--email, .service-card, .about, .whatdone, #contact, .shared-client-notice, .regency-projects__intro, .project-controls, .history-item, .catalogue-service, .task-card, .info-card:not(.info-card--dark):not(.about-method__card--dark), .about-timeline, .about-portfolio__grid a, .about-feature > div:first-child, .about-automation__tasks article, .experience-history, .direct-contact-section, .direct-contact a, .direct-contact__pending, .quick-contact, .custom-project-showcase, .zigzag-system) {
    border-color: var(--graphite-line) !important;
    background: var(--graphite-card) !important;
    color: var(--graphite-text) !important;
    box-shadow: 0 20px 58px rgba(0, 0, 0, .22) !important;
}

/* The homepage project-builder wrapper floats on the page grid; its wizard
   remains the contained dark module beneath it. */
.home-project-builder#contact {
    border-color: transparent !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* Headings and readable copy on the graphite surfaces. */
:is(.home-services__website, .home-service-feature--google, .home-service-feature--social, .home-service-feature--email, .service-card, .about, .whatdone, #contact, .shared-client-notice, .regency-projects__intro, .project-controls, .history-item, .catalogue-service, .task-card, .info-card:not(.info-card--dark):not(.about-method__card--dark), .about-timeline, .about-portfolio__grid a, .about-feature > div:first-child, .about-automation__tasks article, .experience-history, .direct-contact-section, .direct-contact a, .direct-contact__pending, .quick-contact, .custom-project-showcase, .zigzag-system, .legal-content > section, .legal-note, .legal-link-grid a, .legal-table) :is(h1, h2, h3, h4, strong) {
    color: var(--graphite-text) !important;
}

:is(.home-services__website, .home-service-feature--google, .home-service-feature--social, .home-service-feature--email, .service-card, .about, .whatdone, #contact, .shared-client-notice, .regency-projects__intro, .project-controls, .history-item, .catalogue-service, .task-card, .info-card:not(.info-card--dark):not(.about-method__card--dark), .about-timeline, .about-portfolio__grid a, .about-feature > div:first-child, .about-automation__tasks article, .experience-history, .direct-contact-section, .direct-contact a, .direct-contact__pending, .quick-contact, .custom-project-showcase, .zigzag-system, .legal-content > section, .legal-note, .legal-link-grid a, .legal-table) :is(p, li, small, time) {
    color: var(--graphite-muted) !important;
}

.section-heading h2,
.service-intro h2,
.completed-projects-heading h2,
.project-builder__heading h2 {
    background: none !important;
    -webkit-text-fill-color: var(--graphite-text) !important;
    color: var(--graphite-text) !important;
}

/* Homepage service modules. */
.home-platform-grid {
    grid-template-columns: 1fr;
}

.home-services__website-copy h3,
.home-service-feature--google h3,
.home-service-feature--social h3,
.home-service-feature--email h3 {
    color: var(--graphite-text) !important;
}

.home-services__website-copy > p:not(.home-services__eyebrow),
.home-service-feature--google > p,
.home-service-feature--social > p,
.home-service-feature--email > p {
    color: var(--graphite-muted) !important;
}

.home-services__website-copy > a {
    color: #d9dcff !important;
}

.home-platform-card {
    border-color: var(--graphite-inner-line) !important;
    background: var(--graphite-glass) !important;
    color: var(--graphite-text) !important;
}

.home-platform-card:hover {
    border-color: rgba(191, 197, 255, .45) !important;
    background: var(--graphite-glass-hover) !important;
}

.home-platform-card strong,
.home-platform-card small {
    color: var(--graphite-text) !important;
}

.home-platform-card small {
    color: var(--graphite-muted) !important;
}

.home-service-logo,
.home-service-badge {
    border-color: var(--graphite-inner-line) !important;
    background: transparent !important;
    color: var(--graphite-text) !important;
}

.home-service-badge {
    background: var(--graphite-glass) !important;
}

/* The About portfolio uses the same service visual as the homepage, without imagery. */
.about-portfolio__services-slot {
    display: block !important;
    margin: 0 !important;
}

.project-card-services--about {
    width: 100% !important;
    max-width: none !important;
    min-height: 194px !important;
    margin: 0 !important;
    padding: 27px 16px 20px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    aspect-ratio: auto !important;
}

.project-card-services--about .project-card-services__eyebrow {
    margin: 0 0 17px !important;
}

.project-card-services--about .project-card-services__icons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
    width: min(260px, 100%);
    margin: 0 !important;
}

.project-card-services--about .project-service-icon {
    gap: 7px;
    min-width: 0;
}

.project-card-services--about .project-service-icon__mark {
    width: 44px;
    height: 44px;
}

.project-card-services--about .project-service-icon small {
    margin: 0 !important;
    font-size: 10px;
}

/* Keep calls to action readable against the blue hero treatment. */
.service-hero a,
.service-hero a:visited {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

/* About page story cards and project-builder contact cards. */
.career-chapter {
    border-color: var(--graphite-line) !important;
    background: var(--graphite-card) !important;
    color: var(--graphite-text) !important;
    box-shadow: 0 20px 58px rgba(0, 0, 0, .22) !important;
}

.career-chapter__visual,
.career-logo-row a,
.about-automation__tasks article,
.about-timeline,
.about-portfolio__grid a,
.about-method__card:not(.about-method__card--dark) {
    border-color: var(--graphite-inner-line) !important;
    background: var(--graphite-glass) !important;
    color: var(--graphite-text) !important;
}

.career-logo-row a:hover {
    background: var(--graphite-glass-hover) !important;
}

.career-chapter__content p,
.about-automation__tasks p,
.about-method__card p,
.about-feature > div:first-child p,
.about-portfolio__grid p,
.experience-period__content > p:not(.experience-period__label),
.about-timeline article div > p:last-child {
    color: var(--graphite-muted) !important;
}

.direct-contact-section .section-heading p,
.quick-contact .section-heading p {
    color: var(--graphite-muted) !important;
}

.direct-contact a,
.direct-contact__pending {
    color: var(--graphite-text) !important;
}

.quick-contact__email {
    border-color: var(--graphite-inner-line) !important;
    background: var(--graphite-glass) !important;
}

.quick-contact__email > span,
.quick-contact__email > a,
.quick-contact__email small {
    color: var(--graphite-text) !important;
}

.quick-contact__email button {
    border-color: var(--graphite-inner-line) !important;
    background: var(--graphite-glass-hover) !important;
    color: #fff !important;
}

/* Service catalogue and completed-work timelines. */
.catalogue-service,
.task-card {
    border-color: var(--graphite-line) !important;
    background: var(--graphite-card-soft) !important;
}

.catalogue-service__type,
.task-card__meta,
.task-empty,
.catalogue-service p:last-child,
.task-card p,
.history-content p,
.history-content ul,
.completed-projects-heading > p:last-child {
    color: var(--graphite-muted) !important;
}

.catalogue-service h2,
.task-card h3,
.history-content h3,
.shared-client-notice h2,
.regency-projects__intro h2 {
    color: var(--graphite-text) !important;
}

/* Service catalogue headings sit directly on the page surface rather than
   inside a graphite card, so give them the same contrast explicitly. */
.service-intro > p:last-child,
.category-tasks__heading > p:last-child {
    color: var(--graphite-muted) !important;
}

.category-tasks__heading h2 {
    -webkit-text-fill-color: var(--graphite-text) !important;
    color: var(--graphite-text) !important;
}

.task-card a {
    color: #b8b6ff !important;
}

.task-card a:hover,
.task-card a:focus-visible {
    color: #fff !important;
}

.catalogue-service__icon,
.catalogue-service__tasks,
.history-number,
.history-meta time,
.project-sort select,
.filter-tag,
.related-project {
    border-color: var(--graphite-inner-line) !important;
    background: var(--graphite-glass) !important;
    color: var(--graphite-text) !important;
}

.catalogue-service__tasks:hover,
.filter-tag:hover,
.related-project:hover {
    background: var(--graphite-glass-hover) !important;
    color: #fff !important;
}

.project-controls {
    box-shadow: 0 14px 42px rgba(0, 0, 0, .2) !important;
}

.history-item summary:hover,
.history-item[open] summary,
.history-content {
    background: rgba(255, 255, 255, .045) !important;
}

.history-item::before {
    border-color: #282c31;
}

.history-item[open] .history-number {
    background: rgba(97, 218, 251, .13) !important;
}

/* Custom portfolio case-study surfaces. */
.custom-project-showcase,
.zigzag-system {
    border-color: var(--graphite-line) !important;
    background: var(--graphite-card) !important;
}

.custom-project-showcase h2,
.zigzag-system h2,
.custom-project-showcase p,
.zigzag-system p {
    color: var(--graphite-text) !important;
}

.custom-project-showcase__copy > span,
.zigzag-system__intro > span {
    color: #c1c5ff !important;
}

.before-after-proof figure,
.zigzag-system__map article {
    border-color: var(--graphite-inner-line) !important;
    background: var(--graphite-glass) !important;
}

/* Legal content is readable without returning to white panels. */
.legal-content > section,
.legal-note,
.legal-link-grid a,
.legal-table {
    border-color: var(--graphite-line) !important;
    background: transparent !important;
}

.legal-content h2,
.legal-content h3,
.legal-link-grid strong {
    color: var(--graphite-text) !important;
}

.legal-content p,
.legal-content li,
.legal-table span,
.legal-link-grid span {
    color: var(--graphite-muted) !important;
}

.legal-content a,
.legal-link-grid a:hover {
    color: #d3d7ff !important;
}

.legal-table > div {
    border-color: var(--graphite-inner-line) !important;
}

/* Small controls remain legible, but no longer introduce bright white tiles. */
.service-choice__visual,
.option-card .choice-logo {
    border: 1px solid var(--graphite-inner-line) !important;
    background: var(--graphite-glass) !important;
}

.service-choice__visual .choice-logo {
    color: #fff !important;
}

/* Icons should sit lightly inside their cards; keep the card edge as the only outline. */
:is(
    .home-service-logo,
    .home-service-badge,
    .catalogue-service__icon,
    .service-choice__visual,
    .choice-logo,
    .career-logo-row a,
    .experience-period__logos a,
    .about-origin__logos a,
    .about-automation__logos a,
    .project-service-icon__mark
) {
    border: 0 !important;
}

/* Project builder service choices: let the card edge carry selection state.
   Keep the platform marks large and clean on the page surface. */
.service-choice__visual {
    width: 68px !important;
    height: 68px !important;
    align-self: center;
    margin-inline: auto;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.service-choice__visual .choice-logo,
.service-choice__visual .choice-badge {
    width: 60px !important;
    height: 60px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.service-choice__visual .choice-logo,
.service-choice__visual .choice-badge {
    display: grid;
    place-items: center;
}

.service-choice__visual .choice-logo svg {
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    fill: currentColor;
}

.service-choice__visual .choice-badge {
    color: #fff !important;
    font-size: 25px !important;
}

/* These two source marks are monochrome SVGs without an explicit fill;
   inherit the light card text colour once their tile is removed. */
.service-choice__visual .choice-logo[data-icon="CustomHTML"] svg path,
.service-choice__visual .choice-logo[data-icon="Klaviyo"] svg path:not(.b) {
    fill: currentColor !important;
}

.service-choice__visual .choice-logo[data-icon="Klaviyo"] {
    color: #b8b6ff !important;
}

.service-choice__check {
    display: none !important;
}

/* Text-based portfolio marks (Google and AI) share the same centred box as
   image marks instead of inheriting the old oversized clamp dimensions. */
#projects[data-module="portfolio-carousel"] .project-service-icon__mark b {
    width: 100%;
    height: 100%;
    margin: 0;
    font-size: 32px;
    line-height: 1;
}

/* Homepage portfolio cards: show two compact cards per desktop carousel view. */
#projects[data-module="portfolio-carousel"] .project-card {
    flex: 0 0 calc((min(1180px, calc(100vw - 40px)) - 22px) / 2);
    width: calc((min(1180px, calc(100vw - 40px)) - 22px) / 2);
}

#projects[data-module="portfolio-carousel"] .project-card-services {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    width: calc(100% - 36px);
    max-width: none;
    min-height: 148px;
    margin: 18px 18px 0;
    padding: 18px 20px 16px;
    border: 0;
    border-radius: 0;
}

#projects[data-module="portfolio-carousel"] .project-card-services__icons {
    justify-content: flex-start;
    gap: 16px;
    max-width: none;
}

#projects[data-module="portfolio-carousel"] .project-service-icon {
    grid-template-rows: 44px auto;
    gap: 6px;
    min-width: 64px;
    text-align: left;
}

#projects[data-module="portfolio-carousel"] .project-service-icon__mark {
    width: 44px;
    height: 44px;
}

#projects[data-module="portfolio-carousel"] .project-service-icon small {
    font-size: 10px;
    text-align: left;
}

#projects[data-module="portfolio-carousel"] .project-card__body {
    gap: 4px;
    padding: 14px 20px 18px;
}

@media (max-width: 768px) {
    #projects[data-module="portfolio-carousel"] .project-card {
        flex-basis: 86vw;
        width: 86vw;
    }

    #projects[data-module="portfolio-carousel"] .project-card-services {
        min-height: 150px;
        margin: 16px 16px 0;
        padding: 18px 16px 15px;
    }

    #projects[data-module="portfolio-carousel"] .project-card-services__icons {
        gap: 12px;
    }
}

/* Portfolio heroes: keep the case-study introduction focused and compact.
   The CTA uses the same restrained glass language as the rest of the site. */
.portfolio-page .hero-section,
.hero-section[data-portfolio-key] {
    min-height: 0 !important;
    padding: 88px 24px 64px !important;
}

.hero-section[data-portfolio-key] .portfolio-hero-description {
    margin-bottom: 20px !important;
}

.hero-section[data-portfolio-key] .web-portfolio-visit {
    margin: 20px auto 10px;
}

.hero-section[data-portfolio-key] .market-visit {
    margin: 20px auto 0;
}

.hero-section[data-portfolio-key] .web-portfolio-visit,
.hero-section[data-portfolio-key] .market-visit__trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 11px 18px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 12px;
    background: rgba(8, 10, 20, .46);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 12px 28px rgba(0, 0, 0, .2);
    color: #fff !important;
    font-weight: 800;
    text-decoration: none;
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
    transition: background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.hero-section[data-portfolio-key] .web-portfolio-visit:hover,
.hero-section[data-portfolio-key] .web-portfolio-visit:focus-visible,
.hero-section[data-portfolio-key] .market-visit__trigger:hover,
.hero-section[data-portfolio-key] .market-visit__trigger:focus-visible {
    border-color: rgba(255, 255, 255, .32);
    background: rgba(6, 8, 17, .66);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 16px 34px rgba(0, 0, 0, .28);
    outline: none;
}

.hero-section[data-portfolio-key] .market-visit__trigger {
    width: min(420px, 100%);
    margin: auto;
    cursor: pointer;
}

/* Section kickers sit directly on the dark page surfaces throughout the
   refreshed site. Keep them bright enough to read without changing the
   accent-line treatment. */
:is(
    .service-kicker,
    .section-heading > span,
    .regency-projects__eyebrow,
    .legal-hero p,
    .home-services__eyebrow
) {
    color: #c4c9ff !important;
    -webkit-text-fill-color: #c4c9ff !important;
}

.service-intro::before {
    color: #c4c9ff !important;
}

/* Compact hero rhythm across the whole site. The top offset reserves room for
   the fixed navigation; the visible breathing space around the content is
   capped at roughly 30px. */
:is(.hero, .hero-section, .service-hero, .page-hero, .legal-hero) {
    min-height: 0 !important;
    padding: calc(var(--header-height, 82px) + 30px) 22px 30px !important;
}

.hero-section[data-portfolio-key] {
    padding: calc(var(--header-height, 82px) + 24px) 24px 30px !important;
}

/* Keep portfolio follow-on panels below the hero instead of visually
   straddling its edge. */
.portfolio-page .shared-client-notice {
    margin-top: 36px !important;
}

.portfolio-page .market-visit,
.portfolio-page .market-visit__menu,
.portfolio-page .market-visit__trigger {
    z-index: 200 !important;
}
.portfolio-page .market-visit__menu {
    top: calc(100% + 3px) !important;
}

@media (max-width: 760px) {
    :is(.hero, .hero-section, .service-hero, .page-hero, .legal-hero) {
        padding: calc(var(--header-height, 72px) + 24px) 18px 30px !important;
    }

    .hero-section[data-portfolio-key] {
        padding: calc(var(--header-height, 72px) + 20px) 18px 30px !important;
    }
    .portfolio-page .shared-client-notice {
        margin-top: 24px !important;
    }
}

@media (max-width: 768px) {
    .portfolio-page .hero-section,
    .hero-section[data-portfolio-key] {
        padding: calc(var(--header-height, 72px) + 20px) 18px 30px !important;
    }
}

/* Keep hover states calm: colour, border and shadow feedback can remain, but
   cards and controls should not jump, lift or scale beneath the pointer. */
:is(
    .home-services__website,
    .home-service-feature,
    .project-card,
    .home-platform-card,
    .service-card,
    .catalogue-service,
    .history-item,
    .legal-link-grid a,
    .service-choice,
    .career-chapter,
    .career-logo-row a,
    .experience-period__logos a,
    .about-origin__logos a,
    .about-automation__logos a,
    .about-automation__tasks article,
    .about-method__card,
    .about-portfolio__grid a,
    .about-cta a,
    .portfolio-carousel__controls button,
    .pay-btn,
    #coffeeBtn,
    .page-hero__continue,
    .hero-section[data-portfolio-key] .web-portfolio-visit,
    .hero-section[data-portfolio-key] .market-visit__trigger
):is(:hover, :focus-visible) {
    transform: none !important;
}

.home-platform-card:hover .home-service-arrow,
.home-service-feature:hover .home-service-arrow,
.about-portfolio__grid a:hover img,
.about-portfolio__grid a:hover::after {
    transform: none !important;
}

/* The About-page CTA used a sweeping shine on hover; keep it still as well. */
.page-hero--about .page-hero__continue:hover::before {
    left: -70% !important;
}

/* Legal pages use an open document layout rather than stacked grey panels. */
.legal-hero__inner,
.legal-content {
    width: min(1000px, calc(100% - 44px)) !important;
}

.legal-content > section,
.legal-note,
.legal-table,
.legal-link-grid a {
    background: transparent !important;
    box-shadow: none !important;
}

.legal-content > section,
.legal-note {
    border-color: transparent !important;
}

#main-content .legal-content > section,
#main-content .legal-content > .legal-note {
    border: 0 !important;
    border-radius: 0 !important;
    padding-left: 0;
    padding-right: 0;
}

/* Keep legal documents as an open reading surface: no panel fills anywhere. */
.legal-page main#main-content,
.legal-page .legal-content,
.legal-page .legal-content > *,
.legal-page .legal-content > * > * {
    background: transparent !important;
    box-shadow: none !important;
}

.legal-content,
.legal-content p,
.legal-content li,
.legal-content strong,
.legal-table span,
.legal-link-grid span {
    color: #f7f8fb !important;
}

.legal-content a,
.legal-link-grid a:hover {
    color: #cdd2ff !important;
}

/* Dropdowns should fade in at their final position rather than slide when
   the pointer enters the navigation group. Keep the mobile menu rules intact. */
@media (min-width: 1051px) {
    .site-nav__group:hover .site-nav__mega,
    .site-nav__group:focus-within .site-nav__mega,
    .site-nav__group.is-open .site-nav__mega {
        transform: translateX(-50%) !important;
    }
}

/* Homepage services intro: a distinct, stacked lead panel that sits below
   the hero instead of being pulled over it. */
.home-services {
    margin-top: 24px !important;
    padding-top: 0 !important;
}

.home-services__header {
    display: block !important;
    width: calc(100% + 56px);
    max-width: none;
    margin: 0 -28px 28px;
    padding: 30px 40px 34px;
    border: 1px solid rgba(126, 219, 255, .28);
    border-radius: 24px;
    background:
        radial-gradient(circle at 88% 10%, rgba(97, 218, 251, .2), transparent 28%),
        radial-gradient(circle at 12% 100%, rgba(155, 140, 255, .18), transparent 36%),
        linear-gradient(135deg, rgba(16, 20, 45, .98), rgba(34, 39, 83, .97));
    box-shadow: 0 24px 62px rgba(6, 8, 24, .28), inset 0 1px 0 rgba(255, 255, 255, .08);
    text-align: left;
}

.home-services__header::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(90deg, #000, transparent 82%);
    pointer-events: none;
}

.home-services__header > * {
    position: relative;
    z-index: 1;
}

.home-services__header h1,
.home-services__header h2 {
    max-width: 780px;
    margin-top: 13px;
    text-align: left;
}

.home-services__intro {
    max-width: 780px;
    margin: 14px 0 0;
    color: #d8dce8 !important;
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.6;
}

@media (max-width: 760px) {
    .home-services {
        margin-top: 16px !important;
    }

    .home-services__header {
        width: auto;
        margin: 0 0 24px;
        padding: 26px 22px 28px;
        border-radius: 20px;
    }
}

/* Page loading transition */
body::before,
body::after {
    position: fixed;
    z-index: 2147483647;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, visibility 0s linear .2s;
    will-change: opacity, transform
}

body::before {
    content: "";
    inset: 0;
    background: radial-gradient(circle at 76% 18%, rgba(97, 218, 251, .15), transparent 24%), radial-gradient(circle at 12% 86%, rgba(155, 140, 255, .2), transparent 30%), linear-gradient(145deg, #080a14, #171a35 58%, #282653)
}

body::after {
    content: "</>\A KGSITES";
    white-space: pre;
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 142px;
    height: 142px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 32px;
    background: radial-gradient(circle, rgba(97, 218, 251, .12), rgba(11, 13, 25, .72));
    box-shadow: 0 0 0 12px rgba(155, 140, 255, .035), 0 28px 90px rgba(0, 0, 0, .38);
    color: #fff;
    font: 900 17px/1.9 ui-monospace, SFMono-Regular, Consolas, monospace;
    letter-spacing: .16em;
    text-align: center;
    transform: translate(-50%, -50%);
    animation: siteLoaderPulse 1.35s ease-in-out infinite
}

html.site-loading,
html.site-loading body { overflow: hidden }

html.site-loading body::before,
html.site-loading body::after {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: none
}

@supports (content-visibility: auto) {
    .home-services,
    #projects,
    .home-project-builder,
    .page-shell > section,
    .regency-projects,
    .legal-content {
        content-visibility: auto;
        contain-intrinsic-size: auto 760px
    }
}

@keyframes siteLoaderPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(.96); border-color: rgba(97, 218, 251, .18) }
    50% { transform: translate(-50%, -50%) scale(1.035); border-color: rgba(155, 140, 255, .48) }
}

@media(prefers-reduced-motion:reduce) {
    body::after { animation: none }
    body::before,
    body::after { transition-duration: .01ms }
}

/* Primary actions use the same dark glass language as the hero. Keep this
   shared so headers, forms, service pages and project CTAs stay consistent. */
:root {
    --action-glass: rgba(8, 10, 20, .46);
    --action-glass-hover: rgba(6, 8, 17, .66);
    --action-line: rgba(255, 255, 255, .18);
    --action-line-hover: rgba(255, 255, 255, .32);
}

:is(
    .site-nav__cta,
    .site-footer__statement > a,
    .site-footer__project-link,
    .service-hero a,
    .web-portfolio-visit,
    .market-visit__trigger,
    .shared-client-notice > a,
    .about-cta a,
    .project-form button,
    .wizard-next,
    .wizard-submit,
    .quick-contact__form > button,
    .quick-contact__email button,
    #contact-form button,
    .service-card .btn,
    .catalogue-service__tasks,
    .portfolio-carousel__controls button,
    .cookie-panel__actions button
) {
    border: 1px solid var(--action-line) !important;
    background: var(--action-glass) !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 12px 28px rgba(0, 0, 0, .2) !important;
}

:is(
    .site-nav__cta,
    .site-footer__statement > a,
    .site-footer__project-link,
    .service-hero a,
    .web-portfolio-visit,
    .market-visit__trigger,
    .shared-client-notice > a,
    .about-cta a,
    .project-form button,
    .wizard-next,
    .wizard-submit,
    .quick-contact__form > button,
    .quick-contact__email button,
    #contact-form button,
    .service-card .btn,
    .catalogue-service__tasks,
    .portfolio-carousel__controls button,
    .cookie-panel__actions button
):is(:hover, :focus-visible) {
    border-color: var(--action-line-hover) !important;
    background: var(--action-glass-hover) !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 16px 34px rgba(0, 0, 0, .28) !important;
    outline: none;
}
/* header/style.css */
:root{--header-height:82px;--header-bg:rgba(13,14,29,.78);--header-line:rgba(255,255,255,.12)}
.site-header,.site-header *{box-sizing:border-box}
.skip-link{position:fixed;top:8px;left:8px;z-index:2000;transform:translateY(-150%);padding:10px 14px;border-radius:8px;background:#fff;color:#111225;font-weight:800}.skip-link:focus{transform:none}
.site-header{position:fixed;inset:0 0 auto;z-index:1000;height:var(--header-height);padding:0 clamp(18px,4vw,56px);border-bottom:1px solid transparent;background:linear-gradient(to bottom,rgba(9,10,22,.64),transparent);transition:height .2s ease,background .2s ease,border-color .2s ease,box-shadow .2s ease}.site-header.is-scrolled,.nav-open .site-header{height:72px;border-color:var(--header-line);background:var(--header-bg);box-shadow:0 12px 35px rgba(0,0,0,.15);backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px)}
.site-header__inner{position:relative;display:flex;align-items:center;justify-content:space-between;width:100%;max-width:1380px;height:100%;margin:auto}.site-brand{display:flex;align-items:center;flex:0 0 auto}.site-brand img{display:block;width:145px!important;height:auto}
.site-nav{display:flex;align-items:center;gap:3px}.site-nav__link,.site-nav__cta{display:inline-flex;align-items:center;min-height:44px;padding:10px 13px;border-radius:9px;color:#f4f4f7;font-size:14px;font-weight:700;text-decoration:none}.site-nav__link:hover,.site-nav__link[aria-current=page]{background:rgba(255,255,255,.09)}.site-nav__cta{margin-left:8px;padding-inline:17px;background:#fff;color:#171724}.site-nav__cta:hover{background:#dfe0ff}.site-nav__cta span{margin-left:8px}
.site-nav__group{position:relative;display:flex;align-items:center}.site-nav__expand{width:25px;height:42px;margin-left:-8px;padding:0;border:0;background:transparent;cursor:pointer}.site-nav__expand span{display:block;width:7px;height:7px;margin:auto;border-right:1.5px solid #fff;border-bottom:1.5px solid #fff;transform:rotate(45deg) translate(-2px,-2px);transition:transform .18s}.site-nav__group.is-open .site-nav__expand span{transform:rotate(225deg) translate(-1px,-1px)}
.site-nav__mega{visibility:hidden;position:absolute;top:calc(100% + 18px);left:50%;display:grid;grid-template-columns:230px minmax(440px,1fr);width:700px;padding:12px;border:1px solid rgba(255,255,255,.13);border-radius:18px;background:#17182b;box-shadow:0 28px 75px rgba(0,0,0,.35);opacity:0;transform:translate(-50%,-6px);transition:opacity .16s ease,transform .16s ease,visibility .16s}.site-nav__mega::before{content:"";position:absolute;inset:-19px 0 auto;height:19px}.site-nav__group:hover .site-nav__mega,.site-nav__group:focus-within .site-nav__mega,.site-nav__group.is-open .site-nav__mega{visibility:visible;opacity:1;transform:translate(-50%,0)}
.site-nav__mega-intro{padding:22px;border-radius:12px;background:linear-gradient(145deg,#30325d,#20223f);color:#fff}.site-nav__mega-intro>span{color:#bfc1ff;font-size:10px;font-weight:800;letter-spacing:.14em;text-transform:uppercase}.site-nav__mega-intro strong{display:block;margin-top:10px;font-size:21px;line-height:1.15}.site-nav__mega-intro p{margin:12px 0 0;color:#d2d2df;font-size:12px;line-height:1.55}.site-nav__mega-links{display:grid;grid-template-columns:1fr 1fr;gap:4px;padding:3px}.site-nav__mega-links a{display:flex;gap:11px;align-items:center;padding:11px;border-radius:10px;color:#f1f1f5;text-decoration:none}.site-nav__mega-links a:hover,.site-nav__mega-links a[aria-current=page]{background:#292b4d}.site-nav__mega-links strong,.site-nav__mega-links small{display:block}.site-nav__mega-links strong{font-size:13px}.site-nav__mega-links small{margin-top:2px;color:#aaaabd;font-size:10px}.nav-icon{display:grid;place-items:center;flex:0 0 34px;width:34px;height:34px;border:1px solid rgba(255,255,255,.12);border-radius:9px;background:rgba(255,255,255,.06);color:#c6c7f1;font-size:10px;font-weight:900}.site-nav__mega--portfolio{width:650px}.site-nav__mega--portfolio .site-nav__mega-links{grid-template-columns:1fr}
.site-nav-toggle{display:none;width:46px;height:46px;padding:11px;border:1px solid rgba(255,255,255,.15);border-radius:10px;background:rgba(255,255,255,.06)}.site-nav-toggle span{display:block;width:22px;height:2px;margin:5px auto;border-radius:2px;background:#fff;transition:transform .2s,opacity .2s}.nav-open .site-nav-toggle span:nth-child(1){transform:translateY(7px) rotate(45deg)}.nav-open .site-nav-toggle span:nth-child(2){opacity:0}.nav-open .site-nav-toggle span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.header-fallback{position:fixed;top:20px;left:25px;z-index:1000;color:#fff;font-weight:900;text-decoration:none}
@media(max-width:1050px){:root{--header-height:72px}.site-header{height:72px;padding:0 16px;background:var(--header-bg);border-color:var(--header-line);backdrop-filter:none;-webkit-backdrop-filter:none}.site-brand img{width:128px!important}.site-nav-toggle{display:block}.site-nav{position:fixed;inset:72px 0 0;display:block;padding:16px 18px 40px;overflow:auto;background:#111225;opacity:0;pointer-events:none;transform:translateY(-12px);transition:opacity .2s,transform .2s}.nav-open{overflow:hidden}.nav-open .site-nav{opacity:1;pointer-events:auto;transform:none}.site-nav__link,.site-nav__cta{width:100%;min-height:52px;margin:0;padding:13px 6px;border-bottom:1px solid rgba(255,255,255,.09);border-radius:0;font-size:16px}.site-nav__cta{justify-content:center;margin-top:18px;border:0;border-radius:10px}.site-nav__group{display:grid;grid-template-columns:1fr 48px}.site-nav__expand{width:48px;height:52px;margin:0;border-bottom:1px solid rgba(255,255,255,.09)}.site-nav__mega{visibility:hidden;position:static;grid-column:1/-1;display:none;grid-template-columns:1fr;width:auto!important;margin:6px 0 14px;padding:7px;opacity:1;transform:none!important}.site-nav__group:hover .site-nav__mega,.site-nav__group:focus-within .site-nav__mega{visibility:hidden;display:none}.site-nav__group.is-open .site-nav__mega{visibility:visible;display:grid}.site-nav__mega-intro{display:none}.site-nav__mega-links{grid-template-columns:1fr!important}.site-nav__mega-links a{padding:12px}.site-nav__mega-links strong{font-size:14px}.site-nav__mega-links small{font-size:11px}}
@media(prefers-reduced-motion:reduce){.site-header,.site-nav,.site-nav__mega,.site-nav-toggle span{transition:none}}

/* Compact navigation panels. Platform marks are injected from the shared SVG
   library; empty/fallback marks stay graphical rather than showing initials. */
.site-nav__mega {
  top: calc(100% + 12px);
  grid-template-columns: 198px minmax(0, 1fr);
  width: min(640px, calc(100vw - 36px));
  padding: 8px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(26, 28, 52, .98), rgba(13, 15, 30, .98));
  box-shadow: 0 24px 60px rgba(0, 0, 0, .42), inset 0 1px rgba(255, 255, 255, .07);
}

.site-nav__mega::before {
  inset: -13px 0 auto;
  height: 13px;
}

.site-nav__mega-intro {
  padding: 17px;
  border-radius: 11px;
  background: linear-gradient(145deg, #34376a, #222544);
}

.site-nav__mega-intro strong {
  margin-top: 8px;
  font-size: 18px;
}

.site-nav__mega-intro p {
  margin-top: 9px;
  font-size: 11px;
  line-height: 1.48;
}

.site-nav__mega-links {
  gap: 2px;
  padding: 2px;
}

.site-nav__mega-links a {
  gap: 10px;
  min-height: 48px;
  padding: 8px 9px;
  border-radius: 9px;
}

.site-nav__mega-links a:hover,
.site-nav__mega-links a[aria-current=page] {
  background: rgba(255, 255, 255, .09);
}

.site-nav__mega-links strong {
  font-size: 12px;
}

.site-nav__mega-links small {
  margin-top: 1px;
  font-size: 9px;
  line-height: 1.35;
}

.nav-icon {
  display: grid;
  place-items: center;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  padding: 1px;
  border: 0 !important;
  border-radius: 8px;
  background: transparent !important;
  color: #cbd0ff;
  font-size: 0;
  line-height: 1;
}

.nav-icon svg {
  display: block;
  width: 30px;
  height: 30px;
}

.nav-icon svg path:not([fill]) {
  fill: currentColor;
}

.nav-icon--translation::before {
  content: "✦";
  color: #bfc1ff;
  font-size: 23px;
  line-height: 1;
}

.site-nav__mega--portfolio {
  width: min(570px, calc(100vw - 36px));
  grid-template-columns: 180px minmax(0, 1fr);
}

.site-nav__mega--portfolio .site-nav__mega-links a {
  min-height: 46px;
}

@media(max-width:1050px) {
  .site-nav {
    height: calc(100dvh - 72px);
    min-height: calc(100vh - 72px);
  }

  .site-nav__mega {
    width: auto !important;
    margin: 4px 0 10px;
    padding: 5px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .035);
    box-shadow: inset 0 1px rgba(255, 255, 255, .06);
  }

  .site-nav__mega-links {
    gap: 1px;
    padding: 1px;
  }

  .site-nav__mega-links a {
    min-height: 44px;
    padding: 7px 8px;
  }

  .site-nav__mega-links strong {
    font-size: 14px;
  }

  .site-nav__mega-links small {
    font-size: 10px;
  }

  .nav-icon {
    flex-basis: 29px;
    width: 29px;
    height: 29px;
  }

  .nav-icon svg {
    width: 27px;
    height: 27px;
  }
}

/* Dropdown indicator: a quiet, responsive chevron that reflects both
   keyboard/hover opening and the click-controlled aria-expanded state. */
.site-nav__expand {
  position: relative;
  color: rgba(244, 244, 247, .78);
  transition: color .2s ease;
}

.site-nav__expand span {
  position: relative;
  z-index: 1;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .32s cubic-bezier(.22, 1, .36, 1), color .2s ease;
}

.site-nav__expand::after {
  content: "";
  position: absolute;
  inset: 8px 2px;
  border-radius: 999px;
  background: rgba(191, 193, 255, .1);
  opacity: 0;
  transform: scale(.72);
  transition: opacity .2s ease, transform .32s cubic-bezier(.22, 1, .36, 1);
}

.site-nav__expand:hover,
.site-nav__expand:focus-visible {
  color: #fff;
}

.site-nav__expand[aria-expanded="true"] span,
.site-nav__group.is-open > .site-nav__expand span {
  transform: rotate(225deg) translate(-1px, -1px);
}

.site-nav__expand[aria-expanded="true"]::after,
.site-nav__expand:hover::after,
.site-nav__expand:focus-visible::after {
  opacity: 1;
  transform: scale(1);
}

@media (min-width: 1051px) {
  .site-nav__group:hover > .site-nav__expand,
  .site-nav__group:focus-within > .site-nav__expand {
    color: #fff;
  }

  .site-nav__group:hover > .site-nav__expand span,
  .site-nav__group:focus-within > .site-nav__expand span {
    transform: rotate(225deg) translate(-1px, -1px);
  }

  .site-nav__group:hover > .site-nav__expand::after,
  .site-nav__group:focus-within > .site-nav__expand::after {
    opacity: 1;
    transform: scale(1);
  }
}
/* footer/style.css */
.site-footer,
.site-footer *,
.cookie-panel,
.cookie-panel * {
    box-sizing: border-box
}

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 90px clamp(20px, 5vw, 72px) 25px;
    background: #0d0e1b;
    color: #d6d6df
}

.site-footer::before {
    content: "</>";
    position: absolute;
    right: clamp(-45px, 4vw, 65px);
    bottom: -30px;
    color: rgba(255, 255, 255, .04);
    font: 900 clamp(140px, 23vw, 340px)/1 ui-monospace, SFMono-Regular, Consolas, monospace;
    letter-spacing: -.14em;
    transform: rotate(-7deg);
    pointer-events: none
}

.site-footer a,
.site-footer button {
    color: #d6d6df
}

.site-footer__top {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(300px, .85fr) minmax(540px, 1.15fr);
    gap: 80px;
    max-width: 1380px;
    margin: auto;
    padding-bottom: 80px
}

.site-footer__statement>p {
    margin: 0 0 10px;
    color: #aaaacd;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase
}

.site-footer__statement h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(38px, 5vw, 68px);
    line-height: .98;
    letter-spacing: -.05em
}

.site-footer__statement>a {
    display: inline-flex;
    margin-top: 30px;
    padding: 12px 17px;
    border-radius: 9px;
    background: #fff;
    color: #171724;
    font-weight: 800;
    text-decoration: none
}

.site-footer__statement>a span {
    margin-left: 9px
}

.site-footer__columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px
}

.site-footer__columns>div {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.site-footer__columns h3 {
    margin: 0 0 17px;
    color: #fff;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase
}

.site-footer__columns a,
.site-footer__columns button {
    margin: 0 0 9px;
    padding: 0;
    border: 0;
    background: none;
    color: #b5b5c2;
    font-size: 13px;
    text-align: left;
    text-decoration: none;
    cursor: pointer
}

.site-footer__columns a:hover,
.site-footer__columns button:hover {
    color: #fff
}

.site-footer__bottom {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 25px;
    max-width: 1380px;
    margin: auto;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .12)
}

.site-footer__bottom p {
    margin: 0;
    color: #8f8f9d;
    font-size: 12px
}

.site-footer__bottom nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px
}

.site-footer__bottom a {
    color: #a7a7b3;
    font-size: 12px;
    text-decoration: none
}

.cookie-panel {
    position: fixed;
    z-index: 1600;
    right: 18px;
    bottom: 18px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 22px;
    align-items: end;
    width: min(720px, calc(100% - 36px));
    padding: 24px;
    border: 1px solid #dcdce5;
    border-radius: 16px;
    background: #fff;
    color: #171724;
    box-shadow: 0 24px 75px rgba(8, 9, 24, .28)
}

.cookie-panel[hidden] {
    display: none
}

.cookie-panel__body>span {
    color: #6567a0;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase
}

.cookie-panel h2 {
    margin: 5px 0 7px;
    font-size: 23px
}

.cookie-panel p {
    margin: 0;
    color: #626271;
    font-size: 13px
}

.cookie-panel a {
    display: inline-block;
    margin-top: 8px;
    color: #30325d;
    font-size: 12px;
    font-weight: 800
}

.cookie-panel__actions {
    display: flex;
    gap: 8px
}

.cookie-panel__actions button {
    padding: 10px 13px;
    border: 1px solid #d5d5df;
    border-radius: 8px;
    background: #fff;
    color: #24243a;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer
}

.cookie-panel__actions button:last-child {
    border-color: #30325d;
    background: #30325d;
    color: #fff
}

@media(max-width:850px) {
    .site-footer {
        padding-top: 65px
    }

    .site-footer__top {
        grid-template-columns: 1fr;
        gap: 55px;
        padding-bottom: 55px
    }

    .site-footer__columns {
        grid-template-columns: 1fr 1fr
    }

    .site-footer__bottom {
        flex-direction: column
    }

    .cookie-panel {
        grid-template-columns: 1fr
    }

    .cookie-panel__actions {
        flex-wrap: wrap
    }
}

@media(max-width:520px) {
    .site-footer__columns {
        grid-template-columns: 1fr
    }

    .cookie-panel__actions button {
        flex: 1 1 130px
    }
}

.site-footer__brand img {
    display: block;
    width: 190px;
    height: auto
}

.site-footer__brand>p {
    max-width: 470px;
    margin: 24px 0;
    color: #aaaabd;
    font-size: 14px;
    line-height: 1.7;
    text-align: left;
}

.site-footer__project-link {
    display: inline-flex;
    padding: 12px 17px;
    border-radius: 9px;
    background: #fff;
    color: #171724 !important;
    font-weight: 800;
    float: left;
    text-decoration: none
}

.site-footer__project-link span {
    margin-left: 9px
}

/* Compact phone footer: retain full navigation without a needlessly tall stack. */
@media (max-width: 520px) {
  .site-footer {
    padding: 56px 18px 24px;
  }

  .site-footer__top {
    gap: 42px;
    padding-bottom: 42px;
  }

  .site-footer__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 18px;
  }

  .site-footer__columns > div {
    min-width: 0;
  }

  .site-footer__columns > div:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
  }

  .site-footer__columns > div:last-child h3 {
    grid-column: 1 / -1;
  }

  .site-footer__statement > p,
  .site-footer__columns h3 {
    font-size: 13px;
  }

  .site-footer__columns a,
  .site-footer__columns button {
    font-size: 14px;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .site-footer__bottom nav {
    gap: 12px 18px;
  }
}
