:root {
	--blue: #4d7ed1;
	--lightblue: #e7f1ff;
	--text-primary: #000000;
	--text-brand: #ffffff;
}

.button,
button {
	padding: 0.7rem 1rem 0.7rem 1rem;
	border-radius: 7px;
	font-style: bold;
	background-color: var(--blue);
	box-shadow: none;
	border: none;
}

button:hover {
	cursor: pointer;
}

/* links */
a {
	text-decoration-line: none;
	color: var(--text-primary);
}

html {
	font-family: "IBM Plex Sans", sans-serif;
	box-sizing: border-box;
}

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

body {
	margin: 0;
}

.download-page,
.page-shell {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.download-page > footer,
.page-shell > footer {
	margin-top: auto;
}

body>section:nth-child(odd) {
	background-color: var(white);
}

body>section:nth-child(even) {
	background-color: #e6f1fa;
}

section {
	padding: 4rem;
}


h1 {
	font-size: 4rem;
}

h2 {
	font-size: 2.5rem;
}





/*---HEADER--------------------------------------------------*/

header {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 0.5rem 1.5rem 0.5rem 1.5rem;
	position: relative;
	z-index: 1;
	box-shadow: 0px 0px 5px grey;
}

/* Brand */

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	color: inherit;
	text-decoration: none;
}

.site-brand img {
	width: 2rem;
	height: 2rem;
}

.site-brand span {
	font-size: 1.4rem;
	font-weight: 600;
	letter-spacing: -0.02em;
}


/* Navigation */

.site-nav {
	display: flex;
	align-items: center;
	gap: 0.35rem;
}

.site-nav a {
	padding: 0.55rem 0.75rem;

	border-radius: 0.5rem;

	color: inherit;
	font-size: 0.9rem;
	text-decoration: none;

	opacity: 0.7;

	transition:
		background 0.2s ease,
		opacity 0.2s ease;
}

.site-nav a:hover {
	opacity: 1;
	background: #e6f1fa;
}

.site-nav .nav-contact {
	padding: 0.6rem 1rem;

	background: var(--blue);
	color: white;

	opacity: 1;
}

.site-nav .nav-contact:hover {
	background: var(--blue);
	opacity: 0.9;
}


/* Mobile */

@media (max-width: 650px) {
	header {
		flex-wrap: wrap;
		align-items: center;
		gap: 0.75rem 1rem;
	}

	.site-nav {
		flex-wrap: wrap;
		justify-content: center;
		gap: 0.2rem;
	}

	.site-nav a {
		padding: 0.45rem 0.5rem;
		font-size: 0.8rem;
	}

	.site-brand span {
		font-size: 1.15rem;
	}

	.site-brand img {
		width: 1.75rem;
		height: 1.75rem;
	}
}

@media (max-width: 500px) {
	header {
		flex-direction: column;
		align-items: center;
		gap: 0.75rem;
		padding: 0.75rem 1rem;
	}

	.site-nav {
		width: 100%;
		justify-content: center;
	}

	.site-nav a {
		flex: 1 1 auto;
		text-align: center;
	}
}

/*--HERO HEADLINE---------------------------------------------------*/

#headline {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 550px;

	background-image: url('img/inner-analytics-hero.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;

	text-align: center;

	color: black;
	text-shadow:
		0 0 5px #fff,
		0 0 10px #fff,
		0 0 20px #fff,
		0 0 35px #fff,
		0 0 50px rgba(255, 255, 255, 0.95),
		0 0 80px rgba(255, 255, 255, 0.8);
}

#headline h1 {
	margin: 0;
	font-size: clamp(3rem, 7vw, 5.5rem);
	line-height: 0.98;
	letter-spacing: -0.05em;
}

#headline h2 {

	font-size: 25px;
}

@media (max-width: 600px) {
	#headline {
		margin: 4rem auto 5rem;
	}

	#headline h1 {
		font-size: clamp(2.8rem, 13vw, 4rem);
	}
}

/*---------------------------------------------------------------------*/


#bottom-line {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}



/*--IMPRESSUM-------------------------------------------------------------------*/


#impressum .section-label {
	margin-bottom: 0.75rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	opacity: 0.55;
}

