
    :root {
      --color-primary: #B70545;
      --color-primary-dark: #98043a;
      --color-text: #2A2829;
      --color-bg: #FFFFFF;
      --color-surface: #f7f7f7;
      --color-border: #e8e8e8;
      --shadow-soft: 0 10px 30px rgba(42, 40, 41, 0.08);
      --shadow-hover: 0 16px 38px rgba(42, 40, 41, 0.12);
      --radius: 18px;
      --container: 1200px;
      --section-space: 72px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Arial, sans-serif;
      color: var(--color-text);
      background: var(--color-bg);
      line-height: 1.5;
    }

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

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: min(var(--container), calc(100% - 48px));
      margin: 0 auto;
    }

    .section {
      padding: 72px 0;
    }

    .section-title {
      margin: 0 0 18px;
      font-size: clamp(2rem, 3vw, 3.2rem);
      line-height: 1.1;
    }

    .section-text {
      max-width: 720px;
      margin: 0;
      font-size: 1.05rem;
    }

    .eyebrow {
      display: inline-block;
      margin-bottom: 14px;
      color: var(--color-primary);
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      font-size: 0.82rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 0 22px;
      border-radius: 999px;
      font-size: 0.95rem;
      font-weight: 600;
      line-height: 1;
      text-decoration: none;
      white-space: nowrap;
      transition: all 0.18s ease;
      cursor: pointer;
      border: 1px solid transparent;
    }

    .btn-primary {
      background: var(--color-primary);
      color: #fff;
      border: 1px solid #B70545;
      backdrop-filter: blur(6px);
    }

    .btn-primary:hover {
      background: var(--color-primary-dark);
      box-shadow: 0 10px 24px rgba(183, 5, 69, 0.18);
      border-color: #B70545;
      transform: translateY(-1px);
    }

    .btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}

