@charset "UTF-8";
body {
  font-family: var(--body-font), system-ui, sans-serif;
  color: var(--ink);
  background: radial-gradient(1200px 600px at 10% -10%, rgba(26, 173, 69, 0.1), transparent 55%), radial-gradient(900px 500px at 100% 0%, rgba(15, 122, 56, 0.07), transparent 50%), var(--background);
}

:root {
  --primary: #163528;
  --accent: #e8f0eb;
  --light-green: #1aad45;
  --middle-green: #0f7a38;
  --white: #fff;
  --ink: #121812;
  --muted: #5c6b62;
  --surface: #f3f7f4;
  --surface-2: #e7efe9;
  --heading-font: "Sora", system-ui, sans-serif;
  --body-font: "Source Sans 3", system-ui, sans-serif;
  --secondary: var(--accent);
  --foreground: var(--ink);
  --background: #f7faf8;
  --radius: 0.75rem;
  --shadow-soft: 0 12px 40px rgba(18, 24, 18, 0.08);
  --border-subtle: rgba(18, 24, 18, 0.08);
  --border-green: rgba(15, 122, 56, 0.14);
  --content-width: 1100px;
  --section-pad-y: 4.5rem;
}

.primary {
  color: var(--primary);
}

.secondary {
  color: var(--secondary);
}

.light-green {
  color: var(--light-green);
}

.body-font {
  font-family: var(--body-font);
}

.heading-font {
  font-family: var(--heading-font);
}

