:root {
	--font-base: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--black: #f7faf7;
	--dark1: #ffffff;
	--dark2: #fbfdf9;
	--dark3: #eef5ec;
	--border: #dce5df;
	--border2: rgba(7, 68, 50, 0.08);
	--accent: #074432;
	--accent2: #679650;
	--adim: rgba(103, 150, 80, 0.14);
	--gold: #679650;
	--gold-dim: rgba(103, 150, 80, 0.16);
	--white: #fff;
	--text: #1c2b25;
	--muted: #5f6f68;
	--muted2: #5f6f68;
	--surf: rgba(7, 68, 50, 0.06);
	--surf2: rgba(103, 150, 80, 0.12);
	--bs-primary: #074432;
	--bs-primary-rgb: 7, 68, 50;
	--bs-link-color: #074432;
	--bs-link-hover-color: #679650;
	--bs-border-color: rgba(7, 68, 50, 0.14);
	--ck-public-bg-image: url('/images/kiosk-altstadt-storefront.jpg');
	--ck-public-bg-overlay: rgba(0, 0, 0, 0.23);
}

*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

section {
	scroll-margin-top: 92px;
}

body {
	font-family: var(--font-base);
	background: var(--black);
	color: var(--text);
	-webkit-font-smoothing: antialiased;
}

.container {
	max-width: 1320px;
}

.container,
.container-fluid {
	padding-left: 32px;
	padding-right: 32px;
}

a {
	color: var(--accent);
}

/* MOBILE */
.mobile-menu-btn {
	display: none;
	position: relative;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	z-index: 420;
	color: var(--accent);
	font-size: 1.3rem;
	line-height: 1;
}

.mobile-drawer {
	display: flex;
	position: fixed;
	inset: 0;
	z-index: 360;
	background: rgba(255, 255, 255, 0.97);
	backdrop-filter: blur(18px);
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	padding-top: 230px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.25s, visibility 0.25s;
}

.mobile-drawer.open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.drawer-logo {
	display: none;
	position: absolute;
	top: 70px;
	left: 50%;
	transform: translateX(-50%);
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background: white;
	border: 1px solid rgba(103, 150, 80, 0.28);
	overflow: hidden;
	align-items: center;
	justify-content: center;
}

.drawer-logo img {
	width: 140px;
	height: 140px;
	object-fit: contain;
	border-radius: 50%;
}

.mobile-drawer.open .drawer-logo {
	display: flex;
}

.mobile-drawer a {
	color: var(--text);
	text-decoration: none;
	font-size: 1.5rem;
	font-weight: 600;
	font-family: var(--font-base);
}

.mobile-drawer a:hover {
	color: var(--accent);
}

.mobile-drawer .drawer-cta {
	background: var(--accent);
	color: white !important;
	padding: 0.75rem 2rem;
	border-radius: 10px;
	font-size: 1rem !important;
	font-family: var(--font-base) !important;
	font-weight: 700 !important;
}

/* NAV */
nav {
	--nav-ease: cubic-bezier(0.22, 1, 0.36, 1);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 400;
	height: 104px;
	padding: 0;
	background: transparent;
	backdrop-filter: blur(0);
	border-bottom: 1px solid transparent;
	box-shadow: none;
	opacity: 1;
	pointer-events: auto;
	transition: height 450ms var(--nav-ease), background 450ms var(--nav-ease), border-color 450ms var(--nav-ease), backdrop-filter 450ms var(--nav-ease);
}

.nav-shell,
.nav-row {
	height: 100%;
	transition: height 450ms var(--nav-ease);
}

.nav-row {
	position: relative;
}

nav>*,
.nav-row>*,
.nav-left,
.nav-right,
.nav-left li,
.nav-right li,
.nav-left a,
.nav-right a {
	display: flex;
	align-items: center;
}

.mobile-menu-btn {
	display: none;
}

nav.nav-scrolled {
	height: 72px;
	background: rgba(255, 255, 255, .94);
	backdrop-filter: blur(14px);
	border-bottom-color: #dce5df;
}

.nav-left {
	height: 100%;
	flex: 1;
	gap: 0.1rem;
	list-style: none;
	justify-content: flex-start;
	margin: 0;
	padding: 0;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-6px);
	transition: opacity 450ms var(--nav-ease), transform 450ms var(--nav-ease);
}

nav.nav-scrolled .nav-left {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.nav-brand {
	position: absolute;
	inset: 0;
	transform: none;
	text-decoration: none;
	justify-content: center;
	white-space: nowrap;
	opacity: 1;
	pointer-events: none;
	transition: opacity 450ms var(--nav-ease);
}

.nav-top-brand {
	position: absolute;
	left: 50%;
	top: 20%;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 22px;
	pointer-events: auto;
	transition: top 450ms var(--nav-ease), transform 450ms var(--nav-ease);
}

nav.nav-at-top .nav-top-brand {
	transform: translate(-50%, 18px);
}

nav.nav-scrolled .nav-top-brand {
	top: 50%;
	transform: translate(-50%, -50%);
}

.nav-top-brand img {
	width: 100px;
	height: 100px;
	object-fit: contain;
	border-radius: 50%;
	background: rgba(255, 255, 255, .92);
	padding: 4px;
	border: 1px solid rgba(103, 150, 80, 0.28);
	box-shadow: none;
	transition: width 450ms var(--nav-ease), height 450ms var(--nav-ease), border-color 450ms var(--nav-ease), box-shadow 450ms var(--nav-ease), padding 450ms var(--nav-ease);
}

.nav-top-line {
	width: 170px;
	height: 1px;
	background: rgba(255, 255, 255, .62);
	display: block;
	transition: width 450ms var(--nav-ease), opacity 450ms var(--nav-ease), transform 450ms var(--nav-ease);
}

nav.nav-scrolled .nav-top-brand img {
	width: 48px;
	height: 48px;
	padding: 0;
	border-color: rgba(103, 150, 80, 0.35);
	box-shadow: 0 5px 16px rgba(7, 68, 50, 0.08);
}

nav.nav-scrolled .nav-top-line {
	width: 0;
	opacity: 0;
	transform: scaleX(0);
}

.nav-right {
	height: 100%;
	flex: 1;
	gap: 0.2rem;
	list-style: none;
	justify-content: flex-end;
	margin: 0;
	padding: 0;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-6px);
	transition: opacity 450ms var(--nav-ease), transform 450ms var(--nav-ease);
}

nav.nav-scrolled .nav-right {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.nav-right .nav-cta-wrap {
	margin-left: 0;
}

.nav-left a,
.nav-right a {
	height: 40px;
	color: #1c2b25;
	text-decoration: none;
	font-size: 0.78rem;
	font-weight: 600;
	line-height: 1;
	padding: 0 0.8rem;
	border-radius: 8px;
	white-space: nowrap;
	transition: color 450ms var(--nav-ease), background 450ms var(--nav-ease), border-color 450ms var(--nav-ease);
}

nav.nav-scrolled .nav-left a:hover,
nav.nav-scrolled .nav-right a:hover {
	color: var(--accent);
	background: var(--surf);
}

.nav-cta {
	height: 40px;
	background: var(--accent) !important;
	color: white !important;
	font-weight: 700 !important;
	border: 1px solid var(--accent) !important;
	border-radius: 8px !important;
	padding: 0 1.2rem !important;
	box-shadow: none;
	transition: color 450ms var(--nav-ease), background 450ms var(--nav-ease), border-color 450ms var(--nav-ease), box-shadow 450ms var(--nav-ease), transform 450ms var(--nav-ease) !important;
}

nav.nav-scrolled .nav-cta:hover {
	box-shadow: 0 8px 18px rgba(7, 68, 50, 0.14) !important;
}


/* HERO PROBLEM ITEMS */
.hero-problem-grid {
	animation: fadeUp 0.8s ease 0.1s both;
}

.hero-problems {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 305px));
	gap: 16px;
	width: 100%;
	max-width: 626px;
	margin-left: auto;
	justify-content: end;
}

.hero-problem-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	min-height: 188px;
	background: rgba(7, 68, 50, .58);
	border: 1px solid rgba(255, 255, 255, .28);
	border-radius: 10px;
	padding: 24px;
	box-shadow: none;
	backdrop-filter: blur(5px);
	color: #fff;
}