.btn-secondary:hover {
  background: rgba(183, 5, 69, 0.06);
  border-color: #FFFFFF;
  transform: translateY(-1px);
}

    .header-right .btn {
      min-height: 40px;
      padding: 0 16px;
      font-size: 0.85rem;
}

    .site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;

  background: transparent;
  border-bottom: 1px solid transparent;

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    backdrop-filter 0.3s ease;
}

    .header-inner {
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .header-right {
      display: flex;
      align-items: center;
      gap: 70px;
      margin-left: auto;
    }

    .logo {
      font-size: 1.35rem;
      font-weight: 800;
      letter-spacing: 0.03em;
    }

    .logo img {
  height: 52px;
  width: auto;
  display: block;
}
/*Logo weiß Startseite und Logo färbig weitere Seiten*/
.home-body .logo-img {
  content: url("images/logo-enset-white.svg");
}

.legal-body .logo-img {
  content: url("images/logo-enset.png");
}

.home-body .site-header.scrolled .logo-img {
  content: url("images/logo-enset.png");
}

    .nav {
      display: flex;
      align-items: center;
      gap: 60px;
      flex-wrap: nowrap;
      width: auto;
      font-size: 0.95rem;
    }

    .nav a {
  position: relative;
  text-decoration: none;
  color: #fff;
  padding-bottom: 4px;
  font-weight: 600;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: rgba(255,255,255,0.9);
  transition: width 0.25s ease;
}

.site-header.scrolled .nav a::after {
  background-color: #B70545;
}

.nav a:hover::after {
  width: 100%;
}

    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 64px 0 48px;
      background-image:
        linear-gradient(to right, rgba(42, 40, 41, 0.65) 0%, rgba(42, 40, 41, 0.45) 40%, rgba(42, 40, 41, 0.15) 70%, rgba(42, 40, 41, 0.05) 100%),
        url('images/enset.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      color: #fff;
    }

    .hero-grid,
    .two-col {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 40px;
      align-items: center;
    }

    .hero-copy {
      max-width: 640px;
    }

    .hero-copy h1 {
      margin: 0 0 18px;
      font-size: clamp(2.6rem, 5vw, 4.8rem);
      line-height: 1;
      max-width: 11ch;
      color: #fff;
    }

    .hero-copy p {
      margin: 0 0 28px;
      max-width: 58ch;
      font-size: 1.08rem;
      color: rgba(255, 255, 255, 0.92);
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .image-frame {
      background: var(--color-surface);
      border: 1px solid var(--color-border);
      border-radius: 28px;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
    }

    .image-frame img {
      width: 100%;
      height: auto;
      display: block;
    }

    .image-frame.square img {
      aspect-ratio: 1 / 1;
      object-fit: cover;
    }

    .image-frame.landscape img {
      aspect-ratio: 3 / 2;
      object-fit: cover;
    }

    .image-note {
      padding: 12px 16px;
      font-size: 0.88rem;
      color: #666;
      border-top: 1px solid var(--color-border);
      background: #fff;
    }

    /* Desktop → ausblenden */
.hero-more {
  display: none;
}

/* Mobil → wieder anzeigen */
@media (max-width: 768px) {
  .hero-more {
    display: inline-flex;
  }
}

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 24px;
      margin-top: 34px;
    }

    .card {
      background: #fff;
      border: 1px solid var(--color-border);
      border-radius: var(--radius);
      padding: 28px;
      box-shadow: var(--shadow-soft);
      transition: transform 0.18s ease, box-shadow 0.18s ease;
    }

    .card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
    }

    .icon-wrap {
      width: 68px;
      height: 68px;
      margin: 0 auto 18px;
      border-radius: 20px;
      background: rgba(183, 5, 69, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .icon-wrap img {
      width: 40px;
      height: 40px;
      object-fit: contain;
    }

    .card.center { text-align: center; }
    .card h3 { margin: 0 0 12px; font-size: 1.2rem; }
    .card p { margin: 0; color: #555; }

  .shell-section {
  padding: 56px 0 24px;
  background: #ffffff;
}

.shell-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.shell-image img {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  display: block;
}

.shell-copy {
  max-width: 620px;
}

.shell-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.shell-tab {
  border: 1px solid rgba(183,5,69,0.15);
  background: #FFFFFF;

  color: #B70545;

  padding: 12px 18px;
  border-radius: 999px;

  font-size: 0.9rem;
  font-weight: 700;

  cursor: pointer;

  transition:
  background-color 0.2s ease,
  color 0.2s ease,
  border-color 0.2s ease;
}

.shell-tab:hover,
.shell-tab.active {
  background: #B70545;
  color: #fff;
  border-color: #B70545;
  transform: none;
}

.shell-info {
  margin-top: 28px;
  min-height: 260px;
  padding: 34px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(42,40,41,0.08);
  box-shadow:
    0 18px 50px rgba(0,0,0,0.04);
}

.shell-kicker {
  display: inline-block;

  margin-bottom: 12px;

  color: #B70545;

  font-size: 0.76rem;
  font-weight: 800;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shell-info h3 {
  margin: 0 0 12px;

  font-size: 1.8rem;

  color: #2A2829;
}

.shell-info p {
  margin: 0;

  color: #4d5660;
  line-height: 1.75;
}

@media (max-width: 900px) {

  .shell-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

  .shell-section {
    padding: 80px 0;
  }
}

    .benefits-list,
    .goals-list,
    .footer-links {
      display: grid;
      gap: 14px;
      margin: 28px 0 0;
      padding: 0;
      list-style: none;
    }

    .benefits-list li,
    .goals-list li {
      padding: 18px 20px;
      background: var(--color-surface);
      border-radius: 14px;
      border: 1px solid var(--color-border);
    }

    .goals-list {
      grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .goal-number {
      display: block;
      color: var(--color-primary);
      font-size: 1.6rem;
      font-weight: 800;
      margin-bottom: 8px;
    }

    .references-grid,
    .team-grid {
      display: grid;
      gap: 24px;
      margin-top: 34px;
    }

    .references-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-box {
  padding: 42px;
  border-radius: 32px;

  background:
  linear-gradient(
    135deg,
    rgba(183, 5, 69, 0.10),
    rgba(42, 40, 41, 0.02)
  );

  border: 1px solid rgba(183, 5, 69, 0.12);

  box-shadow:
  0 20px 45px rgba(42,40,41,0.08);
}

    .cta-section {
  padding-top: 32px;
}

    .partners-section {
  overflow: visible;
}

.partners-intro {
  max-width: 760px;
  margin-bottom: 30px;
}

.partners-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 12px 0;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.partners-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: partner-scroll 36s linear infinite;
}

.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}

.partner-logo {
  flex: 0 0 auto;         
  width: auto;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
}

.partner-logo img {
  max-width: 180px;
  max-height: 55px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.65;
  filter: grayscale(100%);
  transition: opacity 0.2s ease, filter 0.2s ease, transform 0.2s ease;
}

.partner-logo:hover img {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.03);
}

@keyframes partner-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 860px) {
  .partners-track {
    animation-duration: 24s;
  }

  .partner-logo {
    flex: 0 0 150px;
    width: 150px;
    height: 64px;
    padding: 8px 14px;
  }

  .partner-logo img {
    max-width: 115px;
    max-height: 34px;
  }
}

.funding-block {
  margin-top: 32px;
  padding-top: 20px;
  text-align: left;
}

.funding-label {
  display: block;
  margin-bottom: 18px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.funding-logos {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  left: -20px;
}

.funding-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 78px;
  padding: 14px 20px;
}

.funding-logo img {
  max-height: 42px;
  width: auto;
  max-width: 160px;
  object-fit: contain;

  opacity: 1;
  filter: none;
}

@keyframes partner-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 860px) {
  .partners-track {
    gap: 32px;
    animation-duration: 22s;
  }

  .partner-logo {
    min-width: 130px;
    height: 64px;
    padding: 10px 14px;
  }

  .partner-logo img {
    max-height: 32px;
    max-width: 110px;
  }

  .funding-logos {
    gap: 18px;
  }

  .funding-logo {
    min-width: 150px;
    height: 70px;
  }

  .funding-logo img {
    max-height: 36px;
  }
}

    .site-footer {
  padding: 72px 0 56px;
  background: #f3f1f2;
  border-top: 1px solid rgba(42, 40, 41, 0.08);
}

