* {
	box-sizing: border-box;
}

/* Variables */
:root {
	--yellow: #fbd900;
	--blue: #264090;
	--grey: #f6f6f6;
	--white: #ffffff;

	--large: 60em;
	--xlarge: 80em;
}

body,
html {
	margin: 0;
	padding: 0;
}

button,
input,
optgroup,
select,
textarea {
	font-family: 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

body {
	font-family: 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
	font-weight: 400;
	line-height: 1.45;
	background-color: #13152b;
	background-image: url(/images/background.webp);
	background-blend-mode: screen;
}

.layout {
	background-color: #fff;
	min-height: 100vh;
	max-width: 1440px;
	margin: 0 auto;
	box-shadow: 0 0 3rem rgba(0, 0, 0, 0.75);
}

.constraint {
	width: calc(100% - 2em);
	max-width: 1133px;
	margin: 0 auto;
}

@media (min-width: 1133px) {
	.constraint {
		max-width: 1133px;
	}
}

a {
	color: #264090;
	text-decoration: underline;
}

ul {
	padding-left: 0;
}

h1,
h2 {
	font-size: 40px;
	line-height: 53px;
}

h3 {
	font-size: 25px;
	line-height: 30px;
}

h1,
h2,
h3,
h4 {
	color: #264090;
	font-weight: 700;
}

.showstopper {
	text-align: center;
	width: 100%;
	display: block;
	margin: 0 auto;
	padding: 2rem;
}

p.showstopper {
	max-width: 50rem;
	padding: 0 2rem;
}

.header__main-navigation--close,
.header__main-navigation--toggle {
	position: absolute;
	top: 2.25rem;
	right: 1rem;
}

@media (min-width: 60em) {
	.header__main-navigation--close,
	.header__main-navigation--toggle {
		display: none;
	}
}

.header__main-navigation--close {
	display: none;
}

@media (max-width: 60em) {
	#open_menu:target ~ .masthead {
		background-image: linear-gradient(315deg, #264090 0, #22264f 100%);
		position: fixed;
		width: 100%;
		height: 100vh;
		padding: 2rem;
		z-index: 100;
		text-align: center;
	}

	#open_menu:target ~ .masthead .header__account,
	#open_menu:target ~ .masthead .header__main-navigation,
	#open_menu:target ~ .masthead .header__main-navigation--close {
		display: block;
	}

	#open_menu:target ~ .masthead .header__main-navigation li {
		padding: 0.5rem;
	}

	#open_menu:target ~ .masthead .header__logo,
	#open_menu:target ~ .masthead .header__main-navigation--toggle {
		display: none;
	}
}

@media (min-width: 60em) {
	.masthead {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		height: 166px;
		gap: 2rem;
	}

	.masthead .header__account {
		margin-left: auto;
	}

	.masthead .header__actions {
		margin-left: auto;
	}
}

.account-icon {
	vertical-align: middle;
	margin-right: 1rem;
}