.hero-problem-item:nth-child(3) {
	grid-column: 1/-1;
}

.hpi-icon {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background: rgba(255, 255, 255, .14);
	color: #fff;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.95rem;
}

.hpi-title {
	font-size: 16px;
	font-weight: 700;
	color: white;
	margin-bottom: 8px;
	line-height: 1.25;
}

.hpi-text {
	font-size: 14px;
	color: rgba(255, 255, 255, .82);
	line-height: 1.6;
}

.hero-slider-col {
	animation: fadeUp 0.8s ease 0.1s both;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding-top: clamp(1.5rem, 5vh, 4rem);
}

.hero-feature-slider {
	width: 100%;
	max-width: 560px;
	min-height: clamp(330px, 32vw, 410px);
	margin-left: auto;
	padding: 30px;
	border: 1px solid rgba(255, 255, 255, .28);
	border-radius: 18px;
	background: rgba(255, 255, 255, .92);
	box-shadow: 0 18px 42px rgba(7, 68, 50, .18);
	color: #183126;
	backdrop-filter: blur(8px);
	overflow: hidden;
	display: grid;
	grid-template-rows: minmax(0, 1fr) auto;
}

.hero-feature-slider .carousel-inner {
	height: 100%;
	min-height: 0;
	overflow: hidden;
}

.hero-feature-slider .carousel-item {
	height: 100%;
}

.hero-feature-slider.carousel-fade .carousel-item {
	transition: opacity 520ms ease;
}

.hero-feature-card {
	height: 100%;
	min-height: 0;
	display: grid;
	grid-template-rows: 1fr;
}

.hero-feature-slider .carousel-item .hero-feature-copy > * {
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 420ms ease, transform 420ms ease;
}

.hero-feature-slider .carousel-item.active .hero-feature-copy > * {
	opacity: 1;
	transform: translateY(0);
}

.hero-feature-slider .carousel-item.active .hero-feature-card h2 {
	transition-delay: 70ms;
}

.hero-feature-slider .carousel-item.active .hero-feature-card p:not(.hero-feature-eyebrow) {
	transition-delay: 120ms;
}

.hero-feature-slider .carousel-item.active .hero-feature-cta {
	transition-delay: 170ms;
}

.hero-feature-copy {
	padding-right: 64px;
	align-self: center;
}

.hero-feature-eyebrow {
	margin-bottom: 8px;
	color: var(--accent2);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.hero-feature-card h2 {
	margin-bottom: 10px;
	color: var(--accent);
	font-size: clamp(1.45rem, 2vw, 2rem);
	font-weight: 750;
	line-height: 1.08;
}

.hero-feature-card p {
	margin-bottom: 18px;
	color: #42544c;
	font-size: 0.98rem;
	line-height: 1.65;
}

.hero-feature-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 1rem;
	border-radius: 8px;
	background: var(--accent);
	color: #fff;
	font-size: 0.9rem;
	font-weight: 700;
	text-decoration: none;
	transition: background 180ms ease, transform 180ms ease;
}

.hero-feature-cta:hover,
.hero-feature-cta:focus-visible {
	background: #0b513d;
	color: #fff;
	transform: translateY(-1px);
}

.hero-feature-indicators {
	position: static;
	justify-content: flex-start;
	align-items: center;
	gap: 8px;
	min-height: 34px;
	margin: 18px 0 0;
	padding-top: 10px;
}

.hero-feature-indicators [data-bs-target] {
	width: 34px;
	height: 24px;
	margin: 0;
	border: 0;
	background: transparent;
	opacity: 1;
	position: relative;
}

.hero-feature-indicators [data-bs-target]::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 9px;
	height: 9px;
	border-radius: 999px;
	background: rgba(7, 68, 50, .28);
	transform: translate(-50%, -50%);
	transition: width 180ms ease, background 180ms ease;
}

.hero-feature-indicators .active::before {
	width: 24px;
	background: var(--accent);
}

.hero-feature-control {
	top: 22px;
	bottom: auto;
	width: 38px;
	height: 38px;
	border-radius: 999px;
	background: rgba(7, 68, 50, .08);
	color: var(--accent);
	opacity: 1;
	transition: background 180ms ease, color 180ms ease;
}

.hero-feature-control:hover,
.hero-feature-control:focus-visible {
	background: var(--accent);
	color: #fff;
}

.hero-feature-control.carousel-control-prev {
	right: 70px;
	left: auto;
}

.hero-feature-control.carousel-control-next {
	right: 26px;
}

/* HERO */
#home {
	min-height: 820px;
	position: relative;
	display: flex;
	align-items: center;
	padding-top: 0;
	overflow: hidden;
	border-bottom: 0;
}

.hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: var(--ck-public-bg-image);
	background-size: cover;
	background-position: center;
}

.hero-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--ck-public-bg-overlay);
}

.hero-inner {
	position: relative;
	z-index: 2;
	width: 100%;
}

.hero-content-wrap {
	max-width: 1320px;
	margin: 0 auto;
	padding: clamp(7.5rem, 13vh, 9rem) 0 clamp(3rem, 6vh, 4.5rem);
	transform: none;
}

.hero-text {
	animation: fadeUp 0.6s ease both;
}

h1 {
	font-family: var(--font-base);
	font-size: clamp(3.3rem, 4.37vw, 5.43rem);
	font-weight: 750;
	line-height: .95;
	letter-spacing: 0;
	color: #fff;
	margin-bottom: 1.35rem;
	text-shadow: 0 2px 18px rgba(0, 0, 0, .28);
}

h1 .acc {
	color: #679650;
	font-style: normal;
}

h1 .dim {
	color: #fff;
}

.hero-desc {
	color: rgba(255, 255, 255, .90);
	font-size: 1.05rem;
	line-height: 1.65;
	max-width: 480px;
	margin-bottom: 32px;
}

.hero-actions {
	display: flex;
	flex-direction: column;
	gap: 0;
	flex-wrap: wrap;
	align-items: flex-start;
}

.btn-main {
	background: #fff;
	color: var(--accent);
	padding: 0.98rem 2.1rem;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 700;
	border: 1px solid #fff;
	cursor: pointer;
	font-family: var(--font-base);
	text-decoration: none;
	display: inline-block;
	transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
	box-shadow: none;
}

.btn-main:hover {
	transform: translateY(-2px);
}

.hero-trust-text {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	color: #fff;
	opacity: .8;
	margin-top: 12px;
}

