:root
{
	--font-min: 20px;
}

*
{
	box-sizing: border-box;
}

html, 
body
{
	margin: 0;
	padding: 0;
	border: 0;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
}
main
{
	width: 100%;
}
html
{
	font-size: clamp(13px, calc(min(100vw, 100vh)*0.04), 16px);
}

.fa-svg
{
	/* Inherit the font size of the parent element */
	height: 1em;
	width: 1em;

	/* Align the SVG horizontally and vertically within the text flow */
	vertical-align: -0.125em;

	/* Fill the SVG with the current text color */
	fill: currentColor;
}

.icon
{
	display: inline-flex;
	align-items: center;
	font-weight: inherit;
	font-size: inherit;
}
.icon-big
{
	display: inline-flex;
	align-items: center;
	margin: 10px;
	font-weight: inherit;
	font-size: 4rem;
}

body
{
	font-family: Calibri, "Helvetica Neue", Arial, sans-serif;
	font-weight: 400;
	font-size: max(var(--font-min), clamp(1.2rem, calc(min(100vw, 100vh)*0.1), 1.8rem));
}

.normal
{
	font-family: Calibri, "Helvetica Neue", Arial, sans-serif;
	font-weight: 400;
}

.light
{
	font-family: "Calibri Light", Calibri, "Helvetica Neue", Arial, sans-serif;
	font-weight: 300;
}

strong
{
	font-weight: 900 !important;
}

.font-45
{
	font-size: max(var(--font-min), 2.7rem);
	font-size: max(var(--font-min), clamp(2.1rem, calc(min(100vw, 100vh)*0.1), 2.7rem));
}
.font-36
{
	font-size: max(var(--font-min), clamp(1.6rem, calc(min(100vw, 100vh)*0.1), 2.2rem));
}
.font-30
{
	font-size: max(var(--font-min), clamp(1.2rem, calc(min(100vw, 100vh)*0.1), 1.8rem));
}

.highlight-block
{
	position: relative;
	padding-left: calc(2.5rem + 5px);
}

.highlight-block::before
{
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 15px;
	height: calc(100% - 45px);
	background: red;
	border-radius: 9999px;
}

table, 
table td
{
	line-height: inherit;
	font-family: inherit;
	font-weight: inherit;
	font-size: inherit;
}

a, a:focus, a:visited
{
	color: red;
}

h1, h2, h3, p
{
	margin: 0;
	padding: 0;
	font-size: inherit;
	line-height: 1.2;
}

h1
{
	margin: 2.5rem 0 1.25rem;
	font-size: max(var(--font-min), clamp(2.5rem, calc(min(100vw, 100vh)*0.1), 5rem));
}
h2
{
	margin: 1.25rem 0 0.75rem;
}
h3, p
{
	margin: 0.75rem 0 0.75rem;
}

section
{
	margin-top: 100px;
	padding-left: 20px;
	padding-right: 20px;
}

ul
{
	list-style: disc;
	padding-left: 1.2rem;
	margin: 0;
}
ul li::marker
{
	content: "∙"; /* U+2219 BULLET OPERATOR – smaller than • */
	font-size: max(var(--font-min), 1em); /* don’t shrink; keeps baseline alignment */
	font-weight: 900;
}
ul li
{
	padding-left: 0.75rem;
}

input, 
select, 
select option, 
textarea, 
button, 
.button
{
	display: inline-box;
	margin: 0;
	padding: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	border: 0;
}

label
{
	position: relative;
	display: block;
	margin-top: 1rem;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1;
}
label:before
{
	content: "*";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(-110%, calc(-50% + 0.5rem));
	font-size: 3rem;
	line-height: 1;
	color: #aaa;
}
label.required:before
{
	color: red;
}
input, 
select, 
select option, 
textarea
{
	width: 100%;
	padding: 8px;
	margin-top: 4px;
	border: 1px solid #000;
}
select option
{
	color: #fff;
	background: #000;
}
button, 
.button
{
	margin-top: 1.5rem;
	padding: 10px 20px;
	cursor: pointer;
	color: #fff;
	background: #000;
	border-radius: 9999px;
}
.button
{
	text-decoration: none;
}
.button, .button:focus, .button:visited
{
	color: #fff;
}