.header__actions {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.header__contact-btn {
	color: var(--yellow, #fbd900);
	border: 2px solid var(--yellow, #fbd900);
	padding: 0.35rem 0.9rem;
	text-decoration: none;
	border-radius: 3px;
	font-weight: 600;
	transition: all 0.2s ease;
}

.header__contact-btn:hover {
	background-color: var(--yellow, #fbd900);
	color: #264090;
}

.grid-center {
	display: grid;
	place-items: center;
}

.header__logo {
	max-width: 225px;
	flex: 0 1 15vw;
}

@media (max-width: 60em) {
	.header__logo {
		max-width: 160px;
		width: 100%;
		flex-basis: 100%;
		margin: 0.5rem auto;
		padding: 1rem 0;
	}
}

.header__logo svg {
	width: 100%;
	height: auto;
}

.header__logo img {
	width: 180px;
	height: auto;
	display: block;
}

@media (max-width: 60em) {
	.header__logo img {
		width: 128px;
	}
}

.logo-container {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.logo-icon {
	flex-shrink: 0;
}

.logo-text {
	color: #fad800;
	font-weight: 700;
	font-size: 1.25rem;
	white-space: nowrap;
}

@media (max-width: 60em) {
	.logo-text {
		font-size: 1rem;
	}

	.logo-container {
		gap: 0.5rem;
		justify-content: center;
	}

	.logo-icon {
		width: 24px;
		height: 24px;
	}
}

.header__main-navigation {
	display: flex;
	list-style: none;
	font-family: Degular, sans-serif;
	font-weight: 700;
	padding: 2rem 0;
	flex-direction: column;
}

@media (max-width: 60em) {
	.header__main-navigation {
		display: none;
	}
}

@media (min-width: 60em) {
	.header__main-navigation {
		flex-direction: row;
	}
}

.header__main-navigation a {
	padding: 0 1rem;
	color: #fff;
	text-decoration: none;
}

@media (max-width: 60em) {
	.header__main-navigation a {
		color: var(--yellow, #fbd900);
		text-align: center;
	}

	.header__account {
		display: none;
	}

	.header__actions {
		display: none;
	}
}

.night-sky {
	background-image: url(/images/Header.jpg), linear-gradient(315deg, #264090 0, #22264f 100%);
	background-blend-mode: overlay, normal;
	background-size: cover, cover;
	background-position:
		center top,
		center;
	background-repeat: no-repeat, no-repeat;
	background-attachment: fixed, scroll;
	background-color: #000;
	color: #fff;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	z-index: 1000;
	position: relative;
}

@media (min-width: 60em) {
	body.list .night-sky {
		padding-bottom: 3rem;
		min-height: 750px;
	}

	body.single .night-sky {
		padding-bottom: 3rem;
		min-height: 500px;
	}
}

table,
table * {
	border-collapse: collapse;
	text-align: left;
}

table td,
table th {
	padding: 0.2rem;
	border: 1px solid #777;
}

.hero-header {
	padding-bottom: 2rem;
	text-align: center;
	max-width: 80%;
	margin-left: auto;
	margin-right: auto;
}

.hero-header__title {
	font-style: normal;
	font-weight: 300;
	font-size: 26px;
	line-height: 46px;
	color: #fff;
}

@media (min-width: 60em) {
	.hero-header__title {
		font-size: 50px;
		line-height: 66px;
	}
}

.hero-header__subtitle {
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.35;
	max-width: 50rem;
	margin: 0 auto;
	text-align: center;
	color: var(--yellow, #fbd900);
}

@media (min-width: 60em) {
	.hero-header__subtitle {
		font-size: 22px;
		line-height: 1.45;
	}
}

.hero-header .button {
	margin-top: 2rem;
}

.button,
[type='submit'],
button {
	color: currentColor;
	border: 2px solid currentColor;
	padding: 0.35rem 0.9rem;
	border-radius: 3px;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 700;
	display: inline-block;
}

@media (min-width: 80em) {
	.button,
	[type='submit'],
	button {
		padding: 0.5rem 2.2rem;
		border-radius: 5px;
		font-size: 1.0625rem;
	}
}

.button.blue,
[type='submit'].blue,
button.blue {
	color: #264090;
}

.button.yellow,
[type='reset'],
[type='submit'].yellow,
button.yellow {
	color: var(--yellow, #fbd900);
}

[type='reset'] {
	border: 2px solid var(--yellow, #fbd900);
	padding: 0.5rem 1.5rem;
	border-radius: 5px;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 1.0625rem;
	font-weight: 700;
	display: inline-block;
}

.footer {
	background: linear-gradient(315deg, #264090 0, #22264f 100%);
	min-height: 30vh;
	padding: 5rem 0;
	place-items: center;
	display: grid;
	color: #fff;
}

@media (min-width: 48em) {
	.footer__logo {
		margin-bottom: 2rem;
	}
}

.footer a {
	color: var(--yellow, #fbd900);
}

.footer__outbound {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	margin: 0 auto;
	color: var(--yellow, #fbd900);
	padding: 3rem 0;
	gap: 2rem;
}

.footer__outbound > div {
	flex: 1 1 0;
}

.footer__outbound .copyright {
	text-align: left;
}

.footer__outbound .footer__logo {
	text-align: center;
}

.footer__outbound .footer__terms {
	text-align: right;
}

.footer__outbound ul,
.footer__outbound ul li {
	display: inline-block;
}

.footer .copyright p,
.footer ul {
	padding: 0;
	margin: 0;
}

@media (max-width: 60em) {
	.footer__outbound {
		flex-direction: column;
		text-align: center;
		gap: 1.5rem;
	}

	.footer__outbound .copyright,
	.footer__outbound .footer__logo,
	.footer__outbound .footer__terms {
		text-align: center;
	}

	.footer .copyright {
		order: 2;
	}

	.footer .footer__logo {
		order: 1;
	}

	.footer .footer__terms {
		order: 3;
	}

	.footer .copyright p {
		color: var(--yellow, #fbd900);
		font-weight: 300;
	}

	.footer .footer__terms ul {
		display: flex;
		justify-content: center;
		gap: 1rem;
	}

	.footer .footer__terms a,
	.footer .footer__terms li {
		display: inline-block;
		font-weight: 700;
	}
}

.footer a {
	text-decoration: none;
	transition: all 140ms ease-in-out;
}

.footer a:hover {
	color: var(--yellow, #fbd900) !important;
	box-shadow:
		0 1px 0 transparent,
		0 2px 0 var(--yellow, #fbd900);
}

.footer ul {
	list-style: none;
}

.association {
	padding: 3rem 0;
	background-color: #fff;
}

.association__title {
	font-weight: 700;
	font-size: 40px;
	line-height: 53px;
	color: #264090;
	text-align: center;
}

.association__icons {
	padding: 2rem 0;
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.association__icons dd,
.association__icons dt {
	margin: 0;
}

.association__icons img {
	display: block;
	height: 3rem;
	width: auto;
	object-fit: contain;
}

@media (min-width: 60em) {
	.association__icons {
		gap: 3rem;
	}

	.association__icons img {
		height: 4rem;
	}
}

.constraint {
	position: relative;
	z-index: 100;
}

:root {
	--distance: 1rem;
}

@media (min-width: 60em) {
	:root {
		--distance: 3rem;
	}
}

.has-diagonal .constraint {
	padding-top: calc(var(--distance) * 1.2);
	padding-bottom: calc(var(--distance) * 1.5);
	position: relative;
	z-index: 50;
}

.has-diagonal.t-blue .constraint {
	padding-top: calc(var(--distance) * 1.8);
}

.has-diagonal.t-white.inverted .constraint {
	padding-top: calc(var(--distance) * 1.8);
}

.has-diagonal .constraint.allow-overflow {
	padding-bottom: 0;
	margin-bottom: calc(var(--distance) * 1);
}

.has-diagonal::before {
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - var(--distance)));
	top: -13%;
	height: 125%;
}

.has-diagonal.inverted::before,
.has-diagonal.overlap-inverted::before {
	clip-path: polygon(0 0, 100% 0%, 100% calc(95% - var(--distance)), 0 100%);
}

.has-diagonal,
.no-diagonal {
	position: relative;
	margin-top: calc(var(--distance) * -1);
	margin-bottom: calc(var(--distance) * -1);
}

.has-diagonal::before,
.no-diagonal::before {
	content: '';
	position: absolute;
	z-index: 0;
	left: 0;
	width: 100%;
}

.has-diagonal.inverted::before,
.no-diagonal.inverted::before {
	top: -20%;
	height: 125%;
}

.has-diagonal.t-grey::before,
.no-diagonal.t-grey::before {
	background-color: #f6f6f6;
}

.has-diagonal.t-white::before,
.no-diagonal.t-white::before {
	background-color: #fff;
}

.has-diagonal.t-blue::before,
.no-diagonal.t-blue::before {
	background-color: #22264f;
	background-image: linear-gradient(315deg, #264090 0, #22264f 100%);
}

.has-diagonal.t-blue h1,
.has-diagonal.t-blue h2,
.has-diagonal.t-blue h3,
.has-diagonal.t-blue h4,
.has-diagonal.t-blue h5,
.has-diagonal.t-blue h6 {
	color: var(--yellow);
}

.has-diagonal:nth-of-type(1),
.no-diagonal:nth-of-type(1) {
	z-index: calc(10 - 1);
}

.has-diagonal:nth-of-type(2),
.no-diagonal:nth-of-type(2) {
	z-index: calc(10 - 2);
}

.has-diagonal:nth-of-type(3),
.no-diagonal:nth-of-type(3) {
	z-index: calc(10 - 3);
}

.has-diagonal:nth-of-type(4),
.no-diagonal:nth-of-type(4) {
	z-index: calc(10 - 4);
}

.has-diagonal:nth-of-type(5),
.no-diagonal:nth-of-type(5) {
	z-index: calc(10 - 5);
}

.has-diagonal:nth-of-type(6),
.no-diagonal:nth-of-type(6) {
	z-index: calc(10 - 6);
}

.has-diagonal:nth-of-type(7),
.no-diagonal:nth-of-type(7) {
	z-index: calc(10 - 7);
}

.has-diagonal:nth-of-type(8),
.no-diagonal:nth-of-type(8) {
	z-index: calc(10 - 8);
}

.pain-points-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem 0;
}

@media (max-width: 768px) {
	.pain-points-cards {
		flex-direction: column;
		gap: 1.5rem;
	}
}

.pain-point-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	background-color: #fff;
	border: 2px solid #264090;
	border-radius: 10px;
	padding: 2rem 1.5rem;
	flex: 1;
	min-width: 280px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pain-point-card__icon {
	width: 60px;
	height: 60px;
	margin-bottom: 1.5rem;
}

.pain-point-card__quote {
	font-size: 18px;
	font-weight: 700;
	color: #264090;
	margin-bottom: 1rem;
	line-height: 1.4;
}

.pain-point-card__solution {
	font-size: 16px;
	color: #666;
	line-height: 1.5;
	margin: 0;
}

@media (min-width: 769px) {
	.pain-point-card__quote {
		font-size: 20px;
	}

	.pain-point-card__solution {
		font-size: 18px;
	}
}

.has-diagonal:nth-of-type(9),
.no-diagonal:nth-of-type(9) {
	z-index: calc(10 - 9);
}

.has-diagonal:nth-of-type(10),
.no-diagonal:nth-of-type(10) {
	z-index: calc(10 - 10);
}

.no-diagonal .constraint {
	padding-top: var(--distance);
	padding-bottom: var(--distance);
	position: relative;
	z-index: 50;
}

.no-diagonal::before {
	top: -2%;
	height: 100%;
}

.layout [class*='diagonal']:first-of-type {
	margin-top: 0;
}

.layout [class*='diagonal']:last-of-type {
	margin-bottom: 0;
}

.grid-split {
	display: flex;
	flex-wrap: wrap;
	gap: 4rem;
	--margin: 1rem;
	--modifier: calc(56rem - 100%);
	margin: calc(var(--margin) * -1);
}

@media (max-width: 50em) {
	.grid-split {
		--margin: 0.5rem;
		--modifier: calc(56rem - 100%);
		margin: calc(var(--margin) * -1);
	}
}

.grid-split > * {
	flex-basis: calc(calc(900px - 100%) * 999);
	flex-grow: 1;
	padding: var(--margin);
}

.screenshot {
	position: relative;
	margin-bottom: 6rem;
	display: grid;
	place-items: center;
}

.screenshot::before {
	content: '';
	background-image: url(images/behind_screenshots.svg);
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: contain;
	display: block;
	position: absolute;
	z-index: 0;
	top: -20%;
	left: 0;
	right: auto;
	width: 100%;
	height: 140%;
}

@media (max-width: 60em) {
	.screenshot::before {
		background-size: cover;
	}
}

.screenshot.alt::before {
	background-image: url(images/behind_screenshot_alternative.svg);
	left: auto;
}

.screenshot img {
	position: relative;
	z-index: 1;
	max-width: 548px;
	width: 100%;
	height: auto;
	display: block;
	vertical-align: bottom;
	margin-left: auto;
	margin-right: auto;
}

@media (min-width: 60em) {
	.screenshot img {
		width: 90%;
	}
}

.content-card-tabs {
	background-color: #f6f6f6;
}

.card-tab__tabs {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 3rem auto;
	padding: 0;
	justify-content: center;
	list-style: none;
}

@media (min-width: 60em) {
	.card-tab__tabs {
		width: 80%;
		flex-wrap: nowrap;
	}
}

.card-tab__tabs li {
	flex-basis: calc(50% - calc(0.25rem * 2));
	text-align: center;
	border: 2px solid #264090;
	border-radius: 3px;
	padding: 1rem;
	margin: 0.25rem;
	font-weight: 800;
	font-size: 17px;
	line-height: 14px;
	color: #264090;
	transition: all 140ms ease-in-out;
}

@media (min-width: 60em) {
	.card-tab__tabs li {
		flex-basis: calc(50% - calc(0.25rem * 2));
		border-left: 0;
		margin: 0;
		border-radius: 0;
	}

	.card-tab__tabs li:first-child {
		border-radius: 5px 0 0 5px;
		border-left: 1px;
	}

	.card-tab__tabs li:last-child {
		border-radius: 0 5px 5px 0;
	}
}

.card-tab__tabs li.active,
.card-tab__tabs li:hover {
	background-color: #264090;
	color: #fff;
}

.card-tab__slide {
	display: flex;
	flex-wrap: wrap;
	--margin: 1rem;
	--modifier: calc(56rem - 100%);
	margin: calc(var(--margin) * -1);
}

@media (max-width: 50em) {
	.card-tab__slide {
		--margin: 0.5rem;
		--modifier: calc(56rem - 100%);
		margin: calc(var(--margin) * -1);
	}
}

.card-tab__slide > * {
	flex-grow: 1;
	flex-basis: calc(var(--modifier) * 999);
	margin: var(--margin);
}

.card-tab__slide__card {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: flex-start;
	background-color: #fff;
	border: 2px solid #264090;
	padding: 1rem;
	border-radius: 10px;
}

@media (min-width: 36em) {
	.card-tab__slide__card:first-child,
	.card-tab__slide__card:nth-child(2) {
		max-width: calc(50% - calc(var(--margin) * 2));
	}
}

.card-tab__slide__card * {
	margin: 0.4rem 0;
}

.card-tab__slide__card--icon {
	align-self: center;
	margin: 1rem 0;
}

.card-tab__slide__card--h1 {
	font-weight: 700;
	font-size: 40px;
	font-size: clamp(1.75rem, 6vw, 2.5rem);
	line-height: 53px;
	color: #264090;
}

.card-tab__slide__card--h2 {
	font-weight: 300;
	font-size: 25px;
	font-size: clamp(1.25rem, 4vw, 1.5625rem);
	line-height: 1.2;
	color: #264090;
}

.card-tab__slide__card--price {
	font-weight: 700;
	font-size: 22px;
	font-size: clamp(1.25rem, 4vw, 1.375rem);
	line-height: 1.45;
	color: #264090;
}

.card-tab__slide__card--tagline {
	font-weight: 500;
	font-size: 16px;
	font-size: clamp(0.9rem, 4vw, 1rem);
	line-height: 1.5;
	color: #777;
}

.card-tab__slide__card--button {
	background-color: #fff;
	padding: 1rem;
	margin-top: auto;
}

.news-blocks {
	color: #fff;
}

.contact-interupt h2,
.news-blocks .showstopper {
	color: var(--yellow, #fbd900);
}

.news-blocks__columns {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: space-between;
	--margin: 1rem;
	--modifier: calc(56rem - 100%);
	margin: calc(var(--margin) * -1);
}

@media (max-width: 50em) {
	.news-blocks__columns {
		--margin: 0.5rem;
		--modifier: calc(56rem - 100%);
		margin: calc(var(--margin) * -1);
	}
}

.news-blocks__columns > * {
	flex-grow: 1;
	flex-basis: calc(var(--modifier) * 999);
	margin: var(--margin);
}

.news-blocks__columns img {
	border-radius: 3px;
}

.features-columns__columns,
.news-blocks__card {
	display: flex;
	flex-wrap: wrap;
}

.news-blocks__card a.img {
	width: 100%;
	display: block;
	vertical-align: bottom;
}

.news-blocks__card a.img img {
	vertical-align: bottom;
}

.news-blocks__card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	margin-bottom: 1rem;
}

.news-blocks__card h3 {
	font-size: 30px;
	line-height: 38px;
	color: #fff;
	margin: 0;
}

.news-blocks__card p {
	font-weight: 300;
	font-size: 25px;
	line-height: 33px;
	color: var(--yellow, #fbd900);
	padding-top: 0;
	margin-top: 0;
	margin-bottom: 3rem;
}

.news-blocks__card .button {
	margin-top: auto;
}

.features-columns__columns {
	gap: 2rem;
}

.features-columns__column {
	flex-grow: 1;
	flex-basis: 330px;
	margin: 0;
	padding: 0;
}

.features-columns__icon {
	width: 92px;
	height: 92px;
	object-position: top;
	object-fit: contain;
}

.case-study-card p,
.features-columns h3,
.features-list h3 {
	font-weight: 700;
	font-size: 30px;
	line-height: 30px;
	margin-bottom: 1rem;
	color: #264090;
}

.features-list__columns {
	display: flex;
	flex-wrap: wrap;
	--modifier: calc(56rem - 50%);
	margin: calc(var(--margin) * -1);
}

.features-list::before {
	content: attr(data-columns);
}

.features-list__column {
	flex-grow: 2;
	flex-basis: calc(var(--modifier) * 999);
	margin: var(--margin);
	padding: 0 1rem;
	margin-bottom: 2rem;
	display: flow-root;
	max-width: 49%;
	position: relative;
	padding-left: calc(60px + 2rem);
}

.features-list__icon {
	position: absolute;
	left: 0;
	top: 5px;
	width: 60px;
	height: 100%;
	object-position: top;
	object-fit: contain;
}

.case-study-card p,
.features-list h3 {
	font-weight: 300;
	font-size: 25px;
}

.customers-case-studies h1 {
	margin: 3rem auto;
	text-align: center;
}

.case-studies {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
	grid-gap: 2.5rem 2rem;
	padding: 2rem 0;
}

@media (min-width: 60em) {
	.case-studies {
		grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
	}
}

.case-study-card img {
	width: 100%;
	height: auto;
}

.case-study-card .case-study-card__title {
	font-weight: 700;
	font-size: 30px;
	line-height: 38px;
	color: #264090;
}

.case-study-card p {
	line-height: 33px;
	color: #777;
	margin-bottom: 2rem;
}

.pagination {
	list-style: none;
	padding: 2rem 0;
}

.pagination,
.pagination li,
label {
	display: inline-block;
}

.pagination li a {
	color: #264090;
	font-weight: 600;
	text-decoration: none;
	display: block;
	height: 15px;
	vertical-align: middle;
}

.pagination li.current a {
	color: #fad800;
}

.faq {
	list-style: none;
	padding: 0;
}

.faq-block {
	margin-top: 2rem;
	margin-bottom: 2rem;
	position: relative;
}

.faq-question {
	background-color: #264090;
	color: var(--yellow, #fbd900);
	font-weight: 300;
}

.faq-question::before {
	content: 'Q.';
}

.faq-answer {
	background-color: #f6f6f6;
}

.faq-answer::before {
	content: 'A.';
}

.faq-answer,
.faq-question {
	padding: 1.2rem 6rem;
}

.faq-answer::before,
.faq-question::before {
	left: 2.5rem;
	position: absolute;
}

.contact-interupt .constraint {
	text-align: center;
	max-width: 48rem;
}

.contact-interupt .constraint p {
	color: #fff;
	font-size: 1.375rem;
	font-weight: 600;
}

.contact-interupt .constraint .button {
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.contact-form {
	background-color: #fff;
	box-shadow: 0 0 30px #c7c7c7;
	border-radius: 7px;
	padding: calc(50rem / 16);
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 5rem;
	align-items: center;
	justify-content: space-between;
}

.contact-grid button {
	background-color: #fff;
	display: block;
	width: 100%;
}

label {
	margin-bottom: 1rem;
	font-weight: 700;
	font-size: 16px;
	line-height: 21px;
	color: #264090;
}

input:not([type='checkbox']):not([type='file']):not([type='radio']):not([type='submit']),
textarea {
	width: 100%;
	padding: 1em;
	display: block;
	background: #fff;
	border: 1px solid #264090;
	box-sizing: border-box;
	border-radius: 5px;
	margin-bottom: 1rem;
	font-size: 16px;
}

select {
	display: block;
	font-size: 16px;
	line-height: 1.3;
	padding: 0.9rem 3.5em 0.9rem 1em;
	width: 100%;
	max-width: 100%;
	min-width: 230px;
	box-sizing: border-box;
	margin: 0;
	border: 1px solid #264090;
	border-radius: 5px;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: #fff;
	background-image: url("data:image/svg+xml,%3Csvg width='55' height='56' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fff' d='M1.63281.526855h52.9658v55H1.63281z'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1.59863.526855V55.5269H.598633V.526855h.999997zM19.5986 24.5206c0-.1584.067-.3168.2009-.4374.2677-.2417.7018-.2417.9696-.0002l7.256 6.5469 6.3734-6.5187c.2507-.2561.6839-.2807.9677-.0546.2846.226.3113.6173.0608.8734l-6.8563 7.0124c-.1253.1281-.3036.2038-.4928.2092-.1893.0053-.3724-.0601-.5063-.1809l-7.7721-7.0124c-.1339-.1209-.2009-.2793-.2009-.4377z' fill='%23264090'/%3E%3C/svg%3E");
	background-position:
		right 0 top 50%,
		0 0;
	background-repeat: no-repeat;
	background-size:
		2.75em auto,
		100%;
}

select::-ms-expand {
	display: none;
}

select:hover {
	border-color: #888;
}

select:focus {
	border-color: #264090;
	box-shadow: 0 0 1px 3px rgba(59, 153, 252, 0.7);
	box-shadow: 0 0 0 3px -moz-mac-focusring;
	color: #222;
	outline: 0;
}

select option {
	font-weight: 400;
}

select:disabled,
select[aria-disabled='true'] {
	color: graytext;
}

select:disabled:hover,
select[aria-disabled='true'] {
	border-color: #aaa;
}

.button.small {
	width: auto;
}

/* Pain Points Table */
.pain-points-table {
	margin: 2rem 0;
	overflow-x: auto;
}

.pain-points-table table {
	width: 100%;
	margin: 0 auto;
	max-width: 800px;
}

.pain-points-table th {
	background-color: var(--blue);
	color: white;
	font-weight: 700;
	padding: 1rem;
}

.pain-points-table td {
	padding: 1rem;
	vertical-align: top;
}

/* Process Steps */
.process-steps {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: center;
	margin: 3rem 0;
}

.process-step {
	text-align: center;
	flex: 1;
	min-width: 200px;
	max-width: 250px;
}

.process-step h3 {
	font-size: 1.1rem;
	line-height: 1.3;
	margin-bottom: 0.5rem;
}

.step-number {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: var(--yellow);
	color: var(--blue);
	font-size: 24px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
}

/* Testimonials */
.testimonials {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	margin: 2rem 0;
}

.testimonial {
	flex: 1;
	min-width: 300px;
	background-color: rgba(255, 255, 255, 0.1);
	padding: 2rem;
	border-radius: 8px;
	border-left: 4px solid var(--yellow);
}

.testimonial p {
	font-style: italic;
	font-size: 1.1rem;
	margin-bottom: 1rem;
	color: white;
}

.testimonial cite {
	color: var(--yellow);
	font-weight: 600;
}

/* Services Grid */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin: 2rem 0;
}

.service-item {
	padding: 1.5rem;
	border: 2px solid var(--blue);
	border-radius: 8px;
}

.service-item h3 {
	margin-bottom: 1rem;
}

/* Newsletter Signup */
.login-columns {
	display: grid;
	grid-gap: 2rem;
	align-items: flex-start;
	justify-content: space-between;
}

@media (min-width: 60em) {
	.login-columns {
		padding-top: 10rem;
		grid-template-columns: 1fr 1fr 1fr;
	}
}

.login-columns img {
	max-width: 100%;
}

.login-columns div:nth-of-type(1) {
	align-self: flex-start;
}

.login-columns div:nth-of-type(2) {
	align-self: center;
}

.login-columns div:nth-of-type(3) {
	align-self: flex-end;
}

.login-columns .bulb-background {
	width: 100%;
	height: 100%;
	background-size: 110%;
	background-repeat: no-repeat;
	background-position: left top;
}

.account {
	--gap: 2rem;
	--sidebar: 15.625rem;
	margin-top: 2rem;
	padding-bottom: 2rem;
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap);
}

.account-sidebar {
	flex-basis: 100%;
}

@media (min-width: 60em) {
	.account-sidebar {
		flex-basis: var(--sidebar);
	}

	.account-content {
		flex-basis: calc(100% - calc(var(--sidebar) + var(--gap)));
	}
}

.account-sidebar {
	background: linear-gradient(315deg, #264090 0, #22264f 100%);
	border-radius: 5px;
	text-align: center;
	padding: 1.5rem;
}

.account-sidebar * {
	margin-bottom: 1rem;
}

.account-sidebar__avatar {
	border-radius: 100rem;
}

.account-sidebar__name {
	display: block;
	font-weight: 700;
	font-size: 22px;
	line-height: 32px;
	color: var(--yellow, #fbd900);
}

.account-sidebar__email {
	display: block;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #777;
}

.account-sidebar__pagelist {
	text-align: left;
	list-style: none;
	margin: 0;
	padding: 0;
}

.account-sidebar__pagelist a {
	font-weight: 800;
	font-size: 17px;
	line-height: 14px;
	color: #fff;
	text-decoration: none;
}

.account-sidebar__pagelist a svg {
	display: inline-block;
	vertical-align: text-top;
	margin-right: 1rem;
}

.account-content {
	background-color: #f6f6f6;
	border-radius: 5px;
	padding: 1.5rem;
}

.account-settings-form {
	display: flex;
	flex-wrap: wrap;
}

.account-settings-form__section {
	margin-bottom: 3rem;
}

.account-settings-form__section h3,
.account-settings-form__section p {
	margin-bottom: 1rem;
	flex: 1 1 auto;
}

.account form {
	position: relative;
}

.account .save-form {
	position: absolute;
	top: 1rem;
	right: 1rem;
	display: inline-block;
	width: auto;
}

.form-columns {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
}

.align-top {
	align-items: flex-start;
}

.align-center {
	align-items: center;
}

.image-upload {
	font-size: 1.25em;
	font-weight: 700;
	white-space: nowrap;
	border-radius: 5px;
	display: inline-block;
	cursor: pointer;
}

.image-upload input[type='file'] {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}

.image-upload input[type='file'] + label:hover,
.image-upload input[type='file']:focus + label {
	background-color: #264090;
	color: #fff;
}

p {
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.5;
	color: #777;
}

ul.highlighted {
	margin: 1rem 0;
	list-style: none;
	font-weight: 700;
	color: #264090;
}

ul.highlighted li:before {
	content: '+';
	color: var(--yellow, #fbd900);
	margin-right: 0.5rem;
}

/* Mobile overrides for diagonal sections - MUST be at end of file to override base rules */
@media (max-width: 60em) {
	/* Reduce cross-section overlap on mobile */
	.has-diagonal,
	.no-diagonal {
		margin-top: calc(var(--distance) * -0.25);
		margin-bottom: calc(var(--distance) * -0.25);
	}

	/* Add breathing room for headings under diagonal wedges */
	.has-diagonal .constraint h1,
	.has-diagonal .constraint .showstopper {
		margin-top: clamp(0.75rem, 2.5vw, 1.25rem);
	}

	/* Raise default headroom for every diagonal section with viewport-adaptive padding */
	.has-diagonal .constraint {
		padding-top: calc(var(--distance) * 2.5 + 1.5vw);
	}

	/* Fine-tune cases that need more padding */
	.has-diagonal.inverted .constraint,
	.has-diagonal.overlap-inverted .constraint {
		padding-top: calc(var(--distance) * 3.4 + 2.5vw);
	}

	.has-diagonal.t-blue .constraint {
		padding-top: calc(var(--distance) * 3.6 + 3vw);
	}

	/* Reduce pseudo-element intrusion on mobile */
	.has-diagonal::before {
		top: -6%;
		height: 118%;
	}

	.has-diagonal.inverted::before,
	.has-diagonal.overlap-inverted::before {
		top: -10%;
		height: 118%;
	}

	/* Targeted fix for blue-to-white-inverted seam (Core Services after What Our Clients Say) */
	.t-blue.has-diagonal + .t-white.has-diagonal.inverted {
		margin-top: calc(var(--distance) * -0.15);
	}

	.t-blue.has-diagonal + .t-white.has-diagonal.inverted .constraint {
		padding-top: calc(var(--distance) * 4 + 3.5vw);
	}

	.t-blue.has-diagonal + .t-white.has-diagonal.inverted .constraint .showstopper,
	.t-blue.has-diagonal + .t-white.has-diagonal.inverted .constraint h1 {
		margin-top: clamp(1rem, 3vw, 1.5rem);
	}

	/* Targeted fix for grey-to-blue seam (How We Work → What Our Clients Say) */
	.t-grey.has-diagonal + .t-blue.has-diagonal {
		margin-top: calc(var(--distance) * -0.15);
	}

	.t-grey.has-diagonal + .t-blue.has-diagonal .constraint {
		padding-top: calc(var(--distance) * 4.2 + 4vw);
	}

	.t-grey.has-diagonal + .t-blue.has-diagonal .constraint .showstopper,
	.t-grey.has-diagonal + .t-blue.has-diagonal .constraint h1 {
		margin-top: clamp(1.25rem, 3.5vw, 2rem);
	}
}

/* Safari/iOS-specific fixes for diagonal section overlaps */
@supports (-webkit-touch-callout: none) {
	/* Add webkit prefix for clip-path to ensure consistent rendering on iOS */
	.has-diagonal::before {
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - var(--distance)));
	}

	.has-diagonal.inverted::before,
	.has-diagonal.overlap-inverted::before {
		-webkit-clip-path: polygon(0 0, 100% 0%, 100% calc(95% - var(--distance)), 0 100%);
	}

	.no-diagonal::before {
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - var(--distance)));
	}

	.no-diagonal.inverted::before {
		-webkit-clip-path: polygon(0 0, 100% 0%, 100% calc(95% - var(--distance)), 0 100%);
	}

	/* iOS-specific fix for grey section wedge covering blue section title */
	@media (max-width: 60em) {
		.t-grey.has-diagonal::before {
			top: -5%;
			height: 114%;
		}

		.t-grey.has-diagonal + .t-blue.has-diagonal .constraint {
			padding-top: calc(var(--distance) * 4.8 + 4.5vw);
		}

		.t-grey.has-diagonal + .t-blue.has-diagonal .constraint .showstopper,
		.t-grey.has-diagonal + .t-blue.has-diagonal .constraint h1 {
			margin-top: clamp(1.5rem, 4vw, 2.25rem);
		}
	}
}
