/* ========================================
   COMPONENTS
   ======================================== */

/* ========================================
   HERO HOME — Vollbild mit Hintergrundbild
   ======================================== */
.hero-home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  padding: 7rem var(--gutter) 3rem;
  overflow: hidden;
  isolation: isolate;
}
.hero-home-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-home-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-home-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,22,20,0.66) 0%, rgba(15,22,20,0.34) 28%, rgba(15,22,20,0.08) 46%, rgba(15,22,20,0) 60%, rgba(15,22,20,0.32) 80%, rgba(15,22,20,0.74) 100%);
}

.hero-home-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Überschrift oben, ohne Kasten — Lesbarkeit über Text-Shadow + Top-Verlauf */
.hero-home-statement {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  width: 100%;
  padding-top: 1rem;
}

.hero-home-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.hero-home-eyebrow::before,
.hero-home-eyebrow::after {
  content: '';
  width: 36px; height: 1px;
  background: currentColor;
}

.hero-home h1 {
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.25rem;
  max-width: 20ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}
.hero-home h1 .h-accent { color: #7FD9BC; }

.hero-home-tagline {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.97);
  max-width: 56ch;
  margin-bottom: 0;
  font-weight: 400;
  text-shadow: 0 1px 16px rgba(0,0,0,0.45);
}

.hero-home-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 320px));
  gap: 1rem;
  margin-top: 0;
  width: 100%;
  max-width: 720px;
}
@media (max-width: 700px) {
  .hero-home-cards { grid-template-columns: 1fr; max-width: 420px; }
}

.hero-glass-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: left;
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
  transition: all 0.3s var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hero-glass-card:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-4px);
}
.hero-glass-card-icon {
  width: 44px; height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.hero-glass-card-icon svg { width: 22px; height: 22px; stroke-width: 1.6; }
.hero-glass-card strong {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
}
.hero-glass-card span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}
.hero-glass-card-link {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}
.hero-glass-card:hover .hero-glass-card-link { gap: 0.7rem; }

.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 40px;
  background: rgba(255, 255, 255, 0.5);
  animation: scrollPulse 2s var(--ease-out) infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.3); transform-origin: top; opacity: 0.5; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
}

/* ========================================
   HERO SUB (Maritim, Agrar, Detail-Seiten)
   ======================================== */
.hero-sub {
  position: relative;
  padding: 10rem var(--gutter) 7rem;
  background: var(--green-pale);
  overflow: hidden;
}
.hero-sub::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(circle at center right, rgba(0, 112, 88, 0.08), transparent 60%);
  pointer-events: none;
}
.hero-sub-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 900px) { .hero-sub-content { grid-template-columns: 1fr; } }

.hero-sub-num {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 1.5rem;
}
.hero-sub-num::before {
  content: '';
  width: 24px; height: 1px;
  background: currentColor;
}

.hero-sub h1 {
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 1.5rem;
}
.hero-sub h1 .h-accent { color: var(--green-deep); }

.hero-sub-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.hero-sub-image img,
.hero-sub-image video {
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero-sub-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--green-soft);
}
.hero-sub-meta-item label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-bottom: 0.4rem;
}
.hero-sub-meta-item strong {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
}

/* ========================================
   AREA CARDS (Index)
   ======================================== */
.areas-intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: end;
}
@media (max-width: 900px) { .areas-intro { grid-template-columns: 1fr; gap: 2rem; } }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 800px) { .areas-grid { grid-template-columns: 1fr; gap: 1rem; } }

.area-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--whisper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
  display: flex;
  flex-direction: column;
}
.area-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-soft);
}
.area-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.area-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.area-card:hover .area-card-img img { transform: scale(1.06); }
.area-card-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.area-card-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--green-bright);
  margin-bottom: 0.75rem;
}
.area-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--green-pale);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  align-self: flex-start;
}
.area-card h3 {
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 0.75rem;
}
.area-card p {
  color: var(--steel);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
  flex: 1;
}
.area-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--green-deep);
  transition: gap 0.3s, color 0.3s;
  align-self: flex-start;
}
.area-card:hover .area-card-link { color: var(--green-bright); gap: 1rem; }

/* ========================================
   STATS BAR
   ======================================== */
