:root {
  --scroll-color: #6FBF2A;
  --bg: #ffffff;
  --text: #111111;
  --muted: #555555;
  --muted-2: #888888;
  --line: rgba(111, 191, 42, 0.18);
  --gold: #6FBF2A;
  --gold-strong: #8ED63A;
  --gold-dark: #3F7F1A;
  --deep-blue: #0A2A66;
  --container: 1280px;
  --shadow-soft: 0 12px 32px rgba(111, 191, 42, 0.16);
  --shadow-strong: 0 18px 48px rgba(111, 191, 42, 0.26);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  padding-right: 0;
  font-family: "Inter", sans-serif;
  background: linear-gradient(180deg, #ffffff 0%, #f4fbe9 100%);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(var(--container), calc(100% - clamp(20px, 3vw, 40px)));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 110px 0;
  border-bottom: 1px solid rgba(111, 191, 42, 0.12);
  background: linear-gradient(180deg, #ffffff 0%, #f6fbea 100%);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: center;
}

.eyebrow {
  display: block;
  margin: 0 auto 14px;
  text-align: center;
  font-size: clamp(20px, 2.2vw, 34px);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: none;
  color: rgba(111, 191, 42, 0.95);
  white-space: nowrap;
}

.hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(900px, 92vw);
  margin: 0 auto;
  padding-bottom: 90px;
}

.section-heading h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.section-heading p {
  font-size: 18px;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto;
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.glow-1 {
  top: -120px;
  left: -140px;
  width: 420px;
  height: 420px;
  background: rgba(111, 191, 42, 0.10);
}

.glow-2 {
  top: 18%;
  right: -120px;
  width: 360px;
  height: 360px;
  background: rgba(111, 191, 42, 0.08);
}

.glow-3 {
  bottom: -120px;
  left: 18%;
  width: 320px;
  height: 320px;
  background: rgba(111, 191, 42, 0.08);
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(111, 191, 42, 0.14);
  transition: transform 0.4s ease;
}

header.hide { transform: translateY(-100%); }

.nav {
  min-height: 80px;
  overflow: visible;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  overflow: visible;
}

.brand-logo {
  height: 75px;
  width: auto;
  transform: translateY(1px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  margin-left: auto;
}

.nav-links a {
  font-size: clamp(13px, 0.9vw, 15px);
  color: #000000;
  padding: 6px 10px;
  border-radius: 10px;
  transition: 0.25s ease;
}

.nav-links a:hover {
  color: #ffffff;
  background: var(--gold);
  box-shadow: 0 0 15px rgba(111, 191, 42, 0.6);
}

.language-switcher { position: relative; }

.lang-btn {
  padding: 8px 14px;
  border-radius: 10px;
  background: var(--gold);
  color: #ffffff;
  font-size: 13px;
  cursor: pointer;
  border: none;
  font-weight: 600;
}

.lang-dropdown {
  position: absolute;
  top: 110%;
  right: 0;
  background: linear-gradient(180deg, #bdf58a, #6FBF2A);
  border-radius: 12px;
  padding: 10px;
  display: none;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  min-width: 180px;
}

.language-switcher.active .lang-dropdown { display: flex; }

.lang-dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 13px;
  color: #1b3d08;
  background: rgba(255, 255, 255, 0.65);
  font-weight: 600;
}

.lang-dropdown a:hover { background: #ffffff; }

.lang-flag {
  width: 24px;
  height: 16px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.18);
  flex-shrink: 0;
}

.btn, button, input, textarea, select { font: inherit; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn-primary {
  background: linear-gradient(90deg, var(--gold), var(--gold-strong));
  color: #111;
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.btn-secondary {
  background: #ffffff;
  border-color: #dddddd;
  color: #111111;
}

.btn-secondary:hover { background: #f6f6f6; }

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(111, 191, 42, 0.12);
  padding-top: 24px;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.08) contrast(1.05);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.45));
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #2f5f14;
  cursor: pointer;
  z-index: 3;
  font-size: 24px;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}

.slider-arrow.prev { left: 18px; }
.slider-arrow.next { right: 18px; }

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.slider-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  transition: 0.25s ease;
}

.slider-dot.active {
  width: 28px;
  background: var(--gold);
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 90px);
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  align-items: center;
  gap: 32px;
  padding: 40px 0 40px;
}

.hero-copy {
  max-width: min(900px, 92vw);
  margin: 0 auto;
}

.hero-copy h1 {
  font-size: clamp(34px, 4.6vw, 72px);
  line-height: 1.14;
  letter-spacing: -0.01em;
  max-width: 760px;
  margin: 0 auto;
  padding: 8px 0;
  text-align: center;
  overflow: visible;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0,0,0,0.65);
}

.scroll-cta { display:none; }

.scroll-cta-bottom {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: max-content;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
  animation: pulseScroll 1.8s ease-in-out infinite;
  z-index: 4;
  pointer-events: none;
}

@keyframes pulseScroll {
  0%, 100% {
    opacity: 0.72;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(6px);
  }
}