.site-header.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(42,40,41,0.08);
}

.site-header.scrolled .nav a {
  color: #2A2829;
}

.site-header.scrolled .logo {
  color: #2A2829;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(200px, 300px) 1fr;
  gap: 0px;
  align-items: start;
}

.footer-brand {
  max-width: 320px;
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 50px;
  width: auto;
  display: block;
}

.footer-text {
  margin: 0 0 18px;
  color: #555;
  font-size: 0.98rem;
  line-height: 1.6;
}

.footer-copy {
  margin: 0;
  color: #777;
  font-size: 0.9rem;
}

.footer-nav-wrap {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 32px;
  align-items: start;
}

.footer-column {
  display: grid;
  gap: 10px;
}

.footer-heading {
  margin: 0 0 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.footer-column a {
  color: #2A2829;
  font-size: 0.96rem;
  line-height: 1.5;
  transition: color 0.18s ease, transform 0.18s ease;
}

.footer-column a:hover {
  color: var(--color-primary);
  transform: translateX(2px);
}

.footer-social .socials {
  margin-top: 2px;
}

.socials {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(42, 40, 41, 0.08);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: #2A2829;
  transition: fill 0.18s ease;
}

.social-icon:hover {
  transform: translateY(-2px);
  border-color: rgba(183, 5, 69, 0.28);
  background: #fff;
}

.social-icon:hover svg {
  fill: var(--color-primary);
}

.socials {
  justify-content: flex-end;
}

@media (max-width: 980px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-nav-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  }

@media (max-width: 700px) {
  .site-footer {
    padding: 56px 0 48px;
  }

  .footer-nav-wrap {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-brand {
    max-width: none;
}

  .footer-logo img {
    height: 32px;
  }
}

    @media (max-width: 1100px) {
  .cards-grid,
  .goals-list,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-right {
    gap: 32px;
  }

  .nav {
    gap: 28px;
  }
}

@media (max-width: 860px) {
  :root { --section-space: 72px; }

  .hero {
    min-height: auto;
    padding: 88px 0 72px;
    background-position: center;
  }

  .hero-grid,
  .two-col,
  .references-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0;
    gap: 18px;
  }

  .header-right {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
    gap: 18px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .cards-grid,
  .goals-list,
  .service-grid,
  .footer-nav-wrap {
    grid-template-columns: 1fr;
  }

  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .cta-box {
    padding: 38px;
  }
}

  .services-section {
  padding: 72px 0 10px;
  background: #FFFFFF;
  padding-bottom: 0px;
}

.services-section .eyebrow {
  display: block;
  text-align: center;
}

.services-section h2,
.services-section .intro {
  text-align: center;
}

.services-section h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-top: 0;
  margin-bottom: 16px;
  color: #2A2829;
  text-align: center;
}

.services-section .intro {
  max-width: 720px;
  margin: 0 auto 48px;
  color: #4d5660;
  line-height: 1.7;
  font-size: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 28px;
  margin-bottom: 34px;
  align-items: stretch;
}

.service-card {
  position: relative;
  width: 100%;
  min-height: 250px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 26px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 22px;
  background: rgba(255,255,255,0.88);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
  transition:
  transform 0.3s ease,
  box-shadow 0.3s ease,
  border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(183, 5, 69, 0.18);
  box-shadow: 0 20px 46px rgba(0,0,0,0.08);
}

.service-card.active {
  border-color: rgba(183, 5, 69, 0.25);
  box-shadow: 0 20px 52px rgba(183, 5, 69, 0.08);
}

.service-card.active::after {
  content: "";
  position: absolute;
  bottom: -34px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-bottom: 13px solid #fff;
}

.service-number {
  position: absolute;
  top: 28px;
  right: 28px;
  font-weight: 700;
  color: #B70545;
  font-size: 14px;
}

.service-icon {
  width: 72px;
  height: 48px;
  border-radius: 20px;
  background: transparent;
  color: #B70545;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 32px;
  margin-bottom: 16px;
}

.service-card h3 {
  margin: 0 0 4px;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #2A2829;
  letter-spacing: -0.01em;
  min-height: 48px;
}

.service-card p {
  color: #4d5660;
  line-height: 1.55;
  margin-bottom: 20px;
  font-size: 15px;
  margin-top: 0;
}

.service-card small {
  margin-top: auto;
  color: #B70545;
  font-weight: 700;
  font-size: 14px;
}

.service-detail {
  position: relative;
  display: none;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 46px;
  padding: 44px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.close-detail {
  position: absolute;
  top: 22px;
  right: 26px;
  border: 0;
  background: transparent;
  font-size: 32px;
  color: #B70545;
  cursor: pointer;
}

.detail-left {
  border-right: 1px solid rgba(0,0,0,0.08);
  padding-right: 40px;
}

.detail-left h3 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #2A2829;
}

.detail-left p {
  color: #4d5660;
  line-height: 1.7;
}

.benefit-box {
  margin-top: 20px;
  padding-top: 0px;
  border-top: none;
}

.benefit-box h4,
.detail-right h4 {
  margin-bottom: 18px;
  margin-top: 40px;
  color: #B70545;
  font-size: 18px;
}

.benefit-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-box li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  font-weight: 600;
  color: #2A2829;
}