.stats-bar {
  background: var(--white);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .stats-grid { grid-template-columns: 1fr; } }

.stat-item {
  background: var(--white);
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--green-soft);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.stat-icon {
  width: 52px; height: 52px;
  background: var(--green-pale);
  color: var(--green-deep);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-icon svg { width: 26px; height: 26px; stroke-width: 1.6; }
.stat {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--green-deep);
  line-height: 1;
}
.stat-item label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--steel);
}
.stat-source {
  font-size: 0.72rem;
  color: var(--graphite);
  margin-top: 0.25rem;
  font-weight: 500;
}
.stat-source a { color: var(--green-deep); text-decoration: underline; }

/* ========================================
   STATS HERO BAND — animiert auf grünem Grund
   ======================================== */
.stats-band {
  background: var(--green-deep);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 144, 0, 0.25), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(199, 229, 216, 0.1), transparent 50%);
  pointer-events: none;
}
.stats-band-inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.stats-band-header {
  text-align: center;
  margin-bottom: 4rem;
}
.stats-band-header .eyebrow {
  color: var(--green-soft);
  margin-bottom: 1rem;
}
.stats-band-header .eyebrow::before { background: var(--green-soft); }
.stats-band-header h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--white);
  line-height: 1.1;
  max-width: 22ch;
  margin: 0 auto;
}
.stats-band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .stats-band-grid { grid-template-columns: 1fr; } }

.stats-band-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  transition: all 0.3s var(--ease-out);
}
.stats-band-card:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-4px);
}
.stats-band-card .num {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.75rem;
  display: block;
}
.stats-band-card .num .suffix {
  font-size: 0.5em;
  color: var(--green-soft);
  margin-left: 0.15em;
  font-weight: 700;
}
.stats-band-card .label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.stats-band-card .source {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}
.stats-band-card .source a {
  color: var(--green-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ========================================
   FEATURE SPLIT
   ======================================== */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 1000px) { .feature-split { grid-template-columns: 1fr; gap: 2rem; } }
.feature-split.reverse .feature-split-img { order: 2; }
@media (max-width: 1000px) { .feature-split.reverse .feature-split-img { order: 0; } }

.feature-split-img {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow);
}
.feature-split-img img,
.feature-split-img video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.feature-split-content h3 {
  font-size: var(--fs-3xl);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 1.25rem 0 1.25rem;
  color: var(--black);
}
.feature-split-content h3 .h-accent { color: var(--green-deep); }
.feature-split-content p {
  color: var(--steel);
  margin-bottom: 1.25rem;
  max-width: 50ch;
  line-height: 1.65;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--green-pale);
  border-radius: var(--radius);
  transition: transform 0.2s, background 0.2s;
}
.feature-list li:hover {
  background: var(--green-light);
  transform: translateX(4px);
}
.feature-list .icon {
  width: 36px; height: 36px;
  background: var(--white);
  color: var(--green-deep);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-list .icon svg { width: 18px; height: 18px; stroke-width: 1.8; }
.feature-list strong {
  font-weight: 600;
  font-size: 1rem;
  display: block;
  margin-bottom: 0.2rem;
  color: var(--black);
}
.feature-list p {
  font-size: 0.88rem;
  color: var(--steel);
  margin: 0;
  line-height: 1.5;
}

/* ========================================
   PRODUCT SHOWCASE — Bild + Grüne Spec-Box
   ======================================== */
.product-showcase {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
@media (max-width: 1000px) { .product-showcase { grid-template-columns: 1fr; } }

.product-showcase-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--green-pale);
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-showcase-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.product-showcase-img.contain img {
  object-fit: contain;
  padding: 2rem;
}

.product-spec-box {
  background: var(--green-deep);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
}
@media (max-width: 600px) { .product-spec-box { padding: 2rem 1.5rem; } }

.product-spec-box-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.product-spec-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}
.product-spec-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.product-spec-row:last-child { border-bottom: none; padding-bottom: 0; }
.product-spec-icon {
  width: 36px; height: 36px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.product-spec-icon svg { width: 18px; height: 18px; stroke-width: 1.8; }
.product-spec-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}
.product-spec-value {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  text-align: right;
  font-weight: 500;
}
.product-spec-value strong {
  display: block;
  color: var(--white);
  font-weight: 700;
}