.hero-copy h1 .gold-text,
.gradient-glow-text {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 16px auto 0;
  text-align: center;
  font-size: clamp(30px, 2.8vw, 42px) !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em;
  line-height: 1.08;
  white-space: nowrap;
  background-image: linear-gradient(90deg, #6FBF2A 0%, #8ED63A 30%, #BFFF6A 50%, #8ED63A 70%, #6FBF2A 100%);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent !important;
  filter: drop-shadow(0 0 8px rgba(111,191,42,0.65)) drop-shadow(0 0 18px rgba(111,191,42,0.35));
  text-shadow: none !important;
}

.hero-copy h1 .gold-text {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 16px auto 0;
  text-align: center;
  font-size: clamp(30px, 2.8vw, 42px) !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em;
  line-height: 1.08;
  white-space: nowrap;
  background-image: linear-gradient(90deg, #6FBF2A 0%, #8ED63A 30%, #BFFF6A 50%, #8ED63A 70%, #6FBF2A 100%);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent !important;
  filter: drop-shadow(0 0 8px rgba(111,191,42,0.65)) drop-shadow(0 0 18px rgba(111,191,42,0.35));
  text-shadow: none !important;
}

.underbold-highlight {
  color: var(--gold);
  font-weight: 900;
}

.hero-copy p {
  margin-top: 18px;
  max-width: min(760px, 92vw);
  font-size: clamp(16px, 1.2vw, 19px);
  color: #ffffff;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 24px;
  align-items: stretch;
}

.contact-layout > * {
  min-height: 0;
}

.contact-form-card {
  padding: 42px;
  border: 2px solid rgba(111, 191, 42, 0.45);
  background: linear-gradient(180deg, rgba(111, 191, 42, 0.18), rgba(111, 191, 42, 0.06));
  box-shadow: 0 16px 40px rgba(111, 191, 42, 0.25);
  border-radius: 28px;
  position: relative;
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.contact-form-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255,255,255,0.25), transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.contact-form-card > * {
  position: relative;
  z-index: 2;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  align-content: start;
  padding-right: 6px;
}

.field,
.form-grid textarea,
.form-grid select {
  width: 100%;
  border: 1px solid rgba(111, 191, 42, 0.28);
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(240,248,232,0.85));
  color: #16210f;
  border-radius: 18px;
  padding: 14px 18px;
  outline: none;
  box-shadow: 0 6px 18px rgba(111,191,42,0.12);
  transition: all 0.22s ease;
}

.field::placeholder,
textarea::placeholder {
  color: #6f7a69;
}

.field:focus,
.form-grid textarea:focus,
.form-grid select:focus {
  border-color: rgba(111, 191, 42, 0.52);
  background: rgba(255,255,255,0.94);
  box-shadow: 0 0 0 4px rgba(111,191,42,0.12), 0 10px 24px rgba(111,191,42,0.12);
  transform: translateY(-1px);
}

.span-2 { grid-column: span 2; }
textarea { min-height: 110px; resize: vertical; }

.contact-side {
  display: grid;
  gap: 18px;
  align-content: stretch;
  height: 100%;
  min-height: 0;
}

.contact-info-panel {
  border: 2px solid rgba(111, 191, 42, 0.45);
  background: linear-gradient(180deg, rgba(111, 191, 42, 0.18), rgba(111, 191, 42, 0.06));
  box-shadow: 0 16px 40px rgba(111, 191, 42, 0.25);
  border-radius: 28px;
  padding: 30px 30px 26px;
  position: relative;
  overflow: hidden;
}

.contact-info-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255,255,255,0.25), transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.contact-info-header {
  position: relative;
  z-index: 1;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(111, 191, 42, 0.16);
}

.contact-info-header .eyebrow-small {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 800;
  color: #4d7d22;
  margin-bottom: 8px;
}

.contact-info-header h3 {
  font-size: 30px;
  line-height: 1.1;
  color: #18380a;
  margin: 0;
  text-align: left;
}

.contact-info-header p {
  margin-top: 10px;
  color: #5a5f57;
  font-size: 15px;
  line-height: 1.65;
  text-align: left;
  max-width: none;
}

.contact-info-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(111, 191, 42, 0.12);
}

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

.contact-info-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #6FBF2A, #8ED63A);
  border: 1px solid rgba(111, 191, 42, 0.6);
  color: #ffffff;
  font-size: 20px;
  box-shadow: 0 0 18px rgba(111,191,42,0.6), inset 0 0 10px rgba(255,255,255,0.25);
  transition: all 0.25s ease;
}

.contact-info-icon:hover {
  transform: scale(1.08);
  box-shadow: 0 0 28px rgba(111,191,42,0.9), inset 0 0 12px rgba(255,255,255,0.35);
}

.contact-info-content .contact-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  color: #6f7d66;
  margin-bottom: 6px;
}

.contact-info-content .contact-value {
  display: block;
  font-size: 19px;
  line-height: 1.45;
  font-weight: 700;
  color: #18210f;
  word-break: break-word;
}

.contact-info-content .contact-value.subtle {
  font-size: 16px;
  font-weight: 600;
  color: #3c4635;
}

.download-box {
  margin-top: 0;
  border: 2px solid rgba(111, 191, 42, 0.5);
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(244,251,239,0.9));
  border-radius: 26px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(111, 191, 42, 0.25);
}

.download-box h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #1b3d08;
}

.download-box p {
  font-size: 15px;
  color: #444;
  margin-bottom: 18px;
}

.download-btn,
.download-login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  background: linear-gradient(90deg, #6FBF2A, #8ED63A);
  color: #111;
  border: none;
  box-shadow: 0 0 18px rgba(111,191,42,0.6), 0 0 40px rgba(111,191,42,0.35);
  transition: 0.25s ease;
}

.download-btn:hover,
.download-login-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 28px rgba(111,191,42,0.9), 0 0 60px rgba(111,191,42,0.45);
}