.scroll-cue {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.scroll-line {
	width: 1px;
	height: 40px;
	background: linear-gradient(to bottom, transparent, var(--accent), transparent);
	animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {

	0%,
	100% {
		transform: scaleY(1);
		opacity: 1
	}

	50% {
		transform: scaleY(0.5);
		opacity: 0.4
	}
}

/* MARQUEE */

/* COMMON */
section {
	padding: 110px 0;
}

.wrap {
	max-width: 1320px;
	margin: 0 auto;
}

.eyebrow {
	font-size: 0.72rem;
	letter-spacing: .12em;
	font-weight: 700;
	color: var(--accent);
	margin-bottom: 0.8rem;
}

.sec-title {
	font-family: var(--font-base);
	font-size: clamp(2.42rem, 3.3vw, 3.75rem);
	font-weight: 750;
	letter-spacing: -0.02em;
	color: #14251e;
	margin-bottom: 1rem;
	line-height: 1.05;
}

.sec-title span {
	color: var(--accent2);
}

.sec-sub {
	color: #46564f;
	font-size: 1rem;
	line-height: 1.7;
	max-width: 700px;
	margin-bottom: 3.5rem;
}

.nl-section-sub {
	max-width: 700px;
}

.rv {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.rv.on {
	opacity: 1;
	transform: translateY(0);
}

.d1 {
	transition-delay: 0.08s
}

.d2 {
	transition-delay: 0.16s
}

.d3 {
	transition-delay: 0.24s
}

/* HERO TRUST BAR */
.hero-trust-bar {
	background: #f7faf7;
	border-top: 1px solid #dce5df;
	border-bottom: 1px solid #dce5df;
	min-height: 72px;
	padding: 16px 0;
	margin-top: 0;
}

.hero-trust-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	align-items: center;
	min-height: 40px;
}

.hero-trust-item {
	display: inline-grid;
	grid-template-columns: 16px minmax(0, auto);
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: #294038;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	text-align: left;
}

.hero-trust-item+.hero-trust-item {
	border-left: 1px solid rgba(220, 229, 223, .35);
}

.hero-trust-item i {
	color: #679650;
	font-size: 14px;
	line-height: 1;
	width: 16px;
	text-align: center;
}

/* STEPS */
#so-funktioniert-es {
	background: #ffffff;
}

.process-card {
	position: relative;
	min-height: 410px;
	width: 100%;
	background: #fff;
	border: 1px solid #dce5df;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: none;
	transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.process-card:hover,
.process-card:focus-within,
.process-card:focus-visible,
.process-card.hover-test {
	border-color: rgba(103, 150, 80, .42);
	background-color: var(--accent);
	box-shadow: 0 14px 30px rgba(7, 68, 50, .10);
	outline: none;
}

.process-card-content {
	position: relative;
	z-index: 3;
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: 52px 32px;
	color: #1b2a24;
	transition: color 220ms ease;
}

.process-icon {
	width: 52px;
	height: 52px;
	border-radius: 12px;
	background: rgba(103, 150, 80, 0.14);
	border: 1px solid rgba(103, 150, 80, 0.22);
	color: var(--accent);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	margin-bottom: 1.3rem;
	transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease;
}

.process-card:hover .process-icon,
.process-card:focus-within .process-icon,
.process-card:focus-visible .process-icon,
.process-card.hover-test .process-icon {
	background: rgba(255, 255, 255, .14);
	border-color: rgba(255, 255, 255, .38);
	color: #fff;
}

.process-card:hover .process-card-content,
.process-card:hover h3,
.process-card:hover p,
.process-card:hover li,
.process-card:hover .process-num,
.process-card:hover .process-icon,
.process-card:focus-within .process-card-content,
.process-card:focus-within h3,
.process-card:focus-within p,
.process-card:focus-within li,
.process-card:focus-within .process-num,
.process-card:focus-within .process-icon,
.process-card:focus-visible .process-card-content,
.process-card:focus-visible h3,
.process-card:focus-visible p,
.process-card:focus-visible li,
.process-card:focus-visible .process-num,
.process-card:focus-visible .process-icon,
.process-card.hover-test .process-card-content,
.process-card.hover-test h3,
.process-card.hover-test p,
.process-card.hover-test li,
.process-card.hover-test .process-num,
.process-card.hover-test .process-icon {
	color: #fff;
}

.process-card:hover li::before,
.process-card:focus-within li::before,
.process-card:focus-visible li::before,
.process-card.hover-test li::before {
	background: #fff;
}

.process-card h3 {
	font-size: 1.15rem;
	font-weight: 750;
	line-height: 1.25;
	margin-bottom: 0.7rem;
}

.process-card p {
	font-size: 0.95rem;
	line-height: 1.65;
	color: #5b6b64;
	margin-bottom: 1rem;
	transition: color 220ms ease;
}

.process-card ul {
	list-style: none;
	margin-top: auto;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.6rem;
	padding-left: 0;
	text-align: left;
}

.process-card li {
	font-size: 0.78rem;
	color: var(--muted);
	display: flex;
	align-items: center;
	gap: 0.45rem;
	transition: color 220ms ease;
}

.process-card li::before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--accent2);
	flex-shrink: 0;
	transition: background-color 220ms ease;
}

.process-num {
	position: absolute;
	right: 1.1rem;
	bottom: 0.6rem;
	z-index: 3;
	font-size: 6rem;
	line-height: 1;
	font-weight: 800;
	color: rgba(7, 68, 50, .16);
	transition: color 220ms ease;
}

.process-grid.owl-carousel {
	display: flex;
}

/* FLYER */
#flyer-section {
	background: #f1f6f2;
}

.materials-band {
	margin: 3rem -32px 0;
	padding: 48px 32px;
	border: 1px solid #dce5df;
	background: #f1f6f2;
}

.feature-list {
	list-style: none;
	margin-bottom: 2.5rem;
}

.feature-list li {
	color: var(--muted2);
	font-size: 0.9rem;
	padding: 0.7rem 0;
	border-bottom: 1px solid var(--border2);
	display: flex;
	align-items: center;
	gap: 0.9rem;
}

.feature-list li::before {
	content: "↗";
	color: var(--accent);
	font-weight: 700;
	font-size: 0.85rem;
	flex-shrink: 0;
}

.materials-scene {
	min-height: 360px;
	background: #fff;
	border: 1px solid #dce5df;
	border-radius: 14px;
	padding: 36px 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 48px;
	position: relative;
	overflow: hidden;
	max-width: 700px;
	margin-left: auto;
}

.materials-scene::before {
	display: none;
}

.material-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 0;
	position: relative;
	z-index: 1;
}

.material-label {
	font-size: 13px;
	color: #5b6b64;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 500;
	text-align: center;
}

.materials-grid {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 720px;
	margin-left: auto;
}

.material-preview-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	appearance: none;
	color: var(--text);
	font: inherit;
	text-decoration: none;
	transition: transform 180ms ease, filter 180ms ease;
}

.material-preview-card {
	cursor: zoom-in;
}

.material-preview-card:hover,
.material-preview-card:focus-visible {
	transform: translateY(-3px) scale(1.015);
	filter: drop-shadow(0 16px 24px rgba(7, 68, 50, .12));
	outline: none;
}

.material-flyer-stack {
	width: min(100%, 440px);
	min-height: 410px;
	padding: 10px 20px 34px;
	text-align: center;
}

.material-flyer-sheet {
	position: absolute;
	left: 50%;
	bottom: 52px;
	width: min(68%, 276px);
	aspect-ratio: 1232 / 1709;
	display: block;
	transform-origin: center bottom;
}

.material-flyer-sheet img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	border-radius: 0;
	box-shadow: 0 14px 30px rgba(7, 68, 50, .10);
}

.material-flyer-front {
	z-index: 2;
	transform: translateX(-58%) rotate(-5deg);
}

.material-flyer-back {
	z-index: 1;
	transform: translateX(-28%) rotate(5deg);
}

.material-flyer-stack .material-label {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: block;
	width: 100%;
	text-align: center;
}

/* ABOUT */
#about-us {
	background: #f7faf7;
}

.about-grid {
	align-items: stretch !important;
}

.about-logo-card {
	background: var(--dark2);
	border-radius: 12px;
	padding: 2.25rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	border: 1px solid var(--border);
	position: relative;
	overflow: hidden;
	max-width: 420px;
	min-width: 220px;
	height: 100%;
	min-height: 100%;
}

.about-logo-card::before {
	display: none;
}

.about-logo-circle {
	width: clamp(168px, 15vw, 220px);
	height: clamp(168px, 15vw, 220px);
	max-width: 100%;
	border-radius: 50%;
	background: white;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 24px rgba(7, 68, 50, 0.08);
	position: relative;
	z-index: 1;
	margin-bottom: 1.5rem;
	transition: transform 0.2s;
}

.about-logo-circle:hover {
	transform: translateY(-2px);
}

.about-logo-circle img {
	width: calc(100% - 16px);
	height: calc(100% - 16px);
	object-fit: contain;
	border-radius: 50%;
}

.about-tagline {
	font-family: var(--font-base);
	font-size: 0.92rem;
	color: var(--muted2);
	position: relative;
	z-index: 1;
	line-height: 1.5;
}

.about-tagline em {
	color: var(--accent);
}

#about-us .rv.d2 {
	max-width: 860px;
}

.about-para {
	color: #5b6b64;
	line-height: 1.7;
	font-size: 1rem;
	margin-bottom: 1.1rem;
}

/* DASHBOARD */
#dashboard {
	background: #f7faf7;
	padding: 110px 0;
	color: #1c2b25;
}

#dashboard .sec-title {
	font-size: clamp(2.6rem, 4vw, 4.5rem);
}

#dashboard .sec-sub {
	font-size: 1.1rem;
	max-width: 700px;
	margin-bottom: 2.8rem;
}