.product-spec-note {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
  margin-top: auto;
  padding-top: 1.25rem;
}

/* ========================================
   GALLERY CAROUSEL
   ======================================== */
.gallery-carousel {
  position: relative;
  margin: 0 calc(-1 * var(--gutter));
  padding: 0 var(--gutter);
}
.gallery-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.5rem 0 1.5rem;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-slide {
  flex: 0 0 calc(50% - 0.5rem);
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s, box-shadow 0.4s;
}
.gallery-slide:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.gallery-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.gallery-slide:hover img { transform: scale(1.04); }
@media (max-width: 700px) { .gallery-slide { flex: 0 0 80%; } }
.gallery-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
}
.gallery-nav { display: flex; gap: 0.5rem; }
.gallery-nav button {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--green-soft);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.gallery-nav button:hover {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
}
.gallery-nav button svg { width: 18px; height: 18px; }
.gallery-progress { font-size: 0.88rem; font-weight: 600; color: var(--graphite); }
.gallery-progress strong { color: var(--green-deep); font-weight: 700; }

/* ========================================
   CTA BAND
   ======================================== */
.cta-band {
  background: var(--green-deep);
  color: var(--white);
  padding: 9rem var(--gutter);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(0, 144, 0, 0.4), transparent 60%);
  pointer-events: none;
}
.cta-band-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.cta-band .eyebrow { color: var(--green-soft); }
.cta-band .eyebrow::before { background: var(--green-soft); }
.cta-band h2 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 1.5rem 0 1.5rem;
  color: var(--white);
}
.cta-band p {
  color: var(--green-light);
  font-size: var(--fs-lg);
  max-width: 50ch;
  margin: 0 auto 3rem;
}
.cta-band .btn-primary {
  background: var(--white);
  color: var(--green-deep);
}
.cta-band .btn-primary:hover {
  background: var(--green-pale);
  color: var(--green-deeper);
}

/* ========================================
   ABOUT
   ======================================== */
.about-hero {
  padding: 10rem var(--gutter) 7rem;
  background: var(--green-pale);
}
.about-hero-inner { max-width: var(--max-w); margin: 0 auto; }
.about-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 1.25rem 0 1.5rem;
  color: var(--black);
  max-width: 22ch;
}
.about-hero h1 .h-accent { color: var(--green-deep); }
.about-hero-lead {
  font-size: var(--fs-xl);
  line-height: 1.5;
  color: var(--steel);
  max-width: 60ch;
  margin-top: 1.5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--whisper);
  border-radius: var(--radius-lg);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--green-soft);
  box-shadow: var(--shadow);
}
.value-card-icon {
  width: 56px; height: 56px;
  background: var(--green-pale);
  color: var(--green-deep);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.value-card-icon svg { width: 28px; height: 28px; stroke-width: 1.6; }
.value-card .num {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 0.75rem;
  display: block;
}
.value-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: var(--black);
}
.value-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--steel);
}

/* ========================================
   FORM
   ======================================== */
.form-page {
  padding: 10rem var(--gutter) 7rem;
  min-height: 100vh;
  background: var(--green-pale);
}
.form-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) { .form-inner { grid-template-columns: 1fr; gap: 2rem; } }
.form-side h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0.75rem 0 1.25rem;
  color: var(--black);
}
.form-side h1 .h-accent { color: var(--green-deep); }
.form-side-info {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--green-soft);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-side-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.form-side-info-item .icon {
  width: 38px; height: 38px;
  background: var(--white);
  color: var(--green-deep);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--green-soft);
}
.form-side-info-item .icon svg { width: 18px; height: 18px; stroke-width: 1.8; }
.form-side-info-item label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--graphite);
  display: block;
  margin-bottom: 0.25rem;
}
.form-side-info-item span,
.form-side-info-item a {
  font-size: 0.95rem;
  color: var(--black);
  line-height: 1.5;
}
.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--green-soft);
  box-shadow: var(--shadow);
}
@media (max-width: 600px) { .contact-form { padding: 1.75rem 1.25rem; } }
.form-row { display: grid; gap: 1rem; margin-bottom: 1rem; }
.form-row.two { grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .form-row.two { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--steel);
  margin-bottom: 0.5rem;
}
.form-group label .req { color: var(--green-bright); }
.form-input,
.form-select,
.form-textarea {
  font: inherit;
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--whisper);
  background: var(--white);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, background 0.2s;
  color: var(--black);
  width: 100%;
}
.form-textarea { min-height: 130px; resize: vertical; }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--green-deep);
}
.form-area-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-bottom: 1rem;
}
@media (max-width: 700px) { .form-area-cards { grid-template-columns: repeat(2, 1fr); } }
.form-area-card input { display: none; }
.form-area-card label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0.5rem;
  background: var(--white);
  border: 1.5px solid var(--whisper);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.form-area-card label:hover { border-color: var(--green-soft); background: var(--green-pale); }