footer {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, #f6fbea 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.footer-box {
  border: 2px solid rgba(111, 191, 42, 0.45);
  background: linear-gradient(180deg, rgba(111, 191, 42, 0.18), rgba(111, 191, 42, 0.06));
  box-shadow: 0 16px 40px rgba(111, 191, 42, 0.25);
  border-radius: 28px;
  padding: 48px 50px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.footer-box .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.footer-box::after { content: none; }

.footer-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255,255,255,0.25), transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.footer-top-line { display: none; }

.footer-message {
  max-width: 1100px;
  margin: 0 auto 22px;
  text-align: center;
  color: #2f2f2f;
  line-height: 1.8;
  font-size: 16px;
}

.footer-message .footer-line-1 {
  display: block;
  font-weight: 800;
  white-space: nowrap;
}

.footer-message .footer-line-2 {
  display: block;
  white-space: nowrap;
}

.footer-underbold {
  color: var(--deep-blue);
  font-weight: 900;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  width: 100%;
  margin: 0 auto 18px;
}

.footer-links a {
  color: #1b3d08;
  transition: 0.25s ease;
  padding: 12px 22px;
  border-radius: 14px;
  border: 1.5px solid rgba(111, 191, 42, 0.5);
  background: linear-gradient(180deg, rgba(111,191,42,0.18), rgba(111,191,42,0.06));
  box-shadow: 0 8px 22px rgba(111, 191, 42, 0.25);
  font-weight: 700;
  font-size: 14px;
}

.footer-links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(111, 191, 42, 0.35);
  background: linear-gradient(180deg, rgba(111,191,42,0.28), rgba(111,191,42,0.10));
}

.footer-bottom {
  margin-top: 6px;
  padding-top: 18px;
  width: 100%;
  border-top: 1px solid rgba(111, 191, 42, 0.25);
  font-size: 14px;
  color: #466b27;
  text-align: center;
  font-weight: 600;
}

.cookie-shell {
  position: fixed;
  inset: auto 24px 24px 24px;
  z-index: 9999;
  display: none;
  justify-content: center;
  pointer-events: none;
}

.cookie-shell.is-visible {
  display: flex;
}

.cookie-banner {
  width: min(1220px, 100%);
  pointer-events: auto;
  border: 1px solid rgba(111, 191, 42, 0.32);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,251,239,0.97)),
    radial-gradient(circle at top right, rgba(111,191,42,0.12), transparent 38%);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(20, 33, 12, 0.24), 0 0 0 1px rgba(255,255,255,0.45) inset;
  overflow: hidden;
}

.cookie-banner-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.9fr);
  gap: 28px;
  padding: 28px 30px;
}

.cookie-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cookie-kicker {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(111,191,42,0.18), rgba(142,214,58,0.08));
  border: 1px solid rgba(111,191,42,0.24);
  color: #2f5f14;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cookie-copy h3 {
  margin: 0;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #18380a;
}

.cookie-copy p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #465040;
  max-width: 760px;
}

.cookie-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.cookie-links a,
.cookie-links button {
  font: inherit;
}

.cookie-text-link {
  color: #2f5f14;
  font-weight: 700;
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.cookie-action-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.cookie-btn {
  min-height: 52px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0 22px;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: 0.25s ease;
}

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

.cookie-btn-primary {
  background: linear-gradient(90deg, var(--gold), var(--gold-strong));
  color: #111111;
  box-shadow: 0 0 20px rgba(111,191,42,0.35), 0 12px 28px rgba(111,191,42,0.22);
}

.cookie-btn-primary:hover {
  box-shadow: 0 0 28px rgba(111,191,42,0.52), 0 16px 34px rgba(111,191,42,0.28);
}

.cookie-btn-secondary {
  background: #ffffff;
  border-color: rgba(111,191,42,0.26);
  color: #18380a;
  box-shadow: 0 8px 20px rgba(34,52,20,0.08);
}

.cookie-btn-secondary:hover {
  background: linear-gradient(180deg, #ffffff, #f3f9ed);
  box-shadow: 0 12px 26px rgba(34,52,20,0.12);
}

.cookie-btn-ghost {
  background: rgba(111,191,42,0.08);
  border-color: rgba(111,191,42,0.18);
  color: #2f5f14;
}

.cookie-btn-ghost:hover {
  background: rgba(111,191,42,0.14);
}

.cookie-meta {
  display: flex;
  justify-content: flex-end;
  color: #687361;
  font-size: 12px;
  text-align: right;
  line-height: 1.55;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(7, 16, 4, 0.58);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal-panel {
  width: min(860px, 100%);
  border-radius: 28px;
  border: 1px solid rgba(111,191,42,0.26);
  background: linear-gradient(180deg, rgba(255,255,255,0.985), rgba(246,251,242,0.98));
  box-shadow: 0 28px 80px rgba(16, 26, 9, 0.28);
  overflow: hidden;
}

.cookie-modal-head {
  padding: 28px 30px 20px;
  border-bottom: 1px solid rgba(111,191,42,0.12);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.cookie-modal-head h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.08;
  color: #18380a;
}

.cookie-modal-head p {
  margin: 10px 0 0;
  color: #4f5849;
  font-size: 15px;
  line-height: 1.7;
  max-width: 620px;
}

.cookie-close {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(111,191,42,0.18);
  background: #ffffff;
  color: #1f2b18;
  font-size: 20px;
  cursor: pointer;
  flex: 0 0 auto;
  box-shadow: 0 8px 20px rgba(31,43,24,0.08);
}

.cookie-modal-body {
  padding: 24px 30px;
  display: grid;
  gap: 14px;
}

.cookie-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(111,191,42,0.15);
  background: linear-gradient(180deg, rgba(111,191,42,0.07), rgba(111,191,42,0.03));
}

.cookie-option-copy strong {
  display: block;
  font-size: 17px;
  color: #18380a;
  margin-bottom: 4px;
}

.cookie-option-copy span {
  display: block;
  color: #5a6354;
  font-size: 14px;
  line-height: 1.65;
}

.cookie-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(111,191,42,0.12);
  border: 1px solid rgba(111,191,42,0.18);
  color: #2f5f14;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cookie-switch {
  position: relative;
  width: 62px;
  height: 36px;
  display: inline-block;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  inset: 0;
  background: rgba(148, 158, 140, 0.42);
  border-radius: 999px;
  transition: 0.25s ease;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.35);
}

