@font-face {
	font-family: 'Montserrat Local';
	src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat Local';
	src: url('../fonts/Montserrat-Light.ttf') format('truetype');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat Local';
	src: url('../fonts/Montserrat-ThinItalic.ttf') format('truetype');
	font-weight: 200;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'IES Serif';
	src: url('../fonts/timesbi.ttf') format('truetype');
	font-weight: 700;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Myriad Local';
	src: url('../fonts/MyriadPro-Regular.otf') format('opentype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

:root {
	/* --ies-green: #62c68d; */
	--ies-green: #54c27c;
	--ies-green-dark: #55a976;
	--ies-green-soft: #e5faf1;
	--ies-incentive: #aa5dd6;
	--ies-incentive-dark: #7b35a3;
	--ies-incentive-soft: #f3e8fa;
	--ies-corporate: #0071ce;
	--ies-corporate-dark: #005aa4;
	--ies-corporate-soft: #e6f2fc;
	--ies-corporate-focus: rgba(0, 113, 206, .65);
	--ies-dark: #1a1a2e;
	--ies-blue: #eaf8f7;
	--ies-blue-strong: var(--ies-corporate-dark);
	--ies-text: #05070a;
	--ies-muted: #5da77c;
	--ies-white: #ffffff;
	--ies-field: #f0fbfa;
	--ies-line: rgba(98, 198, 141, .42);
	--welfare-blue: #edf6ff;
	--welfare-field: #eef7ff;
	--welfare-focus: rgba(85, 169, 118, .65);
	--ies-font-ubuntu: 'Ubuntu Sans', Arial, sans-serif;
	--ies-font-montserrat: 'Montserrat Local', Arial, sans-serif;
	--ies-font-main: var(--ies-font-ubuntu);
	--section-pad-x: 2rem;
	--button-h: 70px;
	--site-footer-bg: var(--ies-corporate);
	--site-footer-border: rgba(255, 255, 255, .22);
	--site-footer-color: var(--ies-white);
	--site-footer-link-hover: var(--ies-corporate-soft);
	--site-footer-focus: rgba(255, 255, 255, .72);
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	color: var(--ies-text);
	background: var(--ies-blue);
	font-family: var(--ies-font-main);
	font-weight: 300;
	letter-spacing: 0;
	overflow-x: hidden;
}

img {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
}

button,
input,
textarea {
	font: inherit;
	letter-spacing: 0;
}

.material-symbols-rounded {
	font-family: 'Material Symbols Rounded';
	font-weight: 400;
	font-style: normal;
	font-size: 1.25em;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	font-feature-settings: 'liga';
	-webkit-font-feature-settings: 'liga';
	-webkit-font-smoothing: antialiased;
}

/* Shared footer */

.iesbae-page {
	min-height: 100svh;
	display: flex;
	flex-direction: column;
}

.iesbae-page > main {
	flex: 1 0 auto;
}

.site-footer {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 3rem;
	padding: .75rem var(--section-pad-x);
	border-top: 1px solid var(--site-footer-border);
	color: var(--site-footer-color);
	background: var(--site-footer-bg);
	font-family: var(--ies-font-main);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.35;
}

.site-footer-copy {
	margin: 0;
}

.site-footer-links {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: .75rem 1rem;
}

.site-footer-links a {
	color: inherit;
	text-decoration: none;
	transition: color .18s ease;
}

.site-footer-links a:hover,
.site-footer-links a:focus-visible {
	color: var(--site-footer-link-hover);
}

.site-footer-links a:focus-visible {
	outline: 2px solid var(--site-footer-focus);
	outline-offset: 3px;
}

.legal-modal[hidden],
.legal-modal-panel[hidden] {
	display: none;
}

.legal-modal {
	position: fixed;
	z-index: 20;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
}

.legal-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(26, 26, 46, .58);
}

.legal-modal-dialog {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	width: min(500px, 100%);
	height: 100%;
	max-height: calc(100svh - 3rem);
	overflow: hidden;
	border-radius: 8px;
	color: var(--ies-dark);
	background: var(--ies-white);
	box-shadow: 0 1rem 3rem rgba(26, 26, 46, .24);
	outline: none;
}

.legal-modal-header {
	position: sticky;
	z-index: 2;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.25rem;
	color: var(--ies-white);
	background: var(--ies-corporate);
}

.legal-modal-panel {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 0;
}

.legal-modal-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	padding: 0;
	border: 0;
	border-radius: 50%;
	color: var(--ies-white);
	background: rgba(255, 255, 255, .12);
	cursor: pointer;
}

.legal-modal-close .material-symbols-rounded {
	font-size: 1.4rem;
}

.legal-modal-close:hover,
.legal-modal-close:focus-visible {
	color: var(--ies-corporate);
	background: var(--ies-white);
}

.legal-modal-close:focus-visible {
	outline: 2px solid rgba(255, 255, 255, .74);
	outline-offset: 2px;
}

.legal-modal-panel h2 {
	margin: 0;
	color: inherit;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
}

.legal-modal-body {
	flex: 1 1 auto;
	min-height: 0;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 1.25rem 2rem 2rem;
	font-size: .875rem;
}

.legal-modal-panel p {
	margin: 0;
	color: rgba(26, 26, 46, .72);
	font-size: 1em;
	font-weight: 400;
	line-height: 1.5;
}

.legal-modal-panel p + p {
	margin-top: .25rem;
}

.legal-modal-body p strong {
	color: var(--ies-dark);
}

.legal-modal-body ul {
	margin: .75rem 0 1rem;
	padding-left: 1.15rem;
	color: rgba(26, 26, 46, .72);
	line-height: 1.5;
}

.legal-modal-body li {
	margin: .35rem 0;
	padding-left: .2rem;
}

.legal-modal-body li::marker {
	color: var(--ies-corporate);
}

.legal-modal-body ul ul {
	margin-top: .4rem;
	margin-bottom: .4rem;
}

.legal-modal-body h3,
.legal-modal-body h4 {
	margin-top: 1.25rem;
	margin-bottom: .25rem;
}