nav, 
.nav
{
	display: flex;
	flex-direction: row;
	gap: 2rem;
	align-items: center;
	justify-content: center;
	padding: 20px;
	width: 100%;
	height: auto;
}

nav a, 
nav a:focus, 
nav a:visited, 
.nav a, 
.nav a:focus, 
.nav a:visited
{
	text-decoration: none;
	color: #000;
}

.nav
{
	margin: 0 auto;
	max-width: 640px;
	font-size: 1.2rem;
	color: #fff;
	background: #000;
	border-top-left-radius: 9999px;
	border-bottom-right-radius: 4999px;
	border-top-right-radius: 4999px;
}
.nav a, 
.nav a:focus, 
.nav a:visited
{
	color: #fff;
}

nav a.current, 
nav a.current:focus, 
nav a.current:visited
{
	color: #888;
}
.nav a.current, 
.nav a.current:focus, 
.nav a.current:visited
{
	color: #888;
}

@media (max-width: 768px)
{
	nav
	{
		flex-wrap: wrap;
		gap: 0.5rem 1.5rem;
		height: auto;
	}
	.nav
	{
		flex-direction: column;
		height: auto;
		border-radius: 50px;
		border-bottom-left-radius: 0;
	}
}
@media (max-width: 400px)
{
	nav
	{
		font-size: 1.4rem;
	}
	
	.nav
	{
		flex-direction: column;
		height: auto;
		border-radius: 0;
	}
}

.footer-logo
{
	position: relative;
	display: block;
	width: 100%;
	height: 240px;
}

.footer-logo svg
{
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translate(-50%, 0);
	width: 640px;
	pointer-events: none;
}

.footer-logo img
{
	position: absolute;
	left: 50%;
	bottom: 20px;
	transform: translate(-50%, 0);
	width: 130px;
}

footer
{
	padding: 20px;
	padding-top: 50px;
	text-align: center;
	font-size: 1.25rem;
}

.hero
{
	position: relative;
	width: 100%;
	height: 100vh;
	display: block;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

.hero .bg
{
	width: 100%;
	height: 100%;
	display: block;
}

.hero h1
{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, calc(-50% - 40px));
	display: block;
	margin: 0;
	padding: 0;
	width: calc(min(1000px, 100% - 40px));
	text-align: center;
	color: white;
	font-size: max(var(--font-min), clamp(2.5rem, calc(min(100vw, 100vh)*0.1), 5rem));
}

.hero img
{
	position: absolute;
	left: 50%;
	bottom: 50px;
	transform: translate(-50%, -50%);
	width: clamp(150px, 100vw*0.4, 250px);
}

.hero nav
{
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%, 0);
	color: #fff;
}
.hero nav a, 
.hero nav a:focus, 
.hero nav a:visited
{
	color: #fff;
}

#slide3
{
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: flex-start;
}
@media (min-width: 769px)
{
	#slide3
	{
		flex-direction: row-reverse;
		align-items: center;
	}
}
@media (max-width: 768px)
{
	#slide3
	{
		flex-direction: column;
		align-items: flex-start;
	}
}

#slide3 .text
{
	flex: 1 1 300px;
}
@media (min-width: 769px)
{
	#slide3 .text
	{
		padding-left: 2.5rem;
	}
}

#slide3 .images
{
	display: flex;
	flex-direction: column;
	flex: 1 1 300px;
	gap: 1rem;
}

#slide3 .images img
{
	width: 100%;
	height: auto;
}

.process-slide
{
	display: grid;
	grid-template-columns: repeat(2, minmax(250px, 1fr));
	grid-template-areas:
		"box1 box2"
		"logo logo"
		"box3 box4";
	gap: 1.5rem;
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem;
}

.process-slide .box
{
	background: black;
	color: white;
	padding: 1.5rem;
}

