:root {
  --bg: #f7f4ef;
  --bg-soft: #fffaf3;
  --text: #0c111d;
  --muted: #667085;
  --white: #ffffff;
  --black: #07090d;
  --orange: #ff7a00;
  --orange-dark: #d85f00;
  --orange-soft: rgba(255, 122, 0, 0.13);
  --green: #13b981;
  --line: rgba(12, 17, 29, 0.09);
  --shadow: 0 28px 90px rgba(12, 17, 29, 0.13);
  --shadow-soft: 0 18px 50px rgba(12, 17, 29, 0.08);
  --radius: 30px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 122, 0, 0.16), transparent 32%),
    radial-gradient(circle at 90% 8%, rgba(255, 255, 255, 0.92), transparent 30%),
    linear-gradient(180deg, #fffaf3 0%, #f7f4ef 42%, #ffffff 100%);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
.site-shell { overflow: hidden; }

.topbar {
  background: var(--black);
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: -0.01em;
}
.topbar-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 9px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar strong { color: white; }
.topbar a { color: #ffb168; }

.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(12, 17, 29, 0.07);
  background: rgba(255, 250, 243, 0.82);
  backdrop-filter: blur(24px);
}
.nav-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 15px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 48%, #ff7a00 49%, #ffb168 100%);
  box-shadow: 0 16px 35px rgba(255, 122, 0, 0.24);
  overflow: hidden;
}
.brand-mark::before {
  content: "";
  position: absolute;
  width: 28px;
  height: 9px;
  background: var(--black);
  border-radius: 999px;
  transform: rotate(42deg);
  left: 5px;
  top: 21px;
  opacity: 0.92;
}
.brand-name {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.055em;
  color: var(--black);
}
.brand-name span { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #344054;
  font-size: 14px;
  font-weight: 760;
}
.nav-links a {
  position: relative;
  transition: 0.2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
  transition: 0.25s ease;
}
.nav-links a:hover { color: var(--black); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 10px; }

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: white;
  cursor: pointer;
  font-size: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 830;
  font-size: 15px;
  white-space: nowrap;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.btn-primary {
  color: white;
  background: linear-gradient(180deg, var(--orange), var(--orange-dark));
  box-shadow: 0 16px 38px rgba(255, 122, 0, 0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 24px 55px rgba(255, 122, 0, 0.34); }
.btn-secondary {
  color: var(--black);
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(12,17,29,0.09);
  box-shadow: 0 12px 30px rgba(12, 17, 29, 0.06);
}
.btn-secondary:hover { transform: translateY(-2px); background: white; }
.btn-dark { color: white; background: var(--black); }
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 18px 45px rgba(7,9,13,.24); }

.mobile-panel {
  display: none;
  position: fixed;
  z-index: 99;
  inset: 0;
  background: rgba(7,9,13,.58);
  backdrop-filter: blur(10px);
  padding: 18px;
}
.mobile-panel.active { display: block; }
.mobile-card {
  background: white;
  border-radius: 28px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}
