:root
{
	--font-min: 20px;
	--brand: #FF6B00;
	--grey: #F2F2F2;
	--grey-dark: #303030;
	--grey-dark2: #404040;
	--grey-light: #f8f8f8;
	--stand-out: #FF6B00;
}

*
{
	box-sizing: border-box !important;
}

html, 
body
{
	margin: 0;
	padding: 0;
	border: 0;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}
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: var(--brand-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: var(--brand-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: var(--brand-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;
}

.ux-button
{
	display: block;
	margin: 0 auto;
	width: 5rem;
	height: 5rem;
}

/* ========================================= */
/* UX BUTTON ANIMATIONS                      */
/* ========================================= */

/* 1. The Asymmetric Heartbeat (with 0.5s pause) */
@keyframes pulse-grow {
	0% { transform: scale(1); animation-timing-function: ease-out; }
	16.66% { transform: scale(1.15); animation-timing-function: ease-in-out; }
	66.66% { transform: scale(1); }
	100% { transform: scale(1); }
}

/* 2. Target the button ONLY when closed */
div[data-ux-level="0"] .ux-button {
	animation: pulse-grow 1.5s infinite; 
	transform-origin: center center; 
}

/* 3. Kill the animation instantly when opened */
div[data-ux-level="1"] .ux-button {
	animation: none;
	transform: scale(1); 
}

/* ========================================= */
/* NAVIGATION STYLES (Desktop & Mobile)      */
/* ========================================= */

/* 1. Global Nav Layout */
nav, .nav {
	display: flex;
	flex-wrap: wrap; 
	align-items: center;
	justify-content: center;
	gap: 2rem;
	padding: 20px;
	width: 100%;
	height: auto;
	z-index: 100; /* Ensure it stays above hero SVG */
}

/* 2. Specific Nav Containers */
.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;
}

.hero nav {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%, 0);
}

/* 3. Link Colors */
nav a, nav a:focus, nav a:visited {
	text-decoration: none;
	color: #000;
}

.nav a, .nav a:focus, .nav a:visited,
.hero nav a, .hero nav a:focus, .hero nav a:visited {
	color: #fff;
	text-decoration: none;
}

nav a.current, nav a.current:focus, nav a.current:visited,
.nav a.current, .nav a.current:focus, .nav a.current:visited {
	color: #888;
}

/* 4. Dropdown & Hamburger Specifics (Desktop) */
.hamburger { 
	display: none; 
	background: transparent; 
	border: none; 
	cursor: pointer; 
	padding: 5px; 
}