/* Typeskala
   Display/Hero  → .teaser-headline
   Page H1       → h1 / .seo-landing h1
   Section H2    → .headline-subline h2
   Card/Step H3  → h3 in sections
   Body          → p
   Meta/Kicker   → .section-kicker
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  margin: 1rem 0;
  padding: 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  z-index: 1;
}
@media screen and (max-width: 749px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0.4rem 0 0.4rem;
  }
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
}

h4 {
  font-size: 1.125rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover, a:focus {
  color: var(--middle-green);
  text-decoration: none;
}

p {
  font-size: 1.0625rem;
  font-weight: 400;
  margin: 0 0 0.75rem;
  line-height: 1.65;
  color: var(--ink);
}

li {
  font-size: 1.0625rem;
  font-weight: 400;
  margin: 0 0 0.35rem;
  line-height: 1.55;
}

ul li {
  margin: 0 0 0.35rem;
}

ol li {
  list-style: decimal;
  list-style-type: decimal;
  margin: 0 0 0.35rem;
}

@media screen and (max-width: 749px) {
  br {
    display: none;
  }
}

@media screen and (max-width: 749px) {
  h1 br,
  h2 br,
  h3 br,
  h4 br,
  p br {
    display: block;
  }
}

.f500 {
  font-weight: 500;
}

.f600 {
  font-weight: 600;
}

.post {
  text-align: left !important;
  align-items: start !important;
}
.post h1,
.post h2,
.post h3,
.post h4,
.post h5,
.post h6 {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  margin-top: 2rem;
}
.post ul li {
  margin: 0 0 0.3rem;
  list-style: disc;
  padding-left: 0.75rem;
}
@media screen and (max-width: 749px) {
  .post ul li {
    padding-left: 0.25rem;
    margin-left: -1rem;
  }
}

* {
  box-sizing: border-box;
}

body,
html {
  background: transparent;
  color: var(--foreground);
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: var(--body-font), sans-serif;
  scroll-behavior: smooth;
}

html {
  scroll-padding-top: 6.85rem;
}
@media screen and (max-width: 749px) {
  html {
    scroll-padding-top: 5.25rem;
  }
}

main {
  position: relative;
}

.centered {
  display: flex;
  align-items: center;
  justify-content: center;
}

.base {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

iframe {
  outline: 1px solid black;
  border-radius: 6px;
  margin-bottom: 2rem;
}

img.circle {
  border-radius: 100%;
  height: 250px;
  width: 250px;
  object-fit: cover;
}

hr {
  height: 0;
  border: none;
  border-bottom: 4px solid var(--accent);
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1rem;
}

.desktop {
  display: none;
}
@media screen and (min-width: 1024px) {
  .desktop {
    display: inline-block;
  }
}

.not-desktop {
  display: none;
}
@media screen and (max-width: 1023px) {
  .not-desktop {
    display: inline-block;
  }
}

.download {
  padding: 3rem 0 2.5rem !important;
}
.download * {
  align-self: flex-start;
  justify-self: center;
}
.download svg {
  height: 80px;
  width: auto;
}
.download svg#android {
  height: 100px;
  margin-top: -7.5px;
}

.row-reverse {
  flex-direction: row-reverse;
}

section {
  width: 100%;
}
section * {
  z-index: 1;
}
section > video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  min-width: 100%;
  max-width: 100%;
  height: 113vh;
  object-fit: cover;
  z-index: 0;
  opacity: 0.5;
}
section.top {
  margin-top: 4rem;
  padding-bottom: 0;
}
section.top h1 {
  z-index: 1000;
}

header {
  display: flex;
  justify-content: center;
  width: 100vw;
  height: 112px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 749px) {
  header {
    height: 80px;
  }
}
header img {
  height: 45px;
}
@media screen and (max-width: 749px) {
  header img {
    height: 35px;
  }
}
header .logo span {
  height: 45px;
}
header.transparent {
  background-color: transparent;
  box-shadow: none;
  padding: 0rem 2rem;
}
header.transparent .main-nav .desktop-nav > .nav-item > .nav-link,
header.transparent .main-nav .desktop-nav > .nav-item > .nav-link:link,
header.transparent .main-nav .desktop-nav > .nav-item > .nav-link:visited {
  color: #fff;
}
header.transparent .main-nav .desktop-nav > .nav-item > .nav-link:hover,
header.transparent .main-nav .desktop-nav > .nav-item > .nav-link:focus {
  color: var(--light-green);
}
header.transparent .main-nav .logo-light {
  display: block;
}
header.transparent .main-nav .logo-dark {
  display: none;
}
header.scrolled {
  background-color: rgba(247, 250, 248, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(18, 24, 18, 0.06);
  padding: 0rem 2rem;
}
header.scrolled .main-nav .desktop-nav > .nav-item > .nav-link,
header.scrolled .main-nav .desktop-nav > .nav-item > .nav-link:link,
header.scrolled .main-nav .desktop-nav > .nav-item > .nav-link:visited {
  color: var(--ink);
}
header.scrolled .main-nav .desktop-nav > .nav-item > .nav-link:hover,
header.scrolled .main-nav .desktop-nav > .nav-item > .nav-link:focus {
  color: var(--middle-green);
}
header.scrolled .main-nav .logo-light {
  display: none;
}
header.scrolled .main-nav .logo-dark {
  display: block;
}

.main-nav {
  max-width: 1280px;
  width: 100%;
  height: 100%;
  padding: 0.5rem 2rem;
}
@media screen and (max-width: 749px) {
  .main-nav {
    padding: 0.5rem 0rem;
  }
}
.main-nav .main-nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}
.main-nav .logo {
  display: flex;
  align-items: center;
}
.main-nav .desktop-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem 1rem;
}
.main-nav .desktop-nav > .nav-item {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}
.main-nav .desktop-nav > .nav-item > .nav-link {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
@media screen and (max-width: 1023px) {
  .main-nav .desktop-nav {
    display: none;
  }
}

.mobile-nav {
  display: none;
}
@media screen and (max-width: 1023px) {
  .mobile-nav {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 999;
  }
  .mobile-nav .sidebarIconToggle {
    position: relative;
    height: 22px;
    width: 22px;
    cursor: pointer;
    z-index: 1000;
  }
  .mobile-nav .spinner {
    height: 3px;
    width: 100%;
    background-color: #fff;
    margin: 4px 0;
    transition: all 0.125s ease-in-out;
  }
  .mobile-nav input[type=checkbox] {
    display: none;
  }
  .mobile-nav #sidebarMenu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    transform: translateX(100%);
    transition: transform 0.125s ease;
    z-index: 998;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .mobile-nav input[type=checkbox]:checked ~ #sidebarMenu {
    transform: translateX(0%);
  }
  .mobile-nav .mobile-logo {
    padding: 2rem 1.5rem 1rem;
    flex-shrink: 0;
  }
  .mobile-nav .mobile-logo .logo-dark {
    display: block;
  }
  .mobile-nav .sidebar-scroll-area {
    overflow-y: auto;
    flex-grow: 1;
    padding: 0 1.5rem 3rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .mobile-nav .sidebarMenuInner {
    list-style: none;
    display: flex;
    flex-direction: column;
    margin: 0;
  }
  .mobile-nav .sidebarMenuInner li {
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  .mobile-nav .sidebarMenuInner li a,
  .mobile-nav .sidebarMenuInner li a:link,
  .mobile-nav .sidebarMenuInner li a:visited {
    color: var(--ink) !important;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    display: block;
    padding: 1rem;
    border-bottom: 1px solid var(--light-green);
  }
  .mobile-nav .sidebarMenuInner li a:hover, .mobile-nav .sidebarMenuInner li a:focus,
  .mobile-nav .sidebarMenuInner li a:link:hover,
  .mobile-nav .sidebarMenuInner li a:link:focus,
  .mobile-nav .sidebarMenuInner li a:visited:hover,
  .mobile-nav .sidebarMenuInner li a:visited:focus {
    color: var(--light-green) !important;
  }
}

.burger-icon .spinner {
  background-color: #fff;
}

header.scrolled .burger-icon .spinner {
  background-color: #000;
}

input[type=checkbox]:checked ~ .burger-icon .spinner {
  background-color: #000 !important;
}

.mobile-logo {
  padding: 2rem 1.5rem 1rem;
  display: flex;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.mobile-logo .logo-dark {
  display: block !important;
  height: 45px;
}
.mobile-logo .logo-dark img {
  height: 100%;
  width: auto;
}

.btn {
  text-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0.85rem 1.4rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--heading-font);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

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

.btn-green {
  border-color: var(--light-green);
  background-color: var(--light-green);
  color: var(--ink);
}
.btn-green:hover {
  border-color: var(--ink);
  background-color: var(--ink);
  color: var(--white);
}

.btn-outline-white {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}
.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--ink);
}

.btn-outline-green {
  border-color: var(--middle-green);
  background-color: transparent;
  color: var(--ink);
}
.btn-outline-green:hover {
  border-color: var(--ink);
  background-color: var(--ink);
  color: var(--white);
}

.cookie .shadow {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30rem;
  background: rgba(0, 0, 0, 0.3);
  display: none;
}
.cookie .shadow.visible {
  display: block;
}
.cookie .outer {
  position: fixed;
  top: 10vh;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.cookie .outer.visible {
  display: flex;
}
.cookie .banner {
  padding: 1.5rem 1.75rem;
  background-color: var(--white);
  border-radius: var(--radius);
  display: none;
  box-shadow: var(--shadow-soft);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  min-height: auto;
  max-width: 500px;
  margin: 2rem;
  border: 1px solid var(--border-subtle);
}
.cookie .banner.visible {
  display: flex;
}
.cookie .banner p {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.55;
  text-align: center;
  color: var(--ink);
}
.cookie .row {
  width: 100%;
}
.cookie .button-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
}

#teaser-container {
  height: 100vh;
  position: relative;
}
#teaser-container figure {
  margin: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}
#teaser-container figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0.55) 100%);
  z-index: 1;
  pointer-events: none;
}
#teaser-container figure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 60% center;
  display: block;
  z-index: 0;
}
#teaser-container figure figcaption {
  display: none;
}

.teaser-text-container {
  position: sticky;
  top: 30%;
  transform: translateY(-50%);
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}
.teaser-text-container .brand-mark {
  color: var(--light-green);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}
.teaser-text-container .teaser-headline,
.teaser-text-container .teaser-headline * {
  margin: 0;
  color: #fff;
  font-family: var(--heading-font);
  font-size: clamp(2.25rem, 6vw, 4.25rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
}
@media screen and (max-width: 749px) {
  .teaser-text-container .teaser-headline,
  .teaser-text-container .teaser-headline * {
    font-size: clamp(2rem, 9vw, 2.5rem);
  }
}
.teaser-text-container .teaser-subline {
  margin: 0;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.5;
  font-weight: 400;
}
@media screen and (max-width: 749px) {
  .teaser-text-container .teaser-subline {
    font-size: 1.05rem;
  }
}
@media screen and (max-width: 1023px) {
  .teaser-text-container {
    padding: 1.5rem;
    gap: 1.25rem;
  }
}
@media screen and (max-width: 749px) {
  .teaser-text-container {
    padding: 1rem;
    gap: 1rem;
    max-width: 90%;
  }
}

.teaser-btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (min-width: 750px) and (max-width: 1023px) {
  .teaser-btn-container {
    align-items: center;
    gap: 1rem;
  }
}
@media screen and (max-width: 749px) {
  .teaser-btn-container {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

.section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
  flex-direction: column;
  padding: 0rem 2rem;
}
@media screen and (max-width: 749px) {
  .section {
    padding: 0rem 1rem;
  }
}

.content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 0rem;
  width: 100%;
  flex-direction: column;
  margin-top: 4rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 749px) {
  .content {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    gap: 0;
  }
}

.headline-subline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
  flex-direction: column;
  margin: 1rem 0;
  color: var(--ink);
  text-align: center;
  /* Wenn section-kicker schon da ist, doppelte Kicker-Größe vermeiden */
}
.headline-subline p {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--middle-green);
  margin: 0;
  line-height: 1.3;
}
.headline-subline .section-kicker {
  font-size: 0.8125rem;
}
.headline-subline h2 {
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  margin: 0.5rem 0 0;
  color: var(--ink);
}
@media screen and (max-width: 749px) {
  .headline-subline h2 {
    font-size: clamp(1.45rem, 6vw, 1.75rem);
  }
}
@media screen and (max-width: 749px) {
  .headline-subline {
    padding: 0;
  }
}