#impressum h1 {
	margin: 0 0 3rem;
	font-size: clamp(2.5rem, 5vw, 4rem);
	line-height: 1;
	letter-spacing: -0.035em;
}

#impressum-data {
	display: flex;
	justify-content: center;
	/* justify-items: center; */
	align-items: center;
	flex-direction: column;
	padding: 1rem;
	border-radius: 1.1rem;
	background: #e6f1fa;
}


#impressum-data h2 {
	margin: 0 0 1.5rem;
	font-size: 1.4rem;
}

.impressum-table {
	border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.impressum-row {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 2rem;
	padding: 1rem 0;

	border-bottom: 1px solid rgba(0, 0, 0, 0.07);

	font-size: 0.9rem;
	line-height: 1.5;
}

.impressum-row h3 {
	opacity: 0.55;
	font-weight: 500;
	font-size: 0.9rem;
	margin: 0;
}

.impressum-row strong {
	font-weight: 500;
}

/* Mobile */

@media (max-width: 600px) {
	.impressum-row {
		grid-template-columns: 1fr;
		gap: 0.25rem;
	}
}



/*-Use Cases----------------------------------------------------------*/


#use-cases {
	text-align: center;
	margin: -5rem auto;
}

#use-cases-grid-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	width: min(70%, 950px);
	margin: 2rem auto 0 auto;
}

#use-cases .section-label {
	margin-bottom: 0.75rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	opacity: 0.55;
}

.use-cases-header {
	margin: 0 0 1rem;
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.1;
	letter-spacing: -0.025em;
	font-weight: 600;
}

.use-cases-header-p {
	margin: 0;
	font-size: 1rem;
	line-height: 1.65;
	opacity: 0.68;
}

.use-case-card {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	min-height: 300px;
	padding: 1.5rem;
	border-radius: 1.1rem;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.use-case-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 35px rgba(0, 0, 0, 0.1);
}

.use-case-content {
	margin: 0;
	color: white;
	font-size: 1.35rem;
	line-height: 1.1;
	letter-spacing: -0.015em;
}


/* Tablet */

@media (max-width: 950px) {
	#use-cases-grid-container {
		grid-template-columns: repeat(2, 1fr);
	}

	.use-case-card {
		min-height: 280px;
	}
}


/* Mobile */

@media (max-width: 550px) {
	#use-cases {
		width: 100%;
		margin: 0 auto 2rem;
	}

	#use-cases-grid-container {
		grid-template-columns: 1fr;
		width: 100%;
	}

	.use-case-card {
		min-height: 240px;
	}
}


/*-PLATEFLOW----------------------------------------------------------*/


.plateflow-section {
	width: min(88%, 1200px);
	margin: 2rem auto -3rem auto;
}

/* -----------------------------
   Header
----------------------------- */

.plateflow-header {
	max-width: 850px;
	margin: 0 auto 3.5rem;
	text-align: center;
}

.plateflow-section .section-label {
	margin-bottom: 0.75rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	opacity: 0.55;
}

.plateflow-header h2 {
	margin: 0 0 1.25rem;
	font-size: clamp(2.4rem, 5vw, 4rem);
	line-height: 1.05;
	letter-spacing: -0.035em;
}

.plateflow-header p {
	max-width: 700px;
	margin: 0 auto;
	font-size: 1.1rem;
	line-height: 1.7;
	opacity: 0.7;
}


/* -----------------------------
   Product hero
----------------------------- */

.plateflow-hero {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 3rem;
	align-items: center;
	padding: 3rem;
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 1.5rem;
	background: #e6f1fa;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.07);
}

.plateflow-copy {
	max-width: 550px;
}

.plateflow-copy h3 {
	margin: 0 0 1.25rem;
	font-size: clamp(2rem, 3.5vw, 3rem);
	line-height: 1.05;
	letter-spacing: -0.03em;
}

.plateflow-copy p {
	font-size: 1rem;
	line-height: 1.7;
	opacity: 0.72;
}

.plateflow-image {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
}

.plateflow-image img {
	display: block;
	width: 100%;
	height: auto;
	filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.12));
}


/* -----------------------------
   Capabilities
----------------------------- */

