:root {
  --bg: #070A13;
  --text: rgba(255, 255, 255, .92);
  --muted: rgba(255, 255, 255, .70);
  --muted2: rgba(255, 255, 255, .55);
  --shadow: 0 14px 40px rgba(0, 0, 0, .40);
  --shadow2: 0 10px 30px rgba(0, 0, 0, .25);
  --radius: 18px;
  --radius2: 24px;
  --accent: #38D39F;
  --accent2: #3B82F6;
  --max: 1140px;
  --pad: 20px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 600px at 20% 10%, rgba(59, 130, 246, .22), transparent 55%),
    radial-gradient(900px 500px at 80% 20%, rgba(56, 211, 159, .18), transparent 55%),
    var(--bg);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ====== HERO ====== */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 10, 19, .75) 0%, rgba(7, 10, 19, .55) 40%, rgba(7, 10, 19, .92) 100%),
    url("../images/Fe-Huepfburgen.webp");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
  transform: scale(1.02);
}

.topbar {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10;
  padding: 14px 0;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(0, 0, 0, .45) 0%, rgba(0, 0, 0, 0) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, .55));
}

.brand .name {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand .name strong {
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
}

.brand .name span {
  font-size: 12px;
  color: rgba(255, 255, 255, .62);
}

/* Desktop Menu + Dropdowns */
.menu {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu .item {
  position: relative;
}

.menu a.top {
  font-size: 14px;
  color: rgba(255, 255, 255, .78);
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: .2s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.menu a.top:hover {
  color: rgba(255, 255, 255, .95);
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .06);
}

.caret {
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255, 255, 255, .65);
  border-bottom: 2px solid rgba(255, 255, 255, .65);
  transform: rotate(45deg);
  margin-top: -2px;
  opacity: .9;
}

.dropdown {
  position: absolute;
  top: 46px;
  left: 0;
  min-width: 300px;
  background: rgba(10, 14, 28, .92);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 8px;
  display: none;
  backdrop-filter: blur(10px);
}

.dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, .84);
  border: 1px solid transparent;
  transition: .15s ease;
  line-height: 1.25;
}

.dropdown a:hover {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .95);
}

.menu .item:hover .dropdown,
.menu .item:focus-within .dropdown {
  display: block;
}

/* Mobile toggle (klappt im Header auf) */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.burger {
  display: none;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .92);
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 900;
  box-shadow: var(--shadow2);
  cursor: pointer;
}

.mobile-panel {
  position: absolute;
  right: 0;
  top: 58px;
  width: min(520px, calc(100vw - 40px));
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(10, 14, 28, .94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  padding: 10px;
  display: none;
}

.mobile-panel.open {
  display: block;
}

.m-link {
  display: block;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(0, 0, 0, .14);
  margin-bottom: 10px;
  font-weight: 800;
  color: rgba(255, 255, 255, .92);
}

/* Hero Grid for Subpages */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 20px;
  align-items: start;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.m-link:hover {
  background: rgba(255, 255, 255, .06);
}

.m-details {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(0, 0, 0, .12);
  margin-bottom: 10px;
  overflow: hidden;
}

.m-details summary {
  padding: 12px 12px;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
  color: rgba(255, 255, 255, .92);
}

.m-details summary::-webkit-details-marker {
  display: none;
}

.m-sub a {
  display: block;
  padding: 10px 12px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .82);
  font-weight: 700;
  font-size: 13px;
}

.m-sub a:hover {
  background: rgba(255, 255, 255, .06);
}

/* Hero Content */
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 110px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 26px;
  align-items: center;
}

.hero-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, .10) 0%, rgba(255, 255, 255, .06) 60%, rgba(255, 255, 255, .04) 100%);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding: 28px;
  backdrop-filter: blur(10px);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(0, 0, 0, .18);
  color: rgba(255, 255, 255, .85);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1 {
  margin: 14px 0 10px;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 62ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  box-shadow: var(--shadow2);
  transition: .2s ease;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .25);
  box-shadow: 0 8px 25px rgba(0, 0, 0, .25), 0 0 15px rgba(56, 211, 159, .15);
}

.btn.primary {
  background: linear-gradient(135deg, rgba(56, 211, 159, .95), rgba(56, 211, 159, .65));
  border-color: rgba(56, 211, 159, .35);
  color: #071013;
}

.btn.primary:hover {
  filter: brightness(1.03);
}

.btn.mail {
  background: linear-gradient(135deg, rgba(59, 130, 246, .95), rgba(59, 130, 246, .60));
  border-color: rgba(59, 130, 246, .35);
  color: #070A13;
}

