﻿		:root {
			--green-dark: #143d30;
			--green-mid: #2a6b52;
			--green-bright: #3d9d72;
			--green-fresh: #5cb88a;
			--green-light: #b8e4ce;
			--green-glow: rgba(92, 184, 138, 0.45);
			--cream: #f6faf7;
			--beige: #ebe8e0;
			--white: #ffffff;
			--text: #0f241c;
			--text-muted: #4a6358;
			--shadow: 0 4px 24px rgba(15, 36, 28, 0.06);
			--shadow-lg: 0 20px 50px rgba(15, 36, 28, 0.12);
			--shadow-glow: 0 8px 40px rgba(61, 157, 114, 0.25);
			--radius: 16px;
			--radius-lg: 26px;
			--radius-xl: 32px;
			--font: "DM Sans", system-ui, -apple-system, sans-serif;
			--font-display: "Outfit", var(--font);
			--gradient-brand: linear-gradient(135deg, #143d30 0%, #1e5c45 40%, #2a8f68 100%);
			--gradient-soft: linear-gradient(180deg, #f0faf5 0%, #f6faf7 40%, #eef5f0 100%);
			--gradient-mesh: radial-gradient(ellipse 90% 70% at 10% -10%, rgba(92, 184, 138, 0.35), transparent 52%),
				radial-gradient(ellipse 70% 60% at 95% 15%, rgba(42, 107, 82, 0.22), transparent 48%),
				radial-gradient(ellipse 60% 50% at 50% 100%, rgba(184, 228, 206, 0.5), transparent 55%);
			--surface-glass: rgba(255, 255, 255, 0.78);
			--border-glass: rgba(255, 255, 255, 0.65);
			--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
			--step--1: clamp(0.95rem, 0.92rem + 0.15vw, 1.05rem);
			--step-0: clamp(1.05rem, 1rem + 0.25vw, 1.2rem);
			--step-1: clamp(1.2rem, 1.1rem + 0.5vw, 1.45rem);
			--step-2: clamp(1.45rem, 1.25rem + 1vw, 1.85rem);
			--step-3: clamp(1.85rem, 1.5rem + 1.75vw, 2.65rem);
			--step-4: clamp(2.4rem, 1.85rem + 2.8vw, 3.6rem);
			--page-gutter: clamp(1.25rem, 4vw + 0.75rem, 5.5rem);
		}

		*, *::before, *::after { box-sizing: border-box; }
		html { scroll-behavior: smooth; }
		body {
			margin: 0;
			font-family: var(--font);
			font-size: var(--step-0);
			line-height: 1.65;
			color: var(--text);
			background: var(--gradient-soft);
			min-height: 100vh;
		}
		body::before {
			content: "";
			position: fixed;
			inset: 0;
			background: var(--gradient-mesh);
			pointer-events: none;
			z-index: -1;
			animation: meshMove 22s ease-in-out infinite alternate;
		}
		@keyframes meshMove {
			0% { filter: hue-rotate(0deg) saturate(1); transform: scale(1) translate(0, 0); }
			100% { filter: hue-rotate(12deg) saturate(1.08); transform: scale(1.04) translate(-1%, 1%); }
		}

		a:focus-visible,
		button:focus-visible,
		input:focus-visible {
			outline: 3px solid var(--green-fresh);
			outline-offset: 3px;
		}

		.skip {
			position: absolute;
			left: -9999px;
			top: auto;
			width: 1px;
			height: 1px;
			overflow: hidden;
		}
		.skip:focus {
			position: fixed;
			left: 1rem;
			top: 1rem;
			width: auto;
			height: auto;
			padding: 0.75rem 1rem;
			background: var(--green-dark);
			color: var(--white);
			z-index: 9999;
			border-radius: 8px;
		}

		.site-header {
			position: sticky;
			top: 0;
			z-index: 100;
			background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.78) 100%);
			backdrop-filter: blur(20px) saturate(1.35);
			-webkit-backdrop-filter: blur(20px) saturate(1.35);
			border-bottom: 1px solid rgba(20, 61, 48, 0.08);
			box-shadow: 0 4px 30px rgba(15, 36, 28, 0.06), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
		}
		.header-inner {
			width: 100%;
			max-width: none;
			margin: 0 auto;
			padding: 0.65rem var(--page-gutter);
			display: flex;
			align-items: center;
			gap: clamp(0.75rem, 2.5vw, 2rem);
			flex-wrap: wrap;
		}
		.brand {
			display: flex;
			align-items: center;
			gap: 0.85rem;
			text-decoration: none;
			color: inherit;
			flex-shrink: 0;
		}
		.brand-logo-img,
		.brand-logo-svg {
			height: 52px;
			width: auto;
			max-width: min(200px, 42vw);
			display: block;
			object-fit: contain;
			flex-shrink: 0;
		}
		.brand-logo-svg {
			border-radius: 12px;
			box-shadow: 0 4px 14px rgba(30, 74, 58, 0.12);
		}
		.brand-text {
			display: flex;
			flex-direction: column;
			line-height: 1.15;
			min-width: 0;
		}
		.brand-name {
			font-family: var(--font-display);
			font-weight: 700;
			font-size: var(--step-1);
			color: var(--green-dark);
			letter-spacing: -0.03em;
		}
		.brand-claim {
			font-size: var(--step--1);
			color: var(--text-muted);
			font-weight: 500;
		}

		.nav-wrap {
			flex: 1 1 auto;
			display: flex;
			justify-content: center;
			align-items: center;
			min-width: 0;
		}
		.nav-main {
			list-style: none;
			margin: 0;
			padding: 0.4rem;
			display: flex;
			align-items: center;
			flex-wrap: wrap;
			justify-content: center;
			gap: 0.25rem;
			background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 252, 249, 0.88));
			border: 1px solid rgba(20, 61, 48, 0.1);
			border-radius: 999px;
			box-shadow: 0 8px 32px rgba(15, 36, 28, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.85) inset, 0 -1px 0 rgba(20, 61, 48, 0.04) inset;
		}
		.nav-main li {
			margin: 0;
			padding: 0;
		}
		.nav-main a {
			display: block;
			color: var(--text);
			text-decoration: none;
			font-weight: 600;
			font-size: clamp(0.9rem, 0.85rem + 0.2vw, 1.02rem);
			padding: 0.55rem 1.05rem;
			border-radius: 999px;
			transition: background 0.28s var(--ease-out), color 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out), transform 0.28s var(--ease-out);
			white-space: nowrap;
		}
		.nav-main a:hover {
			background: linear-gradient(135deg, rgba(184, 228, 206, 0.85), rgba(255, 255, 255, 0.9));
			color: var(--green-dark);
			box-shadow: 0 4px 16px rgba(42, 107, 82, 0.12);
			transform: translateY(-1px);
		}
		.nav-main a:focus-visible {
			background: var(--green-light);
			color: var(--green-dark);
		}

		.header-toolbar {
			display: flex;
			align-items: center;
			gap: 0.65rem;
			flex-shrink: 0;
			margin-left: auto;
		}
		.btn-header-cta {
			padding: 0.72rem 1.35rem;
			font-size: clamp(0.95rem, 0.9rem + 0.15vw, 1.05rem);
			border-radius: 999px;
			box-shadow: 0 4px 20px rgba(20, 61, 48, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
		}

		.nav-toggle {
			display: none;
			flex-direction: column;
			align-items: center;
			justify-content: center;
			width: 48px;
			height: 48px;
			border: none;
			border-radius: 14px;
			background: var(--cream);
			cursor: pointer;
			box-shadow: 0 2px 10px rgba(30, 74, 58, 0.08);
			transition: background 0.2s ease, box-shadow 0.2s ease;
		}
		.nav-toggle:hover {
			background: var(--beige);
			box-shadow: 0 4px 14px rgba(30, 74, 58, 0.1);
		}
		.nav-toggle-bar {
			display: block;
			width: 22px;
			height: 2.5px;
			background: var(--green-dark);
			border-radius: 2px;
			transition: transform 0.25s ease, opacity 0.2s ease, translate 0.25s ease;
		}
		.nav-toggle-bar + .nav-toggle-bar {
			margin-top: 6px;
		}
		.nav-toggle.is-open .nav-toggle-bar:nth-child(1) {
			transform: translateY(8.5px) rotate(45deg);
		}
		.nav-toggle.is-open .nav-toggle-bar:nth-child(2) {
			opacity: 0;
			transform: scaleX(0);
		}
		.nav-toggle.is-open .nav-toggle-bar:nth-child(3) {
			transform: translateY(-8.5px) rotate(-45deg);
		}

		.btn {
			display: inline-flex;
			align-items: center;
			justify-content: center;
			gap: 0.5rem;
			padding: 0.95rem 1.55rem;
			font-family: inherit;
			font-size: var(--step-0);
			font-weight: 700;
			border-radius: 999px;
			border: none;
			cursor: pointer;
			text-decoration: none;
			position: relative;
			overflow: hidden;
			transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), filter 0.25s ease;
		}
		.btn::after {
			content: "";
			position: absolute;
			inset: 0;
			background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.22) 50%, transparent 65%);
			transform: translateX(-120%);
			transition: transform 0.65s var(--ease-out);
			pointer-events: none;
		}
		.btn:hover::after {
			transform: translateX(120%);
		}
		.btn:active { transform: scale(0.97); }
		.btn-primary {
			background: var(--gradient-brand);
			color: var(--white);
			box-shadow: var(--shadow-glow), 0 2px 0 rgba(255, 255, 255, 0.15) inset;
		}
		.btn-primary:hover {
			filter: brightness(1.08) saturate(1.05);
			box-shadow: 0 12px 40px rgba(61, 157, 114, 0.35), 0 2px 0 rgba(255, 255, 255, 0.18) inset;
			transform: translateY(-2px);
		}
		.btn-secondary {
			background: rgba(255, 255, 255, 0.95);
			color: var(--green-dark);
			border: 2px solid rgba(20, 61, 48, 0.18);
			backdrop-filter: blur(8px);
			box-shadow: 0 4px 20px rgba(15, 36, 28, 0.06);
		}
		.btn-secondary:hover {
			background: var(--white);
			border-color: var(--green-mid);
			box-shadow: 0 8px 28px rgba(15, 36, 28, 0.1);
			transform: translateY(-2px);
		}
		.btn-accent {
			background: linear-gradient(135deg, #5cb88a, #3d9d72);
			color: var(--white);
			box-shadow: 0 4px 20px rgba(61, 157, 114, 0.35);
		}
		.btn-accent:hover {
			filter: brightness(1.06);
			transform: translateY(-2px);
			box-shadow: 0 10px 32px rgba(61, 157, 114, 0.4);
		}

		@media (max-width: 900px) {
			.header-inner {
				padding-top: 0.55rem;
				padding-bottom: 0.55rem;
			}
			.nav-toggle {
				display: flex;
			}
			.header-toolbar {
				margin-left: auto;
			}
			.nav-wrap {
				order: 10;
				flex: 1 0 100%;
				width: 100%;
				justify-content: stretch;
				display: none;
				padding: 0.75rem 0 0.25rem;
			}
			.nav-wrap.is-open {
				display: flex;
			}
			.nav-main {
				width: 100%;
				flex-direction: column;
				align-items: stretch;
				gap: 0.35rem;
				padding: 0.65rem;
				border-radius: 20px;
				background: var(--white);
				box-shadow: 0 12px 40px rgba(30, 74, 58, 0.1);
			}
			.nav-main a {
				white-space: normal;
				padding: 0.85rem 1rem;
				border-radius: 14px;
				font-size: 1.05rem;
			}
			.nav-main a:hover,
			.nav-main a:focus-visible {
				background: rgba(200, 230, 212, 0.55);
			}
			.btn-header-cta {
				padding: 0.65rem 1.1rem;
				font-size: var(--step--1);
			}
		}

		.hero {
			width: 100%;
			max-width: none;
			margin: 0 auto;
			padding: clamp(2rem, 5vw, 4rem) var(--page-gutter) clamp(3rem, 6vw, 5rem);
			display: grid;
			grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
			gap: clamp(1.5rem, 4vw, 4rem);
			align-items: center;
			position: relative;
			overflow: hidden;
		}
		.hero::before {
			content: "";
			position: absolute;
			width: min(520px, 90vw);
			height: min(520px, 90vw);
			right: -8%;
			top: -25%;
			background: radial-gradient(circle, rgba(92, 184, 138, 0.35) 0%, transparent 68%);
			pointer-events: none;
			animation: floatOrb 14s ease-in-out infinite;
		}
		.hero::after {
			content: "";
			position: absolute;
			width: min(380px, 70vw);
			height: min(380px, 70vw);
			left: -12%;
			bottom: -20%;
			background: radial-gradient(circle, rgba(42, 107, 82, 0.2) 0%, transparent 65%);
			pointer-events: none;
			animation: floatOrb 18s ease-in-out infinite reverse;
		}
		@keyframes floatOrb {
			0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
			50% { transform: translate(3%, 4%) scale(1.06); opacity: 0.85; }
		}
		.hero > * {
			position: relative;
			z-index: 1;
		}
		@media (max-width: 880px) {
			.hero { grid-template-columns: 1fr; padding-top: 1.5rem; }
		}

		.hero-badge {
			display: inline-flex;
			align-items: center;
			gap: 0.4rem;
			font-family: var(--font-display);
			font-size: var(--step--1);
			font-weight: 700;
			color: var(--green-mid);
			letter-spacing: 0.06em;
			text-transform: uppercase;
			margin-bottom: 0.85rem;
			padding: 0.4rem 0.9rem;
			border-radius: 999px;
			background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(232, 244, 237, 0.9));
			border: 1px solid rgba(20, 61, 48, 0.1);
			box-shadow: 0 4px 16px rgba(15, 36, 28, 0.06);
			animation: badgePulse 4s ease-in-out infinite;
		}
		.hero-badge::before {
			content: "";
			width: 7px;
			height: 7px;
			border-radius: 50%;
			background: linear-gradient(135deg, var(--green-fresh), var(--green-bright));
			box-shadow: 0 0 12px var(--green-glow);
		}
		@keyframes badgePulse {
			0%, 100% { box-shadow: 0 4px 16px rgba(15, 36, 28, 0.06); }
			50% { box-shadow: 0 4px 24px rgba(61, 157, 114, 0.2); }
		}
		.hero h1 {
			font-family: var(--font-display);
			margin: 0 0 0.85rem;
			font-size: var(--step-4);
			font-weight: 800;
			line-height: 1.08;
			letter-spacing: -0.04em;
			background: linear-gradient(135deg, #0f241c 0%, #143d30 35%, #2a8f68 95%);
			-webkit-background-clip: text;
			background-clip: text;
			color: transparent;
			text-shadow: 0 12px 40px rgba(20, 61, 48, 0.15);
		}
		@supports not (background-clip: text) {
			.hero h1 { color: var(--green-dark); background: none; }
		}
		.hero-lead {
			font-size: var(--step-1);
			color: var(--text-muted);
			max-width: min(52ch, 100%);
			margin: 0 0 1.85rem;
			line-height: 1.7;
		}

		.hero-visual {
			position: relative;
			background: linear-gradient(155deg, rgba(255, 255, 255, 0.75) 0%, rgba(232, 244, 237, 0.65) 50%, rgba(240, 248, 243, 0.9) 100%);
			backdrop-filter: blur(16px);
			-webkit-backdrop-filter: blur(16px);
			border-radius: var(--radius-xl);
			padding: clamp(1.25rem, 3vw, 2rem);
			border: 1px solid rgba(255, 255, 255, 0.85);
			box-shadow: var(--shadow-lg), 0 0 0 1px rgba(92, 184, 138, 0.22), 0 0 80px rgba(92, 184, 138, 0.12), 0 0 0 1px rgba(20, 61, 48, 0.04) inset;
			min-height: 300px;
			display: flex;
			align-items: center;
			justify-content: center;
			animation: heroCardFloat 7s ease-in-out infinite;
		}
		@keyframes heroCardFloat {
			0%, 100% { transform: translateY(0); }
			50% { transform: translateY(-10px); }
		}
		.hero-visual svg {
			width: 100%;
			max-width: min(640px, 100%);
			height: auto;
			filter: drop-shadow(0 12px 28px rgba(15, 36, 28, 0.12));
			transition: transform 0.5s var(--ease-out);
		}
		.hero-visual:hover svg {
			transform: scale(1.03) translateY(-4px);
		}

		.hero-cta-row {
			display: flex;
			flex-wrap: wrap;
			gap: 1rem;
			margin-bottom: 1.5rem;
		}

		.plz-box {
			background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 252, 249, 0.88));
			backdrop-filter: blur(12px);
			-webkit-backdrop-filter: blur(12px);
			padding: 1.35rem 1.6rem;
			border-radius: var(--radius-xl);
			box-shadow: var(--shadow-lg), 0 0 0 1px rgba(20, 61, 48, 0.06);
			border: 1px solid rgba(255, 255, 255, 0.9);
			max-width: 100%;
			transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
		}
		.plz-box:hover {
			transform: translateY(-3px);
			box-shadow: 0 28px 60px rgba(15, 36, 28, 0.12), 0 0 0 1px rgba(92, 184, 138, 0.2);
		}
		.plz-box label {
			display: block;
			font-weight: 700;
			color: var(--green-dark);
			margin-bottom: 0.5rem;
			font-size: var(--step-1);
		}
		.plz-form {
			display: flex;
			flex-wrap: wrap;
			gap: 0.75rem;
			align-items: stretch;
		}
		.plz-form input {
			flex: 1 1 140px;
			min-height: 52px;
			padding: 0 1rem;
			font-size: 1.15rem;
			font-family: inherit;
			border: 2px solid var(--green-light);
			border-radius: var(--radius);
		}
		.plz-form input:focus {
			border-color: var(--green-fresh);
			outline: none;
		}
		.plz-msg {
			margin-top: 0.75rem;
			font-weight: 600;
			min-height: 1.5em;
		}
		.plz-msg.ok { color: var(--green-mid); }
		.plz-msg.no { color: #8b4513; }

		section {
			padding: clamp(2.75rem, 6vw, 4.5rem) var(--page-gutter);
		}
		.section-inner {
			width: 100%;
			max-width: none;
			margin: 0 auto;
		}
		.section-title {
			font-family: var(--font-display);
			margin: 0 0 0.65rem;
			font-size: var(--step-3);
			font-weight: 800;
			letter-spacing: -0.03em;
			color: var(--green-dark);
			line-height: 1.15;
		}
		.section-intro {
			margin: 0 0 2rem;
			font-size: var(--step-1);
			color: var(--text-muted);
			max-width: min(72ch, 100%);
		}

		.bg-white {
			background: linear-gradient(180deg, #ffffff 0%, #fafcfb 55%, #f5faf7 100%);
			position: relative;
		}
		.bg-white::before {
			content: "";
			position: absolute;
			inset: 0;
			background: radial-gradient(ellipse 80% 50% at 100% 0%, rgba(92, 184, 138, 0.06), transparent 55%);
			pointer-events: none;
		}
		.bg-white > .section-inner {
			position: relative;
			z-index: 1;
		}
		.bg-beige {
			background: linear-gradient(180deg, #ebe8e0 0%, #f0ede6 45%, #e8f4ef 100%);
			position: relative;
		}
		.bg-beige::before {
			content: "";
			position: absolute;
			inset: 0;
			background: radial-gradient(ellipse 70% 40% at 0% 100%, rgba(42, 107, 82, 0.08), transparent 50%);
			pointer-events: none;
		}
		.bg-beige > .section-inner {
			position: relative;
			z-index: 1;
		}

		.steps {
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			gap: 1.5rem;
		}
		@media (max-width: 768px) {
			.steps { grid-template-columns: 1fr; }
		}
		.step-card {
			background: rgba(255, 255, 255, 0.92);
			border-radius: var(--radius-xl);
			padding: 1.85rem;
			border: 1px solid rgba(20, 61, 48, 0.08);
			box-shadow: var(--shadow);
			transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.3s ease;
		}
		.step-card:hover {
			transform: translateY(-8px);
			box-shadow: var(--shadow-lg), 0 0 0 1px rgba(92, 184, 138, 0.15);
			border-color: rgba(92, 184, 138, 0.25);
		}
		.step-num {
			display: inline-flex;
			width: 2.65rem;
			height: 2.65rem;
			align-items: center;
			justify-content: center;
			background: linear-gradient(135deg, #5cb88a, #3d9d72);
			color: var(--white);
			font-family: var(--font-display);
			font-weight: 800;
			border-radius: 14px;
			margin-bottom: 1.1rem;
			box-shadow: 0 6px 20px rgba(61, 157, 114, 0.35);
		}
		.step-card h3 {
			font-family: var(--font-display);
			margin: 0 0 0.5rem;
			color: var(--green-dark);
			font-size: var(--step-1);
			font-weight: 700;
		}
		.step-card p { margin: 0; color: var(--text-muted); }

		.benefits {
			display: grid;
			grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
			gap: 1.25rem;
		}
		.benefit {
			background: rgba(255, 255, 255, 0.95);
			padding: 1.6rem 1.5rem 1.6rem 1.35rem;
			border-radius: var(--radius-lg);
			border: 1px solid rgba(20, 61, 48, 0.07);
			border-left: 4px solid var(--green-bright);
			box-shadow: var(--shadow);
			transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
		}
		.benefit:hover {
			transform: translateY(-6px) scale(1.01);
			box-shadow: var(--shadow-lg), 0 0 40px rgba(92, 184, 138, 0.12);
		}
		.benefit h3 {
			font-family: var(--font-display);
			margin: 0 0 0.35rem;
			font-size: var(--step-1);
			font-weight: 700;
			color: var(--green-dark);
		}
		.benefit p { margin: 0; color: var(--text-muted); }

		.audience {
			display: flex;
			flex-wrap: wrap;
			gap: 0.75rem;
		}
		.tag {
			background: rgba(255, 255, 255, 0.95);
			color: var(--green-dark);
			padding: 0.65rem 1.2rem;
			border-radius: 999px;
			font-weight: 600;
			border: 1px solid rgba(20, 61, 48, 0.1);
			box-shadow: 0 2px 12px rgba(15, 36, 28, 0.05);
			transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.25s ease;
		}
		.tag:hover {
			transform: translateY(-3px) scale(1.03);
			background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(232, 244, 237, 0.95));
			box-shadow: 0 8px 24px rgba(61, 157, 114, 0.15);
			border-color: rgba(92, 184, 138, 0.35);
		}

		.trust-grid {
			display: grid;
			grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
			gap: 1.5rem;
		}
		.trust-item {
			text-align: center;
			padding: 2rem 1.15rem;
			background: rgba(255, 255, 255, 0.94);
			border-radius: var(--radius-xl);
			box-shadow: var(--shadow);
			border: 1px solid rgba(20, 61, 48, 0.06);
			transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
		}
		.trust-item:hover {
			transform: translateY(-8px);
			box-shadow: var(--shadow-lg), 0 0 48px rgba(92, 184, 138, 0.12);
		}
		.trust-icon {
			font-size: 2.35rem;
			margin: 0 auto 1rem;
			width: 4.25rem;
			height: 4.25rem;
			display: flex;
			align-items: center;
			justify-content: center;
			border-radius: 20px;
			background: linear-gradient(145deg, rgba(232, 244, 237, 0.95), rgba(255, 255, 255, 0.9));
			box-shadow: 0 6px 20px rgba(15, 36, 28, 0.08), 0 0 0 1px rgba(92, 184, 138, 0.2);
			transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
		}
		.trust-item:hover .trust-icon {
			transform: scale(1.08) rotate(-3deg);
			box-shadow: 0 10px 28px rgba(61, 157, 114, 0.2), 0 0 0 1px rgba(92, 184, 138, 0.35);
		}
		.trust-item h3 {
			font-family: var(--font-display);
			margin: 0 0 0.35rem;
			color: var(--green-dark);
			font-size: var(--step-1);
			font-weight: 700;
		}
		.trust-item p {
			margin: 0;
			font-size: var(--step--1);
			color: var(--text-muted);
		}

		.two-col {
			display: grid;
			grid-template-columns: 1fr 1fr;
			gap: 2rem;
			align-items: start;
		}
		@media (max-width: 768px) {
			.two-col { grid-template-columns: 1fr; }
		}

		.list-check {
			list-style: none;
			padding: 0;
			margin: 0;
		}
		.list-check li {
			padding: 0.5rem 0 0.5rem 2rem;
			position: relative;
			color: var(--text-muted);
		}
		.list-check li::before {
			content: "✓";
			position: absolute;
			left: 0;
			color: var(--green-mid);
			font-weight: 800;
		}

		details.faq-item {
			background: rgba(255, 255, 255, 0.95);
			border-radius: var(--radius-lg);
			margin-bottom: 0.85rem;
			border: 1px solid rgba(20, 61, 48, 0.08);
			overflow: hidden;
			box-shadow: var(--shadow);
			transition: box-shadow 0.35s var(--ease-out), border-color 0.25s ease;
		}
		details.faq-item:hover {
			border-color: rgba(92, 184, 138, 0.25);
			box-shadow: 0 12px 36px rgba(15, 36, 28, 0.08);
		}
		details.faq-item[open] {
			box-shadow: var(--shadow-lg);
			border-color: rgba(92, 184, 138, 0.3);
		}
		details.faq-item summary {
			display: flex;
			align-items: center;
			justify-content: space-between;
			gap: 1rem;
			padding: 1.15rem 1.35rem;
			font-family: var(--font-display);
			font-weight: 700;
			color: var(--green-dark);
			cursor: pointer;
			list-style: none;
			transition: background 0.25s ease;
		}
		details.faq-item summary:hover {
			background: rgba(232, 244, 237, 0.45);
		}
		details.faq-item summary::-webkit-details-marker { display: none; }
		details.faq-item summary::after {
			content: "+";
			flex-shrink: 0;
			font-weight: 500;
			width: 2rem;
			height: 2rem;
			line-height: 2rem;
			text-align: center;
			border-radius: 10px;
			background: linear-gradient(135deg, rgba(92, 184, 138, 0.25), rgba(255, 255, 255, 0.8));
			color: var(--green-mid);
			transition: transform 0.35s var(--ease-out), background 0.25s ease;
		}
		details.faq-item[open] summary::after {
			content: "−";
			transform: rotate(180deg);
			background: linear-gradient(135deg, #5cb88a, #3d9d72);
			color: var(--white);
		}
		details.faq-item .faq-body {
			padding: 0 1.35rem 1.2rem;
			color: var(--text-muted);
			animation: faqOpen 0.4s var(--ease-out);
		}
		@keyframes faqOpen {
			from { opacity: 0; transform: translateY(-6px); }
			to { opacity: 1; transform: translateY(0); }
		}

		.contact-card {
			background: var(--gradient-brand);
			color: var(--cream);
			border-radius: var(--radius-xl);
			padding: 2rem;
			box-shadow: var(--shadow-lg), 0 0 60px rgba(20, 61, 48, 0.25);
			border: 1px solid rgba(255, 255, 255, 0.12);
			transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
		}
		.contact-card:hover {
			transform: translateY(-4px);
			box-shadow: 0 28px 60px rgba(15, 36, 28, 0.2), 0 0 80px rgba(61, 157, 114, 0.2);
		}
		.contact-card a {
			color: var(--green-light);
			font-weight: 600;
		}
		.contact-card a:hover { color: var(--white); }

		.site-footer {
			background: linear-gradient(180deg, #0f2a20 0%, #143d30 40%, #0f241c 100%);
			color: rgba(255, 255, 255, 0.9);
			position: relative;
		}
		.site-footer::before {
			content: "";
			position: absolute;
			left: 0;
			right: 0;
			top: 0;
			height: 3px;
			background: linear-gradient(90deg, transparent, #5cb88a, #3d9d72, #5cb88a, transparent);
			opacity: 0.85;
		}
		.footer-top {
			background: var(--beige);
			color: var(--text);
			padding: 2rem var(--page-gutter) 1.5rem;
			border-bottom: 1px solid rgba(30, 74, 58, 0.1);
		}
		.footer-inner {
			width: 100%;
			max-width: none;
			margin: 0 auto;
		}
		.footer-brand .brand-claim { color: var(--text-muted); margin: 0.5rem 0 0; font-size: var(--step--1); font-weight: 600; }
		.footer-nav-wrap {
			padding: 1.25rem var(--page-gutter) 1.75rem;
		}
		.footer-links {
			width: 100%;
			max-width: none;
			margin: 0 auto;
			display: flex;
			flex-wrap: wrap;
			gap: 1rem 2rem;
		}
		.footer-links a {
			color: var(--green-light);
			text-decoration: none;
			font-weight: 600;
		}
		.footer-links a:hover { color: var(--white); }
		.footer-copy {
			width: 100%;
			max-width: none;
			margin: 0 auto;
			padding: 1.25rem var(--page-gutter) 1.75rem;
			font-size: var(--step--1);
			color: rgba(255, 255, 255, 0.7);
			border-top: 1px solid rgba(255, 255, 255, 0.12);
		}

		.hero-logo-large {
			margin-bottom: 1rem;
		}
		.hero-logo-large .brand-logo-img,
		.hero-logo-large .brand-logo-svg {
			height: clamp(68px, 11vw, 104px);
			width: auto;
			max-width: min(280px, 85vw);
			display: block;
		}
		.footer-logo-img,
		.footer-logo-svg {
			height: 40px;
			width: auto;
			max-width: 200px;
			display: block;
			object-fit: contain;
		}
		.footer-logo-svg {
			border-radius: 10px;
		}

		@keyframes heroContentIn {
			from {
				opacity: 0;
				transform: translateY(32px);
			}
			to {
				opacity: 1;
				transform: translateY(0);
			}
		}
		#start.hero > div:first-of-type {
			animation: heroContentIn 0.9s var(--ease-out) both;
		}
		#start.hero .hero-visual {
			animation: heroContentIn 0.9s var(--ease-out) 0.14s both, heroCardFloat 7s ease-in-out 1.1s infinite;
		}

		main.home-main > section:not(#start) {
			opacity: 0;
			transform: translateY(44px);
			transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
		}
		main.home-main > section:not(#start).is-inview {
			opacity: 1;
			transform: translateY(0);
		}
		main.page-sub > section {
			opacity: 0;
			transform: translateY(36px);
			transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
		}
		main.page-sub > section.is-inview {
			opacity: 1;
			transform: translateY(0);
		}

		@media (prefers-reduced-motion: reduce) {
			html { scroll-behavior: auto; }
			body::before,
			.hero::before,
			.hero::after,
			.hero-badge {
				animation: none !important;
			}
			.hero-visual {
				animation: none !important;
			}
			#start.hero > div:first-of-type,
			#start.hero .hero-visual {
				animation: none !important;
				opacity: 1 !important;
				transform: none !important;
			}
			main.home-main > section:not(#start),
			main.page-sub > section {
				opacity: 1 !important;
				transform: none !important;
				transition: none !important;
			}
			.btn::after {
				display: none;
			}
		}

/* Aktiver Menüpunkt */
.nav-main a.is-active {
	background: linear-gradient(135deg, rgba(92, 184, 138, 0.35), rgba(255, 255, 255, 0.92));
	color: var(--green-dark);
	box-shadow: 0 4px 18px rgba(42, 107, 82, 0.14);
}

/* Unterseite: So funktioniert’s */
.sub-hero {
	padding: clamp(2.5rem, 6vw, 4rem) var(--page-gutter);
	position: relative;
	overflow: hidden;
	text-align: center;
	background: linear-gradient(180deg, #ffffff 0%, #f4faf7 100%);
}
.sub-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 70% 55% at 50% -10%, rgba(92, 184, 138, 0.2), transparent 55%);
	pointer-events: none;
}
.sub-hero-inner {
	position: relative;
	z-index: 1;
	max-width: 52rem;
	margin: 0 auto;
}
.sub-hero h1 {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: var(--step-3);
	letter-spacing: -0.03em;
	margin: 0 0 1rem;
	background: linear-gradient(135deg, #0f241c 0%, #143d30 40%, #2a8f68 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	line-height: 1.15;
}
@supports not (background-clip: text) {
	.sub-hero h1 {
		color: var(--green-dark);
		background: none;
	}
}
.sub-hero .sub-lead {
	font-size: var(--step-1);
	color: var(--text-muted);
	margin: 0 auto 1.75rem;
	max-width: 42ch;
	line-height: 1.7;
}
.sub-hero .btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}
.page-sub .section-inner.narrow {
	max-width: 48rem;
	margin: 0 auto;
}