.db-screens {
	--bs-gutter-x: 1.25rem;
}

.db-column {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	min-height: 100%;
	text-align: center;
	color: #1c2b25;
}

.db-kicker {
	color: #5f6f68;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 1rem;
	text-align: center;
}

.db-media-stage {
	height: 520px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.phone-frame {
	position: relative;
	width: min(100%, 292px);
	max-width: 292px;
	max-height: none;
	background: #fafafa;
	border-radius: 38px;
	border: 8px solid var(--dark3);
	box-shadow: 0 0 0 1px rgba(7, 68, 50, 0.1), 0 14px 34px rgba(7, 68, 50, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.7);
	overflow: hidden;
	flex: initial;
	display: block;
}

.phone-frame::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 22px;
	background: var(--dark3);
	border-radius: 0 0 16px 16px;
	z-index: 10;
}

.phone-screen {
	width: 100%;
	height: auto;
	max-height: none;
	display: block;
	border-radius: 30px;
	object-fit: contain;
	object-position: center;
	background: #fafafa;
}

.db-desktop {
	width: 100%;
	max-height: 500px;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid var(--border);
	background: #fafafa;
	box-shadow: 0 14px 34px rgba(7, 68, 50, 0.08);
	flex: initial;
	display: flex;
	flex-direction: column;
}

.db-desktop-bar {
	background: var(--dark3);
	padding: 0.8rem 1.2rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	border-bottom: 1px solid var(--border);
}

.dbd {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.dbd-r {
	background: #ff5f57;
}

.dbd-y {
	background: #febc2e;
}

.dbd-g {
	background: #28c840;
}

.db-desktop-title {
	color: var(--muted);
	font-size: 0.74rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-weight: 500;
	margin-left: 0.4rem;
}

.db-desktop img {
	width: 100%;
	height: 100%;
	display: block;
	flex: 1;
	min-height: 0;
	object-fit: contain;
	object-position: center;
	background: #fafafa;
}

.db-feature-bar {
	width: 100%;
	margin: 18px auto 0;
	padding: 12px 16px;
	background: #f1f6f2;
	border-radius: 8px;
	color: #334a40;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5;
	text-align: center;
	white-space: normal;
}

.db-feature-bar-phone {
	max-width: 360px;
}

.db-feature-bar-dashboard {
	max-width: 620px;
}

/* COMMUNITY SPLIT */
.community-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	align-items: start;
}

/* NEWSLETTER REDESIGN */
.nl-feature-row {
	display: flex;
	gap: 1.5rem;
	margin: 2.5rem 0 3rem;
	flex-wrap: wrap;
}

.nl-feat-item {
	flex: 1;
	min-width: 220px;
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	background: var(--dark2);
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 1.1rem 1.2rem;
}

.nl-feat-icon {
	font-size: 1.4rem;
	flex-shrink: 0;
	margin-top: 0.05rem;
}

.nl-feat-title {
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 0.2rem;
}

.nl-feat-text {
	font-size: 0.78rem;
	color: var(--muted);
	line-height: 1.55;
}

.nl-dashboard-frame {
	background: #fafafa;
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 0;
	overflow: hidden;
	max-width: 1160px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	box-shadow: 0 18px 40px rgba(7, 68, 50, .08);
}

.nl-dashboard-label {
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 700;
	color: var(--accent);
	margin: 0;
	padding: 14px 14px 0.75rem;
}

.nl-dashboard-img {
	width: 100%;
	height: clamp(300px, 48vw, 560px);
	max-height: 560px;
	object-fit: contain;
	object-position: center;
	display: block;
	border: 0;
	background: #fafafa;
}



/* Newsletter card */
.nl-card {
	background: var(--dark2);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 2.2rem;
	position: relative;
	overflow: hidden;
}

.nl-card::before {
	display: none;
}

.nl-eyebrow {
	font-size: 0.68rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-weight: 700;
	color: var(--accent);
	margin-bottom: 0.6rem;
}

.nl-card h3 {
	font-family: var(--font-base);
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--text);
	line-height: 1.2;
	margin-bottom: 0.9rem;
}

.nl-desc {
	font-size: 0.88rem;
	color: var(--muted2);
	line-height: 1.75;
	margin-bottom: 1.6rem;
}

.nl-bullets {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-bottom: 1.8rem;
}

.nl-bullet {
	display: flex;
	align-items: flex-start;
	gap: 0.8rem;
}

.nl-bullet-icon {
	width: 34px;
	height: 34px;
	border-radius: 9px;
	background: var(--adim);
	border: 1px solid rgba(103, 150, 80, 0.24);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.95rem;
	flex-shrink: 0;
	margin-top: 0.05rem;
}

.nl-bullet strong {
	display: block;
	font-size: 0.85rem;
	color: var(--text);
	margin-bottom: 0.15rem;
}

.nl-bullet span {
	font-size: 0.8rem;
	color: var(--muted);
	line-height: 1.55;
}

.nl-email-row {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 0.6rem;
}

.nl-email-row input {
	flex: 1;
	padding: 0.72rem 1rem;
	background: white;
	border: 1px solid var(--border);
	border-radius: 9px;
	font-family: var(--font-base);
	font-size: 0.88rem;
	color: var(--text);
	outline: none;
	transition: border-color 0.2s;
}

.nl-email-row input::placeholder {
	color: var(--muted);
}

.nl-email-row input:focus {
	border-color: rgba(103, 150, 80, 0.48);
}

.nl-email-row button {
	background: var(--accent);
	color: white;
	border: none;
	padding: 0.72rem 1.2rem;
	border-radius: 9px;
	font-weight: 700;
	font-size: 0.85rem;
	cursor: pointer;
	white-space: nowrap;
	font-family: var(--font-base);
	transition: box-shadow 0.2s;
}

.nl-email-row button:hover {
	box-shadow: 0 10px 20px rgba(7, 68, 50, 0.22);
}

.nl-note {
	font-size: 14px;
	line-height: 1.5;
	color: var(--muted);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 0;
	padding: 12px 14px 14px;
	margin: 0;
}

.nl-section-sub {
	margin-bottom: 2rem;
}

/* Gamification card */
.gf-card {
	background: var(--dark2);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 2.2rem;
	position: relative;
	overflow: hidden;
}

.gf-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 80% 0%, rgba(245, 158, 11, 0.05), transparent 55%);
	pointer-events: none;
}

.gf-eyebrow {
	font-size: 0.68rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-weight: 700;
	color: var(--gold);
	margin-bottom: 0.6rem;
}

.gf-card h3 {
	font-family: var(--font-base);
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--text);
	line-height: 1.2;
	margin-bottom: 0.9rem;
}

.gf-desc {
	font-size: 0.88rem;
	color: var(--muted2);
	line-height: 1.75;
	margin-bottom: 1.4rem;
}

/* Avatar row inside gf */
.gf-avatar-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.9rem;
	margin-bottom: 1.4rem;
}

.gf-robot-card {
	background: var(--dark3);
	border: 1px solid rgba(103, 150, 80, 0.18);
	border-radius: 14px;
	padding: 1.1rem 0.9rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.55rem;
}

.gf-robot-img {
	width: 80px;
	height: 80px;
	object-fit: contain;
	filter: drop-shadow(0 6px 14px rgba(7, 68, 50, 0.16));
	animation: robotFloat 4s ease-in-out infinite;
}

@keyframes robotFloat {

	0%,
	100% {
		transform: translateY(0)
	}

	50% {
		transform: translateY(-7px)
	}
}

.gf-robot-name {
	font-family: var(--font-base);
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--text);
	text-align: center;
}

.gf-robot-sub {
	font-size: 0.62rem;
	color: var(--muted);
	text-align: center;
}

.gf-xp-wrap {
	width: 100%;
}

.gf-xp-top {
	display: flex;
	justify-content: space-between;
	font-size: 0.6rem;
	color: var(--muted);
	margin-bottom: 0.25rem;
}

.gf-xp-top span:last-child {
	color: var(--accent);
}

.gf-xp-bar {
	width: 100%;
	height: 4px;
	background: rgba(7, 68, 50, 0.08);
	border-radius: 2px;
	overflow: hidden;
}