.plateflow-capabilities {
	margin-top: 5rem;
}

.capabilities-header {
	width: min(88%, 1200px);
	margin: 0 auto;
	margin-bottom: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.capabilities-header h4 {
	margin: 0 0 0.75rem;
	font-size: clamp(1.8rem, 3vw, 2.5rem);
	line-height: 1.1;
	letter-spacing: -0.025em;
	text-align: center;
}

.capabilities-header p {
	margin: 0;
	line-height: 1.65;
	opacity: 0.68;
	text-align: center;
}

.capability-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.capability-card {
	position: relative;
	overflow: hidden;

	padding: 2rem;

	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 1.25rem;

	background: #e6f1fa;

	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
}

.capability-number {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;

	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;

	opacity: 0.3;
}

.capability-icon {
	display: grid;
	place-items: center;
	width: 3rem;
	height: 3rem;
	margin-bottom: 1.5rem;
	padding: 0.5rem;
	border-radius: 0.8rem;
	background: rgba(0, 0, 0, 0.055);
}

.capability-card h3 {
	margin: 0 0 0.75rem;

	font-size: 1.6rem;
	line-height: 1.1;
}

.capability-card p {
	margin: 0 0 0.75rem;

	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.5;
}

.capability-card>span {
	display: block;

	font-size: 0.88rem;
	line-height: 1.6;

	opacity: 0.62;
}

/* -----------------------------
   CTA
----------------------------- */

.plateflow-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;

	margin-top: 3rem;
	padding: 1.5rem 1.75rem;

	border-radius: 1rem;

	background: var(--blue);
	color: white;
}

.plateflow-cta strong {
	display: block;
	margin-bottom: 0.25rem;
	font-size: 1rem;
}

.plateflow-cta span {
	display: block;
	font-size: 0.85rem;
	opacity: 0.7;
}

.plateflow-cta a {
	flex: 0 0 auto;

	padding: 0.7rem 1rem;

	border-radius: 0.6rem;

	background: rgba(255, 255, 255, 0.12);
	color: white;

	font-size: 0.85rem;
	font-weight: 600;
	text-decoration: none;

	transition: background 0.2s ease;
}

.plateflow-cta a:hover {
	background: rgba(255, 255, 255, 0.2);
}

/* -----------------------------
   Responsive
----------------------------- */