.form-area-card label .icon {
  width: 32px; height: 32px;
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-area-card label .icon svg { width: 22px; height: 22px; stroke-width: 1.6; }
.form-area-card label strong { font-weight: 600; font-size: 0.92rem; color: var(--black); }
.form-area-card input:checked + label {
  background: var(--green-deep);
  border-color: var(--green-deep);
}
.form-area-card input:checked + label strong { color: var(--white); }
.form-area-card input:checked + label .icon { color: var(--white); }
.form-section-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-deep);
  margin: 1.75rem 0 0.75rem;
  letter-spacing: -0.01em;
}
.form-section-label .req { color: var(--green-bright); }
.form-dynamic .dyn-block { display: none; }
.form-dynamic .dyn-block.active {
  display: block;
  animation: fadeUp 0.4s var(--ease-out);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  background: var(--green-deep);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
  transition: background 0.2s, transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.form-submit:hover {
  background: var(--green-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 144, 0, 0.25);
}
.form-submit:disabled { opacity: 0.7; cursor: wait; }
.contact-form.sent .contact-form-fields { display: none; }
.contact-form .form-success { display: none; text-align: center; padding: 2rem 0; }
.contact-form.sent .form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: fadeUp 0.6s var(--ease-out);
}
.form-success-mark {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.form-success h3 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.form-success p { color: var(--steel); max-width: 36ch; }
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--steel);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.5;
}
.form-checkbox input { margin-top: 0.25rem; flex-shrink: 0; accent-color: var(--green-deep); }
.form-checkbox a { color: var(--green-deep); text-decoration: underline; }

/* ========================================
   FAQ
   ======================================== */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--whisper);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item:hover { border-color: var(--green-soft); }
.faq-item.open { border-color: var(--green-deep); box-shadow: var(--shadow-sm); }
.faq-q {
  display: flex;
  width: 100%;
  text-align: left;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--black);
  transition: color 0.2s;
  gap: 1rem;
}
.faq-q:hover { color: var(--green-deep); }
.faq-q .plus {
  width: 32px; height: 32px;
  background: var(--green-pale);
  color: var(--green-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-out), background 0.3s, color 0.3s;
}
.faq-item.open .faq-q .plus {
  transform: rotate(45deg);
  background: var(--green-deep);
  color: var(--white);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), padding 0.4s;
  color: var(--steel);
  font-size: 0.98rem;
  line-height: 1.65;
  padding: 0 1.75rem;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 1.75rem 1.5rem;
}

