:root {
  --brand-green: #46825e;
  --brand-orange: #cf5735;
  --brand-text: #2c2c2c;
  --brand-muted: #6b6f6c;
  --surface: #f3f3f1;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(22, 33, 28, 0.12);
  --radius: 22px;
  --max: 1400px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--brand-text);
  background: var(--surface);
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

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

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

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

/* HEADER */
.site-header {
  position: relative;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}

.brand {
  position: relative;
  z-index: 2;
}

.brand img {
  height: 90px;
  width: auto;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  color: #111;
  position: relative;
  z-index: 1001;
}

/* ZENTRIERTE NAV */
.nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 22px;
  z-index: 1;
}

.nav a {
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  transition: 0.25s ease;
  white-space: nowrap;
}

.nav a:hover,
.nav a.active {
  background: rgba(70, 130, 94, 0.08);
}

.nav .cta {
  background: var(--brand-orange);
  color: #fff;
  box-shadow: 0 10px 24px rgba(207, 87, 53, 0.28);
}

/* RECHTE HEADER-SEITE */
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
  position: relative;
  z-index: 2;
}

.linkedin-icon img {
  width: 35px;
  height: 35px;
  margin-left: 0;
  transition: 0.2s;
}

.linkedin-icon img:hover {
  transform: scale(1.15);
}

/* DROPDOWN */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  padding: 10px;
  z-index: 1000;
}

.dropdown-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: rgba(70, 130, 94, 0.08);
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

/* LANGUAGE SWITCH */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch img {
  width: 35px;
  height: 26px;
  object-fit: cover;
  border-radius: 3px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.lang-switch img:hover {
  transform: scale(1.1);
}

.lang-switch img.active {
  outline: 4px solid #46825e;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--brand-green);
  color: #fff;
  min-height: 84vh;
  display: flex;
  align-items: center;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.hero::before {
  width: 460px;
  height: 460px;
  left: -120px;
  top: 120px;
}

.hero::after {
  width: 240px;
  height: 240px;
  right: 10%;
  top: 14%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: block;
  padding: 110px 0;
}

.hero-grid > div:first-child {
  max-width: 1400px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
}

h1 {
  margin: 0;
  font-size: clamp(46px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: none;
}

.hero p {
  font-size: clamp(18px, 2.1vw, 24px);
  max-width: 1200px;
  color: rgba(255, 255, 255, 0.9);
  margin: 24px 0 34px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 500;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  background: var(--brand-orange);
  color: #fff;
  box-shadow: 0 14px 32px rgba(207, 87, 53, 0.28);
  font-size: 16px;
  padding: 14px 28px;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-links {
  display: flex;
  gap: 200px;
  align-items: center;
}

.hero-link {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #fff;
}

.hero-link span {
  width: auto;
  height: auto;
  border-radius: 50%;
  border: none;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-link span img {
  width: 140px;
  height: 140px;
  object-fit: contain;
}

.hero-link:hover span {
  transform: scale(1.06);
  background: rgba(255, 255, 255, 0.08);
}

.hero-link strong {
  font-size: 24px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

/* PAGE HERO */
.page-hero {
  background: var(--brand-green);
  color: white;
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  left: -90px;
  top: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.page-hero p {
  margin: 20px 0 0;
  font-size: 20px;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
}

/* CONTENT */
.section {
  padding: 50px 0;
}

.intro-text {
  font-size: clamp(28px, 3.2vw, 52px);
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: #4d4d4d;
  max-width: 1100px;
  margin: 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 30px;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  letter-spacing: -0.04em;
  line-height: 1;
}

.section-header p {
  margin: 0;
  max-width: 520px;
  color: var(--brand-muted);
  font-size: 17px;
}

.cards,
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
}

.grid-2 > * {
  margin-top: 0 !important;
  align-self: start;
}

.card,
.panel {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.panel {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

.card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.card::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(70, 130, 94, 0.08);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(70, 130, 94, 0.09);
  color: var(--brand-green);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.card h3,
.panel h2,
.panel h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 30px;
  letter-spacing: -0.03em;
}

.card p,
.panel p {
  margin: 0 0 20px;
  color: #5f625f;
  font-size: 17px;
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
  color: #323532;
}

.feature-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--brand-orange);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 10px;
}

.timeline {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 14px;
  align-items: start;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.timeline-item strong {
  color: var(--brand-orange);
}

.news-item {
  padding: 20px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.news-item:first-child {
  border-top: none;
  padding-top: 0;
}

.news-item small {
  color: var(--brand-orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.news-item h4 {
  margin: 8px 0;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.news-item img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: block;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.contact-list a,
.contact-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 18px;
  border-radius: 16px;
  background: #f5f5f3;
  font-weight: 600;
}

.solutions {
  background: #f7f7f5;
}

.solution-card {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.solution-icon {
  width: 90px;
  height: 90px;
  border-radius: 20px;
  background: rgba(70, 130, 94, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.solution-icon img {
  width: 85px;
  height: 85px;
  object-fit: contain;
}

.solution-card h3 {
  margin-bottom: 14px;
}

.solution-card p {
  margin-bottom: 24px;
}

.solution-link {
  margin-top: auto;
  font-weight: 700;
  color: var(--brand-orange);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.solution-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.solution-link:hover::after {
  transform: translateX(4px);
}

/* FORM */
.contact-form {
  width: 100%;
  margin: 0;
  max-width: none;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 15px;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-green);
}

.form-message {
  padding: 14px 16px;
  border-radius: 12px;
  margin: 0 0 18px 0;
  font-weight: 600;
}

.form-message.success {
  background: rgba(70, 130, 94, 0.12);
  color: #2f5f43;
  border: 1px solid rgba(70, 130, 94, 0.25);
}

.form-message.error {
  background: rgba(207, 87, 53, 0.1);
  color: #9b3d24;
  border: 1px solid rgba(207, 87, 53, 0.22);
}

/* FOOTER */
.footer {
  background: #111714;
  color: rgba(255, 255, 255, 0.84);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

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

/* MOBILE */
@media (max-width: 980px) {
  .hero-grid,
  .cards,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .header-inner {
    min-height: 70px;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    display: none !important;
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    transform: none;
    width: 260px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    z-index: 999;
  }

  .nav.open {
    display: flex !important;
  }

  .nav a {
    width: 100%;
  }

  .nav .cta {
    text-align: center;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown > a {
    width: 100%;
  }

  .dropdown-menu {
    display: block;
    position: static;
    min-width: 100%;
    background: transparent;
    box-shadow: none;
    padding: 6px 0 0 14px;
    margin-top: 4px;
  }

  .dropdown-menu a {
    padding: 10px 12px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .header-inner {
    padding: 14px 0;
  }

  .brand img {
    height: 72px;
  }

  .header-right {
    gap: 10px;
  }

  .hero-grid {
    padding: 72px 0;
  }

  .hero-links {
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
    width: 100%;
  }

  .hero-link {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
  }

  .hero-link span {
    width: 58px;
    height: 58px;
    min-width: 58px;
    min-height: 58px;
    flex: 0 0 58px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .hero-link span img {
    width: 58px;
    height: 58px;
    object-fit: contain;
  }

  .hero-link strong {
    font-size: 18px;
    letter-spacing: 0.08em;
    line-height: 1.3;
    white-space: normal;
    word-break: break-word;
  }

  .intro-text {
    font-size: 24px;
  }

  .card,
  .panel,
  .hero-card {
    padding: 22px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }
}

.lang-switch a.active img { outline: 3px solid #46825e; transform: scale(1.05); }
.lang-switch a { display:inline-flex; }