.gf-xp-fill {
	height: 100%;
	width: 35%;
	background: linear-gradient(90deg, var(--accent), var(--accent2));
	border-radius: 2px;
	animation: xpGrow 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

@keyframes xpGrow {
	from {
		width: 0
	}

	to {
		width: 35%
	}
}

.gf-skins {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	justify-content: center;
}

.gf-skin-row {
	background: var(--dark3);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 0.55rem 0.65rem;
	display: flex;
	align-items: center;
	gap: 0.55rem;
	position: relative;
}

.gf-skin-img {
	width: 32px;
	height: 32px;
	object-fit: contain;
	filter: grayscale(1) opacity(0.6);
}

.gf-skin-name {
	font-size: 0.72rem;
	font-weight: 600;
	color: var(--text);
	flex: 1;
}

.gf-skin-pts {
	font-size: 0.62rem;
	color: var(--muted);
}

.gf-skin-lock {
	font-size: 0.7rem;
}

/* Point bullets */
.gf-pts-row {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	margin-bottom: 1.4rem;
}

.gf-pt-chip {
	font-size: 0.7rem;
	font-weight: 600;
	padding: 0.22rem 0.6rem;
	border-radius: 50px;
	color: var(--accent);
	border: 1px solid rgba(103, 150, 80, 0.28);
	background: var(--adim);
}

/* Ranking teaser */
.gf-ranking {
	background: var(--dark3);
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 1.1rem 1.2rem;
}

.gf-ranking-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.9rem;
}

.gf-ranking-title {
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--text);
}

.gf-ranking-badge {
	font-size: 0.6rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--muted);
	background: var(--dark2);
	border: 1px solid var(--border);
	padding: 0.15rem 0.5rem;
	border-radius: 4px;
}

.gf-rank-rows {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.gf-rank-row {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	padding: 0.4rem 0.5rem;
	border-radius: 8px;
	background: var(--dark2);
	border: 1px solid var(--border2);
}

.gf-rank-pos {
	font-size: 0.95rem;
	width: 20px;
	text-align: center;
	flex-shrink: 0;
}

.gf-rank-name {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--text);
	flex: 1;
}

.gf-rank-pts {
	font-size: 0.72rem;
	color: var(--accent);
	font-weight: 600;
}

.gf-rank-you {
	background: var(--adim);
	border: 1px dashed rgba(103, 150, 80, 0.32);
}

.gf-rank-you .gf-rank-name {
	color: var(--accent);
}

/* Signup small */
.gf-join-row {
	display: flex;
	gap: 0.5rem;
	margin-top: 1.2rem;
}

.gf-join-row input {
	flex: 1;
	padding: 0.65rem 0.9rem;
	background: white;
	border: 1px solid var(--border);
	border-radius: 9px;
	font-family: var(--font-base);
	font-size: 0.84rem;
	color: var(--text);
	outline: none;
	transition: border-color 0.2s;
}

.gf-join-row input::placeholder {
	color: var(--muted);
}

.gf-join-row input:focus {
	border-color: rgba(245, 158, 11, 0.4);
}

.gf-join-row button {
	background: var(--accent2);
	color: white;
	border: none;
	padding: 0.65rem 1rem;
	border-radius: 9px;
	font-weight: 700;
	font-size: 0.82rem;
	cursor: pointer;
	white-space: nowrap;
	font-family: var(--font-base);
	transition: box-shadow 0.2s;
}

.gf-join-row button:hover {
	box-shadow: 0 10px 20px rgba(103, 150, 80, 0.24);
}

.gf-join-note {
	font-size: 0.68rem;
	color: var(--muted);
	margin-top: 0.5rem;
}

/* PROBLEM SECTION */
#problem {
	background: var(--dark1);
	padding: 6rem 2rem;
}

.problem-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-bottom: 2.5rem;
}

.problem-card {
	background: var(--dark2);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 2rem 1.8rem;
	transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.problem-card:hover {
	transform: translateY(-5px);
	border-color: rgba(103, 150, 80, 0.34);
	box-shadow: 0 18px 44px rgba(7, 68, 50, 0.12);
}

.problem-card-icon {
	font-size: 2.2rem;
	margin-bottom: 1.2rem;
}

.problem-card-line {
	width: 32px;
	height: 2px;
	background: var(--accent);
	border-radius: 2px;
	margin-bottom: 1rem;
	opacity: 0.6;
}

.problem-card-title {
	font-family: var(--font-base);
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 0.6rem;
	line-height: 1.3;
}

.problem-card-text {
	font-size: 0.85rem;
	color: var(--muted);
	line-height: 1.7;
}

.problem-cta-bar {
	background: var(--adim);
	border: 1px solid rgba(103, 150, 80, 0.24);
	border-radius: 14px;
	padding: 1.2rem 1.6rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 0.95rem;
	color: var(--muted2);
	line-height: 1.6;
}





#community {
	background: #eef5ef;
	position: relative;
	overflow: hidden;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

#community::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 20% 60%, rgba(103, 150, 80, 0.08), transparent 55%), radial-gradient(ellipse at 80% 20%, rgba(7, 68, 50, 0.05), transparent 50%);
	pointer-events: none;
}

.community-intro {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
	margin-bottom: 5rem;
}

.community-email-card {
	background: var(--dark2);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 2rem;
	position: relative;
	overflow: hidden;
}

.community-email-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 80% 0%, rgba(103, 150, 80, 0.1), transparent 55%);
	pointer-events: none;
}

.email-card-header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1.4rem;
}

.email-card-icon {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: var(--adim);
	border: 1px solid rgba(103, 150, 80, 0.24);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.15rem;
	flex-shrink: 0;
}

.email-card-title {
	font-family: var(--font-base);
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--text);
}

.email-card-sub {
	font-size: 0.83rem;
	color: var(--muted);
	line-height: 1.6;
	margin-bottom: 1.4rem;
}

.email-field-row {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
}

.email-field-row input {
	flex: 1;
	padding: 0.7rem 1rem;
	background: white;
	border: 1px solid var(--border);
	border-radius: 9px;
	font-family: var(--font-base);
	font-size: 0.88rem;
	color: var(--text);
	outline: none;
	transition: border-color 0.2s;
}

.email-field-row input::placeholder {
	color: var(--muted);
}

.email-field-row input:focus {
	border-color: rgba(103, 150, 80, 0.48);
}

.email-field-row button {
	background: var(--accent);
	color: white;
	border: none;
	padding: 0.7rem 1.2rem;
	border-radius: 9px;
	font-weight: 700;
	font-size: 0.85rem;
	cursor: pointer;
	white-space: nowrap;
	font-family: var(--font-base);
	transition: box-shadow 0.2s;
}

.email-field-row button:hover {
	box-shadow: 0 10px 20px rgba(7, 68, 50, 0.22);
}

.email-optional-note {
	font-size: 0.72rem;
	color: var(--muted);
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

/* AVATAR PREVIEW inside community card */
.avatar-preview-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-bottom: 1.4rem;
}

.avatar-main-card {
	background: var(--dark3);
	border: 1px solid rgba(103, 150, 80, 0.18);
	border-radius: 16px;
	padding: 1.2rem 1rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.6rem;
	position: relative;
}

.avatar-main-img {
	width: 90px;
	height: 90px;
	object-fit: contain;
	filter: drop-shadow(0 6px 12px rgba(7, 68, 50, 0.16));
	animation: robotFloat 4s ease-in-out infinite;
}

@keyframes robotFloat {

	0%,
	100% {
		transform: translateY(0)
	}

	50% {
		transform: translateY(-7px)
	}
}

.avatar-main-name {
	font-family: var(--font-base);
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--text);
	text-align: center;
}

.avatar-main-sub {
	font-size: 0.65rem;
	color: var(--muted);
	text-align: center;
}

.avatar-xp-wrap {
	width: 100%;
}

.avatar-xp-top {
	display: flex;
	justify-content: space-between;
	font-size: 0.62rem;
	color: var(--muted);
	margin-bottom: 0.3rem;
}

.avatar-xp-top span:last-child {
	color: var(--accent);
}

.avatar-xp-bar {
	width: 100%;
	height: 4px;
	background: rgba(7, 68, 50, 0.08);
	border-radius: 2px;
	overflow: hidden;
}