.cookie-slider::before {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  left: 4px;
  top: 4px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(0,0,0,0.14);
  transition: 0.25s ease;
}

.cookie-switch input:checked + .cookie-slider {
  background: linear-gradient(90deg, var(--gold), var(--gold-strong));
  box-shadow: 0 0 18px rgba(111,191,42,0.32);
}

.cookie-switch input:checked + .cookie-slider::before {
  transform: translateX(26px);
}

.cookie-switch input:disabled + .cookie-slider {
  opacity: 0.92;
  cursor: not-allowed;
}

.cookie-modal-footer {
  padding: 0 30px 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-footer-left,
.cookie-modal-footer-right {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.stats {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 18px);
  max-width: min(760px, 92vw);
  margin-left: auto;
  margin-right: auto;
}

.card {
  position: relative;
  z-index: 1;
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
}

.stat-card {
  padding: 22px 22px 20px;
  border: 1px solid rgba(111, 191, 42, 0.4);
  box-shadow: 0 0 20px rgba(111, 191, 42, 0.25);
  background: linear-gradient(180deg, rgba(111, 191, 42, 0.10), rgba(111, 191, 42, 0.04));
}

.stat-value {
  font-size: 68px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
  color: var(--muted);
}

.scroll-hint {
  position: relative;
  z-index: 1;
  padding-bottom: 34px;
  display: flex;
  justify-content: center;
}

.scroll-hint a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted-2);
  font-size: 14px;
}

.arrow {
  width: 18px;
  height: 18px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.grid-2, .grid-3, .grid-4, .grid-5 { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

.info-card,
.feature-card,
.mini-card,
.timeline-card,
.contact-card {
  border: 1px solid rgba(111, 191, 42, 0.45);
  background: linear-gradient(180deg, rgba(111, 191, 42, 0.18), rgba(111, 191, 42, 0.06));
  box-shadow: var(--shadow-soft);
  border-radius: 22px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.info-card, .feature-card { min-height: 240px; }

.science-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: start;
  text-align: center;
}

.science-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.science-grid .mini-card {
  min-height: 240px;
  padding: 36px 34px;
  box-shadow: 0 10px 30px rgba(111, 191, 42, 0.18);
}

.info-card .big {
  font-size: 44px;
  line-height: 1;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 8px;
  text-align: center;
}

.info-card h3,
.feature-card h3,
.timeline-card h3,
.project-card h3,
.contact-card h3,
.mini-card h3,
.history-card h3 {
  margin-top: 14px;
  font-size: 22px;
  line-height: 1.25;
  text-align: center;
}

.info-card p,
.feature-card p,
.timeline-card p,
.project-card p,
.contact-card p,
.mini-card p,
.history-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  text-align: center;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

#umwelt .mini-card h3 {
  color: #1b3d08;
  font-size: 22px;
  font-weight: 700;
}

#umwelt .mini-card p { color: #2f2f2f; }

.feature-card .value {
  margin-top: 10px;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
}

.compare-images {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  width: 100%;
  max-width: 1100px;
  margin: 20px auto 40px;
}

.compare-images-inline {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 20px;
}

.compare-images-inline img {
  width: calc(50% - 10px);
  max-width: calc(50% - 10px);
  flex: 0 0 calc(50% - 10px);
  height: 340px;
}

#vergleich .compare-images:first-of-type img {
  width: 50%;
  max-width: none;
  height: 340px;
}

.compare-images img {
  width: 100%;
  max-width: 900px;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

#umwelt .compare-images img {
  height: 240px;
  max-width: 800px;
}

.compare-images:last-of-type img {
  width: 100%;
  max-width: 900px;
  height: 380px;
}

.compare-table {
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid #d9e6d1;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(111, 191, 42, 0.12);
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid #e7efe2;
}