@media (max-width: 900px) {

	.plateflow-hero {
		grid-template-columns: 1fr;
		padding: 2rem;
	}

	.plateflow-copy {
		max-width: none;
	}

	.capability-grid {
		grid-template-columns: 1fr;
	}

	.plateflow-foundation {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

@media (max-width: 600px) {
	section {
		padding: 3rem 1rem;
	}

	.plateflow-section {
		width: 100%;
	}

	.plateflow-hero {
		padding: 1.5rem;
	}

	.plateflow-cta {
		align-items: flex-start;
		flex-direction: column;
	}

	.plateflow-cta a {
		width: 100%;
		text-align: center;
	}
}

/*--ABOUT and Expertise------------------------------------------------------*/


.about-expertise {
	margin: 5rem auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.about-grid {
	width: min(88%, 1200px);
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 1.5rem;
	align-items: stretch;
}

.about-card {
	padding: 2.5rem;
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 1.25rem;
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
	backdrop-filter: blur(10px);
}

.about-card-main {
	background:
		linear-gradient(135deg,
			rgba(255, 255, 255, 0.92),
			rgba(245, 250, 252, 0.82));
}

.section-label {
	margin-bottom: 0.75rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	opacity: 0.55;
}

.about-card h3 {
	margin: 0 0 1.25rem;
	font-size: clamp(1.8rem, 3vw, 2.5rem);
	line-height: 1.1;
	letter-spacing: -0.025em;
}

.about-card p {
	max-width: 65ch;
	line-height: 1.65;
}

.research-highlight {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	margin-top: 2rem;
	padding: 1.25rem;
	border-radius: 0.9rem;
	background: rgba(255, 255, 255, 0.65);
	border: 1px solid rgba(0, 0, 0, 0.06);
}

.research-icon {
	flex: 0 0 auto;
	width: 2rem;
	height: 2rem;
	display: grid;
	place-items: center;
	border-radius: 0.8rem;
	background: rgba(0, 0, 0, 0.06);
	font-size: 1rem;
	color: var(--blue);
}

.expertise-list {
	display: grid;
	gap: 1rem;
	margin: 1.75rem 0 0;
	padding: 0;
	list-style: none;
}

.expertise-list li {
	padding-left: 1.25rem;
	border-left: 2px solid var(--blue);
}

.expertise-list h3 {
	display: block;
	margin-bottom: 0.25rem;
	font-size: 1rem;
}

.expertise-list span {
	display: block;
	font-size: 0.92rem;
	line-height: 1.5;
	opacity: 0.7;
}

@media (max-width: 800px) {
	.about-grid {
		grid-template-columns: 1fr;
	}

	.about-card {
		padding: 2rem;
	}
}


/*FOR SECTION--------------------------------------------------------*/


.audience-section {
	margin: 5rem auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.audience-header {
	width: min(88%, 1200px);
	margin-bottom: 2.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.audience-header .section-label {
	margin-bottom: 0.75rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	opacity: 0.55;
}

.audience-header h2 {
	margin: 0 0 1rem;
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.1;
	letter-spacing: -0.025em;
}

.audience-header p {
	max-width: 650px;
	margin: 0;
	line-height: 1.65;
	opacity: 0.7;
	text-align: center;
}

.audience-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	align-items: stretch;
	width: min(88%, 1200px);
}

.audience-card {
	display: flex;
	flex-direction: column;
	padding: 2rem;
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 1.25rem;
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
	backdrop-filter: blur(10px);
}

.audience-card-featured {
	background:
		linear-gradient(135deg,
			rgba(255, 255, 255, 0.92),
			rgba(245, 250, 252, 0.82));
	border-color: rgba(0, 0, 0, 0.09);
}

.audience-label {
	margin-bottom: 0.5rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	opacity: 0.5;
}

.audience-card div {
	margin: 0;
	font-size: 1.45rem;
	line-height: 1.2;
	letter-spacing: -0.015em;
	font-weight: 600;
}

.audience-card ul {
	display: grid;
	gap: 1.25rem;
	margin: 2rem 0 0;
	padding: 0;
	list-style: none;
}

.audience-card li {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.75rem;
	align-items: flex-start;
}

.audience-card li>span {
	display: grid;
	place-items: center;
	width: 1.35rem;
	height: 1.35rem;
	margin-top: 0.1rem;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.06);
	font-size: 0.7rem;
	font-weight: 700;
}

.audience-card li h4 {
	display: block;
	margin-bottom: 0.2rem;
	margin-top: -0.15rem;
	font-size: 0.92rem;
	font-weight: 600;
}

.audience-card li small {
	display: block;
	font-size: 0.84rem;
	line-height: 1.5;
	opacity: 0.65;
	font-weight: 400;
}

@media (max-width: 900px) {
	.audience-grid {
		grid-template-columns: 1fr;
	}

	.audience-card {
		padding: 2rem;
	}
}

/*CONTACT--------------------------------------------------------*/

#contact {
	align-content: center;
	justify-content: center;
	text-align: center;
	width: 50rem;
	/* align-self: center; */
	/* justify-self: center; */
	margin: auto;
	margin-top: 4rem;
	margin-bottom: 4rem;
	background-color: var(--blue);
	border-radius: 1rem;
	padding: 3rem;
	padding-top: 1rem;
	width: min(88%, 1200px);
	margin: 5rem auto;
	padding: 3.5rem;
	color: white;
}

#contact .section-label {
	margin-bottom: 0.75rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	opacity: 0.65;
}

#contact h3 {
	margin: 0 0 1rem;
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.1;
	letter-spacing: -0.025em;
}

.contact-intro {
	max-width: 600px;
	margin: 0 auto;
	font-size: 1.05rem;
	line-height: 1.65;
	opacity: 0.82;
}

.contact-details {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin-top: 2.5rem;
}

.contact-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	min-width: 0;
	padding: 1.25rem;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 0.9rem;
	background: rgba(255, 255, 255, 0.08);
	color: inherit;
	text-decoration: none;
	transition:
		background 0.2s ease,
		transform 0.2s ease,
		border-color 0.2s ease;
}