.hamburger svg { fill: #000; }
.hero nav .hamburger svg, .nav .hamburger svg { fill: #fff; }

.nav-links { 
	display: flex; 
	flex-direction: row; 
	align-items: center; 
	gap: 2rem; 
}

.nav-dropdown { 
	position: relative; 
	display: flex; 
	align-items: center; 
	cursor: pointer;
}

.nav-indicator {
	font-size: 0.7em;
	margin-left: 5px;
	transition: opacity 0.2s;
}

.nav-subpages {
	display: none;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	background: #000; 
	padding: 10px 0;
	border-radius: 15px;
	min-width: 220px;
	z-index: 1000;
	box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.nav-subpages a { 
	display: block; 
	padding: 12px 20px !important; 
	white-space: nowrap; 
	color: #fff !important; 
}

/* Active sub-page highlight in Desktop Dropdown */
.nav-subpages a.current {
	background-color: rgb(70, 70, 70);
}

.nav-dropdown.expanded .nav-subpages { 
	display: flex; 
	flex-direction: column; 
}

.nav-dropdown.expanded .nav-indicator { 
	opacity: 0; 
}

/* --- Swap Home Icon for Logo on Mobile --- */
.mobile-nav-logo {
	display: none;
}

@media (max-width: 768px) {
	/* Nuke the big 80px top header block completely */
	.desktop-header {
		display: none !important;
	}

	nav, .nav { 
		position: relative; /* Anchors the absolutely positioned logo */
		justify-content: flex-start; /* Items start from the left */
		align-items: center; 
		background: #000; 
		border-radius: 30px;
		border-bottom-left-radius: 0;
		color: #fff;
	}
	
	/* ABSOLUTE CENTERING: Ignored by flexbox, always dead center */
	.mobile-nav-logo {
		display: block;
		position: absolute;
		left: 50%;
		top: 24px;
		transform: translateX(-50%);
		height: auto; /* Adjust height here, width scales automatically */
		width: 130px;
		object-fit: contain;
		z-index: 10;
	}

	.home-link { 
		display: flex; 
		align-items: center;
		justify-content: center;
		margin: 0; 
		padding: 5px;
		width: 34px;
		height: 34px;
		z-index: 20;
	}
	
	/* Force the home SVG to show up */
	.desktop-home-icon {
		display: block !important;
		width: 24px;
		height: 24px;
	}
	
	.hamburger { 
		display: flex; 
		align-items: center;
		justify-content: center;
		margin: 0 0 0 auto; /* FORCE it to the far right */
		padding: 5px;
		width: 34px;
		height: 34px;
		z-index: 20;
	}
	
	.hero nav {
		top: 20px;
		width: calc(100% - 40px);
	}
	
	.hamburger svg {
		fill: #fff;
		transition: transform 0.3s ease;
	}
	
	.hamburger.is-active svg {
		transform: rotate(90deg);
	}
	
	/* Force all mobile links to white */
	nav a, .nav a {
		color: #fff !important; 
	}
	
	.nav a.current {
		color: #888 !important;
	}	
	
	nav a.current {
		color: #fff !important;
	}
	
	/* PHP active-section native expansion */
	.nav-dropdown.active-section .nav-subpages {
		display: flex;
		flex-direction: column;
	}
	.nav-dropdown.active-section .nav-indicator {
		opacity: 0;
	}
	
	/* --- EDGE-TO-EDGE MOBILE MENU --- */
	.nav-links {
		display: none; 
		flex-direction: column;
		width: 100%;
		gap: 0; /* THE FIX: Kills the vertical gaps between all items */
		padding-top: 10px;
	}
	
	.nav-links.mobile-open { 
		display: flex; 
	}
	
	/* Make all top-level mobile links full-width, flush, and square */
	.nav-links > a, 
	.dropdown-trigger {
		display: flex;
		width: 100%;
		justify-content: center;
		align-items: center;
		padding: 16px 0; 
		margin: 0;
		border-radius: 0 !important; /* THE FIX: Kills the roundness on the blue Intro pill */
	}
	
	/* Flush background highlight for the active mobile page */
	.nav-links > a.current:not(.stand-out), 
	.dropdown-trigger.current {
		background-color: rgb(70, 70, 70);
		border-radius: 0;
		width: 100%; 
		margin: 0;
	}
	
	.nav-dropdown { 
		width: 100%; 
		flex-direction: column; 
		align-items: center; 
	}
	
	/* Seamless sub-page box */
	.nav-subpages {
		position: static;
		transform: none;
		width: 100%;
		background: #1a1a1a; 
		border-radius: 0; /* THE FIX: Squares off the dropdown container */
		box-shadow: none;
		padding: 0; /* THE FIX: Removes gaps above/below the child links */
		border-left: none; 
		margin-top: 0; /* THE FIX: Welds it directly to the 'studies' button */
	}

	/* Flush sub-page links */
	.nav-subpages a {
		text-align: center;
		width: 100%;
		padding: 15px 0 !important;
		margin: 0;
		border-radius: 0 !important;
	}

	/* Flush highlight for active SUB-page */
	.nav-subpages a.current {
		background-color: rgb(70, 70, 70);
		border-radius: 0;
		width: 100%;
		margin: 0;
		font-weight: bold; 
	}
}

/* ========================================= */
/* REMAINING SITE STYLES                     */
/* ========================================= */

.stand-out
{
	padding: 5px 20px;
	border-radius: 9999px;
	color: #fff !important;
	background: var(--stand-out);
}

.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;
}

.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-x: hidden;
}

.hero .bg
{
	width: 100%;
	height: 100%;
	display: block;
}

.hero > div
{
	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;
}

.hero h1
{
	font-size: max(var(--font-min), clamp(2.5rem, calc(min(100vw, 100vh)*0.1), 5rem));
	
	opacity: 0;
	transform: translateY(-25px);
	animation: hero-h1-fade 0.5s ease-out forwards;
	animation-delay: 0.2s;
}

.hero p
{
	opacity: 0;
	transform: translateY(25px);
	animation: hero-p-fade 0.6s ease-out forwards;
	animation-delay: 0.8s;
}

@keyframes hero-h1-fade
{
	0% { opacity: 0; transform: translateY(-25px); }
	100% { opacity: 1; transform: translateY(0); }
}
@keyframes hero-p-fade
{
	0% { opacity: 0; transform: translateY(25px); }
	100% { opacity: 1; transform: translateY(0); }
}

.content-wrap
{
	display: inline-block;
	padding: 80px 40px 40px;
	background: #f8f8f8;
	border-radius: 50px;
}

#slide2
{
	display: flex;
    justify-content: center;
	margin-top: 0;
}	

#slide2 .badges
{
	display: flex;
	flex-direction: row;
	align-items: center;
	flex-wrap: wrap;
}
#slide2 .badges img
{
	margin: 5px 10px;
	height: clamp(45px, calc(min(100vw, 100vh)*0.1), 60px);
}

#slide2a
{
	display: flex;
	align-items: center;
	flex-direction: column;
    justify-content: center;
}
#slide2a .content-wrap:nth-child(1)
{
	background: var(--grey-dark2);
	color: white;
}
#slide2a .content-wrap:nth-child(2)
{
	padding: 0;
	background: none;
	border-radius: 0;
}
#slide2a .highlight-block::before
{
	background: white;
}

#slide2b
{
	display: flex;
	align-items: center;
	flex-direction: column;
    justify-content: center;
}
#slide2b .content-wrap:nth-child(1)
{
	background: var(--brand);
	color: white;
}
#slide2b .content-wrap:nth-child(2)
{
	padding: 0;
	background: none;
	border-radius: 0;
}
#slide2b .highlight-block::before
{
	background: white;
}

#slide2c
{
	display: flex;
	align-items: center;
	flex-direction: column;
    justify-content: center;
}
#slide2c .content-wrap:nth-child(1)
{
	background: var(--grey-light);
}
#slide2c .content-wrap:nth-child(2)
{
	padding: 0;
	background: none;
	border-radius: 0;
}
#slide2c .highlight-block::before
{
	background: black;
}

#slide3
{
	display: flex;
	align-items: center;
	flex-direction: column;
    justify-content: center;
	padding: 80px 40px 40px;
	background: #f8f8f8;
}

#slide4, 
#slide6
{
	display: flex;
    justify-content: center;
}

#slide5 .content-wrap
{
	background: none;
}

.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: var(--brand-red);
	color: white;
	font-weight: bold;
	padding: 1rem 2rem;
	text-align: center;
	justify-self: center; 
	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;
	}
}