.avatar-xp-fill {
	height: 100%;
	width: 35%;
	background: linear-gradient(90deg, var(--accent), var(--accent2));
	border-radius: 2px;
	animation: xpGrow 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

@keyframes xpGrow {
	from {
		width: 0
	}

	to {
		width: 35%
	}
}

.avatar-skins-mini {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	justify-content: center;
}

.skin-mini-card {
	background: var(--dark3);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 0.65rem 0.7rem;
	display: flex;
	align-items: center;
	gap: 0.6rem;
	position: relative;
	opacity: 0.7;
}

.skin-mini-img {
	width: 36px;
	height: 36px;
	object-fit: contain;
	filter: grayscale(1) opacity(0.7);
}

.skin-mini-info {
	flex: 1;
}

.skin-mini-name {
	font-size: 0.72rem;
	font-weight: 600;
	color: var(--text);
}

.skin-mini-pts {
	font-size: 0.62rem;
	color: var(--muted);
}

.skin-mini-lock {
	font-size: 0.7rem;
	position: absolute;
	top: 0.4rem;
	right: 0.5rem;
}

.gamification-label {
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-weight: 600;
	color: var(--muted);
	margin-bottom: 1.5rem;
}

.gamification-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.2rem;
}

.gam-card {
	background: var(--dark2);
	border: 1px solid var(--border);
	border-radius: 18px;
	padding: 1.6rem 1.4rem;
	position: relative;
	overflow: hidden;
	transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.gam-card:hover {
	transform: translateY(-5px);
	border-color: rgba(103, 150, 80, 0.34);
	box-shadow: 0 16px 40px rgba(7, 68, 50, 0.12);
}

.gam-card-coming {
	opacity: 0.55;
}

.gam-icon {
	font-size: 1.8rem;
	margin-bottom: 0.9rem;
	display: block;
}

.gam-card h4 {
	font-family: var(--font-base);
	font-size: 1rem;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 0.4rem;
}

.gam-card p {
	font-size: 0.8rem;
	color: var(--muted);
	line-height: 1.6;
}

.gam-badge-row {
	display: flex;
	gap: 0.4rem;
	flex-wrap: wrap;
	margin-top: 0.9rem;
}

.gam-badge {
	font-size: 0.65rem;
	font-weight: 600;
	padding: 0.2rem 0.55rem;
	border-radius: 50px;
	border: 1px solid;
}

.gam-badge-green {
	color: var(--accent);
	border-color: rgba(103, 150, 80, 0.3);
	background: var(--adim);
}

.gam-badge-gold {
	color: var(--gold);
	border-color: rgba(245, 158, 11, 0.3);
	background: rgba(245, 158, 11, 0.08);
}

.gam-badge-muted {
	color: var(--muted);
	border-color: rgba(7, 68, 50, 0.1);
	background: var(--surf);
}

.gam-coming-chip {
	position: absolute;
	top: 1rem;
	right: 1rem;
	font-size: 0.6rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--muted);
	background: var(--dark3);
	border: 1px solid var(--border);
	padding: 0.15rem 0.5rem;
	border-radius: 4px;
}

.ranking-teaser {
	margin-top: 3.5rem;
	background: var(--dark2);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 1.8rem 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	position: relative;
	overflow: hidden;
}

.ranking-teaser::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 80% 50%, rgba(245, 158, 11, 0.05), transparent 55%);
	pointer-events: none;
}

.ranking-teaser-text h4 {
	font-family: var(--font-base);
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 0.3rem;
}

.ranking-teaser-text p {
	font-size: 0.83rem;
	color: var(--muted);
	max-width: 400px;
	line-height: 1.6;
}

.ranking-preview {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-shrink: 0;
}

.rank-preview-item {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	background: var(--dark3);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 0.55rem 1rem;
}

.rank-preview-pos {
	font-size: 1rem;
}

.rank-preview-name {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--text);
}

.rank-preview-pts {
	font-size: 0.72rem;
	color: var(--accent);
	font-weight: 600;
}

.ranking-coming-badge {
	background: var(--dark3);
	border: 1px solid var(--border);
	color: var(--muted2);
	padding: 0.45rem 1rem;
	border-radius: 50px;
	font-size: 0.78rem;
	font-weight: 600;
	white-space: nowrap;
}

/* AVATAR SECTION */
.avatar-section {
	margin-top: 5rem;
	padding-top: 4rem;
	border-top: 1px solid var(--border);
}

.avatar-section-head {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	margin-bottom: 3.5rem;
}

.avatar-coming-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	background: rgba(245, 158, 11, 0.1);
	border: 1px solid rgba(245, 158, 11, 0.25);
	color: var(--gold);
	padding: 0.3rem 0.9rem;
	border-radius: 50px;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 1rem;
}

.avatar-mascot-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.2rem;
}

.avatar-mascot-card {
	background: linear-gradient(145deg, var(--dark2), var(--dark3));
	border: 1px solid var(--border);
	border-radius: 28px;
	padding: 2.5rem 2rem 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	position: relative;
	overflow: hidden;
	transition: transform 0.4s, box-shadow 0.4s;
}

.avatar-mascot-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 24px 60px rgba(7, 68, 50, 0.14);
}

.avatar-mascot-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 50% 0%, rgba(103, 150, 80, 0.11), transparent 60%);
}

.avatar-mascot-img {
	width: 160px;
	height: 160px;
	object-fit: contain;
	position: relative;
	z-index: 1;
	filter: drop-shadow(0 12px 24px rgba(7, 68, 50, 0.16));
	animation: robotFloat 4s ease-in-out infinite;
}

@keyframes robotFloat {

	0%,
	100% {
		transform: translateY(0)
	}

	50% {
		transform: translateY(-10px)
	}
}

.avatar-mascot-name {
	font-family: var(--font-base);
	font-size: 1rem;
	font-weight: 700;
	color: var(--text);
	position: relative;
	z-index: 1;
}

.avatar-mascot-sub {
	font-size: 0.75rem;
	color: var(--muted);
	position: relative;
	z-index: 1;
}

.avatar-xp-bar-wrap {
	width: 100%;
	position: relative;
	z-index: 1;
}

.avatar-xp-label {
	display: flex;
	justify-content: space-between;
	font-size: 0.7rem;
	color: var(--muted);
	margin-bottom: 0.4rem;
}

.avatar-xp-label span:last-child {
	color: var(--accent);
}

.avatar-xp-bar {
	width: 100%;
	height: 6px;
	background: rgba(7, 68, 50, 0.08);
	border-radius: 3px;
	overflow: hidden;
}

.avatar-xp-fill {
	height: 100%;
	width: 35%;
	background: linear-gradient(90deg, var(--accent), var(--accent2));
	border-radius: 3px;
	animation: xpGrow 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

@keyframes xpGrow {
	from {
		width: 0
	}

	to {
		width: 35%
	}
}

.avatar-skins-label {
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--muted);
	font-weight: 600;
	margin-bottom: 1.2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.avatar-skins-label span {
	color: var(--accent);
}

.skins-swiper {
	overflow: hidden;
}

.skins-track {
	display: flex;
	gap: 1rem;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.skin-card {
	flex-shrink: 0;
	width: 130px;
	background: var(--dark2);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 1.2rem 0.8rem 0.9rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.6rem;
	position: relative;
	cursor: pointer;
	transition: border-color 0.25s, transform 0.25s;
}

.skin-card:hover {
	border-color: rgba(103, 150, 80, 0.36);
	transform: translateY(-3px);
}

.skin-card.locked {
	opacity: 0.5;
	cursor: default;
}

.skin-card.locked:hover {
	transform: none;
}

.skin-card-img {
	width: 72px;
	height: 72px;
	object-fit: contain;
	filter: drop-shadow(0 4px 8px rgba(7, 68, 50, 0.14));
}

.skin-card.locked .skin-card-img {
	filter: grayscale(1) drop-shadow(0 4px 8px rgba(7, 68, 50, 0.14));
}

.skin-card-name {
	font-size: 0.72rem;
	font-weight: 600;
	color: var(--text);
	text-align: center;
}

.skin-card-pts {
	font-size: 0.65rem;
	color: var(--muted);
	text-align: center;
}

.skin-lock-icon {
	position: absolute;
	top: 0.5rem;
	right: 0.6rem;
	font-size: 0.7rem;
}

.skin-rare-badge {
	position: absolute;
	top: 0.5rem;
	left: 0.6rem;
	font-size: 0.55rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--gold);
	background: rgba(245, 158, 11, 0.12);
	border: 1px solid rgba(245, 158, 11, 0.25);
	padding: 0.1rem 0.35rem;
	border-radius: 3px;
}

.skins-nav {
	display: flex;
	gap: 0.5rem;
	margin-top: 1rem;
	justify-content: flex-end;
}

.skins-btn {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--dark3);
	border: 1px solid var(--border);
	color: var(--accent);
	font-size: 0.9rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
}