.legal-modal-body hr {
	margin-top: 1.5rem;
	width: 25%;
}

.legal-modal-body table {
	width: 100%;
	max-width: 100%;
	margin: 1rem 0 1.5rem;
	border-collapse: collapse;
	table-layout: fixed;
	color: rgba(26, 26, 46, .72);
	line-height: 1.45;
}

.legal-modal-body th,
.legal-modal-body td {
	padding: .6rem;
	border: 1px solid rgba(0, 113, 206, .18);
	vertical-align: top;
	overflow-wrap: anywhere;
	word-break: normal;
	text-align: left;
}

.legal-modal-body th {
	color: var(--ies-dark);
	background: rgba(0, 113, 206, .08);
	font-size: .75rem;
	font-weight: 700;
	text-transform: uppercase;
}

.legal-modal-body td strong {
	color: var(--ies-dark);
}

.legal-modal-open {
	overflow: hidden;
}

.cookie-banner[hidden] {
	display: none;
}

.cookie-banner {
	position: fixed;
	z-index: 18;
	inset: 0;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 1rem;
	color: var(--ies-dark);
	background: rgba(var(--bkgd-color09-rgb, 0, 0, 0), 0.58);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	font-family: var(--ies-font-main);
}

.cookie-banner-inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	width: min(1080px, 100%);
	margin: 0 auto;
	padding: 1.25rem;
	border: 1px solid rgba(0, 113, 206, .18);
	border-radius: 8px;
	background: var(--ies-white);
	box-shadow: 0 .9rem 2.5rem rgba(26, 26, 46, .2);
}

.cookie-banner-open {
	overflow: hidden;
}

.cookie-banner-copy h2 {
	margin: 0 0 .5rem;
	color: var(--ies-dark);
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1.25;
}

.cookie-banner-copy p {
	margin: 0;
	color: rgba(26, 26, 46, .72);
	font-size: .92rem;
	font-weight: 400;
	line-height: 1.5;
}

.cookie-banner-copy a {
	color: var(--ies-corporate-dark);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: .18em;
}

.cookie-banner-form {
	display: flex;
	flex-direction: column;
	gap: .9rem;
}

.cookie-banner-choice {
	display: flex;
	flex-direction: column;
	gap: .9rem;
	width: 100%;
}

.cookie-option {
	display: grid;
	grid-template-columns: 1.1rem minmax(0, 1fr);
	gap: .65rem;
	align-items: start;
	min-height: 3rem;
	padding: .7rem .8rem;
	border: 1px solid rgba(0, 113, 206, .18);
	border-radius: 8px;
	background: rgba(230, 247, 246, .52);
	cursor: pointer;
}

.cookie-option-disabled {
	cursor: default;
}

.cookie-option input {
	width: 1rem;
	height: 1rem;
	margin: .15rem 0 0;
	accent-color: var(--ies-corporate);
}

.cookie-option strong,
.cookie-option small {
	display: block;
}

.cookie-option strong {
	color: var(--ies-dark);
	font-size: .92rem;
	font-weight: 700;
	line-height: 1.25;
}

.cookie-option small {
	margin-top: .1rem;
	color: rgba(26, 26, 46, .64);
	font-size: .78rem;
	font-weight: 400;
	line-height: 1.25;
}

.cookie-banner-actions {
	display: flex;
	flex-wrap: nowrap;
	gap: .5rem;
	margin-top: .1rem;
}

.cookie-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.6rem;
	padding: .55rem .85rem;
	border: 1px solid var(--ies-corporate);
	border-radius: 8px;
	font-size: .85rem;
	font-weight: 700;
	line-height: 1.15;
	text-align: center;
	cursor: pointer;
	transition:
		background .18s ease,
		color .18s ease,
		border-color .18s ease;
}

.cookie-button-primary {
	color: var(--ies-white);
	background: var(--ies-corporate);
}

.cookie-button-secondary {
	color: var(--ies-corporate-dark);
	background: var(--ies-white);
}

.cookie-button:hover,
.cookie-button:focus-visible {
	color: var(--ies-white);
	border-color: var(--ies-corporate-dark);
	background: var(--ies-corporate-dark);
}

.cookie-button:focus-visible,
.cookie-option input:focus-visible,
.cookie-banner-copy a:focus-visible {
	outline: 2px solid var(--ies-corporate-focus);
	outline-offset: 3px;
}

/* Index page */

.index-page {
	min-height: 100svh;
	color: var(--ies-dark);
	background: var(--ies-white);
	font-family: var(--ies-font-main);
}

.index-main {
	min-height: calc(100svh - 3rem);
	padding: 2rem var(--section-pad-x) 4rem;
	background: var(--ies-white);
}

.index-page .index-animate {
	opacity: 0;
	transform: translate3d(0, 1.2rem, 0);
	transition:
		opacity .55s ease var(--index-anim-delay, 0ms),
		transform .55s cubic-bezier(.2, .7, .2, 1) var(--index-anim-delay, 0ms);
	will-change: opacity, transform;
}

.index-page .index-product-card.index-animate {
	transform: translate3d(0, 1.25rem, 0) scale(.985);
}

.index-page .index-animate.is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.index-page .index-product-card.index-animate.is-visible {
	transform: translate3d(0, 0, 0) scale(1);
}

.index-brand {
	width: min(1200px, 100%);
	margin: 0 auto 2.5rem;
}

.index-brand img {
	width: 190px;
	height: auto;
}

.index-hero {
	padding: 0;
}

.index-hero-inner {
	width: min(1200px, 100%);
	margin: 0 auto;
}

.index-eyebrow {
	margin-bottom: 12px;
	text-align: center;
}

.index-eyebrow span {
	color: var(--ies-corporate);
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.index-headline {
	margin: 0 0 12px;
	color: var(--ies-dark);
	font-family: 'IES Serif', Georgia, serif;
	font-size: clamp(2.5rem, 6vw, 4.4rem);
	font-style: italic;
	font-weight: 700;
	line-height: 1.05;
	text-align: center;
}

.index-headline span {
	color: var(--ies-corporate);
}

.index-subtitle {
	margin: 0 0 44px;
	color: rgba(26, 26, 46, .64);
	font-size: .98rem;
	font-weight: 400;
	line-height: 1.5;
	text-align: center;
}

.index-product-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2rem;
}