.mobile-card a { padding: 14px; border-radius: 16px; background: #f8fafc; font-weight: 800; }

.hero {
  max-width: 1220px;
  margin: 0 auto;
  padding: 88px 22px 56px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 54px;
  align-items: center;
  min-height: 780px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(12,17,29,.08);
  box-shadow: 0 14px 35px rgba(12,17,29,.07);
  font-size: 14px;
  font-weight: 820;
  color: #344054;
  margin-bottom: 24px;
}
.pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(19,185,129,.12);
}
h1 {
  font-size: clamp(50px, 7.4vw, 92px);
  line-height: .91;
  letter-spacing: -.082em;
  margin-bottom: 26px;
}
.orange-text { color: var(--orange); }
.hero-lead {
  color: #475467;
  font-size: clamp(19px, 2vw, 24px);
  letter-spacing: -.025em;
  max-width: 720px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; align-items: center; margin-bottom: 28px; }
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 14px 18px;
  color: #667085;
  font-size: 14px;
  font-weight: 740;
}
.trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.check {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 950;
}
.hero-visual { position: relative; isolation: isolate; }
.tour-device {
  border-radius: 42px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.62));
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--shadow);
  transform: perspective(1000px) rotateY(-5deg) rotateX(3deg);
}
.tour-screen {
  min-height: 560px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(180deg, rgba(7,9,13,.08), rgba(7,9,13,.84)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1400&q=85") center/cover;
  color: white;
}
.tour-screen::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  pointer-events: none;
}
.tour-toolbar {
  position: relative;
  z-index: 2;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.window-dots { display: flex; gap: 7px; }
.dot { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.42); }
.tour-chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(7,9,13,.42);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(16px);
  font-size: 12px;
  font-weight: 820;
  color: rgba(255,255,255,.86);
}
.hotspot {
  position: absolute;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,122,0,.92);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 0 0 12px rgba(255,122,0,.18), 0 18px 45px rgba(0,0,0,.24);
  animation: pulseHotspot 2.4s infinite;
}
.hotspot.one { left: 23%; top: 45%; }
.hotspot.two { right: 19%; top: 34%; animation-delay: .4s; }
.hotspot.three { right: 33%; bottom: 28%; animation-delay: .8s; }
@keyframes pulseHotspot {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
.play-orbit {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
  pointer-events: none;
}
.play {
  width: 116px;
  height: 116px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--black);
  display: grid;
  place-items: center;
  font-size: 42px;
  font-weight: 900;
  box-shadow: 0 28px 70px rgba(0,0,0,.32);
  backdrop-filter: blur(18px);
  pointer-events: auto;
  cursor: pointer;
}
.tour-caption {
  position: absolute;
  z-index: 4;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 22px;
  border-radius: 25px;
  background: rgba(7,9,13,.62);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(20px);
}
.tour-caption h3 { font-size: 26px; line-height: 1; letter-spacing: -.045em; margin-bottom: 8px; }
.tour-caption p { color: rgba(255,255,255,.75); font-weight: 650; font-size: 14px; max-width: 420px; }
.floating-proof {
  position: absolute;
  z-index: 8;
  left: -26px;
  bottom: 48px;
  width: 255px;
  border-radius: 25px;
  padding: 18px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.88);
  box-shadow: 0 24px 65px rgba(12,17,29,.17);
  backdrop-filter: blur(22px);
}
.floating-proof strong { display: block; font-size: 31px; letter-spacing: -.055em; line-height: 1; margin-bottom: 6px; }
.floating-proof p { color: #667085; font-weight: 700; font-size: 13px; }

.section { max-width: 1220px; margin: 0 auto; padding: 88px 22px; }
.section-head { max-width: 840px; margin: 0 auto 44px; text-align: center; }
.eyebrow { color: var(--orange-dark); font-weight: 930; letter-spacing: .1em; text-transform: uppercase; font-size: 13px; margin-bottom: 13px; }
h2 { font-size: clamp(38px, 5.2vw, 66px); line-height: .97; letter-spacing: -.07em; margin-bottom: 18px; }
.section-head p { color: #667085; font-size: 20px; letter-spacing: -.02em; }

.logo-strip {
  max-width: 1220px;
  margin: 0 auto;
  padding: 10px 22px 42px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.logo-pill {
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(12,17,29,.08);
  border-radius: 22px;
  padding: 17px 14px;
  text-align: center;
  color: #667085;
  font-weight: 840;
  font-size: 14px;
  box-shadow: 0 12px 35px rgba(12,17,29,.05);
}
.logo-pill:hover { color: var(--black); transform: translateY(-2px); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.card {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.92);
  border-radius: var(--radius);
  padding: 31px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  transition: .25s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 30px 80px rgba(12,17,29,.12); }
.icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: var(--orange-soft);
  color: var(--orange-dark);
  display: grid;
  place-items: center;
  font-size: 25px;
  margin-bottom: 22px;
}
.card h3 { font-size: 26px; line-height: 1.08; letter-spacing: -.045em; margin-bottom: 12px; }
.card p { color: #667085; font-size: 16px; font-weight: 560; }

.dark-band {
  background: var(--black);
  color: white;
  border-radius: 46px;
  padding: 58px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
  align-items: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.dark-band::after {
  content: "";
  position: absolute;
  right: -150px;
  top: -150px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,122,0,.42), transparent 66%);
}
.dark-band > * { position: relative; z-index: 2; }
.dark-band h2 { color: white; }
.dark-band p { color: rgba(255,255,255,.72); font-size: 19px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.stat { padding: 25px; border-radius: 26px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.11); }
.stat strong { display: block; font-size: 39px; line-height: 1; letter-spacing: -.06em; margin-bottom: 7px; }
.stat span { color: rgba(255,255,255,.62); font-weight: 760; font-size: 14px; }

.showcase { display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; align-items: stretch; }
.showcase-main {
  min-height: 560px;
  border-radius: 38px;
  padding: 32px;
  color: white;
  background:
    linear-gradient(180deg, rgba(7,9,13,.04), rgba(7,9,13,.86)),
    url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=1500&q=85") center/cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.showcase-main h3 { font-size: clamp(34px, 4vw, 56px); line-height: .97; letter-spacing: -.065em; margin-bottom: 13px; max-width: 620px; }
.showcase-main p { color: rgba(255,255,255,.76); max-width: 620px; font-size: 18px; font-weight: 600; }
.showcase-side { display: grid; gap: 18px; }
.side-card { border-radius: 32px; padding: 28px; background: rgba(255,255,255,.82); border: 1px solid rgba(255,255,255,.92); box-shadow: var(--shadow-soft); }
.side-card strong { display: block; font-size: 24px; letter-spacing: -.045em; margin-bottom: 8px; }
.side-card p { color: #667085; font-weight: 560; }
.mini-link {
  margin-top: 14px;
  border: 0;
  background: transparent;
  color: var(--orange-dark);
  font-weight: 900;
  cursor: pointer;
}

.tabs {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.92);
  border-radius: 38px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}
.tab-buttons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 18px; }
.tab-btn {
  border: 1px solid rgba(12,17,29,.08);
  background: white;
  border-radius: 999px;
  padding: 13px 14px;
  cursor: pointer;
  font-weight: 850;
  color: #344054;
  transition: .2s ease;
}
.tab-btn.active { background: var(--black); color: white; border-color: var(--black); }
.tab-panel {
  display: none;
  min-height: 390px;
  border-radius: 28px;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(12,17,29,.06);
}
.tab-panel.active { display: grid; grid-template-columns: .9fr 1.1fr; }
.tab-copy { padding: 36px; }
.tab-copy h3 { font-size: 36px; line-height: 1; letter-spacing: -.06em; margin-bottom: 14px; }
.tab-copy p { color: #667085; font-size: 17px; font-weight: 560; margin-bottom: 18px; }
.tab-copy ul { display: grid; gap: 10px; list-style: none; color: #344054; font-weight: 760; margin-bottom: 22px; }
.tab-copy li::before { content: "✓"; color: var(--orange); margin-right: 9px; font-weight: 950; }
.tab-image { min-height: 390px; background-size: cover; background-position: center; }
.img-hotel { background-image: linear-gradient(180deg, rgba(7,9,13,.08), rgba(7,9,13,.28)), url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1300&q=85"); }
.img-praxis { background-image: linear-gradient(180deg, rgba(7,9,13,.08), rgba(7,9,13,.28)), url("https://images.unsplash.com/photo-1629909613654-28e377c37b09?auto=format&fit=crop&w=1300&q=85"); }
.img-showroom { background-image: linear-gradient(180deg, rgba(7,9,13,.08), rgba(7,9,13,.28)), url("https://images.unsplash.com/photo-1567016432779-094069958ea5?auto=format&fit=crop&w=1300&q=85"); }
.img-fitness { background-image: linear-gradient(180deg, rgba(7,9,13,.08), rgba(7,9,13,.28)), url("https://images.unsplash.com/photo-1534438327276-14e5300c3a48?auto=format&fit=crop&w=1300&q=85"); }

.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: step; }
.step { counter-increment: step; position: relative; overflow: hidden; }
.step::before {
  content: "0" counter(step);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--black);
  color: white;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 930;
  margin-bottom: 26px;
}

.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card { position: relative; }
.price-card.featured { background: var(--black); color: white; transform: translateY(-8px); }
.price-card.featured p, .price-card.featured li { color: rgba(255,255,255,.72); }
.price-label { display: inline-flex; margin-bottom: 18px; padding: 7px 11px; border-radius: 999px; background: var(--orange-soft); color: var(--orange-dark); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.featured .price-label { background: rgba(255,122,0,.18); color: #ffb168; }
.price { font-size: 42px; letter-spacing: -.06em; font-weight: 950; margin: 18px 0 4px; }
.price small { font-size: 15px; color: #98a2b3; letter-spacing: 0; }
.price-card ul { list-style: none; display: grid; gap: 11px; margin: 24px 0; color: #475467; font-weight: 690; }
.price-card li::before { content: "✓"; color: var(--orange); margin-right: 9px; font-weight: 950; }

.landing { padding-top: 30px; padding-bottom: 30px; }
.landing-card {
  min-height: 470px;
  color: white;
  border-radius: 44px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  overflow: hidden;
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
}
.landing-card h2 { color: white; max-width: 800px; }
.landing-card p { color: rgba(255,255,255,.78); font-size: 20px; max-width: 720px; margin-bottom: 24px; font-weight: 620; }
.img-hotel-bg { background-image: linear-gradient(180deg, rgba(7,9,13,.05), rgba(7,9,13,.82)), url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1500&q=85"); }
.img-praxis-bg { background-image: linear-gradient(180deg, rgba(7,9,13,.05), rgba(7,9,13,.82)), url("https://images.unsplash.com/photo-1629909613654-28e377c37b09?auto=format&fit=crop&w=1500&q=85"); }
.img-showroom-bg { background-image: linear-gradient(180deg, rgba(7,9,13,.05), rgba(7,9,13,.82)), url("https://images.unsplash.com/photo-1567016432779-094069958ea5?auto=format&fit=crop&w=1500&q=85"); }
.img-fitness-bg { background-image: linear-gradient(180deg, rgba(7,9,13,.05), rgba(7,9,13,.82)), url("https://images.unsplash.com/photo-1534438327276-14e5300c3a48?auto=format&fit=crop&w=1500&q=85"); }
.img-immobilien-bg { background-image: linear-gradient(180deg, rgba(7,9,13,.05), rgba(7,9,13,.82)), url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1500&q=85"); }

.faq { display: grid; gap: 12px; max-width: 900px; margin: 0 auto; }
.faq-item { background: rgba(255,255,255,.82); border: 1px solid rgba(12,17,29,.08); border-radius: 24px; overflow: hidden; box-shadow: 0 12px 35px rgba(12,17,29,.05); }
.faq-q { width: 100%; text-align: left; border: 0; background: transparent; padding: 22px 24px; cursor: pointer; font-weight: 900; font-size: 18px; display: flex; justify-content: space-between; gap: 16px; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-a p { padding: 0 24px 22px; color: #667085; font-weight: 560; }
.faq-item.active .faq-a { max-height: 180px; }
.faq-item.active .faq-q span { transform: rotate(45deg); }

.contact-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 18px; align-items: start; }
.contact-card { background: var(--black); color: white; border-radius: 38px; padding: 36px; box-shadow: var(--shadow); position: sticky; top: 92px; }
.contact-card h2 { color: white; }
.contact-card p { color: rgba(255,255,255,.72); font-size: 18px; margin-bottom: 22px; }
.contact-list { display: grid; gap: 14px; margin-top: 24px; }
.contact-list div { padding: 16px; border-radius: 20px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.78); font-weight: 700; }

.form {
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(255,255,255,.92);
  border-radius: 38px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 14px;
}
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 13px; color: #344054; font-weight: 850; }
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid rgba(12,17,29,.11);
  background: white;
  border-radius: 18px;
  padding: 14px 15px;
  outline: none;
  color: var(--text);
  transition: .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--orange); box-shadow: 0 0 0 5px rgba(255,122,0,.12); }
textarea { min-height: 132px; resize: vertical; }
.form-note { color: #667085; font-size: 13px; font-weight: 600; }
.success-message { display: none; padding: 16px; border-radius: 18px; background: rgba(19,185,129,.12); color: #067647; font-weight: 800; }
.success-message.active { display: block; }
.hidden-field { display: none !important; }
.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #667085;
  font-size: 13px;
  font-weight: 650;
}
.privacy-check input { margin-top: 4px; }
.privacy-check a { color: var(--orange-dark); font-weight: 900; }

footer { background: var(--black); color: white; }
.footer-inner { max-width: 1220px; margin: 0 auto; padding: 58px 22px 32px; display: grid; grid-template-columns: 1.1fr repeat(3, .7fr); gap: 32px; }
.footer-brand p { color: rgba(255,255,255,.62); margin-top: 14px; max-width: 360px; font-weight: 560; }
.footer-col h4 { color: white; margin-bottom: 14px; font-size: 14px; text-transform: uppercase; letter-spacing: .09em; }
.footer-col a { display: block; color: rgba(255,255,255,.62); margin: 9px 0; font-weight: 650; }
.footer-col a:hover { color: var(--orange); }
.subfooter { max-width: 1220px; margin: 0 auto; padding: 22px; border-top: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.48); font-size: 14px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(7,9,13,.62);
  backdrop-filter: blur(12px);
}
.modal.active { display: flex; }
.modal-card { max-width: 560px; width: 100%; background: white; border-radius: 34px; padding: 30px; box-shadow: var(--shadow); position: relative; }
.modal-card h3 { font-size: 34px; line-height: 1; letter-spacing: -.06em; margin-bottom: 10px; }
.modal-card p { color: #667085; margin-bottom: 18px; font-weight: 560; }
.close-modal { position: absolute; right: 18px; top: 18px; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: white; cursor: pointer; font-size: 22px; }

.legal-page {
  max-width: 980px;
  margin: 0 auto;
  padding: 86px 22px;
}
.legal-page h1 {
  font-size: clamp(42px, 5vw, 72px);
  margin-bottom: 18px;
}
.legal-page h2 {
  font-size: 30px;
  margin: 34px 0 12px;
  letter-spacing: -.04em;
}
.legal-page p, .legal-page li {
  color: #475467;
  font-weight: 560;
  margin-bottom: 10px;
}
.legal-page ul { padding-left: 20px; }
.legal-note {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 122, 0, 0.10);
  border: 1px solid rgba(255, 122, 0, 0.18);
  color: #8a3d00;
  font-weight: 800;
  margin: 24px 0;
}

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .nav-links, .nav-actions .btn-secondary { display: none; }
  .menu-btn { display: inline-grid; place-items: center; }
  .hero, .dark-band, .showcase, .tab-panel.active, .contact-wrap { grid-template-columns: 1fr; }
  .hero { min-height: unset; padding-top: 64px; }
  .tour-device { transform: none; }
  .grid-3, .grid-2, .process, .pricing, .stats, .footer-inner, .logo-strip { grid-template-columns: 1fr; }
  .contact-card { position: relative; top: 0; }
  .floating-proof { position: static; width: 100%; margin-top: 16px; }
  .tab-buttons { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 620px) {
  .topbar-inner { display: block; text-align: center; }
  .topbar-inner span:last-child { display: none; }
  .nav-inner { padding: 13px 16px; }
  .brand-name { font-size: 20px; }
  .hero, .section { padding-left: 16px; padding-right: 16px; }
  h1 { font-size: 52px; }
  h2 { font-size: 40px; }
  .tour-screen { min-height: 455px; }
  .trust-row { grid-template-columns: 1fr; }
  .dark-band { padding: 34px 24px; border-radius: 34px; }
  .form-row { grid-template-columns: 1fr; }
  .tab-buttons { grid-template-columns: 1fr; }
  .footer-inner { padding-top: 42px; }
  .landing-card { padding: 30px 22px; border-radius: 32px; min-height: 430px; }
}

/* Neue Trust-Abschnitte: Portfolio, Über mich, Testimonials, Pilotkunde */

.portfolio-demo {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  align-items: stretch;
}

.portfolio-preview {
  border-radius: 38px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.62));
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--shadow);
}

.portfolio-screen {
  min-height: 520px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(180deg, rgba(7,9,13,.08), rgba(7,9,13,.86)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1400&q=85") center/cover;
  color: white;
}

.portfolio-screen::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  pointer-events: none;
}

.portfolio-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
  pointer-events: none;
}

.portfolio-play .play {
  pointer-events: auto;
}

.portfolio-caption {
  position: absolute;
  z-index: 4;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 24px;
  border-radius: 25px;
  background: rgba(7,9,13,.64);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(20px);
}

.portfolio-caption span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,122,0,.18);
  color: #ffb168;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.portfolio-caption h3 {
  font-size: 30px;
  line-height: 1;
  letter-spacing: -.055em;
  margin-bottom: 9px;
}

.portfolio-caption p {
  color: rgba(255,255,255,.74);
  font-weight: 620;
  max-width: 560px;
}

.portfolio-copy {
  border-radius: 38px;
  padding: 34px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.92);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.portfolio-copy h3 {
  font-size: clamp(34px, 4vw, 50px);
  line-height: .98;
  letter-spacing: -.065em;
  margin-bottom: 16px;
}

.portfolio-copy p {
  color: #667085;
  font-size: 18px;
  font-weight: 560;
  margin-bottom: 22px;
}

.proof-list {
  display: grid;
  gap: 12px;
  margin: 8px 0 26px;
}

.proof-list div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 15px;
  border-radius: 20px;
  background: rgba(255,122,0,.08);
  border: 1px solid rgba(255,122,0,.12);
}