.slide-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 6px;
  align-items: stretch;
  margin-top: 2.5rem;
  width: 100%;
  overflow: hidden;
}
.slide-container h4 {
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 1023px) {
  .slide-container {
    flex-direction: column;
    align-items: center;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.input-container {
  width: 100%;
}

#action-dates-container img {
  width: 80px;
}

#hubspotForm {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
}
#hubspotForm label {
  display: none;
}

.input {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(18, 24, 18, 0.14);
  border-radius: var(--radius);
  font-size: 1rem;
  background-color: #fff;
  transition: border-color 0.3s ease-in-out;
}
.input:focus {
  border-color: var(--light-green);
  outline: none;
}

input,
textarea {
  font-family: var(--body-font), system-ui, sans-serif;
}

/* Autocomplete Container */
.autocomplete-container {
  position: relative;
  width: 100%;
  z-index: 1000;
}

/* Dropdown für Adressvorschläge */
#address-suggestions {
  list-style-type: none;
  padding: 0;
  margin: 0;
  border: 1px solid #ccc;
  background: white;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-width: 400px;
  z-index: 1050;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  display: none;
  overflow-y: auto;
  max-height: 200px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

/* Dropdown-Einträge */
#address-suggestions li {
  padding: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #333;
  background: white;
}
#address-suggestions li:hover {
  background: #f0f0f0;
}

/* Entfernt den unteren Border-Radius, wenn Vorschläge sichtbar sind */
.autocomplete-container.active input,
#address.open {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-bottom: none !important;
}

/* Checkbox */
.agree-privacy-policy {
  box-sizing: border-box;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  margin: 1rem 0;
  font-size: 0.75rem;
}
.agree-privacy-policy label {
  display: block !important;
  cursor: pointer;
}

input[type=checkbox] {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 20px;
  border: 2px solid #ccc;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: middle;
  border-radius: 3px;
  margin: 0;
  cursor: pointer;
  position: relative;
  transition: background-color 0.2s, border-color 0.2s;
}
input[type=checkbox]:checked {
  background-color: #4caf50;
  border-color: #4caf50;
}
input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 4px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.agree-privacy-policy span {
  margin-left: 50px;
  font-size: 14px;
}

.agree-privacy-policy a {
  color: #0f7a38;
}

.agree-privacy-policy a:visited {
  color: #0f7a38;
}

/* Service-Description */
#service .content {
  gap: 0;
}

.hidden {
  position: absolute;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease-in-out, height 0.3s ease-in-out;
}

.active {
  position: relative;
  width: 100%;
  opacity: 1;
  visibility: visible;
  height: auto;
  overflow: visible;
  transition: opacity 0.3s ease-in-out, height 0.3s ease-in-out;
}