.index-eurotarget {
	display: flex;
	justify-content: center;
	margin-top: 4rem;
}

.index-eurotarget img {
	width: 240px;
	height: auto;
}

.index-product-card {
	position: relative;
	display: flex;
	min-height: 100%;
	flex-direction: column;
	overflow: hidden;
	padding: 32px;
	border: 2px solid transparent;
	border-radius: 8px;
	transition:
		transform .22s ease,
		box-shadow .22s ease,
		border-color .22s ease;
}

.index-product-card-welfare {
	border-color: var(--ies-green);
	background: var(--ies-green-soft);
}

.index-product-card-incentive {
	border-color: var(--ies-incentive);
	background: var(--ies-incentive-soft);
}

@media (hover: hover) {
	.index-page .index-product-card:hover,
	.index-page .index-product-card.index-animate.is-visible:hover {
		transform: translateY(-4px);
		box-shadow: 0 .85rem 1.65rem rgba(26, 26, 46, .12);
	}
}

.index-recharge {
	position: absolute;
	top: 22px;
	right: 24px;
	color: rgba(26, 26, 46, .34);
	font-family: 'IES Serif', Georgia, serif;
	font-size: .78rem;
	font-style: italic;
	font-weight: 700;
}

.index-card-tag {
	width: fit-content;
	margin-bottom: 20px;
	padding: 5px 12px;
	border-radius: 999px;
	color: var(--ies-white);
	font-size: .64rem;
	font-weight: 700;
	letter-spacing: .14em;
	line-height: 1.1;
	text-transform: uppercase;
}

.index-product-card-welfare .index-card-tag,
.index-product-card-welfare .index-card-button {
	background: var(--ies-green);
}

.index-product-card-incentive .index-card-tag,
.index-product-card-incentive .index-card-button {
	background: var(--ies-incentive);
}

.index-product-logo {
	width: 220px;
	height: auto;
	margin: 0 0 1.5rem;
}

.index-product-card h2 {
	margin: 0 0 1rem;
	font-family: 'IES Serif', Georgia, serif;
	font-size: 1.75rem;
	font-style: italic;
	font-weight: 700;
	line-height: 1.15;
}

.index-product-card h2 span {
	font-weight: 700;
}

.index-product-card-welfare h2 {
	color: #2a7a53;
}

.index-product-card-incentive h2 {
	color: var(--ies-incentive-dark);
}

.index-product-card p {
	flex: 1;
	margin: 0 0 24px;
	color: rgba(26, 26, 46, .72);
	font-size: .9rem;
	font-weight: 400;
	line-height: 1.7;
}

.index-pill-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 28px;
}

.index-pill-list span {
	padding: 6px 12px;
	border-radius: 999px;
	font-size: .72rem;
	font-weight: 700;
	line-height: 1.15;
}

.index-product-card-welfare .index-pill-list span {
	color: #2a7a53;
	background: rgba(84, 194, 124, .2);
}

.index-product-card-incentive .index-pill-list span {
	color: var(--ies-incentive-dark);
	background: rgba(170, 93, 214, .15);
}

.index-card-button {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-height: 46px;
	padding: 0 22px;
	border-radius: 8px;
	color: var(--ies-white);
	font-size: .86rem;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	transition: transform .2s ease, box-shadow .2s ease;
}

.index-card-button::after {
	content: '\e5c8';
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-left: 9px;
	font-family: 'Material Symbols Rounded';
	font-size: 1.1rem;
	font-weight: 400;
	font-style: normal;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	font-feature-settings: 'liga';
	-webkit-font-feature-settings: 'liga';
	-webkit-font-smoothing: antialiased;
}

.index-card-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 .65rem 1.25rem rgba(26, 26, 46, .13);
}

.index-card-button:focus-visible {
	outline: 3px solid var(--ies-corporate-focus);
	outline-offset: 4px;
}

.index-card-deco {
	position: absolute;
	right: -18px;
	bottom: -18px;
	width: 90px;
	height: 90px;
	border-radius: 99px;
	opacity: .12;
	pointer-events: none;
}

.index-product-card-welfare .index-card-deco {
	background: var(--ies-green-dark);
}

.index-product-card-incentive .index-card-deco {
	background: var(--ies-incentive-dark);
}

@media (max-width: 820px) {
	.legal-modal {
		align-items: flex-end;
		padding: 1rem;
	}

	.legal-modal-dialog {
		max-height: calc(100svh - 2rem);
	}

	.legal-modal-header {
		padding: .9rem 1rem;
	}

	.legal-modal-body {
		padding: 1.5rem;
	}

	.legal-modal-body table,
	.legal-modal-body thead,
	.legal-modal-body tbody,
	.legal-modal-body tr,
	.legal-modal-body th,
	.legal-modal-body td {
		display: block;
		width: 100%;
	}

	.legal-modal-body table {
		border: 0;
	}

	.legal-modal-body thead {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0 0 0 0);
		white-space: nowrap;
	}

	.legal-modal-body tr {
		margin: 0 0 .9rem;
		border: 1px solid rgba(0, 113, 206, .18);
		border-radius: .5rem;
		background: rgba(255, 255, 255, .82);
		overflow: hidden;
	}

	.legal-modal-body td {
		display: grid;
		grid-template-columns: minmax(6.5rem, 34%) 1fr;
		gap: .75rem;
		border: 0;
		border-bottom: 1px solid rgba(0, 113, 206, .12);
	}

	.legal-modal-body td:last-child {
		border-bottom: 0;
	}

	.legal-modal-body td::before {
		color: var(--ies-dark);
		font-size: .72rem;
		font-weight: 700;
		text-transform: uppercase;
		content: '';
	}

	.legal-modal-body td:nth-child(1)::before {
		content: 'Nome';
	}

	.legal-modal-body td:nth-child(2)::before {
		content: 'Tipo';
	}

	.legal-modal-body td:nth-child(3)::before {
		content: 'Fornitore';
	}

	.legal-modal-body td:nth-child(4)::before {
		content: 'Durata';
	}

	.legal-modal-body td:nth-child(5)::before {
		content: 'Descrizione';
	}

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

	.site-footer-links {
		justify-content: flex-start;
	}

	.index-main {
		padding-top: 1.75rem;
		padding-bottom: 3rem;
	}

	.index-brand {
		margin-bottom: 2rem;
	}

	.index-brand img {
		width: 180px;
		margin: 0 auto;
	}

	.index-product-grid {
		grid-template-columns: 1fr;
	}

	.index-product-card {
		padding: 1.75rem 1.5rem;
	}

	.index-product-logo {
		width: 150px;
	}

	.index-eurotarget {
		margin-top: 3rem;
	}

}