.process-slide > :nth-child(1)
{
	grid-area: box1;
	
	border-top-left-radius: 2.5rem;
}
.process-slide > :nth-child(2)
{
	grid-area: box2;
	
	border-top-right-radius: 2.5rem;
}
.process-slide > :nth-child(3)
{
	grid-area: logo;
	
	background: red;
	color: white;
	font-weight: bold;
	padding: 1rem 2rem;
	text-align: center;
	justify-self: center; /* prevent logo from stretching */
	align-self: center;
	width: calc(min(200px, 50%));
}
.process-slide > :nth-child(3) > img
{
	width: 100%;
}
.process-slide > :nth-child(4)
{
	grid-area: box3;
	
	border-bottom-left-radius: 2.5rem;
}
.process-slide > :nth-child(5)
{
	grid-area: box4;
	
	border-bottom-right-radius: 2.5rem;
}

@media (max-width: 768px)
{
	.process-slide
	{
		grid-template-columns: 1fr;
		grid-template-areas:
			"box1"
			"box2"
			"logo"
			"box3"
			"box4";
	}
	
	.process-slide > :nth-child(1), 
	.process-slide > :nth-child(2), 
	.process-slide > :nth-child(3), 
	.process-slide > :nth-child(4), 
	.process-slide > :nth-child(5)
	{
		border-radius: 0;
	}
}

.proof-slide
{
	display: grid;
	grid-template-columns: repeat(2, minmax(280px, 1fr));
	gap: 1.5rem;
	max-width: 1200px; /* keep it neat, like PPT */
	margin: 0 auto;
	padding: 1rem;
}

.proof-box h3
{
	margin-top: 0;
	margin-bottom: 0;
	padding: 0.75rem 0.75rem 0.75rem 1.5rem;
	color: white;
	background: black;
}

.proof-slide > :nth-child(1) > h3, 
.proof-slide > :nth-child(3) > h3
{
	border-top-left-radius: 2.5rem;
}
.proof-slide > :nth-child(2) > h3, 
.proof-slide > :nth-child(4) > h3
{
	border-bottom-right-radius: 2.5rem;
}

.proof-box
{
	border-radius: 1rem;
}

.proof-box > div
{
	padding-left: 1.5rem;
}

.proof-box p
{
	margin: 0.5rem 0;
}

@media (max-width: 768px)
{
	.proof-slide
	{
		grid-template-columns: 1fr;
	}
	
	.proof-slide > :nth-child(1) > h3, 
	.proof-slide > :nth-child(2) > h3, 
	.proof-slide > :nth-child(3) > h3, 
	.proof-slide > :nth-child(4) > h3
	{
		border-radius: 0;
	}
}