a.contact-item:hover {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.25);
	transform: translateY(-2px);
}

.contact-icon {
	display: grid;
	place-items: center;
	width: 2rem;
	height: 2rem;
	padding: 0.5rem;
	border-radius: 0.8rem;
	background: rgba(255, 255, 255, 0.12);
}

.contact-label {
	display: block;
	margin: 0;
	margin-bottom: 0.2rem;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	opacity: 0.6;
}

.contact-item strong {
	display: block;
	font-size: 0.95rem;
	font-weight: 600;
	word-break: break-word;
}

.contact-note {
	display: block;
	margin-top: 0.15rem;
	font-size: 0.8rem;
	opacity: 0.6;
}


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

	.contact-inner {
		padding: 2.5rem;
	}
}

@media (max-width: 500px) {
	#contact {
		width: 100%;
		padding: 2.5rem 1rem;
	}

	.contact-inner {
		padding: 2rem 1.5rem;
	}

	#contact h2 {
		font-size: 2rem;
	}
}

/*--------------------------------------------------------*/

.site-footer {
	margin-top: 6rem;
	padding: 4rem 0 1.5rem;

	background: var(--blue);
	color: white;
}

.footer-inner {
	width: min(88%, 1200px);
	margin: 0 auto;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 3rem;
	padding-bottom: 3.5rem;
}

.footer-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	color: white;
}

.footer-brand img {
	width: 2rem;
	height: 2rem;
}

.footer-brand span {
	font-size: 1.25rem;
	font-weight: 600;
	letter-spacing: -0.02em;
}

.footer-company p {
	max-width: 280px;
	margin: 1rem 0 0;

	font-size: 0.85rem;
	line-height: 1.6;
}