#sustainability-descriptions-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  flex-direction: column;
  width: 100%;
  color: #163528;
  margin-top: 1rem;
}
#sustainability-descriptions-container .sustainability-content-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
}
@media screen and (max-width: 749px) {
  #sustainability-descriptions-container .sustainability-content-text {
    align-items: center;
    gap: 0.5rem;
  }
}
#sustainability-descriptions-container .sustainability-content-text h3 {
  font-weight: 600;
  line-height: 1.25;
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  margin: 0rem;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 749px) {
  #sustainability-descriptions-container .sustainability-content-text h3 {
    font-size: 1.35rem;
  }
}
#sustainability-descriptions-container .sustainability-content-text p {
  color: var(--muted);
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.65;
  margin: 0;
}
@media screen and (max-width: 749px) {
  #sustainability-descriptions-container .sustainability-content-text p {
    font-size: 1.0625rem;
    text-align: center;
  }
}
#sustainability-descriptions-container #service-image {
  transition: transform 0.3s ease-in-out;
}
#sustainability-descriptions-container #sustainability-descriptions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
}
#sustainability-descriptions-container #sustainability-descriptions img {
  width: clamp(290px, 35vw, 480px);
  height: clamp(390px, 40vw, 530px);
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
}
@media screen and (max-width: 749px) {
  #sustainability-descriptions-container #sustainability-descriptions img {
    width: calc(100vw - 5rem);
    height: 250px;
  }
}
#sustainability-descriptions-container #sustainability-descriptions #sustainability {
  display: flex;
  justify-content: flex-start;
  height: 100%;
  gap: 1rem;
}
#sustainability-descriptions-container #sustainability-descriptions .sustainability-container {
  height: 100%;
  display: flex;
  gap: 8rem;
  margin-top: 1rem;
}
#sustainability-descriptions-container #sustainability-descriptions .sustainability-container .sustainability {
  margin-bottom: 1rem;
}
@media screen and (min-width: 750px) and (max-width: 1023px) {
  #sustainability-descriptions-container #sustainability-descriptions .sustainability-container {
    gap: 3rem;
  }
}
@media screen and (max-width: 749px) {
  #sustainability-descriptions-container #sustainability-descriptions .sustainability-container {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }
}

#professional .content {
  margin-bottom: 1rem;
}
#professional .professional-image-container {
  height: clamp(350px, 60vw, 600px);
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
}
#professional .professional-image-container figure {
  margin: 0;
  height: 100%;
  width: 100%;
}
#professional .professional-image-container figure img {
  height: 100%;
  width: 100%;
  object-position: center;
  object-fit: cover;
}
#professional .professional-image-container figure figcaption {
  display: none;
}
#professional .professional-description-cards {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 0rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
  position: absolute;
  height: 100%;
  width: 100%;
}

#customers {
  padding: 0 0 4rem 0;
}
#customers .content {
  margin-bottom: 1rem;
}
#customers a {
  margin-top: 2rem !important;
}

.swiper {
  width: 100%;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
  padding: 6px;
}

.swiper-slide {
  width: 400px !important;
  flex-shrink: 0 !important;
}
@media (max-width: 1279px) {
  .swiper-slide {
    width: 360px !important;
  }
}

.swiper-pagination {
  position: static !important;
  margin-top: 0.5rem;
}

.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  opacity: 1;
  margin: 0 0.3rem !important;
}

.swiper-pagination-bullet-active {
  background-color: var(--light-green) !important;
}

#comparison {
  /* Styles in _redesign.scss (.comparison-table) */
}

/* Kontakt-Footer-Styles liegen in _footer.scss */
.seo-landing {
  padding-top: 7rem;
}
.seo-landing .seo-landing-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: left;
}
.seo-landing .seo-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--middle-green);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.seo-landing h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
}
.seo-landing .seo-lead {
  margin: 0 0 1.5rem;
  font-size: 1.1875rem;
  line-height: 1.6;
  color: var(--muted);
}
.seo-landing .seo-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.seo-landing .seo-body {
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
}
.seo-landing .seo-body p {
  margin: 0 0 1rem;
}
.seo-landing .seo-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 749px) {
  .seo-landing .seo-highlights {
    grid-template-columns: 1fr;
  }
}
.seo-landing .seo-highlights h2 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  line-height: 1.3;
}
.seo-landing .seo-highlights ul {
  margin: 0;
  padding-left: 1.25rem;
  line-height: 1.7;
}
.seo-landing .seo-highlights li {
  font-size: 1.0625rem;
}
.seo-landing .seo-highlights a {
  color: inherit;
}
.seo-landing .seo-back {
  margin-top: 2rem;
  font-size: 0.95rem;
}
.seo-landing .seo-back a {
  color: inherit;
}

.card {
  color: #000;
  background-color: #fff;
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  width: 400px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-2px);
}
.card h3.card-title,
.card h4 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}
.card .card-image-container {
  display: flex;
}
.card .card-image-container .card-image {
  width: 100%;
  height: 290px;
  display: flex;
}
.card .card-image-container .card-image img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  border-radius: 1.25rem 1.25rem 0 0;
}
@media screen and (min-width: 1024px) {
  .card {
    width: 360px !important;
  }
}
@media screen and (min-width: 750px) and (max-width: 1023px) {
  .card {
    width: 650px !important;
  }
}
@media screen and (max-width: 749px) {
  .card {
    width: 360px !important;
  }
}

.card-borderless {
  color: #000;
  background-color: transparent;
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  width: 400px;
  box-shadow: none;
}
.card-borderless .card-image-container {
  display: flex;
}
.card-borderless .card-image-container .card-image {
  width: 100%;
  height: 290px;
  display: flex;
}
.card-borderless .card-image-container .card-image img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  border-radius: 1.25rem;
}
.card-borderless .card-content {
  align-items: flex-start;
  text-align: left;
  padding-left: 0;
}
@media screen and (max-width: 1023px) {
  .card-borderless .card-content {
    padding-top: 1rem !important;
  }
}

.card-border {
  border: 1px solid #e5e7eb;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 2.5rem 1.75rem;
}
.card-content h4,
.card-content span {
  margin: 0;
}
@media screen and (max-width: 1023px) {
  .card-content {
    align-items: center;
  }
}

#customers .card {
  width: 400px !important;
}
@media (max-width: 1279px) {
  #customers .card {
    width: 360px !important;
  }
}
@media screen and (max-width: 749px) {
  #customers .card {
    width: 360px !important;
  }
}

#city {
  padding-bottom: 5rem;
}
#city .card-content {
  padding-bottom: 1rem !important;
}
#city h4 {
  font-weight: 400;
}
#city h3.card-title {
  font-weight: 400;
}
#city .card-image {
  width: 488px;
}
@media screen and (max-width: 749px) {
  #city .card-image {
    width: 360px !important;
  }
}
#city .card-image img {
  width: 488px;
}
@media screen and (max-width: 749px) {
  #city .card-image img {
    width: 360px !important;
  }
}
#city .swiper-slide {
  width: 488px !important;
  flex-shrink: 0 !important;
}
@media screen and (max-width: 749px) {
  #city .swiper-slide {
    width: 360px !important;
  }
}

