*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:     #3A3B35;
  --darker:   #282920;
  --gold-1:   #D1AF34;
  --gold-2:   #F0CE7A;
  --gold-grad: linear-gradient(135deg, #D1AF34 0%, #F0CE7A 63%, #D1AF34 100%);
  --green:    #6B8C5A;
  --mustard:  #C8A030;
  --cream:    #F5F0E8;
  --text:     #E8E2D8;
  --serif:    'Source Serif 4', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--serif);
  background: var(--darker);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 3rem;
  background: rgba(40,41,32,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(209,175,52,0.15);
  transition: background 0.3s;
}
nav .logo-nav {
  display: flex; align-items: center;
}
nav .logo-nav a { display: flex; }
nav .logo-nav img {
  height: 90px; width: auto;
}
.cta-nav-wrap {
  position: relative;
}
nav a.cta-nav,
nav button.cta-nav {
  display: inline-block;
  padding: 0.6rem 1.6rem;
  border: 1.5px solid var(--gold-1);
  color: var(--gold-1);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.25s;
  cursor: pointer;
  font-family: var(--serif);
  background: transparent;
}
nav a.cta-nav:hover,
nav button.cta-nav:hover {
  background: var(--gold-1);
  color: var(--darker);
}
.cta-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  min-width: 240px;
  background: var(--dark);
  border: 1px solid rgba(209,175,52,0.25);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  z-index: 200;
}
.cta-dropdown.open { display: block; }
.cta-dropdown-item {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.4rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(209,175,52,0.08);
  transition: background 0.2s;
}
.cta-dropdown-item:last-child { border-bottom: none; }
.cta-dropdown-item:hover { background: rgba(209,175,52,0.07); }
.cta-dropdown-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-1);
  margin-bottom: 0.2rem;
}
.cta-dropdown-value {
  font-size: 0.92rem;
  color: var(--cream);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/laden_2.jpg');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  animation: heroZoom 8s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(28,29,22,0.97) 0%,
    rgba(28,29,22,0.6) 45%,
    rgba(28,29,22,0.25) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 3rem 6rem;
  max-width: 860px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-1);
  margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 0.8s 0.3s ease forwards;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--cream);
  margin-bottom: 1.8rem;
  opacity: 0; animation: fadeUp 0.8s 0.5s ease forwards;
}
.hero h1 em {
  font-style: italic;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(232,226,216,0.75);
  max-width: 560px;
  margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 0.8s 0.7s ease forwards;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s 0.9s ease forwards;
}
.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: var(--gold-grad);
  color: var(--darker);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-ghost {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border: 1px solid rgba(232,226,216,0.4);
  color: var(--cream);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--gold-1); color: var(--gold-1); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── STATEMENT BAND ── */
.band {
  background: var(--green);
  padding: 2rem 3rem;
  display: flex; align-items: center; justify-content: center;
  gap: 1rem;
}
.band p {
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  text-align: center;
  letter-spacing: 0.02em;
}
.band span {
  color: rgba(255,255,255,0.4);
  font-style: normal;
}
.band a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s;
}
.band a:hover { border-color: rgba(255,255,255,0.8); }

/* ── SECTIONS GENERAL ── */
section { padding: 7rem 3rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-1);
  margin-bottom: 1.2rem;
  display: block;
}
h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
h2 em {
  font-style: italic;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── PROBLEM SECTION ── */
.problem { background: var(--dark); }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.problem-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(232,226,216,0.75);
  margin-bottom: 1.2rem;
}
.problem-text p strong {
  color: var(--cream);
  font-weight: 600;
}
.problem-stats {
  display: flex; flex-direction: column; gap: 2.5rem;
}
.stat {
  border-left: 2px solid var(--gold-1);
  padding-left: 1.5rem;
}
.stat-number {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.9rem;
  color: rgba(232,226,216,0.65);
  margin-top: 0.3rem;
  line-height: 1.5;
}

/* ── SOLUTION SECTION ── */
.solution { background: var(--darker); }
.solution-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.card {
  background: var(--dark);
  border: 1px solid rgba(209,175,52,0.12);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.card:hover {
  border-color: rgba(209,175,52,0.4);
  transform: translateY(-4px);
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.card:hover::before { transform: scaleX(1); }
.card-icon {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  display: block;
}
.card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.8rem;
}
.card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(232,226,216,0.6);
}

/* ── LEISTUNGSANGEBOT ── */
.leistungen { background: var(--dark); }
.leistungen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 3.5rem;
  align-items: start;
}
.leistungen-gruppe {
  margin-bottom: 2.5rem;
}
.leistungen-gruppe:last-child { margin-bottom: 0; }
.leistungen-gruppe-titel {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-1);
  font-weight: 400;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(209,175,52,0.15);
}
.leistungen-liste {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.leistungen-liste li {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(232,226,216,0.65);
  padding-left: 1.3rem;
  position: relative;
}
.leistungen-liste li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-1);
  font-size: 0.75rem;
  top: 0.1em;
}