.dual-engine
{
	display: grid;
	grid-template-columns: repeat(2, minmax(280px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem;
	align-items: start;
}

.dual-engine .column
{
	text-align: left;
}

.dual-engine .center
{
	display: block;
	text-align: center;
}

.dual-engine .logo
{
	max-width: 180px;
	height: auto;
	margin-bottom: 1rem;
}

.dual-engine h3
{
	margin-top: 0;
	margin-bottom: 1rem;
}

.dual-engine ul
{
	padding-left: 1.2rem;
	margin: 0;
}

.dual-engine li
{
	margin-bottom: 0.5rem;
}

@media (max-width: 768px)
{
	.dual-engine
	{
		grid-template-columns: 1fr;
	}
}
@media (min-width: 769px)
{
	.dual-engine .center
	{
		display: flex;
		align-items: center;
		justify-content: center;
		height: 60px;
	}
}

@media (max-width: 768px)
{
	.dual-engine-black-mobile
	{
		display: flex;
		flex-direction: column;
		gap: 1rem;
		width: 100%;
		padding: 2.0rem 0;
		font-size: max(var(--font-min), 1.8rem);
		color: white;
		background: black;
	}

	.dual-engine-black-mobile > div
	{
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 1rem;
		width: 100%;
	}

	.dual-engine-black-mobile > div:nth-child(1) img
	{
		height: 2.5rem;
	}
	.dual-engine-black-mobile > div:nth-child(2) img
	{
		height: 2.5rem;
	}
	.dual-engine-black
	{
		display: none;
	}
}
@media (min-width: 769px)
{
	.dual-engine-black-mobile
	{
		display: none;
	}
	.dual-engine-black
	{
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 1rem;
		padding: 2.0rem 0;
		width: 100%;
		font-size: max(var(--font-min), 1.8rem);
		color: white;
		background: black;
	}

	.dual-engine-black > :nth-child(1)
	{
		height: 2.5rem;
	}
	.dual-engine-black > :nth-child(2)
	{
		height: 1.8rem;
	}
	.dual-engine-black > :nth-child(3)
	{
		height: 2.5rem;
	}
}

.video-container
{
	max-width: 100%;
	aspect-ratio: 16 / 9; /* keeps YouTube aspect */
	position: relative;
}

.video-container iframe
{
	width: 100%;
	height: 100%;
	border: 0;
}

.investment-table
{
	display: grid;
	grid-template-columns: 1fr 2fr 2fr 1fr 1fr;
	max-width: 100%;
}

.investment-table .header
{
	background: black;
	color: white;
	font-size: max(var(--font-min), 1.5rem);
	font-weight: bold;
	padding: 0.75rem;
}

.investment-table .cell
{
	font-size: max(var(--font-min), 1.5rem);
	background: white;
	padding: 0.75rem;
}

.investment-table .label
{
	display: none;
	font-weight: bold;
	color: black !important;
}

.investment-table h3.cell
{
	margin: 0;
}

/* Alternating row backgrounds – desktop only */
@media (min-width: 769px)
{
	.investment-table .cell:nth-child(10n+6),
	.investment-table .cell:nth-child(10n+7),
	.investment-table .cell:nth-child(10n+8),
	.investment-table .cell:nth-child(10n+9),
	.investment-table .cell:nth-child(10n+10)
	{
		background: #f7f7f7;
	}
}

.investment-table .highlight
{
	color: red;
	font-weight: bold;
}

@media (max-width: 768px)
{
	.investment-table
	{
		display: block;
	}

	.investment-table .header
	{
		display: none;
	}

	.investment-table .cell
	{
		display: block;
		width: 100%;
		border: none;
		background: white;
		padding: 0.5rem 0;
	}

	.investment-table .label
	{
		display: block;
	}

	.investment-table h3.cell
	{
		margin: 2rem 0 1rem;
		font-size: max(var(--font-min), 2rem);
	}
}

.options
{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	max-width: 1200px;
	margin: 0 auto;
}

.option
{
	overflow: hidden;
	padding: 1rem;
}

.option h3
{
	margin: -1rem -1rem 1rem -1rem;  /* stretch to edges */
	padding: 0.75rem 1.5rem;
	color: white;
}

.option-a h3 {background: black; border-top-left-radius: 2.0rem;}
.option-b h3 {background: red;}
.option-c h3 {background: #555; border-bottom-right-radius: 2.0rem;}

.option p
{
	margin: 0.5rem 0;
	padding: 0 0.5rem;
}

@media (max-width: 900px)
{
	.options
	{
		grid-template-columns: 1fr;
	}
}

.badge
{
	display: flex;
	align-items: center;
	justify-content: left;
	gap: 1rem;
}
@media (max-width: 600px)
{
	.badge
	{
		flex-direction: column;
		justify-content: center;
		text-align: center;
	}
}

.inception
{
	width: 200px;
}
.uk
{
	width: 200px;
}

header
{
	position: relative;
	display: block;
	margin: 0 auto;
	max-width: 280px;
	height: 80px;
	background: #000;
	border-bottom-left-radius: 50px;
	border-bottom-right-radius: 50px;
}

header img
{
	position: absolute;
	left: 50%;
	bottom: 20px;
	transform: translate(-50%, 0);
	width: 130px;
}

.schedule
{
	display: inline-block;
	margin: 2.5rem 0;
	text-decoration: none;
	padding: 0.75rem 2.5rem;
	font-weight: bold;
	color: white;
	background: black;
	border-radius: 9999px;
}
.schedule, 
.schedule:visited, 
.schedule:active
{
	color: white;
}

#slide14
{
	text-align: center;
}

#contact h2
{
	margin-top: 100px;
}

#contact .badges
{
	display: flex;
	flex-direction: row;
	align-items: center;
	flex-wrap: wrap;
}
#contact .badges img
{
	width: 301px;
}

#contact .social
{
	display: flex;
	flex-direction: row;
	align-items: center;
}
#contact .social a
{
	text-decoration: none;
}

#contact .person > span
{
	display: flex;
	flex-direction: row;
	align-items: center;
}

#contact div.social
{
	display: block;
	margin-top: 100px;
	width: 100%;
	text-align: center;
}

#cookie-banner
{
	z-index: 9999;
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #333;
	color: #fff;
	padding: 15px;
	text-align: center;
	opacity: 0.95;
	font-size: 1.6rem;
}
#cookie-banner button
{
	width: 140px;
	color: #000;
	background: #fff;
}

/* studies */

.custom-table {
	width: 100%;
	border-collapse: collapse;
	overflow: hidden;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	border-radius: 0.75rem; /* rounded-xl */
	font-size: max(var(--font-min), clamp(1.0rem, calc(min(100vw, 100vh)*0.1), 1.6rem));
	overflow-wrap: anywhere;
	hyphens: auto;
}

.custom-table th, .custom-table td {
	padding: 1rem 1.5rem; /* p-4 md:p-6 */
	text-align: left;
	border-bottom: 1px solid #e5e5e5; /* border-gray-200 */
}

.custom-table th {
	background-color: #f9f9f9; /* bg-gray-50 */
	color: #000;
	font-weight: 600; /* font-semibold */
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.custom-table tbody tr:last-child td {
	border-bottom: none;
}

.category-cell {
	font-weight: 700;
	color: #000;
	background-color: #f9f9f9;
	vertical-align: top;
	width: 15%;
}

.pain-points-cell ul, .gains-cell ul {
	list-style-position: outside;
	padding-left: 1.25rem; /* Ensures bullets don't hug the edge */
	margin: 0;
}

.pain-points-cell li, .gains-cell li {
	margin-bottom: 0.5rem;
}

.pain-points-cell li:last-child, .gains-cell li:last-child {
	margin-bottom: 0;
}

@media (max-width: 768px) {
	.custom-table thead {
		display: none; /* Hide table headers on mobile */
	}

	.custom-table tbody, .custom-table tr, .custom-table td {
		display: block;
		width: 100%;
	}

	.custom-table tr {
		margin-bottom: 1.5rem; /* space-y-6 equivalent */
		border-radius: 0.5rem;
		overflow: hidden;
	}

	.custom-table td {
		border: none;
		border-bottom: 1px solid #e5e5e5;
		padding-left: 1rem; /* Added padding to prevent text touching the edge */
		position: relative;
	}
	
	.custom-table tr td:last-child {
		border-bottom: none;
	}

	.category-cell {
		width: auto;
		font-weight: 700;
		background-color: #000; /* bg-gray-700 */
		color: white;
		/*border-bottom: 1px solid #444;*/
	}

	/* Add labels before the content for context */
	.pain-points-cell:before, .solution-cell:before, .gains-cell:before {
		content: attr(data-label);
		display: block;
		font-weight: 600;
		color: #000;
		margin-bottom: 0.5rem;
	}

	.pain-points-cell ul, .gains-cell ul {
		padding-left: 1.25rem; /* Adjusted padding specifically for the list */
	}
}

.stand-out
{
	padding: 5px 20px;
	border-radius: 9999px;
}
.stand-out, 
.schedule
{
	color: #fff !important;
	background: rgb(10, 50, 255);
}