.section-kicker {
  margin: 0;
  font-family: var(--heading-font);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--middle-green) !important;
  line-height: 1.3;
}

.section-support {
  max-width: 36rem;
  margin: 0.75rem auto 0;
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.6;
}

.brand-mark {
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(1.75rem, 3.2vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--light-green);
  text-shadow: none;
}

.brand-mark--dark {
  color: var(--middle-green);
}

.section-muted {
  background: linear-gradient(180deg, var(--surface) 0%, rgba(243, 247, 244, 0.45) 100%);
}

.section-emphasis {
  background: radial-gradient(720px 280px at 50% 0%, rgba(26, 173, 69, 0.14), transparent 70%), linear-gradient(180deg, #e7efe9 0%, #f3f7f4 100%);
}

.section-hook {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(232, 240, 235, 0.55) 0%, transparent 100%);
}
.section-hook::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 122, 56, 0.08), transparent 40%), linear-gradient(0deg, transparent, rgba(18, 24, 18, 0.02));
  pointer-events: none;
}

.section-about {
  background: linear-gradient(180deg, #fff 0%, rgba(243, 247, 244, 0.5) 100%);
}

.about-grid {
  display: grid !important;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: start;
  text-align: left;
}
@media screen and (max-width: 1023px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.about-copy h2 {
  margin: 0.5rem 0 1.15rem;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
}

.about-lead {
  margin: 0 0 1rem;
  max-width: 38rem;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--muted);
}
.about-lead:last-of-type {
  margin-bottom: 0;
}

.about-note {
  margin: 1.35rem 0 0;
  color: var(--ink);
  font-family: var(--heading-font);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.about-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-points li {
  margin: 0;
  padding: 1.2rem 1.3rem;
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.about-points strong {
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--heading-font);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.about-points span {
  display: block;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.55;
}

.hook-content {
  display: grid !important;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  text-align: left;
}
@media screen and (max-width: 1023px) {
  .hook-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.hook-copy h2 {
  margin: 0.5rem 0 1rem;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
}

.hook-lead {
  margin: 0;
  font-size: 1.1875rem;
  line-height: 1.65;
  color: var(--muted);
}

.hook-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hook-points li {
  margin: 0;
  padding: 1.15rem 1.25rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 122, 56, 0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
  font-size: 1rem;
}
.hook-points li strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--heading-font);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.hook-points li span {
  display: block;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 400;
}

.steps-grid {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

.step-item {
  margin: 0;
  text-align: left;
}
.step-item h3 {
  margin: 1.15rem 0 0.55rem;
  font-size: clamp(1.25rem, 2vw, 1.45rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.step-item p {
  margin: 0;
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.6;
}

.step-media {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  background: var(--surface-2);
}
.step-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.step-item:hover .step-media img {
  transform: scale(1.04);
}

.feature-rows {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 2rem;
}

.feature-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .feature-row {
    grid-template-columns: 1fr;
  }
}
.feature-row--flip .feature-row-media {
  order: 2;
}
@media screen and (max-width: 1023px) {
  .feature-row--flip .feature-row-media {
    order: 0;
  }
}

.feature-row-media {
  overflow: hidden;
  border-radius: calc(var(--radius) + 0.25rem);
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-soft);
}
.feature-row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-row-text {
  text-align: left;
}
.feature-row-text h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.feature-row-text p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--middle-green);
  font-weight: 600;
  font-family: var(--heading-font);
  font-size: 1rem;
  line-height: 1.3;
}
.text-link::after {
  content: "→";
  transition: transform 0.2s ease;
}
.text-link:hover::after {
  transform: translateX(3px);
}

.audience-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
@media screen and (max-width: 749px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }
}

.audience-tile {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: calc(var(--radius) + 0.15rem);
  background: #fff;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(18, 24, 18, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.audience-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}
.audience-tile img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}

.audience-tile-body {
  padding: 1.25rem 1.35rem 1.5rem;
  text-align: left;
}
.audience-tile-body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.3rem;
  line-height: 1.25;
}
.audience-tile-body p {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.55;
}

.city-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
@media screen and (max-width: 1023px) {
  .city-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 749px) {
  .city-grid {
    grid-template-columns: 1fr;
  }
}

.city-carousel-wrap {
  width: 100%;
  margin-top: 1.75rem;
  overflow: hidden;
}

.city-carousel {
  width: 100%;
  padding-bottom: 2.5rem;
  overflow: hidden;
}
.city-carousel .swiper-wrapper {
  align-items: stretch;
}
.city-carousel .swiper-slide {
  height: auto;
}
.city-carousel .city-tile {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 11rem;
}

.city-carousel-pagination {
  position: relative !important;
  bottom: 0 !important;
  margin-top: 1.25rem;
}
.city-carousel-pagination .swiper-pagination-bullet {
  background: var(--ink);
  opacity: 0.25;
}
.city-carousel-pagination .swiper-pagination-bullet-active {
  background: var(--signal, var(--light-green));
  opacity: 1;
}

.city-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  color: #fff;
  text-decoration: none;
}
.city-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.city-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 18, 12, 0.75), transparent 55%);
}
.city-tile span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.city-tile:hover img {
  transform: scale(1.05);
}

.city-note {
  margin: 2rem 0 1rem;
  color: var(--muted);
  text-align: center;
  font-size: 1.0625rem;
}

.action-check-panel {
  max-width: 36rem !important;
  margin-left: auto;
  margin-right: auto;
  padding: 2.5rem 2rem !important;
  border-radius: calc(var(--radius) + 0.35rem);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.95), rgba(232, 240, 235, 0.9));
  border: 1px solid rgba(15, 122, 56, 0.14);
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.action-check-panel h2 {
  margin: 0.35rem 0 0.75rem;
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  line-height: 1.2;
}