.proof-list strong {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--black);
  color: white;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 930;
}

.proof-list span {
  color: #475467;
  font-weight: 720;
}

.founder-card {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 18px;
  align-items: stretch;
  padding: 18px;
  border-radius: 44px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.92);
  box-shadow: var(--shadow-soft);
}

.founder-image {
  border-radius: 32px;
  overflow: hidden;
  min-height: 520px;
  background: var(--black);
}

.founder-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.founder-copy {
  padding: 38px;
  border-radius: 32px;
  background: var(--black);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-copy h2 {
  color: white;
}

.founder-copy p {
  color: rgba(255,255,255,.72);
  font-size: 18px;
  font-weight: 560;
  margin-bottom: 24px;
}

.founder-points {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.founder-points div {
  padding: 17px;
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
}

.founder-points strong {
  display: block;
  color: white;
  font-size: 17px;
  margin-bottom: 4px;
}

.founder-points span {
  display: block;
  color: rgba(255,255,255,.66);
  font-weight: 620;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-card {
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.92);
  border-radius: 32px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
}

.testimonial-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,122,0,.10);
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.testimonial-card p {
  color: #344054;
  font-size: 19px;
  line-height: 1.45;
  font-weight: 650;
  letter-spacing: -.02em;
  margin-bottom: 24px;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 18px;
  border-top: 1px solid rgba(12,17,29,.08);
}

.avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--black);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 950;
}

