@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("/fonts/cormorant-garamond-v16-latin-300.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/cormorant-garamond-v16-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/cormorant-garamond-v16-latin-italic.woff2") format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("/fonts/dm-sans-v15-latin-300.woff2") format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/dm-sans-v15-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/dm-sans-v15-latin-500.woff2") format("woff2");
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --gold: #c9a84c;
  --gold-lt: #e4cc90;
  --gold-dim: #8a6e2f;
  --gold-glow: rgba(201, 168, 76, 0.18);
  --steel: #7a93a8;
  --obsidian: #faf8f5;
  --surface: #f0ede8;
  --surface-2: #e8e4de;
  --surface-3: #dfdcd5;
  --border: rgba(5, 5, 5, 0.08);
  --border-hover: rgba(5, 5, 5, 0.2);
  --text: #050505;
  --text-dim: #4a4845;
  --text-muted: #75706a;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  scroll-behavior: smooth;
  background: var(--obsidian);
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--obsidian);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 9998;
}
.geo-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
}
.display {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.eyebrow {
  font-family: "DM Sans", sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
}
section {
  padding: 120px 0;
}
@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }
}
.rule {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gold) 30%,
    var(--gold) 70%,
    transparent 100%
  );
  opacity: 0.2;
}
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(5, 5, 5, 0.97);
  border-top: 1px solid var(--border);
  padding: 20px 40px;
  z-index: 9990;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  backdrop-filter: blur(20px);
}
#cookie-banner p {
  font-size: 0.82rem;
  color: var(--text-dim);
}
#cookie-banner a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 600px) {
  #cookie-banner {
    flex-direction: column;
    padding: 20px 24px;
    text-align: center;
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition:
    padding 0.5s var(--ease-out),
    background 0.5s var(--ease-out),
    border-color 0.5s;
  border-bottom: 1px solid transparent;
}
header.scrolled {
  padding: 14px 40px;
  background: rgba(250, 248, 245, 0.95);
  border-bottom-color: var(--border);
  backdrop-filter: blur(24px);
}
@media (max-width: 768px) {
  header {
    padding: 20px 24px;
  }
  header.scrolled {
    padding: 14px 24px;
  }
}
.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.logo span {
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease-out);
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-links a:hover::after {
  width: 100%;
}
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text);
  transition: all 0.4s var(--ease-out);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }
}
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--obsidian);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out);
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.nav-overlay a {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 300;
  color: var(--text-dim);
  text-decoration: none;
  padding: 12px 0;
  transition: color 0.3s;
  opacity: 0;
  transform: translateY(20px);
  transition:
    color 0.3s,
    opacity 0.5s var(--ease-out),
    transform 0.5s var(--ease-out);
}
.nav-overlay.open a {
  opacity: 1;
  transform: translateY(0);
}
.nav-overlay.open a:nth-child(1) {
  transition-delay: 0.05s;
}
.nav-overlay.open a:nth-child(2) {
  transition-delay: 0.1s;
}
.nav-overlay.open a:nth-child(3) {
  transition-delay: 0.15s;
}
.nav-overlay.open a:nth-child(4) {
  transition-delay: 0.2s;
}
.nav-overlay.open a:nth-child(5) {
  transition-delay: 0.25s;
}
.nav-overlay.open a:nth-child(6) {
  transition-delay: 0.3s;
}
.nav-overlay.open a:nth-child(7) {
  transition-delay: 0.35s;
}
.nav-overlay.open a:nth-child(8) {
  transition-delay: 0.4s;
}
.nav-overlay a:hover {
  color: var(--gold);
}
.nav-overlay-rule {
  width: 60px;
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 64px 80px 64px;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, var(--obsidian) 0%, var(--surface) 100%);
}
@media (max-width: 1100px) {
  .hero-left {
    padding: 140px 40px 80px;
  }
}
@media (max-width: 900px) {
  .hero-left {
    padding: 120px 24px 60px;
    order: 1;
  }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.68rem;
  font-family: "DM Sans", sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 8px 16px;
  margin-bottom: 40px;
  width: fit-content;
}
.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}
.hero h1 {
  font-size: clamp(3.2rem, 5.5vw, 5.2rem);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--text);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-dim);
  font-weight: 300;
  margin-bottom: 48px;
  max-width: 420px;
  line-height: 1.65;
}
.price-block {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  margin-bottom: 48px;
}
.price-block .label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.price-block .crossed {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: var(--gold-dim);
  margin-bottom: 4px;
}
.price-block .main-price {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.price-block .saving {
  font-size: 0.8rem;
  color: #6bbf6b;
  letter-spacing: 0.05em;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--obsidian);
  padding: 16px 32px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s var(--ease-out),
    box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  opacity: 0;
  transition: opacity 0.25s;
}
.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 168, 76, 0.25);
}
.btn-primary:hover::after {
  opacity: 1;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--gold);
  padding: 15px 32px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--border-hover);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}