.action-check-lead {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.55;
}

.section-closing {
  padding-bottom: 2rem;
  background: linear-gradient(180deg, transparent 0%, rgba(232, 240, 235, 0.65) 100%);
}

.closing-panel {
  max-width: 42rem !important;
  text-align: center;
  padding: 3rem 1.5rem !important;
  border-radius: calc(var(--radius) + 0.5rem);
  background: radial-gradient(600px 240px at 50% 0%, rgba(26, 173, 69, 0.18), transparent 70%), #fff;
  border: 1px solid rgba(15, 122, 56, 0.12);
}
.closing-panel h2 {
  margin: 0.5rem 0 0.75rem;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.closing-panel p {
  margin: 0 auto 1.5rem;
  max-width: 32rem;
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.6;
}

.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.reveal,
.reveal-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible,
.reveal-in.is-visible {
  opacity: 1;
  transform: none;
}

#teaser-container figure::before {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0.55) 100%);
}

.teaser-text-container {
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
  gap: 1.5rem;
}
.teaser-text-container .brand-mark {
  color: var(--light-green);
}
.teaser-text-container .teaser-headline,
.teaser-text-container .teaser-headline * {
  color: #fff;
  font-family: var(--heading-font);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.teaser-text-container .teaser-subline {
  color: rgba(255, 255, 255, 0.92);
  opacity: 1;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.headline-subline {
  color: var(--ink);
}
.headline-subline h2 {
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.2;
}

.comparison .headline-subline {
  margin-bottom: 0.5rem;
}

.comparison-table {
  width: min(100%, 840px);
  margin: 2rem auto 0;
  border: none;
  border-radius: calc(var(--radius) + 0.4rem);
  overflow: visible;
  background: transparent;
  box-shadow: none;
}
.comparison-table .table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 0.65rem;
  align-items: stretch;
}
@media screen and (max-width: 749px) {
  .comparison-table .table-row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-subtle);
  }
  .comparison-table .table-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