@media (prefers-reduced-motion: reduce) {
	.index-page .index-animate,
	.index-page .index-product-card.index-animate,
	.index-page .index-product-card.index-animate.is-visible {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.index-product-card {
		transition: none;
	}
}

/* Product landing pages */

.welfare-page {
	--ies-blue: var(--welfare-blue);
	--ies-field: var(--welfare-field);
	--site-footer-bg: var(--ies-green);
	--site-footer-border: rgba(255, 255, 255, .34);
	--site-footer-link-hover: var(--ies-green-soft);
}

.incentive-page {
	--ies-green: var(--ies-incentive);
	--ies-green-dark: var(--ies-incentive);
	--ies-green-soft: var(--ies-incentive-soft);
	--ies-blue: var(--welfare-blue);
	--ies-field: var(--welfare-field);
	--ies-line: rgba(170, 93, 214, .54);
	--welfare-focus: rgba(170, 93, 214, .65);
	--site-footer-bg: var(--ies-incentive);
	--site-footer-border: rgba(255, 255, 255, .34);
	--site-footer-link-hover: var(--ies-incentive-soft);
}

.welfare-page .landing-animate,
.incentive-page .landing-animate {
	opacity: 0;
	transform:
		translate3d(var(--landing-anim-x, 0), var(--landing-anim-y, 1.15rem), 0)
		scale(var(--landing-anim-scale, 1));
	transition:
		opacity .62s ease var(--landing-anim-delay, 0ms),
		transform .7s cubic-bezier(.18, .78, .24, 1) var(--landing-anim-delay, 0ms),
		box-shadow .22s ease,
		background-color .22s ease;
	will-change: opacity, transform;
}

.welfare-page .landing-animate-wash,
.incentive-page .landing-animate-wash {
	--landing-anim-y: .45rem;
}

.welfare-page .landing-animate-down,
.incentive-page .landing-animate-down {
	--landing-anim-y: -.85rem;
}

.welfare-page .landing-animate-left,
.incentive-page .landing-animate-left {
	--landing-anim-x: -1.25rem;
	--landing-anim-y: 0;
}

.welfare-page .landing-animate-right-scale,
.incentive-page .landing-animate-right-scale {
	--landing-anim-x: 1.25rem;
	--landing-anim-y: 0;
	--landing-anim-scale: .985;
}

.welfare-page .landing-animate-pop,
.welfare-page .landing-animate-tile,
.incentive-page .landing-animate-pop,
.incentive-page .landing-animate-tile {
	--landing-anim-y: .75rem;
	--landing-anim-scale: .96;
}

.welfare-page .landing-animate-tile,
.incentive-page .landing-animate-tile {
	transform-origin: center;
}

.welfare-page .landing-animate.is-visible,
.incentive-page .landing-animate.is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.welfare-page .collage-item:not(.landing-animate),
.welfare-page .benefit-grid div:not(.landing-animate),
.welfare-page .partner-lockup > *:not(.landing-animate),
.incentive-page .collage-item:not(.landing-animate),
.incentive-page .benefit-grid div:not(.landing-animate),
.incentive-page .partner-lockup > *:not(.landing-animate),
.incentive-page .incentive-card-placeholder:not(.landing-animate) {
	transition:
		transform .22s ease,
		box-shadow .22s ease,
		background-color .22s ease;
}

@media (hover: hover) {
	.welfare-page .collage-item:hover,
	.welfare-page .collage-item.landing-animate.is-visible:hover,
	.welfare-page .partner-lockup > *:hover,
	.incentive-page .collage-item:hover,
	.incentive-page .collage-item.landing-animate.is-visible:hover,
	.incentive-page .incentive-card-placeholder:hover,
	.incentive-page .partner-lockup > *:hover {
		transform: translateY(-3px);
		box-shadow: 0 .75rem 1.5rem rgba(13, 72, 42, .12);
	}

	.welfare-page .partner-lockup > .landing-animate.is-visible:hover,
	.incentive-page .partner-lockup > .landing-animate.is-visible:hover,
	.incentive-page .incentive-card-placeholder.landing-animate.is-visible:hover {
		transform: translateY(-3px);
	}

	.welfare-page .benefit-grid div:hover,
	.incentive-page .benefit-grid div:hover {
		background: rgba(84, 194, 124, .12);
	}

	.incentive-page .benefit-grid div:hover {
		background: rgba(170, 93, 214, .1);
	}
}

@media (prefers-reduced-motion: reduce) {
	.welfare-page .landing-animate,
	.welfare-page .landing-animate-wash,
	.welfare-page .landing-animate-down,
	.welfare-page .landing-animate-left,
	.welfare-page .landing-animate-right-scale,
	.welfare-page .landing-animate-pop,
	.welfare-page .landing-animate-tile,
	.incentive-page .landing-animate,
	.incentive-page .landing-animate-wash,
	.incentive-page .landing-animate-down,
	.incentive-page .landing-animate-left,
	.incentive-page .landing-animate-right-scale,
	.incentive-page .landing-animate-pop,
	.incentive-page .landing-animate-tile {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.welfare-page .collage-item,
	.welfare-page .benefit-grid div,
	.welfare-page .partner-lockup > *,
	.incentive-page .collage-item,
	.incentive-page .benefit-grid div,
	.incentive-page .partner-lockup > *,
	.incentive-page .incentive-card-placeholder {
		transition: none;
	}
}

.landing {
	width: 100%;
	overflow: hidden;
}

.section {
	position: relative;
	display: flex;
	/* min-height: 100svh; */
	padding: 3.5rem var(--section-pad-x);
}

.section-inner {
	position: relative;
	z-index: 1;
	width: min(1600px, 100%);
	margin: auto;
}

.ies-italic {
	font-family: 'IES Serif', Georgia, serif;
	font-style: italic;
	font-weight: 700;
	font-size: calc(1em + 6px);
}

.brand-ies {
	color: var(--ies-green-dark);
	font-weight: 700;
	/* font-family: 'IES Serif', Georgia, serif;
	font-style: italic; 
	font-size: calc(1em + 5px);
	*/
}

.brand-white {
	color: var(--ies-white);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 140px;
	height: var(--button-h);
	padding: 0 3rem;
	border: 0;
	border-radius: 999px;
	/* font-family: 'IES Serif', Georgia, serif;
	font-style: italic; */
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}

.button:focus-visible {
	outline: 3px solid var(--welfare-focus);
	outline-offset: 4px;
}

.button:hover {
	transform: translateY(-2px);
	box-shadow: 0 0.75rem 1.5rem rgba(13, 72, 42, .16);
}

.button:disabled {
	cursor: progress;
	opacity: .72;
	transform: none;
	box-shadow: none;
}

.button-primary {
	color: var(--ies-white);
	background: var(--ies-green);
}

.button-light,
.button-submit {
	color: var(--ies-green-dark);
	background: var(--ies-field);
	border: solid 2px var(--ies-green);
}

.section-hero,
.section-detail,
.section-benefits {
	background: var(--ies-blue);
}

.hero-inner {
	display: grid;
	gap: 4rem;
}

.hero-heading {
	text-align: center;
	width: fit-content;
}

.hero-title {
	margin: 0;
	font-size: 4rem;
	font-weight: 300;
	line-height: .95;
}

.hero-title .brand-green {
	font-size: calc(1em + 5px);
}

.hero-kicker {
	margin: 0.5rem 0 0;
	color: var(--ies-green-dark);
	font-size: 1.25rem;
	font-weight: 700;
	font-size: calc(1em + 5px);
	line-height: 1.1;
	text-transform: uppercase;
	text-align: end;
}

.hero-copy {
	max-width: 768px;
	margin: 0 auto;
	text-align: left;
}

.hero-copy h2 {
	margin: 0 0 2rem;
	color: var(--ies-green-dark);
	font-size: 1.5rem;
	font-weight: 700;
	font-size: calc(1em + 5px);
	line-height: 1.24;
}

.hero-copy p {
	margin: 0 !important;
	font-size: 1.25rem;
	line-height: 1.3;
}

.hero-copy p + p {
	margin-top: 0.5rem;
}

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

.hero-media {
	position: relative;
	overflow: visible;
	width: min(500px, 100%);
	margin: 0 auto;
}

.hero-media img {
	position: relative;
	z-index: 1;
	width: 100%;
	aspect-ratio: 4 / 3;
	/* border-radius: 0.5rem 1.5rem 0.5rem 1.5rem; */
	/* -webkit-clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
	clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%);
	object-fit: cover;
	object-position: 50% 45%; */
}

.hero-media svg {
	position: absolute;
	bottom: 20px;
	left: -25px;
	width: 35%;
}

.hero-shape {
	position: absolute;
	z-index: 0;
	top: 11%;
	left: -10%;
	width: 35%;
	height: 88%;
	background: var(--ies-green);
	border-radius: 3rem 2.5rem 0.75rem 3rem;
	-webkit-clip-path: polygon(0 16%, 100% 0, 38% 100%, 10% 100%);
	clip-path: polygon(0 16%, 100% 0, 38% 100%, 10% 100%);
}

.section-detail {
	overflow: hidden;
}

.section-incentive-overview {
	background: var(--ies-blue);
}

.incentive-overview-inner {
	display: grid;
	gap: 3rem;
	align-items: center;
}

.incentive-overview-copy {
	display: grid;
	gap: 3rem;
}

.incentive-overview-block h2 {
	margin: 0 0 1.6rem;
	color: var(--ies-green);
	font-size: 2rem;
	font-weight: 300;
	line-height: 1.18;
}

.incentive-overview-block p {
	max-width: 670px;
	margin: 0;
	font-size: 1.25rem;
	line-height: 1.35;
}

.incentive-card-stack {
	display: grid;
	gap: 1.5rem;
	width: min(430px, 100%);
	margin: 0 auto;
}

.incentive-card-placeholder {
	width: 100%;
	border-radius: 20px;
	box-shadow: 0 .75rem 1.5rem rgba(13, 72, 42, .12);
	/*box-shadow: 0 .75rem 1.5rem rgba(123, 53, 163, .16);
	aspect-ratio: 1.73 / 1;
	border-radius: 0.65rem;
	object-fit: cover; */
}

.incentive-page .section-benefits {
	background: var(--ies-white);
	border-color: var(--ies-line);
}

.incentive-page .benefit-grid {
	background: var(--ies-white);
}

.section-detail::after {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: var(--detail-band-height, calc(3rem + (var(--button-h) / 2)));
	background: var(--ies-green);
}

.detail-inner {
	display: grid;
	gap: 4rem;
}

.detail-head h2 {
	margin: 0;
	color: var(--ies-green-dark);
	font-size: 2.25rem;
	font-weight: 300;
	line-height: 1.24;
	text-align: left;
}

.detail-copy {
	max-width: 768px;
	margin: 0 auto;
}

.detail-copy h3 {
	margin: 0 0 2rem;
	color: var(--ies-green-dark);
	font-size: 1.5rem;
	font-weight: 700;
	font-size: calc(1em + 5px);
	line-height: 1.3;
}

.detail-copy p {
	margin: 0;
	font-size: 1.25rem;
	line-height: 1.4;
}

.detail-copy .button {
	margin-top: 5rem;
}

.section-benefits {
	overflow:px;
	border: solid 1px var(--ies-green);
}

.photo-collage {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
	width: 100%;
	/* margin: 0 auto; */
}

.collage-item {
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 30px;
	/* object-fit: cover;
	object-position: 75% 40%; */
}

.section-lead {
	/* min-height: 100svh; */
	color: var(--ies-white);
	background: var(--ies-green);
}

.lead-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.lead-inner h2 {
	/* max-width: 980px; */
	margin: 0;
	font-size: 2rem;
	font-weight: 300;
	line-height: 1.2;
}

.lead-subtitle {
	margin: 2rem 0 1rem;
	font-size: 1rem;
	font-weight: 700;
	font-size: calc(1em + 5px);
	line-height: 1.3;
}

.lead-form {
	width: min(560px, 100%);
}

.form-row {
	position: relative;
	margin-bottom: 22px;
}

.form-row label {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 1.35rem;
	max-width: calc(100% - 2.7rem);
	padding: 0 .45rem;
	border-radius: 999px;
	color: var(--ies-green-dark);
	background: var(--ies-field);
	font-size: .88rem;
	font-weight: 700;
	line-height: 1.35;
	opacity: 0;
	pointer-events: none;
	transform: translateY(14px);
	transition: opacity .16s ease, transform .16s ease, color .16s ease, background-color .16s ease;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.lead-form input,
.lead-form textarea {
	width: 100%;
	border: 1.5px solid transparent;
	border-radius: 999px;
	color: rgba(5, 7, 10, .82);
	background: var(--ies-field);
	box-shadow: none;
	outline: none;
	transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease, padding .18s ease;
}

.lead-form input {
	height: 46px;
	padding: 0 1.75rem;
}

.lead-form textarea {
	min-height: 116px;
	padding: 1.5rem 1.75rem;
	border-radius: 26px;
	resize: vertical;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
	color: rgba(5, 7, 10, .58);
	font-family: var(--ies-font-main);
	font-style: italic;
	opacity: 1;
	transition: opacity .14s ease, color .14s ease;
}

.lead-form input:focus,
.lead-form textarea:focus {
	border-color: rgba(85, 169, 118, .65);
	box-shadow: 0 0 0 3px rgba(255, 255, 255, .42);
}

.form-row:focus-within label,
.form-row.has-value label {
	opacity: 1;
	transform: translateY(-9px);
}

.form-row:focus-within input::placeholder,
.form-row:focus-within textarea::placeholder,
.form-row.has-value input::placeholder,
.form-row.has-value textarea::placeholder {
	opacity: 0;
}

.form-row.is-invalid input,
.form-row.is-invalid textarea {
	border-color: #d7263d;
	background: var(--ies-field);
	box-shadow: 0 0 0 3px rgba(215, 38, 61, .18);
}

.form-row.is-invalid label {
	color: #b42034;
}

.form-row.is-invalid input::placeholder,
.form-row.is-invalid textarea::placeholder {
	color: rgba(143, 31, 31, .72);
}

.incentive-page .form-row.is-invalid input,
.incentive-page .form-row.is-invalid textarea {
	border-color: #b00020;
	background: #fff1f4;
	box-shadow: 0 0 0 3px rgba(255, 255, 255, .5);
}

.incentive-page .form-row.is-invalid label {
	color: #8f0018;
	background: #fff1f4;
}

.incentive-page .form-row.is-invalid input::placeholder,
.incentive-page .form-row.is-invalid textarea::placeholder {
	color: rgba(143, 0, 24, .76);
}

.privacy-check {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 9px;
	max-width: 620px;
	margin: 0.5rem auto 1rem;
	color: rgba(255, 255, 255, .9);
	font-size: 0.75rem;
	line-height: 1.4;
	text-align: left;
	cursor: pointer;
}

.privacy-check input {
	flex: 0 0 auto;
	display: inline-grid;
	place-content: center;
	width: 13px;
	height: 13px;
	margin: 0;
	border: 1px solid rgba(255, 255, 255, .82);
	border-radius: 4px;
	color: var(--ies-green);
	appearance: none;
	-webkit-appearance: none;
	background: rgba(255, 255, 255, .16);
	box-shadow: inset 0 0 0 1px rgba(85, 169, 118, .18);
	cursor: pointer;
	transition:
		background-color .16s ease,
		border-color .16s ease,
		box-shadow .16s ease,
		transform .16s ease;
}

.privacy-check input::before {
	content: 'check';
	color: currentColor;
	font-family: 'Material Symbols Rounded';
	font-size: 2rem;
	font-weight: 400;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	font-feature-settings: 'liga';
	-webkit-font-feature-settings: 'liga';
	-webkit-font-smoothing: antialiased;
	opacity: 0;
	transform: scale(.6);
	transition: opacity .14s ease, transform .14s ease;
}

.privacy-check input:checked {
	border-color: var(--ies-white);
	background-color: var(--ies-white);
	box-shadow: 0 .25rem .75rem color-mix(in srgb, var(--ies-green) 20%, transparent);
}

.privacy-check input:checked::before {
	opacity: 1;
	transform: scale(1);
}

.privacy-check:hover input {
	border-color: var(--ies-white);
	background-color: rgba(255, 255, 255, .24);
}

.privacy-check input:checked:hover {
	background-color: var(--ies-white);
}

.privacy-check input:focus-visible {
	outline: 2px solid rgba(255, 255, 255, .8);
	outline-offset: 3px;
}

.privacy-check.is-invalid {
	color: #8f1f1f;
}

.privacy-check.is-invalid input {
	border-color: #d7263d;
	background-color: #fff5f6;
	box-shadow: 0 0 0 3px rgba(215, 38, 61, .18);
}

.incentive-page .privacy-check.is-invalid {
	color: var(--ies-white);
}

.incentive-page .privacy-check.is-invalid input {
	border-color: #fff1f4;
	background-color: #fff1f4;
	box-shadow: 0 0 0 3px rgba(255, 255, 255, .45);
}

.incentive-page .privacy-check.is-invalid span {
	padding: .45rem .6rem;
	border-radius: 6px;
	color: #8f0018;
	background: rgba(255, 241, 244, .96);
}

.privacy-check span {
	max-width: 540px;
}

.privacy-check a {
	color: inherit;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: .18em;
}

.privacy-check a:hover,
.privacy-check a:focus-visible {
	color: var(--ies-white);
}

.privacy-check a:focus-visible {
	outline: 2px solid rgba(255, 255, 255, .72);
	outline-offset: 3px;
}

.button-submit {
	min-width: 146px;
}

.form-status {
	width: min(100%, 620px);
	margin: 1rem auto 0;
	padding: .8rem 1rem;
	border-radius: 18px;
	color: var(--ies-white);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.35;
	background: transparent;
}

.form-status.is-error {
	color: #8f1f1f;
	background: #fff5f6;
	box-shadow: inset 0 0 0 1.5px rgba(215, 38, 61, .22);
}

.incentive-page .form-status.is-error {
	color: #8f0018;
	background: #fff1f4;
	box-shadow:
		inset 0 0 0 2px rgba(176, 0, 32, .24),
		0 .75rem 1.5rem rgba(87, 24, 122, .18);
}

.form-status.is-success {
	display: flex;
	align-items: flex-start;
	gap: .85rem;
	margin-top: 1.25rem;
	padding: 1rem 1.15rem;
	color: #1f6f49;
	background: #f4fff8;
	box-shadow:
		inset 0 0 0 2px rgba(31, 111, 73, .18),
		0 .85rem 1.65rem rgba(13, 72, 42, .16);
	text-align: left;
}

.form-status.is-loading {
	color: rgba(255, 255, 255, .88);
	background: transparent;
}

.form-status-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	color: var(--ies-white);
	background: var(--ies-green-dark);
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1;
}

.form-status-content {
	display: flex;
	flex-direction: column;
	gap: .2rem;
}

.form-status-content strong {
	color: #155a38;
	font-size: 1.05rem;
	line-height: 1.2;
}

.form-status-content span {
	color: rgba(21, 90, 56, .78);
	font-size: .95rem;
	font-weight: 500;
	line-height: 1.45;
}

.benefits-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.benefits-inner h2 {
	margin: 0 0 1.75rem;
	color: var(--ies-green-dark);
	font-size: 2rem;
	font-weight: 300;
	line-height: 1.2;
}

.benefit-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	width: 100%;
	border: 1px solid var(--ies-line);
	border-radius: 0.5rem;
	overflow: hidden;
}

.benefit-grid div {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 84px;
	padding: 0.75rem 0.5rem;
	border-right: 1px solid var(--ies-line);
	border-bottom: 1px solid var(--ies-line);
	font-size: 1rem;
	font-weight: 700;
	font-size: calc(1em + 5px);
	line-height: 1.2;
	overflow-wrap: normal;
	word-break: normal;
	hyphens: none;
	text-wrap: balance;
}

.benefit-grid div:nth-child(3n) {
	border-right: 0;
}

.benefit-grid div:nth-last-child(-n + 3) {
	border-bottom: 0;
}

.benefits-inner .button {
	margin-top: 1.75rem;
}

.section-solution {
	/* min-height: 100svh; */
	background: var(--ies-green);
	overflow: hidden;
}

.solution-band {
	display: none;
}

.solution-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	/* min-height: 72svh; */
	text-align: center;
}