.btn-ghost:hover {
  background: rgba(201, 168, 76, 0.06);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.hero-right {
  position: relative;
  background: var(--obsidian);
  overflow: hidden;
}
@media (max-width: 900px) {
  .hero-right {
    min-height: 55vw;
    order: 2;
  }
}
.hero-right video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
}
.hero-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, transparent 40%, var(--obsidian) 100%);
  pointer-events: none;
}
@media (max-width: 900px) {
  .hero-right::after {
    background: linear-gradient(0deg, var(--obsidian) 0%, transparent 50%);
  }
}
.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: fade-in-up 1.5s 1.2s var(--ease-out) both;
}
.scroll-cue::before {
  content: "";
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0% {
    transform: scaleY(1);
    transform-origin: top;
  }
  50% {
    transform: scaleY(0.3);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(1);
    transform-origin: top;
  }
}
@media (max-width: 900px) {
  .scroll-cue {
    display: none;
  }
}
.hero-badge {
  animation: fade-in-up 0.8s 0.1s var(--ease-out) both;
}
.hero h1 {
  animation: fade-in-up 0.8s 0.25s var(--ease-out) both;
}
.hero-subtitle {
  animation: fade-in-up 0.8s 0.4s var(--ease-out) both;
}
.price-block {
  animation: fade-in-up 0.8s 0.55s var(--ease-out) both;
}
.hero-actions {
  animation: fade-in-up 0.8s 0.7s var(--ease-out) both;
}
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
@media (max-width: 900px) {
  .process-steps-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
@media (max-width: 480px) {
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }
}
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 700px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.stat-item {
  padding: 0 40px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-item:last-child {
  border-right: none;
}
@media (max-width: 700px) {
  .stat-item {
    border-right: none;
    padding: 20px;
  }
  .stat-item:nth-child(odd) {
    border-right: 1px solid var(--border);
  }
}
.stat-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.section-header {
  margin-bottom: 80px;
}
.section-header.center {
  text-align: center;
  align-items: center;
}
.section-header .eyebrow {
  margin-bottom: 20px;
}
.section-header.center .eyebrow {
  justify-content: center;
}
.section-header.center .eyebrow::before {
  display: none;
}
.section-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
}
.section-desc {
  font-size: 1rem;
  color: var(--text-dim);
  font-weight: 300;
  margin-top: 20px;
  max-width: 560px;
  line-height: 1.75;
}
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 1s var(--ease-out),
    transform 1s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}