.comparison-table .table-row > div {
  padding: 1.05rem 1.2rem;
  border-bottom: none;
  font-size: 1.02rem;
  line-height: 1.4;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 749px) {
  .comparison-table .table-row.table-header {
    display: none;
  }
}
.comparison-table .table-row.table-header > div {
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}
.comparison-table .cell-label {
  font-weight: 700;
  font-family: var(--heading-font);
  font-size: 0.95rem;
  color: var(--ink);
  background: transparent;
  padding-left: 0.15rem !important;
}
@media screen and (max-width: 749px) {
  .comparison-table .cell-label {
    padding: 0 0 0.15rem !important;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
  }
}
.comparison-table .cell-old {
  background: #fff;
  color: var(--muted);
  border-left: 1px solid var(--border-subtle);
  border-right: 1px solid var(--border-subtle);
  justify-content: center;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 749px) {
  .comparison-table .cell-old {
    justify-content: flex-start;
    text-align: left;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius) !important;
  }
  .comparison-table .cell-old::before {
    content: "Klassisch · ";
    font-weight: 700;
    color: var(--ink);
    opacity: 0.4;
  }
}
.comparison-table .table-header .cell-old {
  background: var(--surface-2);
  color: var(--muted);
  border: 1px solid var(--border-subtle);
  border-bottom: none;
  border-radius: var(--radius) var(--radius) 0 0;
  font-weight: 700;
}
.comparison-table .table-row:not(.table-header):not(:last-child) .cell-old {
  border-bottom: 1px solid rgba(18, 24, 18, 0.06);
}
.comparison-table .table-row:last-child .cell-old {
  border: 1px solid var(--border-subtle);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
}
.comparison-table .table-row:nth-child(2) .cell-old {
  border-top: none;
}
.comparison-table .cell-new {
  background: linear-gradient(165deg, #1fb34f 0%, var(--middle-green) 48%, #0a5c2a 100%);
  color: #fff;
  font-weight: 700;
  justify-content: flex-start;
  text-align: left;
  gap: 0.65rem;
  border: none;
  box-shadow: 8px 0 28px rgba(15, 122, 56, 0.18);
  position: relative;
}
@media screen and (max-width: 749px) {
  .comparison-table .cell-new {
    border-radius: var(--radius) !important;
    box-shadow: 0 10px 24px rgba(15, 122, 56, 0.22);
    justify-content: flex-start;
  }
}
.comparison-table .table-header .cell-new {
  border-radius: calc(var(--radius) + 0.2rem) calc(var(--radius) + 0.2rem) 0 0;
  font-size: 1.05rem;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(15, 122, 56, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.comparison-table .table-row:not(.table-header):not(:last-child) .cell-new {
  box-shadow: 8px 0 28px rgba(15, 122, 56, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.comparison-table .table-row:last-child .cell-new {
  border-radius: 0 0 calc(var(--radius) + 0.2rem) calc(var(--radius) + 0.2rem);
  box-shadow: 8px 14px 32px rgba(15, 122, 56, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.comparison-table .comparison-winner-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.comparison-table .comparison-winner-label::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: #8dffb0;
  box-shadow: 0 0 0 4px rgba(141, 255, 176, 0.25);
}
.comparison-table .comparison-check {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
}
.comparison-table .comparison-check::after {
  content: "";
  width: 0.35rem;
  height: 0.62rem;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg) translateY(-1px);
}

.seo-landing .seo-eyebrow {
  color: var(--middle-green);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.seo-landing h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
}
.seo-landing .seo-lead {
  font-size: 1.1875rem;
}
.seo-landing .seo-highlights h2 {
  font-size: 1.25rem;
}
.seo-landing .seo-highlights li {
  font-size: 1.0625rem;
}

.legal-hero {
  padding: 8rem 1.5rem 3rem;
  background: radial-gradient(700px 280px at 12% 0%, rgba(26, 173, 69, 0.14), transparent 70%), radial-gradient(560px 240px at 100% 20%, rgba(15, 122, 56, 0.1), transparent 65%), linear-gradient(180deg, #eef5f0 0%, var(--background) 100%);
  border-bottom: 1px solid var(--border-subtle);
}

.legal-hero-inner {
  max-width: 48rem;
  margin: 0 auto;
  text-align: left;
}
.legal-hero-inner h1 {
  margin: 0.35rem 0 0.85rem;
  font-size: clamp(2.1rem, 4.5vw, 3rem);
  letter-spacing: -0.04em;
}

.legal-hero-lead {
  margin: 0;
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.6;
}

.legal-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.75rem;
}
.legal-switch a {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  font-family: var(--heading-font);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.legal-switch a:hover, .legal-switch a:focus {
  border-color: rgba(15, 122, 56, 0.28);
  color: var(--middle-green);
}
.legal-switch a[aria-current=page] {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.legal-switch a[aria-current=page]:hover, .legal-switch a[aria-current=page]:focus {
  background: var(--middle-green);
  border-color: var(--middle-green);
  color: #fff;
}

.legal-page {
  padding-top: 3rem;
  padding-bottom: 2rem;
}
.legal-page .legal-page-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: left;
  align-items: flex-start;
}
.legal-page .legal-prose {
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}
.legal-page .legal-prose > *:first-child {
  margin-top: 0;
}
.legal-page .legal-prose h2,
.legal-page .legal-prose h3,
.legal-page .legal-prose h4 {
  color: var(--ink);
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  letter-spacing: -0.02em;
}
.legal-page .legal-prose p,
.legal-page .legal-prose li {
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}
.legal-page .legal-prose p + p {
  margin-top: 0.85rem;
}
.legal-page .legal-prose a {
  color: var(--middle-green);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-page .legal-prose a:hover, .legal-page .legal-prose a:focus {
  color: var(--ink);
}

.legal-card {
  padding: 1.5rem 1.4rem;
  margin: 0 0 1.25rem;
  border-radius: calc(var(--radius) + 0.15rem);
  background: #fff;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}
.legal-card h2 {
  margin: 0 0 1.15rem !important;
}
.legal-card:last-child {
  margin-bottom: 0;
}

.legal-defs {
  display: grid;
  gap: 1rem;
  margin: 0;
}
.legal-defs > div {
  display: grid;
  grid-template-columns: minmax(7rem, 10rem) 1fr;
  gap: 0.5rem 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}
@media screen and (max-width: 749px) {
  .legal-defs > div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}
.legal-defs > div:first-child {
  padding-top: 0;
  border-top: 0;
}
.legal-defs dt {
  margin: 0;
  color: var(--muted);
  font-family: var(--heading-font);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
}
.legal-defs dd {
  margin: 0;
  color: var(--ink);
  font-size: 1.0625rem;
  line-height: 1.55;
}

.legal-footer-cta .legal-footer-panel {
  max-width: 48rem;
  margin: 0 auto;
  text-align: left;
}
.legal-footer-cta .legal-footer-panel h2 {
  margin: 0.5rem 0 1.35rem;
  font-size: clamp(1.45rem, 3vw, 1.9rem);
}
.legal-footer-cta .closing-actions {
  justify-content: flex-start;
  flex-wrap: wrap;
}
.legal-footer-cta .legal-home-link {
  margin: 1.25rem 0 0;
}
.legal-footer-cta .legal-home-link a {
  color: var(--muted);
  font-size: 0.9875rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-footer-cta .legal-home-link a:hover, .legal-footer-cta .legal-home-link a:focus {
  color: var(--middle-green);
}

.section .content {
  max-width: var(--content-width);
}

.headline-02 {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--ink);
}

/* Zielgruppen-Seiten */
.audience-hero {
  position: relative;
  min-height: min(78vh, 720px);
  display: flex;
  align-items: flex-end;
  padding: 8rem 2rem 4rem;
  background-image: var(--audience-image);
  background-size: cover;
  background-position: center;
  color: #fff;
}
@media screen and (max-width: 749px) {
  .audience-hero {
    min-height: 70vh;
    padding: 7rem 1.25rem 3rem;
  }
}
.audience-hero--plain {
  background-image: none;
  background: linear-gradient(145deg, #0f7a38 0%, #163528 55%, #121812 100%);
}
.audience-hero--centered {
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 5rem;
  text-align: center;
}
.audience-hero--centered .audience-hero-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.42) 45%, rgba(0, 0, 0, 0.62) 100%);
}
.audience-hero--centered .audience-hero-content {
  margin: 0 auto;
  max-width: 42rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.audience-hero--centered .audience-lead {
  margin-left: auto;
  margin-right: auto;
}
.audience-hero--centered .audience-hero-actions {
  justify-content: center;
}

.audience-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
}

.audience-hero-content {
  position: relative;
  z-index: 1;
  max-width: 44rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}
.audience-hero-content h1 {
  margin: 0.5rem 0 0.85rem;
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.audience-kicker {
  margin: 0;
  font-family: var(--heading-font);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light-green);
}

.audience-lead {
  margin: 0 0 1.5rem;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.55;
}

.audience-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.audience-section .content {
  max-width: var(--content-width);
}

.audience-intro {
  display: grid !important;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
  text-align: left;
}
@media screen and (max-width: 1023px) {
  .audience-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.audience-intro-copy {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--muted);
}
.audience-intro-copy p {
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.7;
}
.audience-intro-copy strong {
  color: var(--ink);
}

.audience-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.audience-stats li {
  margin: 0;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(15, 122, 56, 0.12);
  box-shadow: var(--shadow-soft);
}

.audience-stat-value {
  display: block;
  font-family: var(--heading-font);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 0.3rem;
}

.audience-stat-label {
  display: block;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--muted);
}

.audience-benefit-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
@media screen and (max-width: 749px) {
  .audience-benefit-grid {
    grid-template-columns: 1fr;
  }
}

.audience-benefit {
  text-align: left;
  padding: 1.5rem 1.4rem;
  border-radius: calc(var(--radius) + 0.15rem);
  background: #fff;
  border: 1px solid rgba(18, 24, 18, 0.06);
}
.audience-benefit h3 {
  margin: 0.65rem 0 0.5rem;
  font-size: 1.25rem;
  line-height: 1.25;
}
.audience-benefit p {
  margin: 0;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.55;
}

.audience-benefit-index {
  display: inline-block;
  font-family: var(--heading-font);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--middle-green);
}

.audience-steps {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.audience-steps li {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.15rem;
  align-items: start;
  text-align: left;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border-subtle);
}
.audience-steps li > span {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  font-family: var(--heading-font);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
}
.audience-steps li h3 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  line-height: 1.25;
}
.audience-steps li p {
  margin: 0;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.55;
}

.audience-cta-panel {
  max-width: 42rem !important;
  text-align: center;
  padding: 3rem 1.5rem !important;
  border-radius: calc(var(--radius) + 0.5rem);
  background: radial-gradient(600px 240px at 50% 0%, rgba(26, 173, 69, 0.18), transparent 70%), #fff;
  border: 1px solid rgba(15, 122, 56, 0.12);
}
.audience-cta-panel h2 {
  margin: 0.5rem 0 0.75rem;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  line-height: 1.2;
}
.audience-cta-panel p {
  margin: 0 auto 1.5rem;
  max-width: 32rem;
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.6;
}

.audience-related {
  text-align: center;
}
.audience-related h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.audience-related-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.audience-related-links a {
  display: inline-flex;
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(18, 24, 18, 0.08);
  color: var(--ink);
  font-family: var(--heading-font);
  font-size: 0.95rem;
  font-weight: 600;
}
.audience-related-links a:hover {
  border-color: var(--middle-green);
  color: var(--middle-green);
}

.city-audience-row {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 1023px) {
  .city-audience-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 749px) {
  .city-audience-row {
    grid-template-columns: 1fr;
  }
}

.city-audience-chip {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  color: #fff;
  text-decoration: none;
}
.city-audience-chip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.city-audience-chip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 18, 12, 0.8), transparent 55%);
}
.city-audience-chip span {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 1;
  font-family: var(--heading-font);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.city-audience-chip:hover img {
  transform: scale(1.04);
}

.city-grid--compact {
  margin-top: 0.5rem;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
  flex-direction: column;
  color: #fff;
  width: 100%;
}

/*footer download app */
#download-app {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10rem;
  padding: 6rem 2rem;
  background-color: var(--primary);
  width: 100%;
}
@media screen and (max-width: 749px) {
  #download-app .left img {
    width: 350px;
  }
}
@media screen and (max-width: 1023px) {
  #download-app {
    flex-direction: column;
  }
}
@media screen and (max-width: 749px) {
  #download-app {
    gap: 5rem;
  }
}
#download-app .download-app-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 1023px) {
  #download-app .download-app-content {
    align-items: center;
    gap: 1rem;
  }
}
#download-app .download-app-content h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  line-height: 1.2;
  color: #fff;
}
@media screen and (max-width: 749px) {
  #download-app .download-app-content h2 {
    text-align: center;
  }
}
#download-app .download-app-content div {
  display: flex;
  align-items: center;
  gap: 1rem;
}
#download-app .download-app-content #apple-store {
  height: 50px;
}
#download-app .download-app-content #android-store {
  height: 65px;
}

