/* ==========================================================================
   rundgang360 – Stylesheet
   Farben abgeleitet aus den Logos:
   zwanzig12 Grün #0E6B3B · viva7 Türkis #22B8CF · viva7 Gelb #FFD84D
   ========================================================================== */

:root {
  --bg: #FBFAF6;
  --bg-alt: #F3F1EA;
  --surface: #FFFFFF;
  --ink: #14202B;
  --ink-soft: #33414D;
  --muted: #62707C;
  --line: #E6E3DA;

  --teal: #22B8CF;
  --teal-dark: #158FA3;
  --teal-soft: #E3F7FA;
  --yellow: #FFD84D;
  --yellow-soft: #FFF5CC;
  --green: #0E6B3B;
  --green-soft: #E2F1E8;

  --dark: #0F1B26;
  --dark-2: #172533;

  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px -12px rgba(20, 32, 43, .18);
  --shadow-lg: 0 30px 60px -20px rgba(20, 32, 43, .3);

  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --container: 1180px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
svg { display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.01em;
  margin: 0 0 .5em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1rem; font-family: var(--font-body); font-weight: 700; }
p { margin: 0 0 1em; }
em { font-style: italic; color: var(--teal-dark); }

.container { width: min(var(--container), calc(100% - 2.5rem)); margin-inline: auto; }

.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; position: relative; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--dark); color: #DCE4EA; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: #B6C2CC; }