.solution-lockup {
	display: grid;
	grid-template-columns: auto auto;
	align-items: center;
	justify-content: center;
	gap: 0;
	width: 100%;
}

.solution-inner h2 {
	margin: 0;
	color: var(--ies-white);
	font-size: 1.75rem;
	font-weight: 300;
	line-height: 1.25;
	white-space: nowrap;
}

.partner-lockup {
	display: grid;
	justify-items: center;
	gap: 2rem;
	width: 100%;
	padding-top: 0.5rem;
}

.welfare-logo {
	width: 230px;
	height: auto;
	border: 0;
}

.eurotarget-logo {
	width: 220px;
	height: auto;
}

.satisfaction-logo {
	color: #222;
	font-size: 2rem;
	line-height: 1.1;
}

.satisfaction-logo span {
	font-family: 'IES Serif', Georgia, serif;
	font-size: calc(1em + 5px);
	font-style: italic;
}

.mastercard-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	color: #111;
	font-size: 1.25rem;		
	font-weight: 700;
	font-size: calc(1em + 5px);
	text-transform: lowercase;
}

.mc-circles {
	position: relative;
	display: inline-block;
	width: 48px;
	height: 30px;
}

.mc-circles::before,
.mc-circles::after {
	content: '';
	position: absolute;
	top: 0;
	width: 30px;
	height: 30px;
	border-radius: 50%;
}