.benefit-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  width: 22px;
  height: 22px;
  border: 1px solid #B70545;
  border-radius: 50%;
  color: #B70545;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-actions {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
  align-items: stretch;
}

.detail-actions .btn {
  flex: 1;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 30px;
  row-gap: 16px;
}

.service-item {
  display: block;
}

.service-item-icon {
  display: none;
}

.service-item strong {
  display: block;
  margin-bottom: 6px;
  color: #2A2829;
  font-size: 16px;

}

.service-item p {
  margin: 0;
  color: #4d5660;
  line-height: 1.55;
  font-size: 16px;
}

.result-box {
  margin-top: 45px;
  padding: 0px;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.result-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  color: #2A2829;
}

.result-box p {
  margin: 0;
  color: #4d5660;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-detail {
    grid-template-columns: 1fr;
  }

  .detail-left {
    border-right: 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding-right: 0;
    padding-bottom: 32px;
  }
}

@media (max-width: 700px) {
  .services-section {
    padding: 70px 0;
  }

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

  .service-card {
    height: auto;
    min-height: 260px;
  }

  .service-card.active::after {
    display: none;
  }

  .service-detail {
    padding: 30px 22px;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .detail-actions {
    flex-direction: column;
  }

  .detail-left h3 {
    font-size: 1.7rem;
  }

  .services-section h2 {
    font-size: 2.4rem;
  }
}
.scroll-down {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.scroll-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.6);

  display: flex;
  align-items: center;
  justify-content: center;

  backdrop-filter: blur(8px);

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;

  animation: scrollFloat 2.6s ease-in-out infinite;
}