.madeby:before
{
	content: "»";
    font-size: 0.75em;
    margin-right: 0.35em;
    display: inline-block;
    transform: translateY(-3px);
}
.madeby
{
	font-family: inherit;
	font-size: 0.9em;
	font-style: normal;
	color: rgb(127, 127, 127);
	white-space: nowrap;
}

.proof-slide
{
	display: grid;
	grid-template-columns: repeat(2, minmax(280px, 1fr));
	gap: 1.5rem;
	max-width: 1200px; 
	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; 
	position: relative;
}

.video-container iframe
{
	width: 100%;
	height: 100%;
	border: 0;
}

#slide9 .layout-wrapper {
	display: flex;
	align-items: stretch;
	gap: 15px;
	max-width: 1200px;
	margin: 0 auto;
}

#slide9 .red-bar-container {
	display: flex;
	flex-direction: column;
	padding-top: 75px; 
}

#slide9 .red-bar {
	width: 10px;
	height: 180px;
	background-color: var(--brand-red);
	border-radius: 6px;
}

#slide9 .process-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	width: 100%;
	gap: 0;
}

#slide9 .marker-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 20px;
}

#slide9 .marker {
	display: flex;
	align-items: center;
}

#slide9 .circle {
	width: 55px;
	height: 55px;
	background-color: var(--brand-red);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: bold;
	z-index: 2;
	flex-shrink: 0;
}