.skins-btn:hover {
	background: var(--surf2);
}

/* PRICING */
#preise {
	background: #ffffff;
}

.pricing-three {
	max-width: none;
}

.pricing-three.owl-carousel {
	display: block;
	width: 100%;
}

.pricing-three.owl-carousel.row {
	--bs-gutter-x: 0;
	margin-left: 0;
	margin-right: 0;
}

.pricing-three.owl-carousel .owl-stage-outer {
	overflow: hidden;
}

.pricing-three.owl-carousel .owl-stage {
	display: flex;
	align-items: stretch;
}

.pricing-three.owl-carousel .owl-item {
	display: flex;
}

.pricing-three.owl-carousel .owl-item > div {
	width: 100%;
	display: flex;
}

.pricing-three .owl-nav {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 18px;
}

.pricing-three .owl-nav button.owl-prev,
.pricing-three .owl-nav button.owl-next {
	width: 42px;
	height: 42px;
	border-radius: 999px;
	border: 1px solid rgba(7, 68, 50, .18) !important;
	background: #fff !important;
	color: var(--accent) !important;
	font-size: 26px !important;
	line-height: 1 !important;
	box-shadow: 0 8px 18px rgba(7, 68, 50, .08);
}

.pricing-three .owl-nav button.disabled {
	opacity: .35;
}

.pricing-three .owl-dots {
	display: flex;
	justify-content: center;
	gap: 7px;
	margin-top: 12px;
}

.pricing-three .owl-dot span {
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: rgba(7, 68, 50, .22);
}

.pricing-three .owl-dot.active span {
	background: var(--accent);
}

@media (max-width: 960px) {
	.pricing-three.owl-carousel .p-card.pro {
		border: 1px solid #dce5df;
		transform: none;
		box-shadow: none;
	}

	.pricing-three.owl-carousel .p-card.pro:hover {
		transform: none;
		box-shadow: 0 14px 34px rgba(7, 68, 50, 0.08);
		border-color: rgba(103, 150, 80, 0.32);
	}
}

.p-card {
	background: var(--dark2);
	border: 1px solid #dce5df;
	border-radius: 20px;
	padding: 2.6rem 2.3rem;
	width: 100%;
	min-height: 100%;
	transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
	position: relative;
	overflow: hidden;
}

.p-card:hover:not(.p-blurred) {
	transform: translateY(-3px);
	box-shadow: 0 14px 34px rgba(7, 68, 50, 0.08);
	border-color: rgba(103, 150, 80, 0.32);
}

.p-card.pro {
	border: 2px solid var(--accent);
	transform: scale(1.025);
}

.p-card.pro:hover {
	transform: scale(1.025);
}

.p-card.pro::before {
	display: none;
}

.p-blurred {
	pointer-events: none;
	user-select: none;
}

.p-blurred::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	background: rgba(255, 255, 255, .28);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.p-blurred::after {
	content: "Kommt bald";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
	display: inline-flex;
	color: var(--accent);
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid rgba(103, 150, 80, 0.34);
	border-radius: 999px;
	padding: 0.45rem 1rem;
	font-size: 0.86rem;
	font-weight: 700;
	box-shadow: 0 10px 24px rgba(7, 68, 50, 0.1);
}

.p-blur-content {
	filter: blur(10px);
	opacity: .48;
}

.p-blurred-wrap {
	position: relative;
}

.p-coming-soon {
	display: none;
}

.p-coming-badge {
	background: var(--dark3);
	border: 1px solid var(--border);
	color: var(--muted2);
	padding: 0.5rem 1.2rem;
	border-radius: 50px;
	font-size: 0.82rem;
	font-weight: 600;
	backdrop-filter: blur(10px);
}

.p-coming-sub {
	font-size: 0.72rem;
	color: var(--muted);
}

.p-tag-row {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1.1rem;
}

.p-tag {
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--accent);
	font-weight: 700;
}

.p-hot-chip {
	background: var(--adim);
	border: 1px solid rgba(103, 150, 80, 0.28);
	color: var(--accent);
	padding: 0.15rem 0.55rem;
	border-radius: 4px;
	font-size: 0.6rem;
	font-weight: 600;
}

.p-card h3 {
	font-family: var(--font-base);
	font-size: 1.35rem;
	color: var(--text);
	margin-bottom: 0.9rem;
}

.p-price {
	font-family: var(--font-base);
	font-size: 3rem;
	font-weight: 700;
	color: var(--text);
	letter-spacing: -0.03em;
	line-height: 1;
	margin-bottom: 0.3rem;
}

.p-price .curr {
	font-size: 1.2rem;
	vertical-align: super;
	color: var(--muted2);
}

.p-cents {
	font-size: 1.3rem;
}

.p-price .per {
	font-size: 0.82rem;
	color: var(--muted);
	font-family: var(--font-base);
	font-weight: 400;
}

.p-sub-text {
	color: var(--muted);
	font-size: 0.75rem;
	margin-bottom: 1.5rem;
	padding-bottom: 1.3rem;
	border-bottom: 1px solid var(--border);
}

.p-feats {
	list-style: none;
	margin-bottom: 1.8rem;
}

.p-feats li {
	color: #3d4d46;
	font-size: 0.88rem;
	padding: 0.45rem 0;
	border-bottom: 1px solid var(--border2);
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.p-feats li::before {
	content: "\f00c";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: var(--accent);
	font-size: 0.78rem;
	flex-shrink: 0;
	opacity: 0.9;
}

.p-feat-gold {
	color: var(--accent) !important;
}

.p-feat-gold::before {
	color: var(--accent) !important;
	opacity: 1 !important;
	text-shadow: none;
}

.p-btn {
	display: block;
	text-align: center;
	padding: 0.82rem;
	border-radius: 10px;
	font-weight: 700;
	text-decoration: none;
	font-size: 0.86rem;
	transition: all 0.2s;
	cursor: pointer;
	border: none;
	font-family: var(--font-base);
	width: 100%;
}

.p-btn-outline {
	background: transparent;
	color: var(--accent);
	border: 1px solid rgba(7, 68, 50, 0.28);
}

.p-btn-outline:hover {
	background: var(--surf2);
	border-color: rgba(103, 150, 80, 0.45);
}

.p-btn-fill {
	background: var(--accent);
	color: white;
	box-shadow: 0 10px 22px rgba(7, 68, 50, 0.18);
}

.p-btn-fill:hover {
	box-shadow: 0 14px 30px rgba(7, 68, 50, 0.26);
	transform: translateY(-1px);
}

.p-footer {
	text-align: center;
	margin-top: 2rem;
	color: var(--muted);
	font-size: 0.82rem;
}

.p-footer strong {
	color: var(--muted2);
}

/* CONTACT */
#kontakt {
	background: #eef5ef;
}

.c-info-list {
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
	margin-top: 0.5rem;
}

.c-info-row {
	display: flex;
	flex-direction: column;
}

.c-info-label {
	font-size: 0.68rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--muted);
	font-weight: 600;
	margin-bottom: 0.2rem;
}

.c-info-val {
	font-size: 0.95rem;
	color: var(--muted2);
}

.c-info-val a {
	color: var(--accent);
	text-decoration: none;
	border-bottom: 1px solid rgba(7, 68, 50, 0.18);
	padding-bottom: 1px;
	transition: border-color 0.2s;
}

.c-info-val a:hover {
	border-color: var(--accent);
	color: var(--accent);
}

.c-divider {
	width: 40px;
	height: 1px;
	background: var(--border);
	margin: 1rem 0;
}