.mc-circles::before {
	left: 0;
	background: #e53222;
}

.mc-circles::after {
	right: 0;
	background: #f5a23b;
	mix-blend-mode: multiply;
}

@media (min-width: 821px) {

	.section {
		padding: 6rem var(--section-pad-x);
	}

	.hero-title {
		font-size: 5.75rem;
	}

	.hero-kicker {
		font-size: 1.75rem;
	}

	.hero-inner {
		grid-template-columns: .82fr 1fr;
		grid-template-rows: auto 1fr;
		column-gap: 78px;
		align-items: center;
	}

	.hero-heading {
		grid-column: 1 / -1;
		text-align: left;
	}

	.hero-heading,
	.hero-copy {
		padding-left: 0.5rem;
	}

	.hero-copy {
		margin: 0;
		align-self: start;
	}

	.hero-copy h2, 
	.lead-inner h2,
	.solution-inner h2 {
		font-size: 2rem;
	}

	.hero-copy p,
	.detail-copy p {
		font-size: 1.75rem;
	}

	.hero-copy .button {
		margin-top: 4rem;
	}

	.hero-media {
		width: min(620px, 100%);
		margin: 0;
	}

	.hero-media img {
		aspect-ratio: 4 / 3;
		border-radius: 1.5rem;
	}

	.detail-inner {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto 1fr;
		column-gap: 2rem;
		align-items: start;
		/* align-items: center; */
	}

	.detail-head {
		grid-column: 1 / -1;
	}

	.detail-head h2,
	.detail-copy h3,
	.benefits-inner h2,
	.incentive-overview-block h2 {
		font-size: 2rem;
	}

	.detail-copy {
		margin: 0;
	}

	.incentive-overview-inner {
		grid-template-columns: 1.15fr .85fr;
		column-gap: 5rem;
	}

	.incentive-card-stack {
		gap: 2rem;
	}

	/* .photo-collage {
		width: min(430px, 100%);
	} */

	.lead-subtitle {
		font-size: 1.05rem;
	}

	.lead-form input {
		height: 54px;
	}

	.lead-form textarea {
		min-height: 128px;
	}

	.privacy-check {
		font-size: 1rem;
	}

	.benefit-grid div {
		min-height: 120px;
		font-size: 1.5rem;
	}

	.partner-lockup {
		grid-template-columns: repeat(3, auto);
		align-items: center;
		width: 100%;
		gap: 3rem;
	}

	.legal-modal-dialog {
		width: min(600px, 100%);
	}
	
}

