/* =====================================================
   VITAMANA — SX66
   Stilbasis: Chrom, Graphit, Silber, Marineblau
   ===================================================== */

:root{
  /* Helle Töne */
  --vm-blank:        #ffffff;
  --vm-frost:        #f4f7fb;
  --vm-porzellan:    #e9eef5;

  /* Silber & Chrom */
  --vm-silber:       #cfd8e3;
  --vm-chrom:        #aab7c6;
  --vm-chrom-tief:   #8d9cae;

  /* Graphit */
  --vm-graphit:      #4a5464;
  --vm-graphit-tief: #333c49;

  /* Blau-Spektrum */
  --vm-himmel:       #6fb6e8;
  --vm-azur:         #3d92d8;
  --vm-blau:         #1f6fbf;
  --vm-blau-tief:    #14508f;
  --vm-marine:       #0d2b4e;
  --vm-marine-nacht: #071a30;

  /* Funktionsfarben */
  --vm-text:         #1b2634;
  --vm-text-leise:   #5c6878;
  --vm-linie:        #dde4ee;

  /* Verläufe */
  --vm-chromlauf: linear-gradient(135deg,#ffffff 0%,#e4eaf2 28%,#b9c5d4 52%,#eef2f7 74%,#c8d3e0 100%);
  --vm-tieflauf:  linear-gradient(160deg,#0d2b4e 0%,#14508f 55%,#1f6fbf 100%);
  --vm-glanz:     linear-gradient(180deg,rgba(255,255,255,.85),rgba(255,255,255,0));

  /* Radien */
  --r-klein: 8px;
  --r-mittel: 16px;
  --r-gross: 26px;
  --r-rund: 999px;

  /* Schatten */
  --sch-weich: 0 2px 6px rgba(13,43,78,.05), 0 10px 30px rgba(13,43,78,.07);
  --sch-tief:  0 4px 12px rgba(13,43,78,.08), 0 26px 60px rgba(13,43,78,.14);
  --sch-kante: inset 0 1px 0 rgba(255,255,255,.9);

  /* Raster */
  --breite: 1180px;
  --luft: 24px;

  /* Typo */
  --f-titel: "Helvetica Neue", Helvetica, "Segoe UI", Arial, sans-serif;
  --f-text:  "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

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

html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }

body{
  margin:0;
  font-family:var(--f-text);
  font-size:17px;
  line-height:1.72;
  color:var(--vm-text);
  background:var(--vm-blank);
  overflow-x:hidden;
}

img{ display:block; max-width:100%; }

a{ color:var(--vm-blau); text-decoration:none; }
a:hover{ color:var(--vm-blau-tief); text-decoration:underline; }

h1,h2,h3,h4{
  font-family:var(--f-titel);
  color:var(--vm-marine);
  line-height:1.16;
  letter-spacing:-.022em;
  margin:0 0 .55em;
  font-weight:700;
}
h1{ font-size:clamp(2.1rem,5.2vw,3.5rem); }
h2{ font-size:clamp(1.65rem,3.4vw,2.5rem); }
h3{ font-size:clamp(1.15rem,2vw,1.4rem); }
h4{ font-size:1.03rem; }
p{ margin:0 0 1.1em; }

::selection{ background:var(--vm-himmel); color:var(--vm-marine-nacht); }

:focus-visible{
  outline:3px solid var(--vm-azur);
  outline-offset:3px;
  border-radius:4px;
}

.vm-sr{
  position:absolute; width:1px; height:1px;
  padding:0; margin:-1px; overflow:hidden;
  clip:rect(0 0 0 0); white-space:nowrap; border:0;
}

.vm-sprung{
  position:absolute; left:12px; top:-70px;
  z-index:200; background:var(--vm-marine); color:#fff;
  padding:12px 22px; border-radius:var(--r-klein);
  transition:top .22s ease;
}
.vm-sprung:focus{ top:12px; text-decoration:none; color:#fff; }

/* ---------- Raster ---------- */
.vm-bahn{
  width:100%;
  max-width:var(--breite);
  margin:0 auto;
  padding:0 var(--luft);
}

.vm-feld{ padding:88px 0; position:relative; }
.vm-feld--eng{ padding:62px 0; }
.vm-feld--hell{ background:var(--vm-frost); }
.vm-feld--porzellan{ background:var(--vm-porzellan); }
.vm-feld--tief{ background:var(--vm-tieflauf); color:#dce6f2; }
.vm-feld--tief h2,.vm-feld--tief h3,.vm-feld--tief h4{ color:#fff; }

/* ---------- Marken-Etikett ---------- */
.vm-etikett{
  display:inline-flex; align-items:center; gap:9px;
  font-size:.74rem; font-weight:700;
  letter-spacing:.19em; text-transform:uppercase;
  color:var(--vm-blau);
  margin-bottom:18px;
}
.vm-etikett::before{
  content:""; width:26px; height:2px; border-radius:2px;
  background:linear-gradient(90deg,var(--vm-chrom),var(--vm-azur));
}
.vm-feld--tief .vm-etikett{ color:var(--vm-himmel); }
.vm-feld--tief .vm-etikett::before{
  background:linear-gradient(90deg,rgba(255,255,255,.35),var(--vm-himmel));
}

.vm-kopf{ max-width:660px; margin-bottom:52px; }
.vm-kopf--mitte{ margin-left:auto; margin-right:auto; text-align:center; }
.vm-kopf p{ color:var(--vm-text-leise); font-size:1.06rem; margin-bottom:0; }
.vm-feld--tief .vm-kopf p{ color:#b9cbdf; }

/* ---------- Schaltflächen ---------- */
.vm-taste{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family:var(--f-titel);
  font-size:.95rem; font-weight:700; letter-spacing:.015em;
  padding:15px 32px;
  border-radius:var(--r-rund);
  border:1px solid transparent;
  cursor:pointer;
  text-decoration:none;
  transition:transform .2s ease, box-shadow .25s ease, background .25s ease, color .2s ease;
}
.vm-taste:hover{ text-decoration:none; }

.vm-taste--voll{
  background:linear-gradient(140deg,var(--vm-blau) 0%,var(--vm-marine) 100%);
  color:#fff;
  box-shadow:0 6px 20px rgba(31,111,191,.32);
}
.vm-taste--voll:hover{
  color:#fff;
  transform:translateY(-2px);
  box-shadow:0 12px 30px rgba(31,111,191,.42);
}

.vm-taste--chrom{
  background:var(--vm-chromlauf);
  color:var(--vm-marine);
  border-color:var(--vm-silber);
  box-shadow:var(--sch-kante), 0 4px 14px rgba(13,43,78,.12);
}
.vm-taste--chrom:hover{ color:var(--vm-marine); transform:translateY(-2px); }

.vm-taste--rand{
  background:transparent;
  color:var(--vm-marine);
  border-color:var(--vm-chrom);
}
.vm-taste--rand:hover{
  background:var(--vm-marine); color:#fff; border-color:var(--vm-marine);
  transform:translateY(-2px);
}
.vm-feld--tief .vm-taste--rand{ color:#fff; border-color:rgba(255,255,255,.45); }
.vm-feld--tief .vm-taste--rand:hover{ background:#fff; color:var(--vm-marine); }

.vm-taste--breit{ width:100%; }

/* =====================================================
   Kopfzeile
   ===================================================== */
.vm-dach{
  position:sticky; top:0; z-index:90;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--vm-linie);
  transition:box-shadow .3s ease;
}
.vm-dach.ist-gescrollt{ box-shadow:0 4px 24px rgba(13,43,78,.09); }

.vm-dach__innen{
  display:flex; align-items:center; justify-content:space-between;
  gap:20px; min-height:74px;
}

.vm-logo{
  display:inline-flex; align-items:center; gap:11px;
  font-family:var(--f-titel); font-weight:700;
  font-size:1.24rem; letter-spacing:-.02em;
  color:var(--vm-marine); text-decoration:none;
}
.vm-logo:hover{ color:var(--vm-marine); text-decoration:none; }
.vm-logo__mal{
  width:34px; height:34px; border-radius:11px;
  background:var(--vm-tieflauf);
  position:relative; flex:0 0 auto;
  box-shadow:0 4px 12px rgba(13,43,78,.28);
}
.vm-logo__mal::before{
  content:""; position:absolute; inset:8px 8px auto 8px; height:3px;
  border-radius:3px; background:var(--vm-himmel);
}
.vm-logo__mal::after{
  content:""; position:absolute; left:8px; bottom:8px;
  width:11px; height:11px; border-radius:50%;
  background:#fff; opacity:.92;
}
.vm-logo__zusatz{
  font-size:.62rem; font-weight:600; letter-spacing:.22em;
  text-transform:uppercase; color:var(--vm-chrom-tief);
  display:block; line-height:1;
}

.vm-menue{ display:flex; align-items:center; gap:6px; }
.vm-menue a{
  font-size:.93rem; font-weight:600; color:var(--vm-graphit);
  padding:9px 14px; border-radius:var(--r-rund);
  transition:background .2s ease, color .2s ease;
}
.vm-menue a:hover,.vm-menue a[aria-current="page"]{
  background:var(--vm-frost); color:var(--vm-blau); text-decoration:none;
}

.vm-dach__tat{ display:flex; align-items:center; gap:12px; }
.vm-dach__tat .vm-taste{ padding:11px 24px; font-size:.88rem; }

.vm-klapp{
  display:none;
  width:46px; height:46px;
  border:1px solid var(--vm-linie);
  border-radius:13px;
  background:var(--vm-frost);
  cursor:pointer;
  position:relative;
  flex:0 0 auto;
}
.vm-klapp span{
  position:absolute; left:13px; width:20px; height:2px;
  border-radius:2px; background:var(--vm-marine);
  transition:transform .25s ease, opacity .2s ease;
}
.vm-klapp span:nth-child(1){ top:16px; }
.vm-klapp span:nth-child(2){ top:22px; }
.vm-klapp span:nth-child(3){ top:28px; }
.vm-klapp[aria-expanded="true"] span:nth-child(1){ transform:translateY(6px) rotate(45deg); }
.vm-klapp[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.vm-klapp[aria-expanded="true"] span:nth-child(3){ transform:translateY(-6px) rotate(-45deg); }

/* =====================================================
   Bühne (Hero)
   ===================================================== */
.vm-buehne{
  position:relative;
  padding:76px 0 92px;
  background:
    radial-gradient(900px 480px at 78% 8%, rgba(111,182,232,.22), transparent 62%),
    radial-gradient(700px 520px at 6% 88%, rgba(170,183,198,.28), transparent 60%),
    var(--vm-frost);
  overflow:hidden;
}
.vm-buehne::after{
  content:""; position:absolute; left:0; right:0; bottom:0; height:1px;
  background:linear-gradient(90deg,transparent,var(--vm-silber),transparent);
}

.vm-buehne__gitter{
  display:grid;
  grid-template-columns:1.04fr .96fr;
  gap:56px;
  align-items:center;
}

.vm-buehne__wort h1{ margin-bottom:.4em; }
.vm-buehne__wort h1 em{
  font-style:normal;
  background:linear-gradient(120deg,var(--vm-azur),var(--vm-blau-tief));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.vm-buehne__lead{
  font-size:1.12rem; color:var(--vm-text-leise);
  max-width:520px; margin-bottom:30px;
}
.vm-buehne__tat{ display:flex; flex-wrap:wrap; gap:14px; margin-bottom:34px; }

.vm-marker{
  display:flex; flex-wrap:wrap; gap:12px;
  list-style:none; padding:0; margin:0;
}
.vm-marker li{
  display:inline-flex; align-items:center; gap:9px;
  font-size:.86rem; font-weight:600; color:var(--vm-graphit);
  background:#fff;
  border:1px solid var(--vm-linie);
  border-radius:var(--r-rund);
  padding:8px 17px 8px 13px;
  box-shadow:var(--sch-kante);
}
.vm-marker li::before{
  content:""; width:8px; height:8px; border-radius:50%;
  background:var(--vm-azur);
  box-shadow:0 0 0 4px rgba(61,146,216,.16);
  flex:0 0 auto;
}

/* Bühnenbild */
.vm-buehne__bild{ position:relative; }
.vm-rahmen{
  position:relative;
  border-radius:var(--r-gross);
  overflow:hidden;
  box-shadow:var(--sch-tief);
  border:1px solid rgba(255,255,255,.7);
  background:var(--vm-porzellan);
}
.vm-rahmen::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(200deg,rgba(255,255,255,.28) 0%,transparent 42%);
}
.vm-rahmen img{
  width:100%; height:100%;
  object-fit:cover;
  display:block;
}
.vm-rahmen--buehne{ aspect-ratio:4/5; }

.vm-plakette{
  position:absolute;
  left:-26px; bottom:38px;
  background:#fff;
  border:1px solid var(--vm-linie);
  border-radius:var(--r-mittel);
  padding:16px 22px;
  box-shadow:var(--sch-tief);
  max-width:238px;
}
.vm-plakette__zahl{
  font-family:var(--f-titel); font-size:1.5rem; font-weight:700;
  color:var(--vm-marine); line-height:1.1; display:block;
}
.vm-plakette__wort{
  font-size:.79rem; color:var(--vm-text-leise); line-height:1.5;
  display:block; margin-top:3px;
}

/* =====================================================
   Laufband
   ===================================================== */
.vm-laufband{
  background:var(--vm-marine);
  color:#c6d7ea;
  padding:16px 0;
  overflow:hidden;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.vm-laufband__spur{
  display:flex; gap:52px; align-items:center;
  white-space:nowrap;
  animation:vm-schieben 34s linear infinite;
  width:max-content;
}
.vm-laufband__stueck{
  display:inline-flex; align-items:center; gap:11px;
  font-size:.82rem; font-weight:600;
  letter-spacing:.13em; text-transform:uppercase;
}
.vm-laufband__stueck::before{
  content:""; width:6px; height:6px; transform:rotate(45deg);
  background:var(--vm-himmel); flex:0 0 auto;
}
@keyframes vm-schieben{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

/* =====================================================
   Geschichte / Text-Bild
   ===================================================== */
.vm-doppel{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}
.vm-doppel--gedreht .vm-doppel__bild{ order:-1; }
.vm-rahmen--breit{ aspect-ratio:5/4; }
.vm-rahmen--hoch{ aspect-ratio:3/4; }
.vm-rahmen--quer{ aspect-ratio:16/10; }

.vm-strichliste{
  list-style:none; padding:0; margin:26px 0 0;
  display:grid; gap:14px;
}
.vm-strichliste li{
  position:relative;
  padding-left:34px;
  color:var(--vm-graphit);
  font-size:.98rem;
}
.vm-strichliste li::before{
  content:""; position:absolute; left:0; top:8px;
  width:20px; height:20px; border-radius:6px;
  background:var(--vm-chromlauf);
  border:1px solid var(--vm-silber);
}
.vm-strichliste li::after{
  content:""; position:absolute; left:6px; top:13px;
  width:8px; height:4px;
  border-left:2px solid var(--vm-blau);
  border-bottom:2px solid var(--vm-blau);
  transform:rotate(-45deg);
}

/* =====================================================
   Werte-Karten
   ===================================================== */
.vm-karten{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:24px;
}
.vm-karte{
  background:#fff;
  border:1px solid var(--vm-linie);
  border-radius:var(--r-gross);
  padding:32px 28px;
  box-shadow:var(--sch-weich);
  position:relative;
  overflow:hidden;
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  display:flex; flex-direction:column;
}
.vm-karte::before{
  content:""; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--vm-chrom),var(--vm-azur),var(--vm-marine));
  opacity:0; transition:opacity .28s ease;
}
.vm-karte:hover{
  transform:translateY(-5px);
  box-shadow:var(--sch-tief);
  border-color:var(--vm-silber);
}
.vm-karte:hover::before{ opacity:1; }
.vm-karte h3{ margin-bottom:.5em; }
.vm-karte p{ color:var(--vm-text-leise); font-size:.96rem; margin-bottom:0; }

/* CSS-Symbole */
.vm-symbol{
  width:52px; height:52px; border-radius:15px;
  background:var(--vm-chromlauf);
  border:1px solid var(--vm-silber);
  box-shadow:var(--sch-kante);
  position:relative; flex:0 0 auto;
  margin-bottom:20px;
}
.vm-symbol::before,.vm-symbol::after{ content:""; position:absolute; }

/* Tropfen */
.vm-symbol--tropfen::before{
  left:50%; top:13px; width:16px; height:16px;
  margin-left:-8px;
  background:var(--vm-blau);
  border-radius:50% 50% 50% 0;
  transform:rotate(-45deg);
}
.vm-symbol--tropfen::after{
  left:50%; bottom:13px; width:20px; height:3px;
  margin-left:-10px; border-radius:3px;
  background:var(--vm-himmel);
}
/* Blatt */
.vm-symbol--blatt::before{
  left:14px; top:14px; width:24px; height:24px;
  border:2.5px solid var(--vm-blau);
  border-radius:0 70% 0 70%;
}
.vm-symbol--blatt::after{
  left:16px; top:33px; width:14px; height:2px;
  background:var(--vm-chrom-tief); transform:rotate(-45deg);
  transform-origin:left center;
}
/* Schild */
.vm-symbol--schild::before{
  left:15px; top:13px; width:22px; height:26px;
  border:2.5px solid var(--vm-blau);
  border-radius:4px 4px 11px 11px;
}
.vm-symbol--schild::after{
  left:21px; top:22px; width:9px; height:5px;
  border-left:2.5px solid var(--vm-himmel);
  border-bottom:2.5px solid var(--vm-himmel);
  transform:rotate(-45deg);
}
/* Uhr */
.vm-symbol--uhr::before{
  left:13px; top:13px; width:26px; height:26px;
  border:2.5px solid var(--vm-blau); border-radius:50%;
}
.vm-symbol--uhr::after{
  left:25px; top:19px; width:2px; height:9px;
  background:var(--vm-marine); border-radius:2px;
  box-shadow:3px 7px 0 -1px var(--vm-marine);
}
/* Waage */
.vm-symbol--waage::before{
  left:14px; top:18px; width:24px; height:2.5px;
  background:var(--vm-blau); border-radius:2px;
}
.vm-symbol--waage::after{
  left:25px; top:18px; width:2.5px; height:18px;
  background:var(--vm-blau); border-radius:2px;
  box-shadow:-9px 8px 0 -1px var(--vm-himmel), 9px 8px 0 -1px var(--vm-himmel);
}
/* Kompass */
.vm-symbol--kompass::before{
  left:13px; top:13px; width:26px; height:26px;
  border:2.5px solid var(--vm-blau); border-radius:50%;
}
.vm-symbol--kompass::after{
  left:22px; top:22px; width:8px; height:8px;
  background:var(--vm-himmel);
  transform:rotate(45deg); border-radius:2px;
}
/* Kolben */
.vm-symbol--kolben::before{
  left:20px; top:12px; width:12px; height:12px;
  border-left:2.5px solid var(--vm-blau);
  border-right:2.5px solid var(--vm-blau);
}
.vm-symbol--kolben::after{
  left:14px; top:23px; width:24px; height:17px;
  border:2.5px solid var(--vm-blau);
  border-radius:3px 3px 9px 9px;
  background:rgba(111,182,232,.28);
}
/* Paket */
.vm-symbol--paket::before{
  left:14px; top:16px; width:24px; height:21px;
  border:2.5px solid var(--vm-blau); border-radius:4px;
}
.vm-symbol--paket::after{
  left:24px; top:16px; width:2.5px; height:21px;
  background:var(--vm-himmel);
}

/* =====================================================
   Produkt
   ===================================================== */
.vm-produkt{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:52px;
  align-items:center;
  background:#fff;
  border:1px solid var(--vm-linie);
  border-radius:var(--r-gross);
  padding:42px;
  box-shadow:var(--sch-tief);
  position:relative;
  overflow:hidden;
}
.vm-produkt::before{
  content:""; position:absolute;
  right:-140px; top:-140px;
  width:420px; height:420px; border-radius:50%;
  background:radial-gradient(circle,rgba(111,182,232,.24),transparent 68%);
  pointer-events:none;
}

.vm-produkt__buehne{
  position:relative;
  border-radius:var(--r-mittel);
  background:
    radial-gradient(circle at 50% 42%, #ffffff 0%, var(--vm-porzellan) 58%, var(--vm-silber) 100%);
  border:1px solid var(--vm-silber);
  aspect-ratio:1/1;
  display:flex; align-items:center; justify-content:center;
  padding:34px;
  overflow:hidden;
}
.vm-produkt__buehne img{
  width:100%; height:100%;
  object-fit:contain;
  filter:drop-shadow(0 22px 34px rgba(13,43,78,.24));
  transition:transform .45s cubic-bezier(.2,.7,.3,1);
}
.vm-produkt__buehne:hover img{ transform:translateY(-8px) scale(1.03); }

.vm-produkt__preisband{
  position:absolute; top:18px; right:18px;
  background:var(--vm-marine); color:#fff;
  font-family:var(--f-titel); font-weight:700; font-size:1.05rem;
  padding:9px 19px; border-radius:var(--r-rund);
  box-shadow:0 8px 20px rgba(13,43,78,.3);
  z-index:2;
}

.vm-produkt__wort h2{ margin-bottom:.3em; }
.vm-produkt__unter{
  font-size:.78rem; font-weight:700; letter-spacing:.18em;
  text-transform:uppercase; color:var(--vm-chrom-tief);
  margin-bottom:16px;
}
.vm-produkt__preis{
  display:flex; align-items:baseline; gap:12px;
  margin:22px 0 6px;
}
.vm-produkt__preis strong{
  font-family:var(--f-titel); font-size:2.5rem; font-weight:700;
  color:var(--vm-marine); line-height:1;
}
.vm-produkt__preis span{ font-size:.9rem; color:var(--vm-text-leise); }
.vm-produkt__mwst{ font-size:.82rem; color:var(--vm-text-leise); margin-bottom:24px; }

.vm-merkmale{
  list-style:none; padding:0; margin:0 0 28px;
  display:grid; grid-template-columns:repeat(2,1fr); gap:12px;
}
.vm-merkmale li{
  background:var(--vm-frost);
  border:1px solid var(--vm-linie);
  border-radius:var(--r-klein);
  padding:12px 15px;
  font-size:.87rem; font-weight:600; color:var(--vm-graphit);
  line-height:1.45;
}
.vm-merkmale li b{
  display:block; font-size:.7rem; letter-spacing:.13em;
  text-transform:uppercase; color:var(--vm-chrom-tief);
  font-weight:700; margin-bottom:2px;
}

/* =====================================================
   Inhaltsstoffe
   ===================================================== */
.vm-stoffe{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:20px;
}
.vm-stoff{
  background:#fff;
  border:1px solid var(--vm-linie);
  border-left:4px solid var(--vm-azur);
  border-radius:var(--r-mittel);
  padding:26px 24px;
  box-shadow:var(--sch-weich);
  transition:transform .25s ease, box-shadow .25s ease;
}
.vm-stoff:hover{ transform:translateX(4px); box-shadow:var(--sch-tief); }
.vm-stoff h3{ font-size:1.1rem; margin-bottom:.35em; }
.vm-stoff__menge{
  font-size:.76rem; font-weight:700; letter-spacing:.12em;
  text-transform:uppercase; color:var(--vm-blau);
  display:block; margin-bottom:10px;
}
.vm-stoff p{ font-size:.92rem; color:var(--vm-text-leise); margin:0; }

/* =====================================================
   Tagesablauf
   ===================================================== */
.vm-ablauf{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:22px;
  counter-reset:vm-schritt;
}
.vm-ablauf__stufe{
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.14);
  border-radius:var(--r-mittel);
  padding:28px 24px;
  position:relative;
  backdrop-filter:blur(4px);
  -webkit-backdrop-filter:blur(4px);
  transition:background .25s ease, transform .25s ease;
}
.vm-ablauf__stufe:hover{ background:rgba(255,255,255,.12); transform:translateY(-4px); }
.vm-ablauf__stufe::before{
  counter-increment:vm-schritt;
  content:counter(vm-schritt,decimal-leading-zero);
  font-family:var(--f-titel); font-size:2.1rem; font-weight:700;
  color:rgba(255,255,255,.2);
  display:block; line-height:1; margin-bottom:14px;
}
.vm-ablauf__stufe h3{ font-size:1.08rem; margin-bottom:.45em; }
.vm-ablauf__stufe p{ font-size:.92rem; color:#b9cbdf; margin:0; }
.vm-ablauf__zeit{
  font-size:.74rem; font-weight:700; letter-spacing:.15em;
  text-transform:uppercase; color:var(--vm-himmel);
  display:block; margin-bottom:8px;
}

/* =====================================================
   Kundenstimmen
   ===================================================== */
.vm-stimmen{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:24px;
}
.vm-stimme{
  background:#fff;
  border:1px solid var(--vm-linie);
  border-radius:var(--r-gross);
  padding:30px 28px;
  box-shadow:var(--sch-weich);
  display:flex; flex-direction:column;
}
.vm-stimme p{
  font-size:.98rem; color:var(--vm-graphit);
  margin-bottom:20px; flex:1 1 auto;
}
.vm-stimme__wer{
  display:flex; align-items:center; gap:13px;
  border-top:1px solid var(--vm-linie);
  padding-top:18px;
}
.vm-stimme__kreis{
  width:42px; height:42px; border-radius:50%;
  background:var(--vm-tieflauf);
  color:#fff; font-family:var(--f-titel); font-weight:700; font-size:.95rem;
  display:flex; align-items:center; justify-content:center;
  flex:0 0 auto;
}
.vm-stimme__name{ font-weight:700; font-size:.93rem; color:var(--vm-marine); display:block; line-height:1.3; }
.vm-stimme__ort{ font-size:.8rem; color:var(--vm-text-leise); }

.vm-hinweisleiste{
  margin-top:30px;
  background:var(--vm-porzellan);
  border:1px solid var(--vm-silber);
  border-radius:var(--r-mittel);
  padding:18px 24px;
  font-size:.87rem; color:var(--vm-graphit);
}
.vm-hinweisleiste p{ margin:0; }

/* =====================================================
   Kennzahlen
   ===================================================== */
.vm-zahlen{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:2px;
  background:var(--vm-linie);
  border:1px solid var(--vm-linie);
  border-radius:var(--r-mittel);
  overflow:hidden;
}
.vm-zahl{ background:#fff; padding:32px 26px; text-align:center; }
.vm-zahl strong{
  font-family:var(--f-titel); font-size:2.2rem; font-weight:700;
  color:var(--vm-blau); display:block; line-height:1.1;
}
.vm-zahl span{ font-size:.86rem; color:var(--vm-text-leise); display:block; margin-top:6px; }

/* =====================================================
   FAQ
   ===================================================== */
.vm-faq{ max-width:820px; margin:0 auto; }
.vm-frage{
  background:#fff;
  border:1px solid var(--vm-linie);
  border-radius:var(--r-mittel);
  margin-bottom:12px;
  overflow:hidden;
  transition:border-color .22s ease, box-shadow .22s ease;
}
.vm-frage.ist-offen{ border-color:var(--vm-chrom); box-shadow:var(--sch-weich); }
.vm-frage__knopf{
  width:100%; text-align:left;
  background:none; border:0; cursor:pointer;
  font-family:var(--f-titel); font-size:1.02rem; font-weight:700;
  color:var(--vm-marine);
  padding:21px 58px 21px 26px;
  position:relative;
  line-height:1.45;
}
.vm-frage__knopf::before,.vm-frage__knopf::after{
  content:""; position:absolute; right:26px; top:50%;
  background:var(--vm-blau); border-radius:2px;
  transition:transform .28s ease, opacity .2s ease;
}
.vm-frage__knopf::before{ width:14px; height:2px; margin-top:-1px; }
.vm-frage__knopf::after{ width:2px; height:14px; margin-top:-7px; right:32px; }
.vm-frage.ist-offen .vm-frage__knopf::after{ transform:rotate(90deg); opacity:0; }
.vm-frage__inhalt{
  max-height:0; overflow:hidden;
  transition:max-height .34s ease;
}
.vm-frage__text{ padding:0 26px 22px; color:var(--vm-text-leise); font-size:.96rem; }
.vm-frage__text p:last-child{ margin-bottom:0; }

/* =====================================================
   Bestellformular
   ===================================================== */
.vm-bestell{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:52px;
  align-items:start;
}
.vm-bestell__wort .vm-strichliste{ margin-top:22px; }

.vm-formular{
  background:#fff;
  border:1px solid var(--vm-linie);
  border-radius:var(--r-gross);
  padding:36px;
  box-shadow:var(--sch-tief);
}
.vm-formular__kopf{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; flex-wrap:wrap;
  border-bottom:1px solid var(--vm-linie);
  padding-bottom:20px; margin-bottom:24px;
}
.vm-formular__kopf h3{ margin:0; font-size:1.22rem; }
.vm-formular__tag{
  background:var(--vm-frost);
  border:1px solid var(--vm-linie);
  border-radius:var(--r-rund);
  padding:7px 16px;
  font-size:.85rem; font-weight:700; color:var(--vm-blau);
  white-space:nowrap;
}

.vm-eingabe{ margin-bottom:20px; }
.vm-eingabe label{
  display:block; font-size:.82rem; font-weight:700;
  letter-spacing:.06em; color:var(--vm-graphit);
  margin-bottom:8px;
}
.vm-eingabe input{
  width:100%;
  font-family:var(--f-text); font-size:1rem;
  color:var(--vm-text);
  padding:15px 17px;
  border:1px solid var(--vm-silber);
  border-radius:var(--r-klein);
  background:var(--vm-frost);
  transition:border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.vm-eingabe input:focus{
  outline:none;
  border-color:var(--vm-azur);
  background:#fff;
  box-shadow:0 0 0 4px rgba(61,146,216,.16);
}
.vm-eingabe input[aria-invalid="true"]{
  border-color:#c0392b;
  background:#fdf3f2;
}
.vm-eingabe__fehler{
  display:block; font-size:.82rem; color:#c0392b;
  margin-top:7px; min-height:1px;
}

.vm-formular__fuss{
  font-size:.82rem; color:var(--vm-text-leise);
  margin:18px 0 0; line-height:1.6;
}

/* =====================================================
   Transparenz / Kontakt
   ===================================================== */
.vm-kontaktnetz{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:22px;
}
.vm-kontaktkarte{
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.15);
  border-radius:var(--r-mittel);
  padding:26px 24px;
}
.vm-kontaktkarte h3{ font-size:1rem; margin-bottom:.5em; }
.vm-kontaktkarte p{ font-size:.93rem; color:#b9cbdf; margin:0; }
.vm-kontaktkarte a{ color:#fff; text-decoration:underline; }
.vm-kontaktkarte a:hover{ color:var(--vm-himmel); }

/* =====================================================
   Fußzeile
   ===================================================== */
.vm-fuss{
  background:var(--vm-marine-nacht);
  color:#93a8be;
  padding:64px 0 26px;
  font-size:.92rem;
}
.vm-fuss__gitter{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1.2fr;
  gap:40px;
  padding-bottom:40px;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.vm-fuss h4{
  color:#fff; font-size:.78rem; letter-spacing:.17em;
  text-transform:uppercase; margin-bottom:16px;
}
.vm-fuss p{ margin-bottom:.9em; line-height:1.7; }
.vm-fuss ul{ list-style:none; padding:0; margin:0; }
.vm-fuss li{ margin-bottom:9px; }
.vm-fuss a{ color:#93a8be; }
.vm-fuss a:hover{ color:#fff; }
.vm-fuss__logo{ margin-bottom:16px; }
.vm-fuss__logo .vm-logo{ color:#fff; }
.vm-fuss__logo .vm-logo__zusatz{ color:var(--vm-chrom); }

.vm-fuss__rechtsband{
  padding-top:24px;
  display:flex; flex-wrap:wrap; gap:14px;
  align-items:center; justify-content:space-between;
  font-size:.84rem;
}
.vm-fuss__rechtsband p{ margin:0; }
.vm-fuss__hinweis{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.1);
  border-radius:var(--r-mittel);
  padding:18px 22px;
  margin-top:26px;
  font-size:.84rem; line-height:1.65;
}
.vm-fuss__hinweis p{ margin:0; }

/* =====================================================
   Cookie-Banner
   ===================================================== */
.vm-keks{
  position:fixed;
  left:20px; right:20px; bottom:20px;
  z-index:120;
  background:#fff;
  border:1px solid var(--vm-silber);
  border-radius:var(--r-gross);
  box-shadow:0 20px 60px rgba(7,26,48,.28);
  padding:26px 30px;
  max-width:940px;
  margin:0 auto;
  display:none;
  transform:translateY(20px);
  opacity:0;
  transition:transform .35s ease, opacity .35s ease;
}
.vm-keks.ist-sichtbar{ display:block; }
.vm-keks.ist-da{ transform:translateY(0); opacity:1; }
.vm-keks__gitter{
  display:grid; grid-template-columns:1fr auto;
  gap:26px; align-items:center;
}
.vm-keks h2{ font-size:1.1rem; margin-bottom:.4em; }
.vm-keks p{ font-size:.9rem; color:var(--vm-text-leise); margin:0; }
.vm-keks__tat{ display:flex; gap:11px; flex-wrap:wrap; }
.vm-keks__tat .vm-taste{ padding:12px 24px; font-size:.88rem; }

/* =====================================================
   Rechtsseiten & Inhaltsseiten
   ===================================================== */
.vm-seitenkopf{
  background:
    radial-gradient(760px 380px at 82% 12%, rgba(111,182,232,.2), transparent 60%),
    var(--vm-frost);
  padding:64px 0 54px;
  border-bottom:1px solid var(--vm-linie);
}
.vm-seitenkopf h1{ margin-bottom:.3em; }
.vm-seitenkopf p{ color:var(--vm-text-leise); max-width:640px; margin:0; }

.vm-brotkrume{
  font-size:.83rem; color:var(--vm-text-leise);
  margin-bottom:18px;
}
.vm-brotkrume ol{ list-style:none; display:flex; flex-wrap:wrap; gap:8px; padding:0; margin:0; }
.vm-brotkrume li:not(:last-child)::after{ content:"›"; margin-left:8px; color:var(--vm-chrom); }

.vm-text{ max-width:800px; }
.vm-text h2{ margin-top:2.1em; font-size:1.42rem; }
.vm-text h2:first-child{ margin-top:0; }
.vm-text h3{ margin-top:1.6em; font-size:1.1rem; }
.vm-text ul,.vm-text ol{ padding-left:22px; margin:0 0 1.2em; }
.vm-text li{ margin-bottom:9px; color:var(--vm-graphit); }
.vm-text p{ color:var(--vm-graphit); }

.vm-notiz{
  background:var(--vm-frost);
  border:1px solid var(--vm-linie);
  border-left:4px solid var(--vm-azur);
  border-radius:var(--r-mittel);
  padding:22px 26px;
  margin:26px 0;
}
.vm-notiz p:last-child{ margin-bottom:0; }
.vm-notiz strong{ color:var(--vm-marine); }

.vm-tabelle{
  width:100%; border-collapse:collapse;
  margin:24px 0; font-size:.92rem;
  border:1px solid var(--vm-linie);
  border-radius:var(--r-mittel);
  overflow:hidden;
}
.vm-tabelle caption{
  text-align:left; font-size:.84rem; color:var(--vm-text-leise);
  padding-bottom:10px;
}
.vm-tabelle th,.vm-tabelle td{
  padding:14px 16px; text-align:left;
  border-bottom:1px solid var(--vm-linie);
  vertical-align:top;
}
.vm-tabelle th{
  background:var(--vm-frost);
  font-family:var(--f-titel); font-size:.82rem;
  letter-spacing:.05em; color:var(--vm-marine);
}
.vm-tabelle tr:last-child td{ border-bottom:0; }

/* Erfolgsseite */
.vm-erfolg{
  min-height:64vh;
  display:flex; align-items:center;
  padding:80px 0;
  background:
    radial-gradient(800px 420px at 50% 0%, rgba(111,182,232,.22), transparent 62%),
    var(--vm-frost);
}
.vm-erfolg__karte{
  max-width:680px; margin:0 auto; text-align:center;
  background:#fff;
  border:1px solid var(--vm-linie);
  border-radius:var(--r-gross);
  padding:52px 44px;
  box-shadow:var(--sch-tief);
}
.vm-haken{
  width:82px; height:82px; margin:0 auto 26px;
  border-radius:50%;
  background:var(--vm-tieflauf);
  position:relative;
  box-shadow:0 12px 30px rgba(31,111,191,.34);
}
.vm-haken::after{
  content:""; position:absolute;
  left:27px; top:31px;
  width:26px; height:13px;
  border-left:4px solid #fff;
  border-bottom:4px solid #fff;
  transform:rotate(-45deg);
  border-radius:2px;
}
.vm-erfolg__karte p{ color:var(--vm-text-leise); }
.vm-erfolg__tat{ display:flex; gap:13px; justify-content:center; flex-wrap:wrap; margin-top:28px; }

/* Gewohnheiten */
.vm-gewohnheiten{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(270px,1fr));
  gap:24px;
}
.vm-gewohnheit{
  background:#fff;
  border:1px solid var(--vm-linie);
  border-radius:var(--r-gross);
  padding:30px 28px;
  box-shadow:var(--sch-weich);
  transition:transform .26s ease, box-shadow .26s ease;
}
.vm-gewohnheit:hover{ transform:translateY(-5px); box-shadow:var(--sch-tief); }
.vm-gewohnheit h3{ font-size:1.1rem; }
.vm-gewohnheit p{ color:var(--vm-text-leise); font-size:.95rem; margin-bottom:0; }
.vm-gewohnheit__nr{
  font-family:var(--f-titel); font-size:.76rem; font-weight:700;
  letter-spacing:.16em; color:var(--vm-chrom-tief);
  display:block; margin-bottom:12px;
}

.vm-bildkarte{
  background:#fff;
  border:1px solid var(--vm-linie);
  border-radius:var(--r-gross);
  overflow:hidden;
  box-shadow:var(--sch-tief);
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:stretch;
}
.vm-bildkarte__bild{ position:relative; min-height:320px; }
.vm-bildkarte__bild img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
}
.vm-bildkarte__wort{ padding:40px; align-self:center; }
.vm-bildkarte__wort p:last-child{ margin-bottom:0; }

/* =====================================================
   Scroll-Animation
   ===================================================== */
.vm-auf{
  opacity:0;
  transform:translateY(22px);
  transition:opacity .6s ease, transform .6s ease;
}
.vm-auf.ist-sichtbar{ opacity:1; transform:none; }

/* =====================================================
   Responsiv
   ===================================================== */
@media (max-width:1024px){
  .vm-buehne__gitter,
  .vm-doppel,
  .vm-produkt,
  .vm-bestell{
    grid-template-columns:1fr;
    gap:44px;
  }
  .vm-doppel--gedreht .vm-doppel__bild{ order:0; }
  .vm-rahmen--buehne{ aspect-ratio:16/10; }
  .vm-rahmen--hoch{ aspect-ratio:16/10; }
  .vm-plakette{ left:20px; bottom:20px; }
  .vm-fuss__gitter{ grid-template-columns:1fr 1fr; gap:34px; }
  .vm-produkt{ padding:32px; }
  .vm-produkt__buehne{ aspect-ratio:4/3; max-width:440px; margin:0 auto; width:100%; }
  .vm-bildkarte{ grid-template-columns:1fr; }
  .vm-bildkarte__bild{ min-height:260px; }
}

@media (max-width:820px){
  .vm-klapp{ display:block; }
  .vm-dach__innen{ min-height:66px; }
  .vm-menue{
    position:absolute;
    left:0; right:0; top:100%;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    background:#fff;
    border-bottom:1px solid var(--vm-linie);
    box-shadow:0 20px 40px rgba(13,43,78,.13);
    padding:10px 20px 20px;
    display:none;
  }
  .vm-menue.ist-offen{ display:flex; }
  .vm-menue a{ padding:13px 12px; border-radius:var(--r-klein); }
  .vm-dach__tat .vm-taste{ display:none; }
  .vm-menue .vm-taste{
    display:inline-flex; margin-top:10px;
    padding:14px 24px;
  }
}

@media (max-width:640px){
  body{ font-size:16px; }
  :root{ --luft:18px; }
  .vm-feld{ padding:58px 0; }
  .vm-feld--eng{ padding:44px 0; }
  .vm-buehne{ padding:48px 0 62px; }
  .vm-buehne__gitter,.vm-doppel,.vm-produkt,.vm-bestell{ gap:34px; }
  .vm-kopf{ margin-bottom:34px; }
  .vm-produkt{ padding:22px; }
  .vm-produkt__buehne{ padding:22px; aspect-ratio:1/1; }
  .vm-produkt__preisband{ top:12px; right:12px; font-size:.95rem; padding:7px 15px; }
  .vm-merkmale{ grid-template-columns:1fr; }
  .vm-formular{ padding:26px 22px; }
  .vm-erfolg__karte{ padding:36px 24px; }
  .vm-fuss__gitter{ grid-template-columns:1fr; gap:30px; }
  .vm-keks{ left:12px; right:12px; bottom:12px; padding:22px; }
  .vm-keks__gitter{ grid-template-columns:1fr; gap:18px; }
  .vm-keks__tat .vm-taste{ flex:1 1 auto; }
  .vm-plakette{ position:static; max-width:none; margin-top:16px; }
  .vm-buehne__tat .vm-taste{ width:100%; }
  .vm-rahmen--buehne,.vm-rahmen--breit,.vm-rahmen--hoch,.vm-rahmen--quer{ aspect-ratio:3/2; }
  .vm-bildkarte__wort{ padding:28px 22px; }
  .vm-tabelle{ display:block; overflow-x:auto; }
  .vm-frage__knopf{ font-size:.96rem; padding:18px 52px 18px 20px; }
  .vm-frage__text{ padding:0 20px 18px; }
  .vm-fuss__rechtsband{ flex-direction:column; align-items:flex-start; }
}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:.001ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.001ms !important;
    scroll-behavior:auto !important;
  }
  .vm-auf{ opacity:1; transform:none; }
}

@media print{
  .vm-dach,.vm-keks,.vm-fuss,.vm-buehne__tat{ display:none !important; }
  body{ color:#000; }
}