.compare-row:last-child { border-bottom: none; }
.compare-row div { padding: 22px 24px; text-align: center; }
.compare-row .label { font-weight: 700; color: #222222; background: #f8faf6; text-align: left; }
.compare-row .compare-conventional { background: #f2f2f2; color: #333333; font-weight: 600; }
.compare-row .accent-text { color: #24580d; font-weight: 700; background: rgba(111, 191, 42, 0.10); }

#projekte .card {
  border: 1px solid rgba(111, 191, 42, 0.35);
  background: linear-gradient(180deg, rgba(111, 191, 42, 0.12), rgba(111, 191, 42, 0.05));
  box-shadow: 0 12px 32px rgba(111, 191, 42, 0.18);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.project-slider {
  position: relative;
  height: 180px;
  width: 100%;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-bottom: 1px solid rgba(111, 191, 42, 0.18);
  background: linear-gradient(180deg, rgba(111, 191, 42, 0.15) 0%, rgba(111, 191, 42, 0.05) 100%);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.project-slider .slide {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.project-slider .slide.active {
  opacity: 1;
}

.slider-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.slider-dots:has(.dot:only-child) {
  display: none;
}

.slider-dots .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.slider-dots .dot.active {
  background: #6fbf2a;
  transform: scale(1.35);
}

#projekte .card:hover .project-slider,
#projekte .card.is-active .project-slider {
  transform: scale(1.08);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

#projekte .card:hover,
#projekte .card.is-active {
  transform: translateY(-6px);
}

#projekte .project-card {
  padding: 26px 28px 30px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

#projekte .project-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.project-meta,
.tag {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(111, 191, 42, 0.95);
  text-align: center;
}

#projekte .project-card p { max-width: 260px; }

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

.big-stat-card {
  padding: 40px;
  border: 2px solid rgba(111, 191, 42, 0.5);
  background: linear-gradient(180deg, rgba(111, 191, 42, 0.18), rgba(111, 191, 42, 0.08));
  border-radius: 32px;
  box-shadow: 0 0 40px rgba(111, 191, 42, 0.35);
  text-align: center;
}

.big-stat-card .huge {
  font-size: clamp(80px, 10vw, 120px);
  line-height: 1;
  font-weight: 900;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(111, 191, 42, 0.6);
}

.big-stat-card .sub {
  margin-top: 10px;
  font-size: 28px;
  font-weight: 700;
  color: #1b3d08;
}

.bar-list { margin-top: 30px; display: grid; gap: 14px; }

.bar-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(111, 191, 42, 0.16);
  background: rgba(0, 0, 0, 0.08);
  color: #000000;
  font-weight: 600;
}

.bar-item.accent {
  border-color: rgba(111, 191, 42, 0.35);
  background: rgba(111, 191, 42, 0.18);
  color: #000000;
}

.partner-map-wrap {
  border: 1.5px solid rgba(111, 191, 42, 0.38);
  background: linear-gradient(180deg, rgba(111, 191, 42, 0.10), rgba(111, 191, 42, 0.04));
  box-shadow: 0 14px 36px rgba(111, 191, 42, 0.18);
  border-radius: 28px;
  padding: 28px;
}

.country-map {
  position: relative;
  width: 100%;
  min-height: 620px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(111, 191, 42, 0.28);
  background: linear-gradient(180deg, #f9fff4 0%, #eef8e6 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.world-map-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 86px;
  background:
    radial-gradient(circle at 20% 30%, rgba(111, 191, 42, 0.16), transparent 22%),
    radial-gradient(circle at 70% 45%, rgba(111, 191, 42, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04)),
    url('images/worldmap.jpg') center center / contain no-repeat;
  opacity: 0.96;
}

.map-popup {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  width: min(700px, calc(100% - 48px));
  max-height: 80vh;
  border: 1.5px solid rgba(111, 191, 42, 0.55);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 251, 239, 0.96));
  border-radius: 30px;
  box-shadow: 0 28px 80px rgba(63, 127, 26, 0.26), 0 0 0 1px rgba(255,255,255,0.35) inset;
  padding: 24px;
  z-index: 4;
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transition: 0.35s ease;
  text-align: center;
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.map-popup::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255,255,255,0.28), transparent 60%);
  pointer-events: none;
}

.map-popup-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.map-popup-logo-wrap {
  width: 100%;
  max-width: 240px;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 20px;
  border: 1px solid rgba(111, 191, 42, 0.24);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 28px rgba(111, 191, 42, 0.10);
}

.map-popup-logo {
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.12));
}

.map-popup-country {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(111,191,42,0.14), rgba(142,214,58,0.08));
  border: 1px solid rgba(111,191,42,0.22);
  color: #2f5f14;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-popup.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

.map-popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(111, 191, 42, 0.12);
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  color: #2f5f14;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
}

.map-popup-close:hover {
  background: rgba(111, 191, 42, 0.28);
}

.map-popup .popup-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 800;
  margin-bottom: 0;
}

.map-popup h3 {
  font-size: 24px;
  line-height: 1.12;
  color: #1b3d08;
  margin: 0;
  text-align: center !important;
}

.map-popup p {
  font-size: 15px;
  line-height: 1.55;
  color: #333333;
  text-align: center !important;
  max-width: none !important;
  margin: 0;
}

.map-popup-address {
  width: 100%;
  padding-top: 10px;
  border-top: 1px solid rgba(111, 191, 42, 0.12);
  max-width: 420px;
  margin: 0 auto;
}

.map-search-bar {
  margin-top: auto;
  position: relative;
  z-index: 5;
  display: flex;
  gap: 12px;
  padding: 18px;
  border-top: 1px solid rgba(111, 191, 42, 0.16);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(12px);
}

.partner-open-wrap {
  display: flex;
  justify-content: center;
  padding: 18px;
}

.partner-open-btn {
  border: none;
  border-radius: 999px;
  background: linear-gradient(90deg, #6fbf2a, #4e9e1a);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(111, 191, 42, 0.30);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  letter-spacing: 0.03em;
}

.partner-open-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(111, 191, 42, 0.40);
}

/* Country Picker Overlay */
.partner-picker-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 24, 4, 0.72);
  backdrop-filter: blur(6px);
  z-index: 9000;
  align-items: center;
  justify-content: center;
}

.partner-picker-overlay.active {
  display: flex;
}