.footer-column h3 {
	margin: 0 0 1rem;

	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.footer-column ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-column li {
	margin-bottom: 0.6rem;
}

.footer-column a {
	color: white;
	font-size: 0.9rem;
}

.footer-column a:hover {
	text-decoration-line: underline;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	font-size: 0.75rem;
}

.footer-bottom a {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: white;
}

.footer-bottom a:hover {
	text-decoration-line: underline;
}


/* Mobile */

@media (max-width: 700px) {

	.site-footer {
		padding-top: 3rem;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 2.5rem 2rem;
	}

	.footer-company {
		grid-column: 1 / -1;
	}

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



/*DOWNLOAD-----------------------------------------------------*/

.download-main {
	width: min(90%, 1000px);
	margin: 0 auto;
	padding: 5rem 0;
}

.download-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.download-content h1 {
	margin: 0 0 1rem;
	font-size: clamp(2.5rem, 5vw, 4rem);
	letter-spacing: -0.03em;
}

.download-content>p {
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
	opacity: 0.65;
}


/* Download options */

.download-options {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-top: 3rem;
}

.download-box {
	padding: 2rem;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 1rem;
	background: #e6f1fa;
}

.download-box:hover {
	transform: scale(1.05);
}

.download-box h2 {
	margin: 1rem 0 0.4rem;
	font-size: 1.25rem;
}

.download-box p {
	margin: 0;
	font-size: 0.85rem;
	opacity: 0.5;
}


/* Mailing list */

.mailing-list {
	margin-top: 4rem;
	padding-top: 3rem;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.mailing-list h2 {
	margin: 0 0 0.75rem;
	font-size: 1.5rem;
}

.mailing-list p {
	max-width: 500px;
	margin: 0 auto 1.5rem;
	line-height: 1.6;
	font-size: 0.9rem;
	opacity: 0.65;
}

.mailing-list img {
	display: block;
	width: 150px;
	height: 150px;
	margin: 0 auto;
}


/* Mobile */

@media (max-width: 600px) {
	.download-options {
		grid-template-columns: 1fr;
	}
}

/* brevo styles */
@font-face {
	font-display: block;
	font-family: Roboto;
	src: url(https://assets.brevo.com/font/Roboto/Latin/normal/normal/7529907e9eaf8ebb5220c5f9850e3811.woff2) format("woff2"), url(https://assets.brevo.com/font/Roboto/Latin/normal/normal/25c678feafdc175a70922a116c9be3e7.woff) format("woff")
}

@font-face {
	font-display: fallback;
	font-family: Roboto;
	font-weight: 600;
	src: url(https://assets.brevo.com/font/Roboto/Latin/medium/normal/6e9caeeafb1f3491be3e32744bc30440.woff2) format("woff2"), url(https://assets.brevo.com/font/Roboto/Latin/medium/normal/71501f0d8d5aa95960f6475d5487d4c2.woff) format("woff")
}

@font-face {
	font-display: fallback;
	font-family: Roboto;
	font-weight: 700;
	src: url(https://assets.brevo.com/font/Roboto/Latin/bold/normal/3ef7cf158f310cf752d5ad08cd0e7e60.woff2) format("woff2"), url(https://assets.brevo.com/font/Roboto/Latin/bold/normal/ece3a1d82f18b60bcce0211725c476aa.woff) format("woff")
}

:where(.sib-form-message-panel) {
	display: none;
}

:where(.sib-form-message-panel .sib-notification__icon) {
	width: 20px;
	height: 20px;
}


#sib-container input:-ms-input-placeholder {
	font-family: Helvetica, sans-serif;
	text-align: left;
	color: #c0ccda;
}

#sib-container input::placeholder {
	font-family: Helvetica, sans-serif;
	text-align: left;
	color: #c0ccda;
}

#sib-container textarea::placeholder {
	font-family: Helvetica, sans-serif;
	text-align: left;
	color: #c0ccda;
}


#sib-container a {
	text-decoration: underline;
	color: #2BB2FC;
}



/*----BREVO MAILINGLIST---------------------------------------------------------------------*/
.newsletter {
	width: min(88%, 800px);
	margin: 6rem auto 0 auto;
	padding: 4rem 2rem;

	border-radius: 1rem;
	background: var(--blue);
	color: white;

	text-align: center;
}

.newsletter-content {
	max-width: 600px;
	margin: 0 auto;
}

.newsletter .section-label {
	margin-bottom: 0.75rem;

	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;

	opacity: 0.55;
}

.newsletter h3 {
	margin: 0 0 1rem;

	font-size: clamp(2rem, 5vw, 3rem);
	line-height: 1.05;
	letter-spacing: -0.03em;
}

.newsletter-content > p {
	margin: 0 auto 2rem;

	max-width: 520px;

	font-size: 0.95rem;
	line-height: 1.6;

	opacity: 0.7;
}


/* Form */

.newsletter-form {
	text-align: left;
}

.newsletter-form > label:first-child {
	display: block;
	margin-bottom: 0.5rem;

	font-size: 0.8rem;
	font-weight: 600;

}

.newsletter-input-row {
	display: flex;
	gap: 0.5rem;
}

.newsletter-input-row input {
	flex: 1;

	min-width: 0;
	padding: 0.85rem 1rem;

	border: none;
	border-radius: 0.6rem;

	background: white;
	color: var(--blue);

	font: inherit;

}

.newsletter-input-row button {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;

	padding: 0.85rem 1rem;

	border: none;
	border-radius: 0.6rem;

	background: white;
	color: var(--blue);

	font: inherit;
	font-size: 0.85rem;
	font-weight: 700;

	cursor: pointer;
}

.newsletter-input-row button:hover {
	opacity: 0.9;
}


/* Opt-in */

.newsletter-optin {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	margin-top: 1rem;
	font-size: 0.75rem;
	line-height: 1.5;
	opacity: 0.85;
}

.newsletter-optin input {
	margin-top: 0.2rem;
	flex: 0 0 auto;
}

.newsletter-note {
	margin: 0.6rem 0 0;

	font-size: 0.7rem;
	opacity: 0.75;
}

.newsletter-optin-link {
	color: white;
	text-decoration: underline;
  opacity: 0.85;
}

/* Mobile */

@media (max-width: 600px) {

	.newsletter {
		width: 92%;
		padding: 3rem 1.25rem;
	}

	.newsletter-input-row {
		flex-direction: column;
	}

	.newsletter-input-row button {
		justify-content: center;
	}

}