.section-head { max-width: 680px; margin: 0 auto 3.5rem; text-align: center; }
.section-head p { font-size: 1.1rem; color: var(--muted); }
.section-dark .section-head p { color: #B6C2CC; }

/* ---------- Eyebrow / Badges ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--teal-dark); margin-bottom: 1.1rem;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 4px var(--yellow-soft); }
.eyebrow-light { color: var(--teal); }
.eyebrow-light .dot { box-shadow: 0 0 0 4px rgba(255, 216, 77, .2); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.6rem; border-radius: 999px;
  font-weight: 700; font-size: 1rem; line-height: 1;
  border: 2px solid transparent; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--ink); color: #fff; box-shadow: 0 10px 24px -10px rgba(20, 32, 43, .6); }
.btn-primary:hover { background: #000; box-shadow: 0 16px 30px -10px rgba(20, 32, 43, .6); }
.btn-ghost { background: rgba(255, 255, 255, .5); color: var(--ink); border-color: rgba(20, 32, 43, .15); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-sm { padding: .7rem 1.2rem; font-size: .9rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 250, 246, .88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 6px 20px -12px rgba(20, 32, 43, .25); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }

.brand { display: inline-flex; align-items: center; gap: .55rem; font-weight: 800; font-size: 1.25rem; letter-spacing: -.035em; }
.brand-mark { display: inline-flex; flex: 0 0 auto; }
.brand-mark img { display: block; width: 42px; height: 42px; }
.brand-accent { color: inherit; }

.main-nav { display: flex; align-items: center; gap: 1.6rem; }
.main-nav a:not(.btn) { font-weight: 600; font-size: .95rem; color: var(--ink-soft); position: relative; }
.main-nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.main-nav a:not(.btn):hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 10px;
  background: none; border: 0; border-radius: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(3rem, 6vw, 5rem); overflow: hidden;
  background: linear-gradient(160deg, #DCEFF2 0%, #CFE8EC 55%, #C3E1E6 100%);
  border-bottom: 1px solid rgba(20, 32, 43, .06);
}
.hero-proof li { padding-left: .9rem; border-left: 2px solid var(--yellow); }
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.blob { position: absolute; border-radius: 50%; opacity: 1; animation: drift 18s ease-in-out infinite alternate; will-change: transform; }
.blob-1 { width: 820px; height: 820px; background: radial-gradient(circle, rgba(34, 184, 207, .22) 0%, rgba(34, 184, 207, 0) 65%); top: -300px; right: -260px; }
.blob-2 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(255, 216, 77, .35) 0%, rgba(255, 216, 77, 0) 65%); bottom: -240px; left: -220px; animation-delay: -6s; }
.blob-3 { width: 460px; height: 460px; background: radial-gradient(circle, rgba(255, 255, 255, .55) 0%, rgba(14, 107, 59, 0) 65%); top: 30%; left: 34%; animation-delay: -12s; }
@keyframes drift { from { transform: translate(0, 0) scale(1); } to { transform: translate(40px, 30px) scale(1.08); } }

.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.hero-copy h1 { margin-bottom: 1.2rem; }
.lead { font-size: 1.2rem; color: var(--muted); max-width: 540px; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2.4rem; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 1.4rem 2.2rem; color: var(--muted); font-size: .92rem; }
.hero-proof li { display: flex; flex-direction: column; gap: .1rem; }
.hero-proof strong { font-family: var(--font-head); font-size: 1.5rem; color: var(--ink); line-height: 1; }

/* Tour-Mockup */
.hero-visual { position: relative; }
.tour-frame {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: #0d1a24; box-shadow: 0 40px 80px -24px rgba(20, 32, 43, .45);
  aspect-ratio: 4 / 3; transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform .6s var(--ease);
}
.tour-frame:hover { transform: perspective(1200px) rotateY(0) rotateX(0); }
.tour-scene { position: absolute; inset: 0; overflow: hidden; cursor: grab; }
.tour-scene:active { cursor: grabbing; }
.scene-photo, .scene-video {
  position: absolute; inset: -3%; width: 106%; height: 106%; object-fit: cover;
  transition: transform .15s linear; will-change: transform;
}
.scene-photo { z-index: 0; }
.scene-video { z-index: 1; opacity: 0; pointer-events: none; transition: opacity .6s var(--ease), transform .15s linear; }
.tour-scene.video-playing .scene-video { opacity: 1; }
.tour-scene.has-photo .scene-layer { display: none; }
.tour-scene.has-photo::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(180deg, rgba(14, 28, 39, .02) 45%, rgba(14, 28, 39, .28) 100%);
}
.scene-layer { position: absolute; inset: -6%; transition: transform .15s linear; will-change: transform; }
.scene-wall { background: linear-gradient(180deg, #F6F1E7 0%, #EAE2D2 62%, #D9CFBB 62.5%, #C9BEA9 100%); }
.scene-window {
  left: 8%; top: 12%; width: 34%; height: 44%; inset: auto;
  background: linear-gradient(160deg, #BDEFF6 0%, #7ED9E8 50%, #FFEFA8 100%);
  border: 8px solid #F9F6EE; border-radius: 6px; box-shadow: 0 20px 50px -10px rgba(34, 184, 207, .45), inset 0 0 0 2px rgba(255, 255, 255, .5);
}
.scene-window::before, .scene-window::after { content: ""; position: absolute; background: #F9F6EE; }
.scene-window::before { left: 50%; top: 0; bottom: 0; width: 6px; transform: translateX(-50%); }
.scene-window::after { top: 50%; left: 0; right: 0; height: 6px; transform: translateY(-50%); }
.scene-floor { top: 62%; inset: auto -6% -6%; height: 44%; background: repeating-linear-gradient(100deg, #C8A97E 0 38px, #BFA075 38px 40px), #C8A97E; opacity: .95; }
.scene-furniture { inset: 0; }
.scene-furniture span { position: absolute; border-radius: 8px; }
.sofa { left: 52%; top: 52%; width: 36%; height: 22%; background: linear-gradient(180deg, #6A7B8C, #4F5F6E); border-radius: 14px 14px 8px 8px; box-shadow: 0 18px 30px -12px rgba(0, 0, 0, .5); }
.sofa::before { content: ""; position: absolute; left: 6%; right: 6%; top: -30%; height: 45%; background: #7C8D9D; border-radius: 12px 12px 0 0; }
.table { left: 44%; top: 72%; width: 16%; height: 6%; background: #8B5E3C; border-radius: 50%; box-shadow: 0 10px 20px -8px rgba(0, 0, 0, .5); }
.plant { left: 88%; top: 40%; width: 6%; height: 30%; background: radial-gradient(circle at 50% 20%, #3E9B5A 0 42%, transparent 44%), linear-gradient(#6E4B2E, #6E4B2E) 50% 100% / 40% 40% no-repeat; }
.lamp { left: 47%; top: 14%; width: 10%; height: 8%; background: #FFF3C2; border-radius: 40% 40% 4px 4px; box-shadow: 0 0 40px 12px rgba(255, 216, 77, .35); }
.picture { left: 62%; top: 20%; width: 16%; height: 16%; background: linear-gradient(135deg, #22B8CF, #FFD84D); border: 5px solid #fff; box-shadow: 0 8px 16px -6px rgba(0, 0, 0, .3); border-radius: 3px; }

.hotspot {
  position: absolute; width: 26px; height: 26px; border-radius: 50%; border: 0; padding: 0;
  background: rgba(255, 255, 255, .9); box-shadow: 0 0 0 4px rgba(255, 255, 255, .35);
  transform: translate(-50%, -50%) scaleX(1.4) rotateX(60deg); z-index: 3;
}
.hotspot span { position: absolute; inset: 7px; border-radius: 50%; background: var(--teal); }
.hotspot::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid rgba(255, 255, 255, .7); animation: pulse 2s ease-out infinite; }
.hs-1 { left: 30%; top: 84%; }
.hs-2 { left: 66%; top: 92%; animation-delay: .4s; }
.hs-3 { left: 24%; top: 66%; }
@keyframes pulse { 0% { transform: scale(.7); opacity: 1; } 100% { transform: scale(1.6); opacity: 0; } }

.info-tag {
  position: absolute; left: 20%; top: 28%; z-index: 3;
  background: rgba(20, 32, 43, .88); color: #fff; padding: .55rem .85rem; border-radius: 10px;
  font-size: .78rem; line-height: 1.35; backdrop-filter: blur(6px);
  transform: translateY(-50%); box-shadow: var(--shadow);
  animation: floaty 5s ease-in-out infinite;
}
.info-tag strong { display: block; font-size: .85rem; }
.info-tag span { opacity: .8; }
.info-tag::after { content: ""; position: absolute; left: -8px; top: 50%; border: 6px solid transparent; border-right-color: rgba(20, 32, 43, .88); transform: translateY(-50%); }

.tour-ui {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 4;
  display: flex; align-items: center; justify-content: space-between; padding: .7rem .9rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, .55), transparent);
}
.tour-live { display: inline-flex; align-items: center; gap: .45rem; color: #fff; font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.tour-live i { width: 8px; height: 8px; border-radius: 50%; background: #3DDB84; box-shadow: 0 0 0 0 rgba(61, 219, 132, .6); animation: blink 1.8s infinite; }
@keyframes blink { 0% { box-shadow: 0 0 0 0 rgba(61, 219, 132, .6); } 70% { box-shadow: 0 0 0 8px rgba(61, 219, 132, 0); } 100% { box-shadow: 0 0 0 0 rgba(61, 219, 132, 0); } }
.tour-ui-right { display: flex; gap: .4rem; }
.tour-btn { width: 36px; height: 36px; border-radius: 10px; border: 1px solid rgba(255, 255, 255, .25); background: rgba(255, 255, 255, .12); color: #fff; display: grid; place-items: center; transition: background .2s; }
.tour-btn:hover { background: var(--teal); border-color: var(--teal); }
.tour-btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.float-card {
  position: absolute; display: flex; align-items: center; gap: .7rem;
  background: var(--surface); padding: .8rem 1rem; border-radius: 14px; box-shadow: var(--shadow-lg);
  font-size: .8rem; line-height: 1.2; animation: floaty 6s ease-in-out infinite; z-index: 5;
}
.float-card strong { display: block; font-family: var(--font-head); font-size: 1.15rem; }
.float-card small { color: var(--muted); }
.float-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--yellow-soft); display: grid; place-items: center; font-size: 1.1rem; }
.float-card-1 { top: -22px; right: -18px; }
.float-card-2 { bottom: -22px; left: -22px; animation-delay: -3s; }
.float-card-2 .float-icon { background: var(--teal-soft); }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ---------- Trust bar ---------- */
.trust { padding: 3.5rem 0 3rem; }
.trust-inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.trust p { margin: 0; font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.trust-logos { display: flex; align-items: center; gap: 2.5rem; }
.trust-logos img { height: 44px; width: auto; filter: grayscale(1); opacity: .6; mix-blend-mode: multiply; transition: filter .3s, opacity .3s; }
.trust-logos a:hover img { filter: none; opacity: 1; }
.trust-x { font-family: var(--font-head); font-size: 1.6rem; color: var(--muted); }

/* ---------- Grid & Cards ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.8rem; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card h3 { margin-top: 1.2rem; }
.card p { color: var(--muted); margin: 0; font-size: .98rem; }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: color-mix(in srgb, var(--c) 16%, #fff); color: var(--c);
}
.card-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Branchen ---------- */
.industry {
  background: var(--surface); border-radius: var(--radius); padding: 1.6rem; border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.industry:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.industry-visual { aspect-ratio: 3 / 2; border-radius: var(--radius-sm); background: color-mix(in srgb, var(--tint) 12%, #fff); margin-bottom: 1.3rem; overflow: hidden; }
.industry-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.industry:hover .industry-visual img { transform: scale(1.045); }
.industry-visual svg { width: 100%; height: auto; max-height: 110px; }
.i-fill { fill: color-mix(in srgb, var(--tint) 45%, #fff); }
.i-dark { fill: var(--tint); }
.i-light { fill: #fff; }
.i-line { fill: none; stroke: var(--tint); stroke-width: 3; stroke-linecap: round; }
.industry p { color: var(--muted); font-size: .97rem; }
.tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.tags li { font-size: .75rem; font-weight: 700; padding: .3rem .7rem; border-radius: 999px; background: var(--bg-alt); color: var(--ink-soft); }
.industry .tags li { background: color-mix(in srgb, var(--tint) 14%, #fff); color: color-mix(in srgb, var(--tint) 70%, #000); }

/* ---------- Features ---------- */
.feature-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.feature-copy > p { color: var(--muted); font-size: 1.08rem; max-width: 520px; }
.feature-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.1rem; }
.feature-list li { display: flex; gap: 1rem; align-items: flex-start; }
.feature-list strong { display: block; margin-bottom: .1rem; }
.feature-list span:not(.fl-icon) { color: var(--muted); font-size: .95rem; }
.fl-icon { flex: 0 0 44px; height: 44px; border-radius: 12px; background: var(--surface); border: 1px solid var(--line); display: grid; place-items: center; font-size: 1.2rem; }

.dollhouse { position: relative; aspect-ratio: 1; max-width: 460px; margin-inline: auto; perspective: 1000px; }
.dh-floor {
  position: absolute; left: 12%; width: 76%; aspect-ratio: 1.4; border-radius: 10px;
  transform: rotateX(58deg) rotateZ(-38deg); transform-style: preserve-3d;
  background: #fff; border: 2px solid var(--ink); box-shadow: 26px 36px 60px -20px rgba(20, 32, 43, .35);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; padding: 4px;
  animation: hover-floor 7s ease-in-out infinite;
}
.dh-floor-1 { top: 42%; }
.dh-floor-2 { top: 12%; animation-delay: -3.5s; grid-template-columns: 1fr 1fr; }
.dh-room { border-radius: 6px; border: 1.5px solid var(--ink); position: relative; }
.r1 { background: var(--teal-soft); grid-row: span 2; }
.r2 { background: var(--yellow-soft); grid-column: span 2; }
.r3 { background: var(--green-soft); grid-column: span 2; }
.r4 { background: var(--yellow-soft); }
.r5 { background: var(--teal-soft); }
.dh-room::after { content: ""; position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--teal); left: 50%; top: 50%; transform: translate(-50%, -50%); box-shadow: 0 0 0 4px rgba(34, 184, 207, .25); }
@keyframes hover-floor { 0%, 100% { translate: 0 0; } 50% { translate: 0 -10px; } }
.dh-label { position: absolute; background: var(--ink); color: #fff; font-size: .78rem; font-weight: 700; padding: .35rem .7rem; border-radius: 8px; box-shadow: var(--shadow); }
.dh-label-1 { right: 4%; bottom: 14%; }
.dh-label-2 { left: 2%; top: 8%; }
.dh-measure { position: absolute; left: 30%; top: 55%; width: 34%; height: 2px; background: var(--yellow); transform: rotate(-24deg); }
.dh-measure::before, .dh-measure::after { content: ""; position: absolute; top: -5px; width: 2px; height: 12px; background: var(--yellow); }
.dh-measure::before { left: 0; } .dh-measure::after { right: 0; }
.dh-measure span { position: absolute; left: 50%; top: -28px; transform: translateX(-50%); background: var(--yellow); color: var(--ink); font-size: .72rem; font-weight: 800; padding: .15rem .5rem; border-radius: 6px; }

/* ---------- Ablauf ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; counter-reset: step; position: relative; }
.step { background: var(--dark-2); border: 1px solid rgba(255, 255, 255, .08); border-radius: var(--radius); padding: 2.2rem 1.9rem; position: relative; overflow: hidden; transition: transform .35s var(--ease), border-color .3s; }
.step:hover { transform: translateY(-6px); border-color: rgba(34, 184, 207, .5); }
.step::before { content: ""; position: absolute; inset: 0 auto auto 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--teal), var(--yellow)); }
.step-num { font-family: var(--font-head); font-size: 3rem; font-weight: 700; color: var(--teal); line-height: 1; display: block; margin-bottom: 1rem; opacity: .9; }
.step p { margin: 0; font-size: .97rem; }

/* ---------- Pakete ---------- */
.pricing { align-items: stretch; }
.price-card { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.2rem 2rem; display: flex; flex-direction: column; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card.featured { border: 2px solid var(--ink); box-shadow: var(--shadow-lg); }
.price-card h3 { font-size: 1.5rem; margin-bottom: .2rem; }
.price-sub { color: var(--muted); font-size: .92rem; min-height: 2.9em; }
.price { font-family: var(--font-head); font-size: 2.4rem; font-weight: 700; margin: .6rem 0 1.4rem; }
.price span { font-size: 1rem; font-family: var(--font-body); font-weight: 600; color: var(--muted); margin-right: .2rem; }
.badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--yellow); color: var(--ink); font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: .35rem .9rem; border-radius: 999px; }
.check-list { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 2rem; flex: 1; }
.check-list li { position: relative; padding-left: 1.8rem; font-size: .95rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--green-soft); color: var(--green); font-size: .75rem; font-weight: 800; display: grid; place-items: center; }
.price-note { text-align: center; color: var(--muted); font-size: .88rem; margin-top: 2rem; }

/* ---------- Partner ---------- */
.partners { display: grid; grid-template-columns: 1fr auto 1fr; gap: 1.5rem; align-items: stretch; }
.partner-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.4rem 2.2rem; display: flex; flex-direction: column; }
.partner-logo { height: 56px; width: auto; object-fit: contain; object-position: left; margin-bottom: 1.6rem; mix-blend-mode: multiply; }
.partner-card p { color: var(--muted); flex: 1; }
.partner-plus { align-self: center; font-family: var(--font-head); font-size: 3rem; color: var(--teal); width: 64px; height: 64px; border-radius: 50%; background: var(--surface); border: 1px solid var(--line); display: grid; place-items: center; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: .8rem; overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 1.1rem 3.2rem 1.1rem 1.4rem; font-weight: 700; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 1.2rem; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; border-radius: 50%; background: var(--bg-alt); display: grid; place-items: center; font-weight: 700; color: var(--teal-dark); transition: transform .3s, background .3s; }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); background: var(--yellow); color: var(--ink); }
.faq details p { margin: 0; padding: 0 1.4rem 1.3rem; color: var(--muted); font-size: .97rem; }

/* ---------- Kontakt ---------- */
.section-contact { background: linear-gradient(160deg, var(--dark) 0%, #123645 60%, #16515E 100%); color: #fff; overflow: hidden; }
.section-contact::before { content: ""; position: absolute; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 216, 77, .18) 0%, rgba(255, 216, 77, 0) 65%); right: -140px; top: -120px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; position: relative; }
.contact-copy h2 { color: #fff; }
.contact-copy p { color: #B6C9D3; font-size: 1.08rem; }
.contact-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-list li { display: flex; align-items: center; gap: .9rem; font-weight: 600; }
.contact-list svg { width: 22px; height: 22px; fill: none; stroke: var(--yellow); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.contact-list a:hover { color: var(--yellow); }

.contact-form { background: var(--surface); color: var(--ink); border-radius: var(--radius); padding: 2.2rem; box-shadow: var(--shadow-lg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form label { display: flex; flex-direction: column; gap: .4rem; font-size: .85rem; font-weight: 700; margin-bottom: 1rem; }
.contact-form input, .contact-form select, .contact-form textarea {
  font: inherit; font-weight: 500; font-size: .97rem; color: var(--ink);
  padding: .8rem .95rem; border: 1.5px solid var(--line); border-radius: 10px; background: var(--bg);
  transition: border-color .2s, box-shadow .2s; width: 100%;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px var(--teal-soft); }
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form .invalid { border-color: #D9534F; }
.checkbox { flex-direction: row !important; align-items: flex-start; gap: .7rem !important; font-weight: 500 !important; color: var(--muted); }
.checkbox input { width: 18px; height: 18px; margin-top: .2rem; flex-shrink: 0; accent-color: var(--teal-dark); }
.checkbox a { text-decoration: underline; color: var(--teal-dark); }
.form-status { margin: .9rem 0 0; font-size: .9rem; font-weight: 600; min-height: 1.4em; }
.form-status.ok { color: var(--green); }
.form-status.err { color: #C0392B; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: #B6C2CC; padding: 4rem 0 1.6rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.footer-brand .brand { color: #fff; margin-bottom: 1rem; }
.footer-brand .brand-mark img { width: 36px; height: 36px; }
.footer-brand p { font-size: .92rem; max-width: 380px; }
.footer-nav { display: flex; flex-direction: column; gap: .5rem; }
.footer-nav h4 { color: #fff; margin-bottom: .4rem; }
.footer-nav a { font-size: .95rem; transition: color .2s; }
.footer-nav a:hover { color: var(--yellow); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.4rem; font-size: .85rem; }
.to-top { width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, .08); display: grid; place-items: center; color: #fff; transition: background .2s; }
.to-top:hover { background: var(--teal); }

/* ---------- Reveal Animations ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.grid .reveal:nth-child(2), .steps .reveal:nth-child(2) { transition-delay: .1s; }
.grid .reveal:nth-child(3), .steps .reveal:nth-child(3) { transition-delay: .2s; }
.grid .reveal:nth-child(4) { transition-delay: .05s; }
.grid .reveal:nth-child(5) { transition-delay: .15s; }
.grid .reveal:nth-child(6) { transition-delay: .25s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .scene-video { display: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .scene-video { display: none; }
  .hero-grid, .feature-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 1.5rem; max-width: 560px; }
  .feature-visual { order: -1; }
  .partners { grid-template-columns: 1fr; }
  .partner-plus { justify-self: center; }

  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--line); padding: .6rem 1.25rem 1.25rem;
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: transform .3s var(--ease), opacity .3s;
    box-shadow: 0 20px 40px -20px rgba(20, 32, 43, .3);
  }
  .main-nav.open { transform: none; opacity: 1; pointer-events: auto; }
  .main-nav a:not(.btn) { padding: .85rem 0; border-bottom: 1px solid var(--line); }
  .main-nav a:not(.btn)::after { display: none; }
  .main-nav .btn { margin-top: 1rem; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .grid-3 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .float-card-1 { right: 0; top: -16px; }
  .float-card-2 { left: 0; bottom: -16px; }
  .tour-frame { transform: none; }
  .trust-logos { gap: 1.4rem; }
  .trust-logos img { height: 34px; }
  .hero-actions .btn { width: 100%; }
  .contact-form { padding: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}