.scroll-circle:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.95);
  transform: scale(1.06);
}

.scroll-circle span {
  width: 12px;
  height: 12px;

  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;

  transform: rotate(45deg);
  margin-top: -4px;
}

@keyframes scrollFloat {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(8px);
  }

  100% {
    transform: translateY(0px);
  }
}

.about-section {
  width: 100%;
  padding: 72px 0;
  background: #f8f8f8;
}

.about-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.about-section h2 {
  max-width: 780px;
  margin: 0 auto;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #2A2829;
}

.about-line {
  width: 58px;
  height: 3px;
  margin: 28px auto 32px;
  background: #B70545;
  border-radius: 999px;
}

.about-text {
  max-width: 840px;
  margin: 0 auto 20px;
  color: #2A2829;
  font-size: 1.08rem;
  line-height: 1.75;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 58px;
}

.about-value {
  padding: 0 34px;
  border-right: 1px solid rgba(42, 40, 41, 0.12);
}

.about-value:last-child {
  border-right: 0;
}

.about-icon {
  font-size: 20px;
  color: #B70545;
  margin-bottom: 18px;
}

.about-value h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  color: #2A2829;
}

.about-value p {
  margin: 0;
  color: #4d5660;
  line-height: 1.6;
  font-size: 0.96rem;
}

@media (max-width: 800px) {
  .about-section {
    padding: 80px 0;
  }

  .about-values {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 44px;
  }

  .about-value {
    border-right: 0;
    padding: 0;
  }
}
    
/* Burger Menu */
.menu-toggle {
  display: none;
}

@media (max-width: 860px) {
  .site-header {
    position: fixed;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
  }

  .home-body .logo-img {
    content: url("images/logo-enset.png");
  }

  .header-inner {
    min-height: 72px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0;
  }

  .logo {
    position: relative;
    z-index: 1003;
  }

  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 1003;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(42,40,41,0.18);
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    background: #2A2829;
    border-radius: 999px;
    transition: all 0.2s ease;
  }

  .site-header.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header-right {
    position: fixed;
    inset: 0;
    z-index: 1002;

    display: flex;
    opacity: 0;
    pointer-events: none;

    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    width: 100vw;
    height: 100vh;

    padding: 140px 24px 48px;
    margin: 0;

    background: #ffffff;

    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-header.menu-open .header-right {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
  }

  .nav a {
    color: #2A2829;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
  }

  .header-cta {
    margin-top: 36px;
  }
}

/*Mehr erfahren Button und Pfeil mit Kreis wird ausgeblendet*/
@media (max-width: 860px) {

  .hero-more,
  .scroll-down {
    display: none;
  }

}

/* Impressum Text*/
.legal-page {
  padding-top: 140px;
}

.legal-hero {
  padding: 40px 0 24px;
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.1;
  color: #2A2829;
}

.legal-content-section {
  padding: 24px 0 100px;
}

.legal-company {
  margin: 0 0 28px;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  line-height: 1.05;
  color: #2A2829;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.legal-card {
  padding: 0;
  max-width: 900px;
}