@media (max-width: 900px) {
  .leistungen-grid { grid-template-columns: 1fr; gap: 0; }
}

/* ── HÖRGERÄTE SECTION ── */
.geraete { background: var(--darker); }
.geraete-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(232,226,216,0.6);
  max-width: 720px;
  margin-top: 1.5rem;
}
.geraete-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.geraet-card {
  background: var(--dark);
  border: 1px solid rgba(209,175,52,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}
.geraet-card:hover {
  border-color: rgba(209,175,52,0.35);
  transform: translateY(-4px);
}
.geraet-img {
  height: 220px;
  background: #252620;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
}
.geraet-img img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.geraet-card:hover .geraet-img img { transform: scale(1.04); }
.geraet-img--cover { padding: 0; }
.geraet-img--cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.geraet-no-img {
  height: 220px;
  background: linear-gradient(135deg, #252620 0%, rgba(107,140,90,0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.geraet-no-img span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232,226,216,0.18);
}
.geraet-body {
  padding: 1.8rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.geraet-brand {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-1);
  display: block;
  margin-bottom: 0.25rem;
}
.geraet-name {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 0.55rem;
  line-height: 1.2;
}
.geraet-tagline {
  font-size: 0.87rem;
  font-style: italic;
  color: rgba(232,226,216,0.5);
  margin-bottom: 1.3rem;
  line-height: 1.6;
}
.geraet-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}
.geraet-features li {
  font-size: 0.84rem;
  color: rgba(232,226,216,0.7);
  padding-left: 1.3rem;
  position: relative;
  line-height: 1.5;
}
.geraet-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-1);
  font-size: 0.75rem;
  top: 0.05em;
}
.geraet-badge {
  display: inline-block;
  align-self: flex-start;
  margin-top: 1.4rem;
  padding: 0.25rem 0.8rem;
  border: 1px solid rgba(209,175,52,0.22);
  font-size: 0.67rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(209,175,52,0.65);
}
.geraete-hinweis {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(209,175,52,0.08);
  font-size: 0.82rem;
  font-style: italic;
  color: rgba(232,226,216,0.3);
  text-align: center;
}

/* ── PHOTOS SECTION ── */
.photos { background: var(--dark); padding: 0; }
.photos-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 340px;
  gap: 3px;
}
.photo-item {
  overflow: hidden;
  position: relative;
}
.photo-item:first-child {
  grid-row: 1 / 3;
}
.photo-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  filter: saturate(0.9);
}
.photo-item:hover img {
  transform: scale(1.04);
  filter: saturate(1.1);
}

/* ── ABOUT SECTION ── */
.about { background: var(--darker); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-photo {
  position: relative;
}
.about-photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about-photo::after {
  content: '';
  position: absolute;
  bottom: -12px; right: -12px;
  border: 2px solid var(--gold-1);
  inset: 12px -12px -12px 12px;
  pointer-events: none;
  z-index: -1;
}
.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(232,226,216,0.75);
  margin-bottom: 1rem;
}
.about-text p strong { color: var(--cream); }
.about-signature {
  margin-top: 2rem;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold-1);
}

/* ── INFO SECTION ── */
.info { background: var(--dark); }
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}
.info-block h3 {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-1);
  margin-bottom: 1rem;
}
.info-block p, .info-block address {
  font-style: normal;
  font-size: 0.97rem;
  line-height: 1.9;
  color: rgba(232,226,216,0.7);
}
.info-block a {
  color: var(--gold-1);
  text-decoration: none;
}
.info-block a:hover { text-decoration: underline; }
.opening-row {
  display: flex; justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
  line-height: 2;
  color: rgba(232,226,216,0.7);
}
.opening-row span:last-child { color: var(--cream); }

/* ── PARKING HINT ── */
.parking-hint {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(209,175,52,0.2);
  background: rgba(209,175,52,0.04);
}
.parking-icon {
  flex-shrink: 0;
  width: 2.8rem;
  height: 2.8rem;
  border: 1.5px solid var(--gold-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-1);
  letter-spacing: 0;
}
.parking-text strong {
  display: block;
  font-size: 0.88rem;
  color: var(--cream);
  margin-bottom: 0.3rem;
}
.parking-text p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(232,226,216,0.55);
  font-style: italic;
}