/* ========================================
   PRODUCT MULTI CARDS (Antriebe Übersicht)
   ======================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 800px) { .product-grid { grid-template-columns: 1fr; } }

.product-card-large {
  background: var(--white);
  border: 1px solid var(--whisper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.product-card-large:hover {
  transform: translateY(-4px);
  border-color: var(--green-soft);
  box-shadow: var(--shadow);
}
.product-card-large-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--green-pale);
}
.product-card-large-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.product-card-large:hover .product-card-large-img img { transform: scale(1.05); }
.product-card-large-body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.product-card-large h3 {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  color: var(--black);
}
.product-card-large .lead-small {
  color: var(--steel);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  line-height: 1.55;
}
.product-card-large-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.product-card-large-stat {
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
}
.product-card-large-stat label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-bottom: 0.2rem;
}
.product-card-large-stat strong {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--green-deep);
}
.product-card-large-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--green-deep);
  transition: gap 0.3s;
}
.product-card-large:hover .product-card-large-link { gap: 0.85rem; color: var(--green-bright); }

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-page {
  padding: 10rem var(--gutter) 7rem;
  background: var(--green-pale);
  min-height: 100vh;
}
.legal-inner { max-width: 820px; margin: 0 auto; }
.legal-page h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0.75rem 0 1.5rem;
  color: var(--black);
}
.legal-page h1 .h-accent { color: var(--green-deep); }
.legal-content {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--green-soft);
  box-shadow: var(--shadow-sm);
}
@media (max-width: 600px) { .legal-content { padding: 1.75rem 1.25rem; } }
.legal-content h2 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 2rem 0 0.75rem;
  color: var(--green-deep);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 1.25rem 0 0.5rem;
  color: var(--black);
}
.legal-content p { margin-bottom: 0.75rem; color: var(--carbon); line-height: 1.65; font-size: 0.95rem; }
.legal-content a { color: var(--green-deep); text-decoration: underline; }
.legal-content strong { color: var(--black); }
.legal-content ul { margin: 0.5rem 0 1rem 1.25rem; }
.legal-content ul li { list-style: disc; margin-bottom: 0.4rem; color: var(--carbon); font-size: 0.95rem; }

/* ========================================
   QUIZ FORM
   ======================================== */
.quiz { position: relative; padding: 0; }
.quiz-progress {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.quiz-progress-step {
  flex: 1;
  height: 4px;
  background: var(--whisper);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.quiz-progress-step::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--green-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.quiz-progress-step.done::after { transform: scaleX(1); }
.quiz-progress-step.current::after { transform: scaleX(1); background: var(--green-bright); }
.quiz-progress-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--graphite);
  white-space: nowrap;
}
.quiz-progress-label strong { color: var(--green-deep); }
.quiz-step {
  display: none;
  animation: fadeUp 0.4s var(--ease-out);
}
.quiz-step.active { display: block; }
.quiz-question {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 0.6rem;
  color: var(--black);
}
.quiz-question .h-accent { color: var(--green-deep); }
.quiz-hint {
  font-size: 0.95rem;
  color: var(--graphite);
  margin-bottom: 2rem;
}
.quiz-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 600px) { .quiz-options { grid-template-columns: 1fr; } }
.quiz-option {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1.5px solid var(--whisper);
  border-radius: var(--radius);
  transition: all 0.2s;
}
.quiz-option:hover {
  border-color: var(--green-soft);
  background: var(--green-pale);
  transform: translateX(2px);
}
.quiz-option input { display: none; }
.quiz-option .icon {
  width: 44px; height: 44px;
  background: var(--green-pale);
  color: var(--green-deep);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.quiz-option .icon svg { width: 22px; height: 22px; stroke-width: 1.7; }
.quiz-option strong {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  display: block;
}
.quiz-option span {
  font-size: 0.85rem;
  color: var(--graphite);
}
.quiz-option:has(input:checked) {
  border-color: var(--green-deep);
  background: var(--green-pale);
}
.quiz-option:has(input:checked) .icon {
  background: var(--green-deep);
  color: var(--white);
}
.quiz-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--whisper);
  gap: 1rem;
  flex-wrap: wrap;
}
.quiz-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  background: transparent;
  color: var(--graphite);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.quiz-back:hover { color: var(--green-deep); background: var(--green-pale); }
.quiz-back:disabled { opacity: 0.4; cursor: default; }
.quiz-next {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  background: var(--green-deep);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.3s, box-shadow 0.3s;
}
.quiz-next:hover {
  background: var(--green-bright);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 144, 0, 0.25);
}
.quiz-next:disabled {
  background: var(--whisper);
  color: var(--graphite);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.quiz-fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.quiz-fields .form-row { margin-bottom: 0; }
.quiz-summary {
  background: var(--green-pale);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}
.quiz-summary-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 0.75rem;
}
.quiz-summary-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.quiz-summary-list li {
  font-size: 0.92rem;
  color: var(--carbon);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.quiz-summary-list li strong { color: var(--black); font-weight: 600; }

/* ========================================
   HERO HOME — Neue Variante mit Logo + BG-Image
   ======================================== */
.hero-home-logo {
  margin-bottom: 2.5rem;
}
.hero-home-logo img {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.25));
}
@media (max-width: 700px) {
  .hero-home-logo img { height: 56px; }
}