.partner-picker-modal {
  background: linear-gradient(160deg, #f4fbef, #e8f5dc);
  border: 1.5px solid rgba(111, 191, 42, 0.40);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(30, 60, 10, 0.28);
  width: min(680px, calc(100vw - 32px));
  max-height: 80vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.partner-picker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px 16px;
  border-bottom: 1px solid rgba(111, 191, 42, 0.20);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3a7010;
}

.partner-picker-close {
  background: rgba(111, 191, 42, 0.12);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 15px;
  cursor: pointer;
  color: #3a7010;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.partner-picker-close:hover {
  background: rgba(111, 191, 42, 0.28);
}

.partner-picker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 10px;
  padding: 20px 24px;
  overflow-y: auto;
}

.partner-picker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.80);
  border: 1px solid rgba(111, 191, 42, 0.22);
  border-radius: 12px;
  padding: 11px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #1b3d08;
  cursor: pointer;
  transition: all 0.18s ease;
  text-align: left;
}

.partner-picker-item:hover {
  background: linear-gradient(135deg, rgba(111, 191, 42, 0.18), rgba(111, 191, 42, 0.08));
  border-color: rgba(111, 191, 42, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(111, 191, 42, 0.18);
}

.partner-picker-item img {
  width: 24px;
  height: 16px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.18);
}

.map-search-input {
  flex: 1;
  border: 1px solid rgba(111, 191, 42, 0.24);
  background: #ffffff;
  border-radius: 16px;
  padding: 14px 16px;
  color: #111111;
  outline: none;
}

.map-search-btn {
  min-width: 150px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(90deg, var(--gold), var(--gold-strong));
  color: #111111;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(111, 191, 42, 0.24);
}

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

.cooperation-card {
  border: 1.5px solid rgba(111, 191, 42, 0.42);
  background: linear-gradient(180deg, rgba(111, 191, 42, 0.16), rgba(111, 191, 42, 0.05));
  box-shadow: 0 16px 36px rgba(111, 191, 42, 0.18);
  border-radius: 28px;
  padding: 34px;
}

.cooperation-logo {
  width: 100%;
  height: 120px;
  border-radius: 22px;
  border: 1px solid rgba(111, 191, 42, 0.24);
  background: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.cooperation-logo img {
  max-height: 78px;
  width: auto;
  object-fit: contain;
}

.cooperation-card h3 {
  margin-top: 22px;
  font-size: 28px;
  line-height: 1.15;
  text-align: left;
  color: #1b3d08;
}

.cooperation-subtitle {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 700;
  color: #2f5f14;
  text-align: left;
}

.cooperation-description {
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  text-align: left;
}

.cooperation-features {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.cooperation-feature {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(111, 191, 42, 0.30);
  background: rgba(255, 255, 255, 0.72);
  color: #1b3d08;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 6px 18px rgba(111, 191, 42, 0.12);
}

.cooperation-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: #2f5f14;
  font-size: 16px;
  font-weight: 800;
  text-align: left;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(111, 191, 42, 0.5), rgba(111, 191, 42, 0.16), transparent 100%);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: -100px;
  align-items: start;
}

.timeline-item:last-child { margin-bottom: 0; }
.timeline-item:nth-child(odd) .timeline-card { grid-column: 1; text-align: right; }
.timeline-item:nth-child(even) .timeline-card { grid-column: 2; }

.timeline-image {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-bottom: 1px solid rgba(111, 191, 42, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform-origin: center;
}

#verfahren .timeline-card {
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#verfahren .timeline-card:hover,
#verfahren .timeline-card.is-active {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  z-index: 5;
}

#verfahren .timeline-card:hover .timeline-image,
#verfahren .timeline-card.is-active .timeline-image {
  transform: scale(1.2);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.timeline-content { padding: 24px; }

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 12px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--gold);
  border: 4px solid var(--bg);
  transform: translateX(-50%);
  box-shadow: 0 0 18px rgba(111, 191, 42, 0.35);
}

.year-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(111, 191, 42, 0.18);
  background: rgba(111, 191, 42, 0.10);
  color: #6FBF2A;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}

.history-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.history-card {
  border: 1px solid rgba(111, 191, 42, 0.35);
  background: linear-gradient(180deg, rgba(111, 191, 42, 0.12), rgba(111, 191, 42, 0.05));
  box-shadow: 0 10px 30px rgba(111, 191, 42, 0.18);
  padding: 36px 30px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
  border-radius: 22px;
}

.history-step {
  min-width: 72px;
  min-height: 72px;
  padding: 0 14px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  color: #111;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 14px;
  box-shadow: 0 0 18px rgba(111, 191, 42, 0.4);
}

.quality-box {
  border: 2px solid rgba(111, 191, 42, 0.45);
  background: linear-gradient(180deg, rgba(111, 191, 42, 0.18), rgba(111, 191, 42, 0.06));
  box-shadow: 0 16px 40px rgba(111, 191, 42, 0.25);
  border-radius: 28px;
}

.quality-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.quality-item {
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(111, 191, 42, 0.25), rgba(111, 191, 42, 0.10));
  border: 1px solid rgba(111, 191, 42, 0.5);
  font-size: 14px;
  font-weight: 700;
  color: #1b3d08;
  text-align: center;
  box-shadow: 0 6px 18px rgba(111, 191, 42, 0.25);
  transition: 0.25s ease;
  cursor: pointer;
}

.quality-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(111, 191, 42, 0.35);
  background: linear-gradient(135deg, rgba(111, 191, 42, 0.35), rgba(111, 191, 42, 0.15));
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-progress {
  position: fixed;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px 10px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(111,191,42,0.35), rgba(255,255,255,0.15));
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 20px 50px rgba(111,191,42,0.35), inset 0 0 20px rgba(255,255,255,0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.28s ease;
  width: 65px;
  max-height: 90vh;
  overflow: hidden;
}