.legal-card h2 {
  margin: 0 0 32px;
  color: #B70545;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

.legal-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.legal-card p {
  margin: 0 0 24px;
  line-height: 1.6;
  color: #4d5660;
}

.legal-grid p {
  margin-bottom: 0;
}

.legal-divider {
  margin: 36px 0;
}

/* Navigationen Impressum */

.legal-body .site-header {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(42,40,41,0.08);
}

.legal-body .nav a {
  color: #2A2829;
}

.legal-body .nav a::after {
  background-color: #B70545;
}

.legal-body .logo {
  color: #2A2829;
}

.legal-body .menu-toggle span {
  background: #2A2829;
}

/*Kontakt-Seite*/
.contact-page {
  padding-top: 100px;
  padding-bottom: 100px;
}

.contact-hero {
  padding: 56px 0 32px;
}

.contact-hero h1 {
  max-width: 760px;
  margin: 0 0 20px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  color: #2A2829;
  letter-spacing: -0.03em;
}

.contact-hero p {
  max-width: 720px;
  margin: 0;
  color: #4d5660;
  font-size: 1.08rem;
  line-height: 1.75;
}

.contact-section {
  padding: 40px 0 72px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: stretch;
}

.contact-card {
  padding: 38px;
  border: 1px solid rgba(42,40,41,0.08);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,0.04);
}

.contact-card-soft {
  background: linear-gradient(135deg, rgba(183,5,69,0.045), #fff);
}

.contact-kicker {
  display: block;
  margin-bottom: 28px;
  color: #B70545;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-item {
  padding: 0 0 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(42,40,41,0.08);
}

.contact-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-item strong {
  display: block;
  margin-bottom: 8px;
  color: #2A2829;
}

.contact-item a,
.contact-choice a {
  color: #B70545;
  font-weight: 700;
  text-decoration: none;
}

.contact-item p {
  margin: 0;
  color: #4d5660;
  line-height: 1.7;
}

.contact-choice {
  padding: 24px 0;
  border-bottom: 1px solid rgba(42,40,41,0.08);
}

.contact-choice:first-of-type {
  padding-top: 0;
}

.contact-choice:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-choice h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  color: #2A2829;
}

.contact-choice p {
  margin: 0 0 12px;
  color: #4d5660;
  line-height: 1.65;
}

.contact-cta {
  padding: 0 0 96px;
}

.contact-cta-box {
  padding: 48px;
  border-radius: 32px;
  text-align: center;
  background: linear-gradient(135deg, rgba(183,5,69,0.06), rgba(42,40,41,0.035));
  border: 1px solid rgba(42,40,41,0.08);
}

.contact-cta-box h2 {
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #2A2829;
}

.contact-cta-box p {
  max-width: 680px;
  margin: 0 auto 28px;
  color: #4d5660;
  line-height: 1.7;
}

@media (max-width: 860px) {
  .contact-page {
    padding-top: 96px;
  }

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

  .contact-card,
  .contact-cta-box {
    padding: 28px;
  }
}

/*Anfrage-Seite*/
.inquiry-page {
  padding-top: 100px;
  padding-bottom: 100px;
}

.inquiry-section {
  padding: 56px 0 20px;
}

.inquiry-container{

display:grid;

grid-template-columns:
1.5fr 0.8fr;

gap:50px;

align-items:start;
}

.inquiry-left h1{

font-size:
clamp(2.4rem,5vw,4rem);

line-height:1.05;

margin:0 0 20px;
}

.inquiry-intro{

max-width:680px;

font-size:1.05rem;

line-height:1.7;

color:#4d5660;

margin-bottom:40px;
}

.form-grid{

display:grid;

grid-template-columns:
1fr 1fr;

gap:22px;

margin-bottom:30px;
}

.form-group{

display:flex;

flex-direction:column;
}

.form-group label{

margin-bottom:8px;

font-weight:600;
}

.form-group input,
textarea{

padding:16px;

border:

1px solid #E5E5E5;

border-radius:16px;

font-size:1rem;

font-family:inherit;
}