/* Footer Kontakt + FAQ */
#contact {
  width: 100%;
  padding: 5rem 1.5rem 2rem;
  background-color: #0b0f0c;
  color: #fff;
}

.footer-shell {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
}

.footer-kicker {
  margin: 0 0 0.45rem;
  font-family: var(--heading-font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light-green);
  line-height: 1.3;
}

.footer-lead {
  margin: 0.65rem 0 0;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 1.0625rem;
  line-height: 1.55;
}

.footer-faq {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-faq-intro {
  margin-bottom: 1.5rem;
}
.footer-faq-intro h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.footer-faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0;
}

.faq-question {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 0.15rem;
  color: #fff;
  font-family: var(--heading-font);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-question::after {
  content: "+";
  flex-shrink: 0;
  width: 1.5rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--light-green);
  transition: transform 0.2s ease;
}
.faq-question:hover {
  color: var(--light-green);
}

.faq-item[open] .faq-question::after {
  content: "–";
}

.faq-answer {
  margin: 0;
  padding: 0 1.75rem 1.15rem 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.65;
  max-width: 46rem;
  overflow-wrap: anywhere;
  word-break: normal;
  white-space: normal;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(12rem, 1.15fr) minmax(0, 2.4fr);
  gap: 3rem 4rem;
  padding-bottom: 3rem;
}
@media screen and (max-width: 1023px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.footer-brand {
  max-width: 18rem;
}

.footer-logo {
  display: inline-block;
  margin: 0 0 1rem;
  color: #fff;
  font-family: var(--heading-font);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  text-decoration: none;
}
.footer-logo:hover {
  color: var(--light-green);
}

.footer-tagline {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9875rem;
  line-height: 1.55;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem 1.5rem;
}
@media screen and (max-width: 1023px) {
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 749px) {
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-col {
  min-width: 0;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-col a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9875rem;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer-col a:hover, .footer-col a:focus {
  color: #fff;
}

.footer-col-title {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--heading-font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.3;
}

.footer-support {
  gap: 1.15rem !important;
}

.footer-support-label {
  display: block;
  margin-bottom: 0.2rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-support a {
  color: #fff;
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.footer-support a:hover, .footer-support a:focus {
  color: var(--light-green);
}

.footer-support-text {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9875rem;
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media screen and (max-width: 749px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }
}

.footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.8125rem;
  line-height: 1.4;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8125rem;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer-legal a:hover, .footer-legal a:focus {
  color: #fff;
}

/*# sourceMappingURL=main.css.map */