/* About-Teaser auf Index — zentriert */
.about-teaser {
  padding: 5.5rem var(--gutter);
  background: var(--white);
}
.about-teaser-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-teaser-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  max-width: 620px;
  aspect-ratio: 16/9;
  margin-bottom: 2.25rem;
}
.about-teaser-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-teaser .eyebrow { justify-content: center; }
.about-teaser h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--black);
}
.about-teaser h2 .h-accent { color: var(--green-deep); }
.about-teaser p {
  color: var(--steel);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 60ch;
}

/* Glass-Card auf hellem Hintergrund (für andere Stellen) */
.glass-card-light {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 112, 88, 0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
}

/* ========================================
   PRODUCT HERO — Schlanker Text-Hero (Detail-Seiten)
   ======================================== */
.product-hero {
  padding: 10rem var(--gutter) 4rem;
  background: var(--white);
  position: relative;
}
.product-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 880px;
}
.product-hero h1 {
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--black);
  margin: 0;
}
.product-hero h1 .h-accent { color: var(--green-deep); }
.product-hero .lead {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--steel);
  max-width: 65ch;
}

/* ========================================
   HERO MAIN — Hauptseiten (BG-Bild + Glass-Statement)
   Gleicher Aufbau wie Startseite, anderes Bild
   ======================================== */
.hero-main {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: 11rem var(--gutter) 6rem;
  overflow: hidden;
  isolation: isolate;
}
.hero-main-bg { position: absolute; inset: 0; z-index: -2; }
.hero-main-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-main-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,28,26,0.30) 0%, rgba(20,28,26,0.34) 45%, rgba(15,22,20,0.62) 100%);
}
.hero-main-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
}
.hero-main-inner.align-right { justify-content: flex-end; }
@media (max-width: 700px) { .hero-main-inner.align-right { justify-content: flex-start; } }
.hero-main-statement {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  padding: 2.75rem 3rem 3rem;
  backdrop-filter: blur(10px) saturate(130%);
  -webkit-backdrop-filter: blur(10px) saturate(130%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
  max-width: 620px;
  text-align: center;
}
.hero-main-statement .eyebrow { justify-content: center; }
.hero-main-statement .hero-main-actions { justify-content: center; }
@media (max-width: 700px) { .hero-main-statement { padding: 2rem 1.5rem 2.25rem; } }
.hero-main-statement .eyebrow {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.25rem;
}
.hero-main-statement .eyebrow::before { background: rgba(255,255,255,0.7); }
.hero-main-statement h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero-main-statement h1 .h-accent { color: #7FD9BC; }
.hero-main-statement p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.75rem;
}
.hero-main-statement .hero-main-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
/* Ghost-Button auf Glas */
.hero-main-statement .btn-ghost {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
}
.hero-main-statement .btn-ghost:hover {
  background: rgba(255,255,255,0.2);
}

/* ========================================
   DOWNLOAD BUTTONS (unter Spec-Box)
   ======================================== */
.product-downloads {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.product-downloads-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.85rem;
}
.product-downloads-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.product-download {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.9rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s var(--ease-out);
}
.product-download:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}
.product-download svg { width: 18px; height: 18px; flex-shrink: 0; }
.product-download span { flex: 1; }
.product-download .dl-arrow { width: 16px; height: 16px; opacity: 0.7; }

/* ========================================
   ABOUT LOCATION (Standort + Google Maps)
   ======================================== */
.about-location {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: center;
}
@media (max-width: 900px) { .about-location { grid-template-columns: 1fr; gap: 2rem; } }
.about-location-info h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 1rem 0 1.25rem;
  color: var(--black);
}
.about-location-info h2 .h-accent { color: var(--green-deep); }
.about-location-info p { color: var(--steel); line-height: 1.7; margin-bottom: 1rem; max-width: 48ch; }
.about-location-address { color: var(--black); font-weight: 500; }
.about-location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  line-height: 0;
}
.about-location-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}
@media (max-width: 600px) { .about-location-map iframe { height: 320px; } }