.btn.mail:hover {
  filter: brightness(1.03);
}

.wa-ic {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  display: inline-block;
  background: rgba(0, 0, 0, .18);
  position: relative;
}

.wa-ic::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 999px;
  border: 2px solid rgba(0, 0, 0, .55);
  border-left-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(35deg);
  opacity: .9;
}

.mini {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  color: var(--muted2);
  font-size: 13px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(0, 0, 0, .14);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(56, 211, 159, .95);
  box-shadow: 0 0 0 6px rgba(56, 211, 159, .18);
}

.side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(0, 0, 0, .22);
  backdrop-filter: blur(10px);
  padding: 16px 16px;
  box-shadow: var(--shadow2);
}

.info h3 {
  margin: 0 0 8px;
  font-size: 14px;
  letter-spacing: .02em;
}

.info p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

/* ====== SECTIONS ====== */
section {
  padding: 58px 0;
}

.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(20px, 2.6vw, 30px);
  letter-spacing: -0.02em;
}

.section-title p {
  margin: 0;
  color: var(--muted);
  max-width: 55ch;
  line-height: 1.55;
  font-size: 14px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.card {
  grid-column: span 6;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04));
  box-shadow: var(--shadow2);
  overflow: hidden;
  transition: .2s ease;
}

.card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(255, 255, 255, .22);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .35), 0 0 20px rgba(56, 211, 159, .08);
}

/* Bild klickbar - größer */
.imgwrap {
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: radial-gradient(600px 300px at 50% 40%, rgba(59, 130, 246, .12), rgba(0, 0, 0, 0) 70%),
    rgba(0, 0, 0, .20);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  cursor: pointer;
}

.imgwrap:hover {
  background: radial-gradient(600px 300px at 50% 40%, rgba(56, 211, 159, .10), rgba(0, 0, 0, 0) 70%), rgba(0, 0, 0, .20);
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, .40));
  transform: scale(1.05);
}

.card .body {
  padding: 20px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(0, 0, 0, .16);
  color: rgba(255, 255, 255, .82);
}

.badge.green {
  border-color: rgba(56, 211, 159, .28);
  background: rgba(56, 211, 159, .10);
}

.card h3 {
  margin: 12px 0 8px;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.desc {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* Price row layout */
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, .10);
  margin-top: 12px;
}

.price-row .label {
  color: var(--muted);
  font-size: 14px;
}

.price-row .value {
  font-size: 16px;
  font-weight: 900;
  color: rgba(255, 255, 255, .95);
}

.price {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 900;
  color: rgba(255, 255, 255, .92);
}

.card .actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.btn.small {
  padding: 10px 12px;
  font-size: 13px;
  box-shadow: none;
}

/* Card styles for overview pages (matching reference) */
.card-top {
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: radial-gradient(500px 300px at 50% 50%, rgba(59, 130, 246, .08), transparent 70%),
    rgba(0, 0, 0, .15);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.card-top img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, .45));
}

.card-inner {
  padding: 20px;
}

.card .title {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .95);
}

.card .sub {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  border: 1px solid rgba(56, 211, 159, .25);
  background: rgba(56, 211, 159, .08);
  color: rgba(255, 255, 255, .85);
  margin-bottom: 16px;
}

.card .price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .10);
  margin: 0;
}

.card .price span:first-child {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.card .price span:last-child {
  font-size: 16px;
  font-weight: 900;
  color: rgba(255, 255, 255, .95);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.panel {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  box-shadow: var(--shadow2);
  padding: 18px;
}

.panel h3 {
  margin: 0 0 8px;
}

.panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.video {
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(0, 0, 0, .22);
  box-shadow: var(--shadow);
}

.video .frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: rgba(0, 0, 0, .30);
}

.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

details {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  padding: 14px 14px;
}

summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 14px;
  color: rgba(255, 255, 255, .90);
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

footer {
  padding: 26px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: rgba(0, 0, 0, .18);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, .75);
  font-size: 14px;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, .95);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.fine {
  color: rgba(255, 255, 255, .52);
  font-size: 13px;
}

.cutout {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.cutout img {
  width: min(380px, 100%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .45));
}

.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.fact {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(0, 0, 0, .16);
  padding: 12px 12px;
  color: rgba(255, 255, 255, .86);
  font-size: 13px;
  line-height: 1.45;
}

.fact strong {
  display: block;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .68);
  margin-bottom: 4px;
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.price-card {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04));
  box-shadow: var(--shadow2);
  padding: 18px;
}