#fakten {
  background: var(--obsidian);
}
.fakten-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
@media (max-width: 700px) {
  .fakten-grid {
    grid-template-columns: 1fr;
  }
}
.fakt-item {
  padding: 40px 48px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
  transition: background 0.4s;
  position: relative;
  overflow: hidden;
}
.fakt-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 0% 0%,
    var(--gold-glow),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s;
}
.fakt-item:hover::before {
  opacity: 1;
}
.fakt-item:nth-child(even) {
  border-right: none;
}
@media (max-width: 700px) {
  .fakt-item {
    border-right: none;
    padding: 32px 24px;
  }
  .fakt-item:nth-child(even) {
    border-right: none;
  }
}
.fakt-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold-dim);
  line-height: 1;
  opacity: 0.7;
}
.fakt-content h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.fakt-content p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.7;
  font-weight: 300;
}
#produkte {
  background: var(--surface);
}
.product-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
@media (max-width: 900px) {
  .product-feature {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.product-media {
  position: relative;
}
.product-media video,
.product-media img {
  width: 100%;
  display: block;
}
.product-media::before {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid var(--border-hover);
  pointer-events: none;
  z-index: 1;
}
.product-media .badge-meistgekauft {
  position: absolute;
  top: 24px;
  left: -1px;
  background: var(--gold);
  color: var(--obsidian);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 18px;
  z-index: 2;
}
.product-info h3 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--text);
  letter-spacing: -0.02em;
  margin: 20px 0 24px;
  line-height: 1.1;
}
.product-info p {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 32px;
}
.check-list {
  list-style: none;
  margin-bottom: 40px;
}
.check-list li {
  display: flex;
  align-items: start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.5;
}
.check-list li:first-child {
  border-top: 1px solid var(--border);
}
.check-list li::before {
  content: "✦";
  color: var(--gold);
  font-size: 0.6rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.check-list strong {
  color: var(--text);
  font-weight: 500;
}
.price-tag {
  display: flex;
  flex-direction: column;
  background: var(--surface-3);
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
  margin-bottom: 32px;
}
.price-tag .pt-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.price-tag .pt-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
}
.secondary-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background: var(--border);
}
.sec-product {
  background: var(--surface-2);
  padding: 40px;
  text-align: center;
  transition: background 0.3s;
}
.sec-product:hover {
  background: var(--surface-3);
}
.sec-product img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 1px solid var(--border);
  margin-bottom: 20px;
}
.sec-product h4 {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}
.sec-product p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.7;
}
#sicherheit {
  background: var(--obsidian);
}
.security-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
@media (max-width: 900px) {
  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .security-grid {
    grid-template-columns: 1fr;
  }
}
.security-item {
  padding: 48px 32px;
  border-right: 1px solid var(--border);
  text-align: center;
  position: relative;
  transition: background 0.4s;
}
.security-item:last-child {
  border-right: none;
}
@media (max-width: 900px) {
  .security-item {
    border-bottom: 1px solid var(--border);
  }
  .security-item:nth-child(even) {
    border-right: none;
  }
}
.security-item:hover {
  background: var(--surface);
}
.security-icon {
  font-size: 1.8rem;
  margin-bottom: 18px;
  display: block;
}
.security-item h4 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 10px;
}
.security-item p {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.65;
}
.security-video {
  margin-top: 2rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  background: var(--surface);
}
@media (min-width: 600px) {
  .security-video {
    margin-top: 3rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
}
.video-wrapper {
  position: relative;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.video-wrapper video {
  display: block;
  width: 100%;
}
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  padding: 0;
  transition: opacity 0.2s ease;
  opacity: 1;
  pointer-events: none;
}
.video-play-btn svg {
  width: 54px;
  height: 38px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.7));
}
@media (min-width: 480px) {
  .video-play-btn svg {
    width: 72px;
    height: 50px;
  }
}
.vpb-bg {
  fill: rgba(0, 0, 0, 0.75);
  transition: fill 0.2s;
}
@media (hover: hover) {
  .video-wrapper:hover .vpb-bg {
    fill: var(--gold);
  }
}
.video-play-btn .vpb-icon {
  fill: #fff;
}
.video-wrapper.playing .video-play-btn {
  opacity: 0;
}
#prozess {
  background: var(--surface);
}
.prozess-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .prozess-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.prozess-image {
  position: sticky;
  top: 120px;
}
.prozess-image img {
  width: 100%;
  display: block;
  border: 1px solid var(--border);
}
.prozess-image figcaption {
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 12px;
  letter-spacing: 0.05em;
  font-style: italic;
  text-align: center;
}
@media (max-width: 900px) {
  .prozess-image {
    position: static;
  }
}
.prozess-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.step:first-child {
  border-top: 1px solid var(--border);
}
.step-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold-dim);
  line-height: 1;
  opacity: 0.6;
}
.step-content h4 {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}
.step-content p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.7;
}
.step-image {
  grid-column: 1 / -1;
  margin-top: 16px;
}
.step-image img {
  width: 100%;
  border: 1px solid var(--border);
}
#verkaufen {
  background: var(--obsidian);
}
.verkauf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-bottom: 40px;
}
@media (max-width: 700px) {
  .verkauf-grid {
    grid-template-columns: 1fr;
  }
}
.verkauf-card {
  background: var(--surface);
  padding: 48px 36px;
  transition: background 0.4s;
  position: relative;
}
.verkauf-card:hover {
  background: var(--surface-2);
}
.verkauf-icon {
  font-size: 1.6rem;
  margin-bottom: 20px;
  display: block;
}
.verkauf-card h4 {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 14px;
}
.verkauf-card p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.75;
}
.occ-box {
  border: 1px solid var(--border-hover);
  padding: 36px 40px;
  background: rgba(201, 168, 76, 0.04);
  display: flex;
  gap: 28px;
  align-items: start;
}
@media (max-width: 600px) {
  .occ-box {
    flex-direction: column;
    padding: 28px;
  }
}
.occ-box-icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.occ-box h4 {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 10px;
}
.occ-box p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.75;
}
#faq {
  background: var(--surface);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  cursor: pointer;
  gap: 20px;
}
.faq-question h4 {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  transition: color 0.3s;
}
.faq-question:hover h4 {
  color: var(--gold);
}
.faq-toggle {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  border: 1px solid var(--border);
}
.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--gold);
  transition:
    transform 0.35s var(--ease-out),
    opacity 0.35s;
}
.faq-toggle::before {
  width: 10px;
  height: 1px;
  transform: translate(-50%, -50%);
}
.faq-toggle::after {
  width: 1px;
  height: 10px;
  transform: translate(-50%, -50%);
}
.faq-item.open .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s var(--ease-out);
}
.faq-item.open .faq-answer {
  max-height: 700px;
}
.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.8;
  padding-bottom: 28px;
  font-weight: 300;
}
#kontakt {
  background: var(--obsidian);
}
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .kontakt-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.kontakt-info h3 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--text);
  letter-spacing: -0.02em;
  margin: 20px 0 24px;
  line-height: 1.1;
}
.kontakt-info p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 48px;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-method {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-method:first-child {
  border-top: 1px solid var(--border);
}
.contact-method .cm-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-method .cm-value {
  font-size: 1rem;
  color: var(--text);
}
.contact-method a {
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.2s;
}
.contact-method a:hover {
  opacity: 0.75;
}
.contact-method .cm-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 500px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.form-field input,
.form-field textarea,
.form-field select {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 16px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--gold);
}
.form-field textarea {
  height: 140px;
  resize: vertical;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-dim);
}
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
@media (max-width: 1000px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 400px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.footer-brand .logo {
  display: inline-block;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h5 {
  font-family: "DM Sans", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.82rem;
  color: var(--text-dim);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.25s;
}
.footer-col a:hover {
  color: var(--text);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-dim);
}
.footer-certs {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cert-badge {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--border);
  padding: 5px 10px;
}
.risk-box {
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-left: 3px solid var(--text-muted);
  padding: 28px 32px;
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.02);
}
.risk-box h4 {
  color: var(--text-dim);
  font-size: 1rem;
  margin-bottom: 12px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
}
.risk-box ul {
  list-style: none;
}
.risk-box ul li {
  font-size: 0.82rem;
  color: var(--text-dim);
  padding: 6px 0 6px 16px;
  border-bottom: 1px solid var(--border);
  position: relative;
  line-height: 1.7;
}
.risk-box ul li:last-child {
  border-bottom: none;
}
.risk-box ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--text-muted);
}
.price-breakdown {
  background: var(--surface-3);
  border: 1px solid var(--border);
  padding: 20px 24px;
  margin-bottom: 32px;
  font-family: "DM Sans", sans-serif;
}
.pb-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-dim);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.pb-discount {
  color: #6bbf6b;
}
.pb-total {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 500;
  padding-top: 12px;
  border-bottom: none;
}
.pb-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 10px;
  line-height: 1.6;
}
.legal-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  margin-top: 48px;
}
#preisentwicklung {
  background: var(--surface);
}
.price-table-wrap {
  overflow-x: auto;
  margin-bottom: 24px;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  min-width: 620px;
}
.price-table th {
  font-family: "DM Sans", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: right;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-hover);
  white-space: nowrap;
}
.price-table th:first-child {
  text-align: left;
}
.price-table td {
  text-align: right;
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-dim);
  font-weight: 300;
}
.price-table td:first-child {
  text-align: left;
  color: var(--text);
}
.price-table tbody tr:last-child td {
  color: var(--gold);
  font-weight: 500;
}
.price-table .pos {
  color: #6bbf6b;
}
.price-table-note {
  font-size: 0.72rem;
  color: var(--text-dim);
  line-height: 1.65;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.page-hero {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, #050505 0%, #0d0c08 100%);
  position: relative;
  overflow: hidden;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--text);
}
.page-hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.page-hero .lead {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-dim);
  font-weight: 300;
  max-width: 680px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.content-section {
  padding: 100px 0;
}
.content-section.alt {
  background: var(--surface);
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.section-title {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.body-text {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.85;
  font-weight: 300;
}
.body-text p {
  margin-bottom: 20px;
}
.body-text p:last-child {
  margin-bottom: 0;
}
.body-text strong {
  color: var(--text);
  font-weight: 500;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin-top: 40px;
}
.compare-table th {
  font-family: "DM Sans", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-hover);
}
.compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-dim);
  font-weight: 300;
  vertical-align: top;
}
.compare-table td:first-child {
  color: var(--text);
  font-weight: 500;
}
.compare-table .highlight td {
  background: rgba(201, 168, 76, 0.04);
}
.good {
  color: #6bbf6b;
}
.neutral {
  color: var(--text-dim);
}
.caution {
  color: #d4a847;
}
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  margin-top: 40px;
}
@media (max-width: 600px) {
  .pros-cons {
    grid-template-columns: 1fr;
  }
}
.pros,
.cons {
  padding: 40px 36px;
}
.pros {
  background: rgba(107, 191, 107, 0.04);
}
.cons {
  background: rgba(201, 168, 76, 0.04);
}
.pros h4 {
  color: #6bbf6b;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 20px;
  font-family: "DM Sans", sans-serif;
}
.cons h4 {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 20px;
  font-family: "DM Sans", sans-serif;
}
.pros ul,
.cons ul {
  list-style: none;
}
.pros ul li,
.cons ul li {
  font-size: 0.88rem;
  color: var(--text-dim);
  padding: 8px 0 8px 20px;
  border-bottom: 1px solid var(--border);
  position: relative;
  line-height: 1.6;
}
.pros ul li:last-child,
.cons ul li:last-child {
  border-bottom: none;
}
.pros ul li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: #6bbf6b;
  font-weight: 500;
}
.cons ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 500;
}
.related-links {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 0;
}
.related-links h3 {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-dim);
  margin-bottom: 28px;
}
.related-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.related-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid var(--border);
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}
.related-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
}
.related-link::before {
  content: "→";
  color: var(--gold);
}
.facts-import-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
.facts-import-intro .body-text {
  max-width: 620px;
}
.facts-photo-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 72px;
}
.facts-photo-grid figure {
  background: var(--surface-2);
}
.facts-photo-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}
.facts-photo-grid figure:first-child img {
  aspect-ratio: 16/10;
}
.facts-photo-grid figcaption {
  padding: 14px 18px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.fact-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.fact-card {
  background: var(--surface-2);
  padding: 0;
  display: grid;
  grid-template-rows: auto 1fr;
}
.fact-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/7;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
  background: var(--obsidian);
}
.fact-card-content {
  padding: 28px 30px 30px;
}
.fact-card-kicker {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.fact-card h3 {
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.15;
}
.fact-card p {
  font-size: 0.86rem;
  color: var(--text-dim);
  line-height: 1.75;
  font-weight: 300;
}
.fact-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 72px;
}
.fact-summary-item {
  background: var(--surface-2);
  padding: 34px 30px;
}
.fact-summary-item h3 {
  font-size: 1.35rem;
  color: var(--gold);
  margin-bottom: 14px;
}
.fact-summary-item ul {
  list-style: none;
}
.fact-summary-item li {
  font-size: 0.86rem;
  color: var(--text-dim);
  line-height: 1.65;
  padding: 8px 0 8px 18px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.fact-summary-item li:last-child {
  border-bottom: none;
}
.fact-summary-item li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--gold);
}
@media (max-width: 900px) {
  .facts-import-intro,
  .facts-photo-grid {
    grid-template-columns: 1fr;
  }
  .fact-card-grid,
  .fact-summary {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .fact-card-content,
  .fact-summary-item {
    padding: 24px;
  }
  .facts-photo-grid {
    margin-bottom: 48px;
  }
  .fact-summary {
    margin-top: 48px;
  }
}
.body-text a,
.fact-card p a,
.fact-summary-item a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 168, 76, 0.35);
  transition:
    border-color 0.25s,
    color 0.25s;
}
.body-text a:hover,
.fact-card p a:hover,
.fact-summary-item a:hover {
  border-color: var(--gold);
  color: var(--gold-lt);
}