.testimonial-person strong {
  display: block;
  color: var(--black);
  font-weight: 900;
}

.testimonial-person span {
  display: block;
  color: #667085;
  font-size: 14px;
  font-weight: 650;
}

.pilot-card {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: stretch;
  border-radius: 46px;
  padding: 48px;
  background:
    radial-gradient(circle at 90% 10%, rgba(255,122,0,.34), transparent 32%),
    var(--black);
  color: white;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.pilot-copy h2 {
  color: white;
  max-width: 760px;
}

.pilot-copy p {
  color: rgba(255,255,255,.72);
  font-size: 19px;
  font-weight: 560;
  margin-bottom: 24px;
  max-width: 760px;
}

.pilot-copy ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.pilot-copy li {
  color: rgba(255,255,255,.78);
  font-weight: 700;
}

.pilot-copy li::before {
  content: "✓";
  color: var(--orange);
  margin-right: 9px;
  font-weight: 950;
}

.pilot-action {
  border-radius: 32px;
  padding: 30px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.13);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pilot-action strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -.055em;
  margin-bottom: 12px;
}

.pilot-action p {
  color: rgba(255,255,255,.68);
  font-weight: 620;
  margin-bottom: 24px;
}

@media (max-width: 980px) {
  .portfolio-demo,
  .founder-card,
  .testimonials-grid,
  .pilot-card {
    grid-template-columns: 1fr;
  }

  .founder-image {
    min-height: 420px;
  }

  .portfolio-screen {
    min-height: 460px;
  }
}

@media (max-width: 620px) {
  .portfolio-copy,
  .founder-copy,
  .pilot-card {
    padding: 28px 22px;
  }

  .founder-card {
    border-radius: 34px;
    padding: 12px;
  }

  .founder-image {
    border-radius: 26px;
    min-height: 360px;
  }

  .portfolio-preview {
    padding: 12px;
    border-radius: 32px;
  }

  .portfolio-screen {
    min-height: 430px;
    border-radius: 24px;
  }

  .portfolio-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 18px;
  }

  .portfolio-caption h3 {
    font-size: 24px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .pilot-card {
    border-radius: 34px;
  }
}