.price-card h3 {
  margin: 0 0 10px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px dashed rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .86);
  font-size: 14px;
}

.price-row:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.muted {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  margin: 10px 0 0;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  align-items: stretch;
}

.g-item {
  grid-column: span 4;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, .12);
  overflow: hidden;
  background: rgba(0, 0, 0, .18);
  box-shadow: var(--shadow2);
}

.g-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.downloads {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dl {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  box-shadow: var(--shadow2);
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.pdf-ic {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(59, 130, 246, .16);
  border: 1px solid rgba(59, 130, 246, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: rgba(255, 255, 255, .90);
  flex: 0 0 auto;
}

.dl h4 {
  margin: 0 0 6px;
  font-size: 15px;
}

.dl a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.formwrap {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(0, 0, 0, .18);
  box-shadow: var(--shadow);
  padding: 18px;
  backdrop-filter: blur(10px);
}

.alert {
  border-radius: 16px;
  padding: 12px 14px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(0, 0, 0, .20);
  color: rgba(255, 255, 255, .90);
  display: none;
}

.alert.ok {
  border-color: rgba(56, 211, 159, .30);
  background: rgba(56, 211, 159, .10);
}

.alert.err {
  border-color: rgba(239, 68, 68, .30);
  background: rgba(239, 68, 68, .10);
}

.formgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  font-size: 13px;
  color: rgba(255, 255, 255, .80);
  font-weight: 800;
  display: block;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .92);
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, .45);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.row {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 12px;
}

.checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
  line-height: 1.5;
  margin-top: 10px;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.hint {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .55);
  margin-top: 10px;
}

.nextwrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  box-shadow: var(--shadow2);
  padding: 16px;
}

.nextwrap strong {
  font-size: 15px;
}

.hp {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .brand {
    min-width: auto;
  }

  .card {
    grid-column: span 6;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .faq {
    grid-template-columns: 1fr;
  }

  .menu {
    display: none;
  }

  .burger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .facts {
    grid-template-columns: 1fr;
  }

  .price-grid {
    grid-template-columns: 1fr;
  }

  .downloads {
    grid-template-columns: 1fr;
  }

  .gallery .g-item {
    grid-column: span 12;
  }

  .formgrid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hero-inner {
    padding: 92px 0 48px;
  }

  .hero-card {
    padding: 18px;
  }

  .card {
    grid-column: span 12;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand .name strong {
    font-size: 13px;
  }

  .btn {
    padding: 10px 12px;
    font-size: 13px;
  }
}

/* Subpage Video Player (e.g. Als Laie aufbauen) */
.video-wrap {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 20px 0;
  border-radius: var(--radius2);
  overflow: hidden;
  box-shadow: var(--shadow2);
  background: #000;
  aspect-ratio: 16/9;
}

.video-poster {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../images/video_thumb.webp');
  background-size: cover;
  background-position: center;
}

.video-inner {
  background: rgba(0, 0, 0, 0.75);
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  color: #fff;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 90%;
}

.video-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.video-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  line-height: 1.4;
}

.video-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: #e62117;
  /* YouTube Red */
  color: #fff;
  border: none;
  border-radius: 999px;
  font-weight: bold;
  cursor: pointer;
  font-size: 14px;
  transition: transform 0.2s;
}

.video-btn:hover {
  transform: scale(1.05);
  background: #ff0000;
}

.iframe-box {
  width: 100%;
  height: 100%;
}

/* Lightbox */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

#lightbox.active {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 28px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

/* Reviews Section */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.review-card {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04));
  box-shadow: var(--shadow2);
  padding: 20px;
  transition: .2s ease;
}

.review-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .18);
}

.review-stars {
  font-size: 16px;
  margin-bottom: 12px;
}

.review-text {
  color: rgba(255, 255, 255, .85);
  font-size: 14px;
  line-height: 1.6;
  font-style: italic;
  margin: 0 0 12px;
}

.review-author {
  color: rgba(255, 255, 255, .55);
  font-size: 13px;
  font-weight: 600;
}

.reviews-grid {
  grid-template-columns: 1fr;
}
}

/* Sticky WhatsApp for Mobile */
.sticky-wa {
  display: none;
}

@media (max-width: 900px) {
  .sticky-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: #25D366;
    color: white;
    padding: 0;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    font-family: sans-serif;
  }

  .sticky-wa .wa-ic {
    background: transparent;
    border: none;
    width: 30px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
  }
}

/* City Landing Page Hero Placeholder */
.hero-city {
  /* Future specific styling for city landing pages */
}