textarea{

min-height:150px;

resize:vertical;
}

.full{

margin-top:20px;
}

.interest-label{

display:block;

margin-bottom:18px;

font-weight:700;
}

.interest-grid{

display:grid;

grid-template-columns:
repeat(2,1fr);

gap:16px;

margin-bottom:30px;
}

.interest-card{

padding:18px;

border:

1px solid #E8E8E8;

border-radius:18px;

cursor:pointer;

display:flex;

gap:10px;

align-items:center;

transition:.2s;
}

.interest-card:hover{

border-color:#B70545;
}

.privacy-check{

display:flex;

gap:12px;

margin:26px 0;

font-size:.92rem;

color:#555;
}

.privacy-check a{

color:#B70545;

font-weight:700;
}

.inquiry-right{

padding:36px;

border:

1px solid #ECECEC;

border-radius:28px;

background:#fff;

position:sticky;

top:120px;
}

.inquiry-right h3{

margin:0 0 30px;

color:#B70545;
}

.step{

display:flex;

gap:18px;

margin-bottom:28px;
}

.step-number{

width:42px;

height:42px;

border-radius:50%;

background:#B70545;

color:#fff;

display:flex;

align-items:center;

justify-content:center;

font-weight:700;

flex-shrink:0;
}

.step p{

margin:8px 0 0;

color:#555;

line-height:1.6;
}

@media(max-width:980px){

.inquiry-container{

grid-template-columns:1fr;
}

.inquiry-right{

position:static;
}

}

@media(max-width:700px){

.form-grid{

grid-template-columns:1fr;
}

.interest-grid{

grid-template-columns:1fr;
}

}

/* Danke-Seite */
.thankyou-page {
  min-height: auto;
  display: block;
}

.thankyou-section {
  padding: 170px 0 86px;
}

.thankyou-card {
  max-width: 760px;
  padding: 0;
}

.thankyou-card h1 {
  margin: 0 0 22px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  color: #2A2829;
}

.thankyou-card p {
  max-width: 650px;
  margin: 0 0 34px;
  color: #4d5660;
  font-size: 1.08rem;
  line-height: 1.75;
}

.thankyou-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 700px) {
  .thankyou-section {
    padding: 120px 0 64px;
  }
}

/*Cookie-Banner*/
.cookie-banner {
  position: fixed;

  left: 24px;
  right: 24px;
  bottom: 24px;

  z-index: 9999;

  max-width: 800px;
  margin: 0 auto;

  padding: 22px 26px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  background: rgba(255,255,255,0.92);

  backdrop-filter: blur(12px);

  border: 1px solid rgba(42,40,41,0.08);

  border-radius: 26px;

  box-shadow:
    0 20px 50px rgba(0,0,0,0.12);

  animation: cookieFadeIn 0.4s ease;
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cookie-icon {
  width: 54px;
  height: 54px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(183,5,69,0.06);

  font-size: 24px;
}

.cookie-text strong {
  display: block;
  margin-bottom: 6px;

  color: #2A2829;
  font-size: 1rem;
}

.cookie-text p {
  margin: 0;

  color: #4d5660;

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

.cookie-text a {
  color: #B70545;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;

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

.cookie-text a:hover {
  opacity: 0.75;

  }

.cookie-btn {
  border: 0;

  min-width: 170px;
  height: 52px;

  padding: 0 24px;

  border-radius: 999px;

  background: #B70545;
  color: #fff;

  font-weight: 700;
  font-size: 0.95rem;

  cursor: pointer;

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

.cookie-btn:hover {
  background: #98043a;
  transform: translateY(-1px);
}

@keyframes cookieFadeIn {

  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@media (max-width: 760px) {

  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;

    padding: 20px;

    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-content {
    align-items: flex-start;
  }

  .cookie-btn {
    width: 100%;
  }
}

/* Anfrage Error-Meldung */
.interest-error{
  color:#c62828;
  font-size:14px;
  margin-top:10px;
}

/* Vernetzte Energiesystem Section */

.energy-section {
  padding-top: 90px;
  padding-bottom: 120px;
}