#slide9 .arrow-tail {
	width: 20px;
	height: 16px;
	background-color: var(--brand-red);
	margin-left: -5px; 
	z-index: 1;
}

#slide9 .arrow-head {
	width: 0;
	height: 0;
	border-top: 16px solid transparent;
	border-bottom: 16px solid transparent;
	border-left: 20px solid var(--brand-red);
	margin-left: -1px;
}

#slide9 .title-wrapper {
	padding: 0 5px; 
	margin-bottom: 15px;
}

#slide9 .title-box {
	border: 2px solid var(--brand-red);
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 15px 10px;
	font-size: max(var(--font-min), clamp(1.2rem, calc(min(100vw, 100vh)*0.1), 1.5rem));
	font-weight: bold;
	box-sizing: border-box;
	background-color: #fff;
}

#slide9 .desc-box {
	background-color: var(--bg-grey);
	padding: 25px 20px;
	font-size: max(var(--font-min), clamp(1.2rem, calc(min(100vw, 100vh)*0.1), 1.5rem));
	line-height: 1.4;
	text-align: center;
	box-sizing: border-box;
	color: var(--border-dark);
}

#slide9 .deliv-box {
	background-color: #ffffff;
	padding: 25px 20px;
	font-size: max(var(--font-min), clamp(1.2rem, calc(min(100vw, 100vh)*0.1), 1.5rem));
	line-height: 1.4;
	text-align: center;
	box-sizing: border-box;
	color: var(--border-dark);
}

#slide9 .has-border {
	border-right: 1px solid var(--border-dark);
}

@media (max-width: 1024px) {
	#slide9 .red-bar-container {
		display: none; 
	}

	#slide9 .process-grid {
		grid-template-columns: 1fr; 
	}

	#slide9 .grid-item {
		order: var(--mob-order);
	}

	#slide9 .marker-wrapper {
		margin-top: 40px;
		padding-bottom: 10px;
	}

	#slide9 .title-wrapper {
		margin-bottom: 0;
	}

	#slide9 .title-box {
		border-bottom: none; 
	}

	#slide9 .desc-box {
		border-right: none;
		border-left: 2px solid var(--brand-red);
		border-right: 2px solid var(--brand-red);
	}

	#slide9 .deliv-box {
		border-right: none;
		border-left: 2px solid var(--brand-red);
		border-right: 2px solid var(--brand-red);
		border-bottom: 2px solid var(--brand-red);
		margin-bottom: 20px;
	}

	#slide9 .has-border {
		border-right: none;
	}
	
	#slide9 .desc-box, 
	#slide9 .deliv-box {
		border-left: none;
		border-right: none;
	}
	#slide9 .deliv-box {
		border-bottom: 1px solid #ccc;
	}
	#slide9 .title-box {
		border: 2px solid var(--brand-red);
		margin-bottom: 0;
	}
}

.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;
}

#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
{
	margin: 10px 25px;
	height: clamp(60px, calc(min(100vw, 100vh)*0.1), 100px);
}

#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; 
	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; 
	text-align: left;
	border-bottom: 1px solid #e5e5e5; 
}

.custom-table th {
	background-color: #f9f9f9; 
	color: #000;
	font-weight: 600; 
	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; 
	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; 
	}

	.custom-table tbody, .custom-table tr, .custom-table td {
		display: block;
		width: 100%;
	}

	.custom-table tr {
		margin-bottom: 1.5rem; 
		border-radius: 0.5rem;
		overflow: hidden;
	}

	.custom-table td {
		border: none;
		border-bottom: 1px solid #e5e5e5;
		padding-left: 1rem; 
		position: relative;
	}
	
	.custom-table tr td:last-child {
		border-bottom: none;
	}

	.category-cell {
		width: auto;
		font-weight: 700;
		background-color: #000; 
		color: white;
	}

	.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; 
	}
}