.contact-sub {
	margin-bottom: 1.5rem;
}

.c-grid {
	--bs-gutter-x: 3rem;
	--bs-gutter-y: 2rem;
}

.c-form {
	background: #fff;
	border-radius: 16px;
	padding: 2.5rem;
	border: 1px solid #dce5df;
	box-shadow: 0 16px 40px rgba(7, 68, 50, .08);
}

.c-form-title {
	font-family: var(--font-base);
	font-size: 1.3rem;
	color: var(--text);
	margin-bottom: 1.6rem;
	font-weight: 700;
}

.fg {
	margin-bottom: 1rem;
}

.fg label {
	display: block;
	font-size: 0.72rem;
	font-weight: 600;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 0.4rem;
}

.fg input:not([type="checkbox"]):not([type="radio"]),
.fg textarea,
.fg select {
	width: 100%;
	padding: 0.75rem 1rem;
	background: white;
	border: 1px solid var(--border);
	border-radius: 9px;
	font-family: var(--font-base);
	font-size: 0.9rem;
	color: var(--text);
	outline: none;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.fg input:not([type="checkbox"]):not([type="radio"])::placeholder,
.fg textarea::placeholder {
	color: var(--muted);
}

.fg input:not([type="checkbox"]):not([type="radio"]):focus,
.fg textarea:focus,
.fg select:focus {
	border-color: rgba(103, 150, 80, 0.48);
	box-shadow: 0 0 0 3px rgba(103, 150, 80, 0.12);
}

.fg select {
	min-height: 47px;
	cursor: pointer;
}

.fg textarea {
	resize: vertical;
	min-height: 90px;
}

.c-turnstile-field {
	margin-bottom: 1rem;
}

.c-form-help {
	margin: 0;
	color: var(--muted);
	font-size: 0.82rem;
	line-height: 1.5;
}

.c-form-feedback {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	margin: 0 0 1rem;
	padding: 0.9rem 1rem;
	border: 1px solid;
	border-radius: 12px;
	font-size: 0.86rem;
	font-weight: 400;
	line-height: 1.5;
}

.c-form-feedback-success {
	border-color: rgba(103, 150, 80, 0.28);
	background: rgba(103, 150, 80, 0.1);
	color: #365f29;
}

.c-form-feedback-error {
	border-color: rgba(180, 35, 24, 0.2);
	background: rgba(180, 35, 24, 0.08);
	color: #8f1f16;
}

.c-form-feedback-info {
	border-color: rgba(184, 129, 41, 0.24);
	background: rgba(184, 129, 41, 0.08);
	color: #76531d;
}

.c-form-feedback-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 1.25rem;
	width: 1.25rem;
	height: 1.25rem;
	margin-top: 0.05rem;
	border-radius: 999px;
	background: currentColor;
	color: white;
	font-size: 0.78rem;
	font-weight: 700;
	line-height: 1;
}

.c-form-feedback-title {
	margin: 0 0 0.35rem;
	font-weight: 700;
}

.c-form-feedback ul {
	margin: 0;
	padding-left: 1.1rem;
}

.c-turnstile-note {
	display: inline-block;
	padding: 0.5rem 0.65rem;
	border-radius: 9px;
	background: rgba(103, 150, 80, 0.07);
	font-size: 0.76rem;
}

.contact-form .privacy-consent,
.c-consent-field {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 0.7rem;
}

.contact-form .privacy-consent input[type="checkbox"],
.fg .c-consent-checkbox {
	appearance: auto;
	-webkit-appearance: checkbox;
	flex: 0 0 auto;
	width: 1.05rem;
	height: 1.05rem;
	min-width: 1.05rem;
	margin: 0.17rem 0 0;
	padding: 0;
	border: initial;
	border-radius: 0;
	cursor: pointer;
}

.fg .c-consent-checkbox:focus {
	outline: 2px solid rgba(103, 150, 80, 0.45);
	outline-offset: 2px;
	box-shadow: none;
}

.contact-form .privacy-consent label,
.fg .c-consent-label {
	display: block;
	margin: 0;
	padding: 0;
	color: var(--muted);
	font-size: 0.88rem;
	font-weight: 400;
	letter-spacing: normal;
	line-height: 1.5;
	text-transform: none;
}

.c-inline-modal-link {
	display: inline;
	border: 0;
	padding: 0;
	background: transparent;
	color: var(--accent);
	font: inherit;
	font-weight: 700;
	text-decoration: underline;
	cursor: pointer;
}

.c-inline-modal-link:hover {
	color: var(--accent-2);
}

.c-inline-modal-link:focus-visible {
	outline: 2px solid rgba(103, 150, 80, 0.45);
	outline-offset: 2px;
	border-radius: 4px;
}

.c-form-error {
	margin: -0.15rem 0 0.8rem;
	color: #b42318;
	font-size: 0.78rem;
	line-height: 1.45;
}

.c-submit {
	width: 100%;
	background: var(--accent);
	color: white;
	border: none;
	padding: 0.88rem;
	border-radius: 10px;
	font-family: var(--font-base);
	font-size: 0.92rem;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 10px 22px rgba(7, 68, 50, 0.18);
	transition: all 0.2s;
}

.c-submit:hover {
	box-shadow: 0 14px 30px rgba(7, 68, 50, 0.26);
	transform: translateY(-2px);
}

/* FOOTER */
footer {
	background: var(--dark1);
	padding: 2rem;
	border-top: 1px solid var(--border);
	color: var(--muted);
	font-size: 0.78rem;
}

.f-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.f-brand {
	display: flex;
	align-items: center;
	gap: 9px;
}

.f-logo {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: white;
	overflow: hidden;
}

.f-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.f-links {
	display: flex;
	gap: 1.6rem;
}

.f-links a,
.footer-modal-link {
	color: var(--muted);
	text-decoration: none;
	background: none;
	border: 0;
	padding: 0;
	font: inherit;
	cursor: pointer;
	transition: color 0.2s;
}

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

.footer-modal-link:focus-visible {
	outline: 2px solid var(--accent2);
	outline-offset: 3px;
}

/* LEGAL MODALS */
.legal-modal .modal-content {
	background: #fff;
	border: 1px solid #dce5df;
	border-radius: 14px;
	overflow: hidden;
	color: #3f5048;
}

.legal-modal .modal-header {
	border-bottom: 1px solid #dce5df;
	box-shadow: inset 0 4px 0 #679650;
	padding: 1.5rem 1.75rem 1.25rem;
}

.legal-modal .modal-title {
	color: #074432;
	font-weight: 750;
	line-height: 1.15;
	font-size: 1.6rem;
}

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

.legal-content {
	max-width: 720px;
	margin: 0 auto;
}

.legal-content section + section {
	margin-top: 1.75rem;
	padding-top: 1.25rem;
	border-top: 1px solid #dce5df;
}

.legal-content h3 {
	color: #074432;
	font-size: 1rem;
	font-weight: 750;
	line-height: 1.3;
	margin-bottom: 0.75rem;
}

.legal-content p,
.legal-content dd {
	color: #3f5048;
	font-size: 0.94rem;
	line-height: 1.7;
	margin-bottom: 0;
}

.legal-note {
	background: rgba(103, 150, 80, 0.11);
	border: 1px solid #dce5df;
	border-radius: 8px;
	padding: 0.9rem 1rem;
	margin-bottom: 1.5rem !important;
}

.legal-list {
	display: grid;
	gap: 1rem;
	margin: 0;
}

.legal-list div {
	display: grid;
	gap: 0.25rem;
}

.legal-list dt {
	color: #074432;
	font-weight: 700;
}

.legal-modal .modal-footer {
	border-top: 1px solid #dce5df;
	padding: 1rem 1.75rem;
}

.legal-close-btn {
	background: #074432;
	color: #fff;
	border-radius: 8px;
	padding: 0.65rem 1.1rem;
	font-weight: 700;
}

.legal-close-btn:hover,
.legal-close-btn:focus {
	background: #063829;
	color: #fff;
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(30px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

/* ── TABLET (max 960px) ── */


/* ── MOBILE (max 600px) ── */


/* ── SMALL MOBILE (max 390px) ── */