/* ── CTA SECTION ── */
.cta-section {
  background: var(--green);
  padding: 6rem 3rem;
  text-align: center;
}
.cta-section h2 {
  color: #fff;
  margin-bottom: 1rem;
}
.cta-section p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  font-style: italic;
}
.btn-cta {
  display: inline-block;
  padding: 1rem 3rem;
  background: var(--gold-grad);
  color: var(--darker);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-cta:hover { opacity: 0.88; transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: var(--darker);
  border-top: 1px solid rgba(209,175,52,0.12);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
footer img { height: 36px; }
footer p {
  font-size: 0.8rem;
  color: rgba(232,226,216,0.35);
  letter-spacing: 0.05em;
}
footer nav-footer { display: flex; gap: 1.5rem; }
footer a {
  font-size: 0.8rem;
  color: rgba(232,226,216,0.4);
  text-decoration: none;
}
footer a:hover { color: var(--gold-1); }

/* ── TRUELOUDNESS SECTION ── */
.trueloudness { background: var(--darker); }
.trueloudness-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.trueloudness-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(232,226,216,0.75);
  margin-bottom: 1.2rem;
}
.trueloudness-text p strong { color: var(--cream); }
.trueloudness-origin {
  margin-top: 2rem;
  padding: 1.2rem 1.5rem;
  border-left: 2px solid var(--gold-1);
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(232,226,216,0.55);
  font-style: italic;
}
.trueloudness-origin strong {
  color: var(--gold-1);
  font-style: normal;
}
.trueloudness-facts {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.tl-fact {
  background: var(--dark);
  border: 1px solid rgba(209,175,52,0.12);
  padding: 1.8rem 2rem;
  position: relative;
  overflow: hidden;
}
.tl-fact::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-grad);
}
.tl-fact-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-1);
  margin-bottom: 0.5rem;
  display: block;
}
.tl-fact p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(232,226,216,0.7);
}
.tl-fact p strong { color: var(--cream); }

/* ── REVOLOUD SECTION ── */
.revoloud { background: var(--dark); }
.revoloud-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.revoloud-logo {
  height: 36px;
  width: auto;
  margin-bottom: 2rem;
  display: block;
}
.revoloud-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(232,226,216,0.75);
  margin-bottom: 2.5rem;
}
.revoloud-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.revoloud-step {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.revoloud-step-num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border: 1.5px solid var(--gold-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-1);
  margin-top: 0.1rem;
}
.revoloud-step-body h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.3rem;
}
.revoloud-step-body p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(232,226,216,0.6);
}
.revoloud-visual {
  position: relative;
}
.revoloud-visual img {
  width: 100%;
  display: block;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.revoloud-visual::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  border: 2px solid rgba(209,175,52,0.3);
  inset: -12px 12px 12px -12px;
  pointer-events: none;
}

/* ── MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(10,11,8,0.88);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--dark);
  border: 1px solid rgba(209,175,52,0.2);
  max-width: 760px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
}
.modal-close {
  position: sticky;
  top: 0;
  float: right;
  margin: 1rem 1rem 0 0;
  background: transparent;
  border: 1px solid rgba(209,175,52,0.3);
  color: var(--gold-1);
  font-size: 1.4rem;
  line-height: 1;
  padding: 0.2rem 0.6rem;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 10;
}
.modal-close:hover { background: rgba(209,175,52,0.1); }
.modal-header {
  padding: 2rem 2.5rem 1.5rem;
  border-bottom: 1px solid rgba(209,175,52,0.1);
}
.modal-brand {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-1);
  display: block;
  margin-bottom: 0.3rem;
}
.modal-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.modal-tagline {
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(232,226,216,0.55);
  line-height: 1.6;
}
.modal-body { padding: 2rem 2.5rem 2.5rem; }
.modal-video-wrap {
  position: relative;
  margin-bottom: 2rem;
  background: #1a1b14;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.modal-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.modal-video-placeholder {
  position: absolute;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(232,226,216,0.2);
  pointer-events: none;
}
.modal-text p {
  font-size: 0.97rem;
  line-height: 1.85;
  color: rgba(232,226,216,0.7);
  margin-bottom: 1rem;
}
.modal-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(209,175,52,0.08);
}
.modal-features li {
  font-size: 0.9rem;
  color: rgba(232,226,216,0.72);
  padding-left: 1.3rem;
  position: relative;
  line-height: 1.5;
}
.modal-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-1);
  font-size: 0.8rem;
}
.modal-features li strong { color: var(--cream); }

/* Badge als Button */
button.geraet-badge {
  font-family: var(--serif);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
button.geraet-badge:hover {
  background: rgba(209,175,52,0.12);
  border-color: rgba(209,175,52,0.5);
  color: var(--gold-1);
}

@media (max-width: 900px) {
  .modal { max-height: 95vh; }
  .modal-header, .modal-body { padding-left: 1.5rem; padding-right: 1.5rem; }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) and (min-width: 901px) {
  .geraete-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  nav { padding: 0.75rem 1.5rem; }
  nav .logo-nav img { height: 60px; }
  section { padding: 5rem 1.5rem; }
  .hero-content { padding: 0 1.5rem 4rem; }
  .problem-grid, .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .solution-cards { grid-template-columns: 1fr; }
  .geraete-grid { grid-template-columns: 1fr; }
  .photos-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .photo-item:first-child { grid-row: auto; grid-column: 1 / 3; }
  .info-grid { grid-template-columns: 1fr; gap: 2rem; }
  footer { flex-direction: column; align-items: flex-start; }
  .trueloudness-grid { grid-template-columns: 1fr; gap: 3rem; }
  .revoloud-grid { grid-template-columns: 1fr; gap: 3rem; }
  .revoloud-visual { order: -1; }
}