.section-progress:hover {
  width: 130px;
  padding: 14px 10px;
}

.section-progress.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.section-progress a {
  width: 100%;
  padding: 10px 12px;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 700;
  color: #000000;
  background: linear-gradient(135deg, rgba(111,191,42,0.25), rgba(255,255,255,0.35));
  border: 1px solid rgba(111,191,42,0.5);
  border-left: 3px solid transparent;
  box-shadow: inset 0 0 10px rgba(255,255,255,0.3), 0 0 12px rgba(111,191,42,0.4);
  transition: 0.25s ease;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  opacity: 0;
  transform: translateX(8px);
}

.section-progress:hover a {
  opacity: 1;
  transform: translateX(0);
}

.section-progress a.active {
  color: #000000;
  background: linear-gradient(135deg, rgba(111,191,42,0.7), rgba(142,214,58,0.6));
  box-shadow: 0 0 20px rgba(111,191,42,0.9), 0 0 40px rgba(111,191,42,0.4);
  border-left: 3px solid #ffffff;
  transform: translateX(-3px) scale(1.08);
}

@media (max-width: 820px) {
  .hero-inner {
    min-height: auto;
    padding: 54px 0 42px;
  }

  .hero-copy h1 {
    font-size: clamp(32px, 6vw, 52px);
  }

  .hero-copy h1 .gold-text {
    font-size: clamp(20px, 4.2vw, 28px) !important;
    white-space: nowrap;
  }

  .stats {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    overflow-x: hidden;
  }

  .section {
    padding: 60px 0;
  }

  .container {
    width: calc(100% - 20px);
  }

  header {
    overflow: visible;
  }

  .nav {
    min-height: 72px;
    gap: 8px;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .brand {
    min-width: 0;
    flex: 0 1 auto;
  }

  .brand-logo {
    height: 58px;
    transform: none;
  }

  .nav-links {
    display: none;
  }

  .language-switcher {
    margin-left: auto;
    flex: 0 0 auto;
  }

  .lang-btn {
    padding: 8px 10px;
    font-size: 12px;
  }

  .lang-dropdown {
    right: 0;
    left: auto;
    min-width: 160px;
    max-width: calc(100vw - 24px);
  }

  .nav > .btn.btn-secondary {
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
    flex: 0 0 auto;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-inner {
    min-height: calc(100vh - 84px);
    padding: 48px 0 50px;
    gap: 30px;
  }

  .hero-copy {
    max-width: 100%;
    padding-bottom: 76px;
  }

  .eyebrow {
    font-size: 15px;
    letter-spacing: 0.08em;
    white-space: normal;
    text-align: center;
  }

  .hero-copy h1 {
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.16;
    max-width: 100%;
  }

  .hero-copy h1 .gold-text {
    margin-top: 10px;
    font-size: clamp(17px, 4.9vw, 22px);
    letter-spacing: 0.03em;
    white-space: normal;
    line-height: 1.2;
  }

  .hero-copy p {
    font-size: 15px;
    line-height: 1.55;
    margin-top: 12px;
    max-width: 100%;
  }

  .hero-actions {
    margin-top: 18px;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .scroll-cta-bottom {
    bottom: 18px;
    font-size: 16px;
  }

  .slider-arrow {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .slider-arrow.prev { left: 10px; }
  .slider-arrow.next { right: 10px; }

  .stats,
  .grid-2,
  .grid-3,
  .grid-4,
  .science-grid,
  .history-grid,
  .cooperation-grid,
  .quality-grid,
  .compare-images-inline,
  .sustainability-grid,
  .science-layout,
  .contact-layout,
  .form-grid {
    grid-template-columns: 1fr !important;
  }

  .compare-images {
    flex-direction: column;
    gap: 14px;
  }

  .compare-images-inline {
    display: grid;
    gap: 14px;
  }

  .compare-images-inline img,
  #vergleich .compare-images:first-of-type img,
  .compare-images img,
  .compare-images:last-of-type img,
  #umwelt .compare-images img {
    width: 100% !important;
    max-width: 100% !important;
    height: 220px !important;
    flex: 0 0 auto;
  }

  .section-heading {
    margin: 0 auto 28px;
  }

  .section-heading h2 {
    font-size: 26px;
    line-height: 1.15;
  }

  .section-heading p {
    font-size: 15px;
    line-height: 1.55;
  }

  .contact-form-card,
  .info-card,
  .feature-card,
  .timeline-card,
  .project-card,
  .contact-card,
  .mini-card,
  .big-stat-card,
  .history-card,
  .cooperation-card,
  .contact-info-panel,
  .quality-box,
  .footer-box,
  .download-box,
  .compare-table,
  .partner-map-wrap {
    padding: 18px;
    width: 100%;
    max-width: 100%;
  }

  .contact-form-card,
  .contact-info-panel,
  .quality-box,
  .feature-card,
  .mini-card,
  .timeline-card,
  .history-card,
  .project-card,
  .cooperation-card {
    border-radius: 22px;
  }

  .feature-card,
  .mini-card,
  .info-card,
  .project-card,
  .history-card {
    min-height: auto;
  }

  .feature-card .value,
  .big-stat-card .sub,
  .big-stat-card .huge,
  .project-card p,
  .info-card p,
  .mini-card p,
  .feature-card p,
  .history-card p {
    max-width: 100%;
    word-break: break-word;
  }

  .big-stat-card .huge {
    font-size: 62px;
  }

  .contact-info-header h3,
  .contact-info-header p,
  .cooperation-card h3,
  .cooperation-subtitle,
  .cooperation-description {
    text-align: center;
  }

  .contact-info-item {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  .contact-info-icon {
    margin: 0 auto;
  }

  .form-grid {
    gap: 10px;
    overflow: visible;
    padding-right: 0;
  }

  .span-2 {
    grid-column: span 1;
  }

  textarea {
    min-height: 110px;
  }

  .country-map {
    min-height: 420px;
  }

  .map-search-bar {
    flex-direction: column;
    gap: 8px;
  }

  .partner-quick-select {
    display: none;
  }

  .partner-mobile-select {
    display: block;
  }

  .map-search-input,
  .map-search-btn {
    width: 100%;
  }

  .map-popup {
    width: calc(100% - 20px);
    max-height: 85vh;
    padding: 16px;
  }

  .map-popup-logo-wrap {
    max-width: 180px;
    min-height: 68px;
    padding: 12px 14px;
  }

  .map-popup-logo {
    max-height: 40px;
  }

  .map-popup h3 {
    font-size: 20px;
  }

  .map-popup p {
    font-size: 14px;
    line-height: 1.45;
  }

  .map-popup-country {
    font-size: 10px;
    padding: 7px 12px;
  }

  .timeline::before {
    left: 14px;
    transform: none;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 36px;
    margin-bottom: 18px;
  }

  .timeline-item:nth-child(odd) .timeline-card,
  .timeline-item:nth-child(even) .timeline-card {
    grid-column: auto;
    text-align: left;
  }

  .timeline-dot {
    left: 14px;
    transform: translateX(-50%);
  }

  .compare-row {
    grid-template-columns: 1fr;
  }

  .compare-row div {
    border-bottom: 1px solid rgba(111, 191, 42, 0.08);
  }

  .compare-row div:last-child {
    border-bottom: none;
  }

  .cooperation-features {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-box {
    padding: 28px 18px;
  }

  .footer-message {
    font-size: 14px;
    line-height: 1.6;
  }

  .footer-message .footer-line-1,
  .footer-message .footer-line-2 {
    white-space: normal;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .footer-links a,
  .download-btn,
  .download-login-btn {
    width: 100%;
    text-align: center;
  }

  .cookie-shell {
    left: 10px;
    right: 10px;
    bottom: 10px;
    inset: auto 10px 10px 10px;
  }

  .cookie-banner {
    width: 100%;
    max-height: min(78vh, 640px);
    overflow-y: auto;
    border-radius: 24px;
  }

  .cookie-banner-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px 16px;
  }

  .cookie-copy h3 {
    font-size: 18px;
    line-height: 1.18;
  }

  .cookie-copy p {
    font-size: 14px;
    line-height: 1.6;
  }

  .cookie-links {
    gap: 10px;
  }

  .cookie-action-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cookie-btn {
    width: 100%;
    min-height: 48px;
    font-size: 14px;
  }

  .cookie-meta {
    justify-content: flex-start;
    text-align: left;
  }

  .cookie-modal {
    padding: 12px;
  }

  .cookie-modal-panel {
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    border-radius: 24px;
  }

  .cookie-modal-head,
  .cookie-modal-body,
  .cookie-modal-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .cookie-modal-head {
    flex-direction: column;
    padding-top: 20px;
  }

  .cookie-modal-head h3 {
    font-size: 24px;
  }

  .cookie-option {
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 12px;
    padding: 16px;
  }

  .cookie-pill {
    min-width: 0;
    width: fit-content;
  }

  .cookie-switch {
    justify-self: start;
  }

  .cookie-modal-footer,
  .cookie-modal-footer-left,
  .cookie-modal-footer-right {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 1100px) {
  .section-progress { display: none; }
}

@media (max-width: 640px) {
  .project-slider {
    height: 210px;
  }

  .slider-dots .dot {
    width: 9px;
    height: 9px;
  }

  .lightbox-close {
    top: 12px;
    right: 16px;
    font-size: 1.8rem;
    padding: 8px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 44px;
    height: 44px;
    font-size: 2rem;
  }

  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }

  .lightbox-img-wrap {
    max-width: 100vw;
    max-height: 80vh;
    padding: 0 56px;
    box-sizing: border-box;
  }

  .lightbox-img-wrap img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
  }

  .lightbox-dots {
    bottom: 16px;
  }

  .lightbox-dots .lb-dot {
    width: 10px;
    height: 10px;
  }
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  animation: lbFadeIn 0.25s ease;
}

.lightbox.open {
  display: flex;
}

@keyframes lbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 60px rgba(0,0,0,0.7);
  animation: lbZoomIn 0.3s ease;
}

@keyframes lbZoomIn {
  from { transform: scale(0.92); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  z-index: 10000;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(111, 191, 42, 0.15);
  border: 1px solid rgba(111, 191, 42, 0.4);
  color: #fff;
  font-size: 2.8rem;
  line-height: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.2s, background 0.2s;
  z-index: 10000;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
  background: rgba(111, 191, 42, 0.35);
}

.lightbox-prev.hidden,
.lightbox-next.hidden { display: none; }

.lightbox-dots {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.lightbox-dots .lb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.lightbox-dots .lb-dot.active {
  background: #6fbf2a;
  transform: scale(1.35);
}

.project-slider .slide { cursor: zoom-in; }