@media (min-width: 1240px) {

	.hero-inner {
		column-gap: 110px;
	}

	.hero-title {
		font-size: 7rem;
	}

	.hero-media {
		width: 650px;
		margin-left: auto;
	}

	.detail-inner {
		column-gap: 5rem;
		grid-template-columns: 1.4fr 1fr;
	}

	.detail-head h2,
	.incentive-overview-block h2,
	.lead-inner h2,
	.benefits-inner h2,
	.solution-inner h2 {
		font-size: 3rem;
	}

	.incentive-overview-block p {
		font-size: 1.75rem;
	}

	.photo-collage {
		/* width: 600px; */
		margin: 0 auto;
	}

	.lead-form {
		width: 620px;
	}

	.satisfaction-logo {
		font-size: 2.5rem;
	}

	.legal-modal-dialog {
		width: min(900px, 100%);
	}
}

@media (max-width: 820px) {
	:root {
		--button-h: 50px;
	}

	.cookie-banner {
		padding: .75rem;
	}

	.cookie-banner-inner {
		grid-template-columns: 1fr;
		gap: 1rem;
		max-height: calc(100svh - 1.5rem);
		overflow-y: auto;
		padding: 1rem;
	}

	.cookie-banner-actions {
		grid-template-columns: 1fr;
	}

	.cookie-button {
		width: 100%;
	}
	
	.section {
		padding-top: 3rem;
		padding-bottom: 3rem;
	}

	.hero-title {
		font-size: 5.5rem;
	}

	.hero-kicker {
		font-size: 1rem;
	}

	.hero-copy {
		order: 3;
	}

	.hero-media {
		order: 2;
	}

	.hero-heading {
		order: 1;
		margin: 0 auto;
	}

	.incentive-page .hero-heading {
		width: 100%;
		max-width: 100%;
		text-align: center;
	}

	.incentive-page .section-inner,
	.incentive-page .hero-inner,
	.incentive-page .detail-inner,
	.incentive-page .hero-copy,
	.incentive-page .detail-copy,
	.incentive-page .incentive-overview-copy {
		width: 100%;
		min-width: 0;
		max-width: 100%;
	}

	.incentive-page .hero-title {
		font-size: 4.25rem;
	}

	.incentive-page .hero-title .brand-ies {
		display: block;
	}

	.incentive-page .hero-kicker {
		text-align: center;
	}

	.incentive-page .hero-media {
		width: 100%;
	}

	.hero-media img {
		aspect-ratio: 4 / 3;
		/* -webkit-clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
		clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%); */
	}

	.hero-media svg {
		position: absolute;
		bottom: 20px;
		left: -15px;
		width: 30%;
	}

	.detail-head h2 {
		font-size: 1.5rem;
	}

	.incentive-overview-copy {
		gap: 2.5rem;
	}

	.incentive-overview-block h2 {
		font-size: 1.5rem;
	}

	.incentive-overview-block p {
		font-size: 1.1rem;
	}

	.photo-collage {
		order: 2;
	}

	.detail-copy {
		order: 3;
	}

	.lead-inner h2 {
		font-size: 1.5rem;
	}

	.lead-subtitle {
		margin-top: 1.25rem;
		font-size: 1rem;
		font-weight: 400;
		line-height: 1.45;
	}

	.lead-form input {
		height: 42px;
		padding: 0 22px;
	}

	.lead-form textarea {
		min-height: 112px;
		padding: 1.25rem 1.5rem;
	}

	.benefit-grid div {
		min-height: 82px;
		padding: 0.5rem 0.35rem;
		font-size: 0.86rem;
		line-height: 1.15;
	}

	.solution-inner h2 {
		font-size: 1.5rem;
	}

	.partner-lockup {
		gap: 4rem;
	}

	.eurotarget-logo {
		width: 190px;
	}

	.button {
    height: var(--button-h);
    padding: 0 2rem;
    font-size: 1.25rem;
	}

}

@media (max-width: 480px) {
	.legal-modal-body {
		padding: 1rem;
	}

	.legal-modal-body tr {
		margin-bottom: .75rem;
	}

	.legal-modal-body td {
		grid-template-columns: 1fr;
		gap: .18rem;
		padding: .65rem .75rem;
	}

	.legal-modal-body td::before {
		font-size: .66rem;
		line-height: 1.2;
		letter-spacing: .04em;
	}

	.legal-modal-body td strong {
		overflow-wrap: anywhere;
	}

	.incentive-page .hero-title {
		font-size: 3.6rem;
	}

	.solution-inner h2 {
		font-size: 1rem;
	}

	.solution-lockup {
		grid-template-columns: 1fr;
		justify-items: center;
		gap: .5rem;
	}

	.benefit-grid div {
		font-size: 0.75rem;
		line-height: 1.15;
	}
}

@media (max-width: 319px) {
	body > * {
		display: none !important;
	}
}
