/**
 * Hub34 Premium – Light B2B SaaS Design System
 * Inspired by Linear / Stripe / Vercel
 */
:root {
  --h34-bg: #f5f5f7;
  --h34-bg-elevated: #ffffff;
  --h34-bg-muted: #ebebed;
  --h34-text: #0f1419;
  --h34-text-secondary: #5c6578;
  --h34-text-tertiary: #8b95a8;
  --h34-border: rgba(15, 20, 25, 0.08);
  --h34-border-strong: rgba(15, 20, 25, 0.12);
  --h34-accent: #ff6b00;
  --h34-accent-hover: #e85f00;
  --h34-accent-soft: rgba(255, 107, 0, 0.1);
  --h34-accent-glow: rgba(255, 107, 0, 0.25);
  --h34-radius: 12px;
  --h34-radius-lg: 16px;
  --h34-radius-xl: 24px;
  --h34-shadow-sm: 0 1px 2px rgba(15, 20, 25, 0.04), 0 4px 12px rgba(15, 20, 25, 0.04);
  --h34-shadow: 0 4px 24px rgba(15, 20, 25, 0.06), 0 1px 3px rgba(15, 20, 25, 0.04);
  --h34-shadow-lg: 0 24px 64px rgba(15, 20, 25, 0.1), 0 8px 24px rgba(15, 20, 25, 0.06);
  --h34-font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --h34-max: 1200px;
  --h34-header-h: 72px;
  --h34-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body.hub-site {
  margin: 0;
  font-family: var(--h34-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--h34-text);
  background: var(--h34-bg);
  -webkit-font-smoothing: antialiased;
}

/* Legacy template ausblenden */
.hub-site .preloader,
.hub-site .top-header,
.hub-site .navbar-area,
.hub-site .inner-banner,
.hub-site .banner-area-three,
.hub-site .why-area,
.hub-site .services-area-two,
.hub-site .testimonial-area-two,
.hub-site .contact-card-area .contact-card:not(.h34-card) {
  display: none !important;
}

.hub-main {
  min-height: 60vh;
}

.h34-container {
  width: 100%;
  max-width: var(--h34-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .h34-container {
    padding: 0 2rem;
  }
}

/* ─── Header ─── */
.h34-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--h34-header-h);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--h34-ease), box-shadow 0.35s var(--h34-ease), border-color 0.35s;
}

.h34-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-bottom-color: var(--h34-border);
  box-shadow: var(--h34-shadow-sm);
}

.h34-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--h34-header-h);
  gap: 1rem;
}

.h34-nav {
  display: none;
  align-items: center;
  gap: 0.15rem;
}

@media (min-width: 992px) {
  .h34-nav {
    display: flex;
  }
}

.h34-nav a {
  position: relative;
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--h34-text-secondary);
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.25s var(--h34-ease), background 0.25s var(--h34-ease);
}

.h34-nav a::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.35rem;
  height: 2px;
  background: var(--h34-accent);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s var(--h34-ease);
}

.h34-nav a:hover {
  color: var(--h34-text);
  background: rgba(0, 0, 0, 0.03);
}

.h34-nav a.is-active {
  color: var(--h34-text);
  font-weight: 600;
}

.h34-nav a.is-active::after,
.h34-nav a:hover::after {
  transform: scaleX(1);
}

.h34-header-actions {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 992px) {
  .h34-header-actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.45rem;
  }
}

.h34-btn-header-alt {
  white-space: nowrap;
  padding-left: 0.85rem;
  padding-right: 0.85rem;
}

.h34-header-actions .h34-btn-ghost,
.h34-header-actions .h34-btn-secondary {
  font-weight: 600;
}

.h34-btn-login {
  border: 1px solid var(--h34-border, #e5e5ea);
  border-radius: 10px;
  padding: 0.55rem 1rem;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.h34-btn-login:hover {
  background: #f5f5f7;
  border-color: #d1d1d6;
  color: var(--h34-text-primary, #0f1419) !important;
}

.h34-hero-compact {
  padding-top: 2.5rem;
  padding-bottom: 1.5rem;
}

.h34-hero-compact .h34-h1 {
  margin-bottom: 0.75rem;
}

.h34-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--h34-border-strong);
  border-radius: 10px;
  background: var(--h34-bg-elevated);
  cursor: pointer;
  color: var(--h34-text);
}

@media (min-width: 992px) {
  .h34-menu-btn {
    display: none;
  }
}

.h34-mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 1001;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.h34-mobile-drawer.is-open {
  pointer-events: auto;
  opacity: 1;
}

.h34-mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 25, 0.4);
  backdrop-filter: blur(4px);
}

.h34-mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: var(--h34-bg-elevated);
  padding: 1.5rem;
  box-shadow: var(--h34-shadow-lg);
  transform: translateX(100%);
  transition: transform 0.35s var(--h34-ease);
  overflow-y: auto;
}

.h34-mobile-drawer.is-open .h34-mobile-panel {
  transform: translateX(0);
}

.h34-mobile-panel a {
  display: block;
  padding: 0.85rem 0;
  font-weight: 500;
  color: var(--h34-text);
  text-decoration: none;
  border-bottom: 1px solid var(--h34-border);
}

.h34-mobile-panel .h34-btn {
  width: 100%;
  margin-top: 0.75rem;
  justify-content: center;
}

.h34-page-offset {
  padding-top: var(--h34-header-h);
}

/* ─── Buttons ─── */
.h34-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 1.25rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform 0.2s var(--h34-ease), box-shadow 0.2s, background 0.2s, color 0.2s;
  white-space: nowrap;
}

.h34-btn:active {
  transform: scale(0.98);
}

.h34-btn-primary {
  background: var(--h34-accent);
  color: #fff !important;
  box-shadow: 0 1px 2px rgba(255, 107, 0, 0.2), 0 4px 14px var(--h34-accent-glow);
}

.h34-btn-primary:hover {
  background: var(--h34-accent-hover);
  color: #fff !important;
  box-shadow: 0 4px 20px var(--h34-accent-glow);
}

.h34-btn-secondary {
  background: var(--h34-bg-elevated);
  color: var(--h34-text) !important;
  border: 1px solid var(--h34-border-strong);
  box-shadow: var(--h34-shadow-sm);
}

.h34-btn-secondary:hover {
  background: var(--h34-bg-muted);
  border-color: var(--h34-text-tertiary);
}

.h34-btn-ghost {
  background: transparent;
  color: var(--h34-text-secondary) !important;
}

.h34-btn-ghost:hover {
  color: var(--h34-text) !important;
  background: var(--h34-bg-muted);
}

.h34-btn-lg {
  padding: 0.9rem 1.5rem;
  font-size: 0.95rem;
  border-radius: 12px;
}

/* ─── Badge ─── */
.h34-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--h34-accent);
  background: var(--h34-accent-soft);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 999px;
}

/* ─── Typography sections ─── */
.h34-section {
  padding: clamp(4rem, 10vw, 6.5rem) 0;
}

.h34-section-tight {
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.h34-section-header {
  max-width: 640px;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.h34-section-header.is-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.h34-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--h34-accent);
  margin-bottom: 0.75rem;
}

.h34-h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--h34-text);
  margin: 0 0 1.25rem;
}

.h34-h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--h34-text);
  margin: 0 0 0.75rem;
}

.h34-lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.65;
  color: var(--h34-text-secondary);
  margin: 0;
  max-width: 540px;
}

.h34-section-header.is-center .h34-lead {
  margin-left: auto;
  margin-right: auto;
}

/* ─── Hero ─── */
.h34-hero {
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(4rem, 10vw, 6rem);
  position: relative;
  overflow: hidden;
}

.h34-hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(255, 107, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.h34-hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .h34-hero-grid {
    grid-template-columns: 0.92fr 1.18fr;
    gap: 3.5rem;
  }

  .h34-home .h34-hero-visual {
    margin-right: -0.5rem;
  }
}

.h34-kpi-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--h34-border);
}

@media (min-width: 576px) {
  .h34-kpi-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.h34-kpi strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--h34-text);
}

.h34-kpi span {
  font-size: 0.78rem;
  color: var(--h34-text-tertiary);
  font-weight: 500;
}

/* Dashboard mockup */
.h34-mockup {
  position: relative;
  border-radius: var(--h34-radius-xl);
  background: var(--h34-bg-elevated);
  border: 1px solid var(--h34-border);
  box-shadow: var(--h34-shadow-lg);
  overflow: hidden;
}

.h34-mockup-chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1rem;
  background: var(--h34-bg-muted);
  border-bottom: 1px solid var(--h34-border);
}

.h34-mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--h34-border-strong);
}

.h34-mockup-dot:nth-child(1) {
  background: #ff5f57;
}
.h34-mockup-dot:nth-child(2) {
  background: #febc2e;
}
.h34-mockup-dot:nth-child(3) {
  background: #28c840;
}

.h34-mockup-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 320px;
}

@media (max-width: 575px) {
  .h34-mockup-body {
    grid-template-columns: 1fr;
  }
  .h34-mockup-sidebar {
    display: none;
  }
}

.h34-mockup-sidebar {
  padding: 1rem;
  border-right: 1px solid var(--h34-border);
  background: #fafbfc;
}

.h34-mockup-nav-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.65rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--h34-text-secondary);
  border-radius: 8px;
  margin-bottom: 0.25rem;
}

.h34-mockup-nav-item.is-active {
  background: var(--h34-accent-soft);
  color: var(--h34-accent);
  font-weight: 600;
}

.h34-mockup-main {
  padding: 1.25rem;
}

.h34-mockup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.h34-mockup-stat {
  padding: 0.85rem;
  background: var(--h34-bg-muted);
  border-radius: var(--h34-radius);
  border: 1px solid var(--h34-border);
}

.h34-mockup-stat label {
  font-size: 0.65rem;
  color: var(--h34-text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.h34-mockup-stat b {
  display: block;
  font-size: 1.1rem;
  margin-top: 0.25rem;
}

.h34-mockup-chart {
  height: 120px;
  background: linear-gradient(180deg, var(--h34-accent-soft) 0%, transparent 100%);
  border-radius: var(--h34-radius);
  border: 1px solid var(--h34-border);
  position: relative;
  overflow: hidden;
}

.h34-mockup-chart::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 80' preserveAspectRatio='none'%3E%3Cpath fill='%23FF6B00' fill-opacity='0.35' d='M0 80 L0 50 L50 45 L100 55 L150 30 L200 40 L250 20 L300 35 L350 15 L400 25 L400 80 Z'/%3E%3C/svg%3E")
    bottom / 100% 100% no-repeat;
}

.h34-mockup-float {
  position: absolute;
  bottom: -12px;
  left: -12px;
  padding: 0.75rem 1rem;
  background: var(--h34-bg-elevated);
  border: 1px solid var(--h34-border);
  border-radius: var(--h34-radius);
  box-shadow: var(--h34-shadow);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.h34-mockup-float i {
  color: #22c55e;
}

/* ─── Cards grid ─── */
.h34-grid {
  display: grid;
  gap: 1.25rem;
}

.h34-grid-3 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .h34-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .h34-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.h34-grid-2 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .h34-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.h34-card {
  background: var(--h34-bg-elevated);
  border: 1px solid var(--h34-border);
  border-radius: var(--h34-radius-lg);
  padding: 1.75rem;
  box-shadow: var(--h34-shadow-sm);
  transition: transform 0.3s var(--h34-ease), box-shadow 0.3s var(--h34-ease), border-color 0.3s;
}

.h34-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--h34-shadow);
  border-color: var(--h34-border-strong);
}

.h34-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--h34-accent-soft);
  color: var(--h34-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1.15rem;
}

.h34-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--h34-text);
}

.h34-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--h34-text-secondary);
  line-height: 1.6;
}

/* Horizontal feature cards */
.h34-feature-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .h34-feature-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .h34-feature-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.h34-feature-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: var(--h34-bg-elevated);
  border: 1px solid var(--h34-border);
  border-radius: var(--h34-radius-lg);
  transition: box-shadow 0.3s var(--h34-ease);
}

.h34-feature-card:hover {
  box-shadow: var(--h34-shadow);
}

.h34-feature-card .num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--h34-accent);
}

.h34-feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.h34-feature-card p {
  font-size: 0.85rem;
  color: var(--h34-text-secondary);
  margin: 0;
}

/* SaaS platform section */
.h34-platform {
  background: var(--h34-bg-elevated);
  border-top: 1px solid var(--h34-border);
  border-bottom: 1px solid var(--h34-border);
}

.h34-platform-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 992px) {
  .h34-platform-grid {
    grid-template-columns: 1fr 1.1fr;
  }
}

.h34-platform-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.h34-platform-tab {
  padding: 0.45rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid var(--h34-border);
  background: transparent;
  color: var(--h34-text-secondary);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.h34-platform-tab.is-active {
  background: var(--h34-text);
  color: #fff;
  border-color: var(--h34-text);
}

.h34-platform-preview {
  border-radius: var(--h34-radius-xl);
  border: 1px solid var(--h34-border);
  background: var(--h34-bg-muted);
  padding: 1rem;
  box-shadow: var(--h34-shadow-lg);
}

.h34-preview-pane {
  display: none;
  animation: h34Fade 0.4s var(--h34-ease);
}

.h34-preview-pane.is-active {
  display: block;
}

@keyframes h34Fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.h34-preview-ui {
  background: #fff;
  border-radius: var(--h34-radius);
  border: 1px solid var(--h34-border);
  padding: 1.25rem;
  min-height: 280px;
}

.h34-preview-ui .row-ui {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--h34-border);
  font-size: 0.85rem;
}

.h34-preview-ui .row-ui:last-child {
  border-bottom: none;
}

.h34-preview-ui .pill {
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-weight: 600;
  background: #dcfce7;
  color: #166534;
}

.h34-preview-ui .pill.orange {
  background: var(--h34-accent-soft);
  color: var(--h34-accent);
}

/* Career teaser */
.h34-career-teaser {
  background: linear-gradient(135deg, #fff 0%, #f7f8fa 100%);
  border: 1px solid var(--h34-border);
  border-radius: var(--h34-radius-xl);
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: var(--h34-shadow);
}

.h34-benefits-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .h34-benefits-mini {
    grid-template-columns: repeat(3, 1fr);
  }
}

.h34-benefit-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  background: var(--h34-bg-muted);
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--h34-text-secondary);
}

.h34-benefit-chip i {
  color: var(--h34-accent);
}

/* Page hero (inner) */
.h34-page-hero {
  padding: 3rem 0 2rem;
  text-align: center;
}

.h34-breadcrumb {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: var(--h34-text-tertiary);
}

.h34-breadcrumb a {
  color: var(--h34-text-secondary);
  text-decoration: none;
}

.h34-breadcrumb a:hover {
  color: var(--h34-accent);
}

/* Funnel (jobs) */
.h34-funnel {
  max-width: 720px;
  margin: 0 auto;
  background: var(--h34-bg-elevated);
  border: 1px solid var(--h34-border);
  border-radius: var(--h34-radius-xl);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--h34-shadow-lg);
}

.h34-progress-head {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--h34-text-secondary);
  margin-bottom: 0.5rem;
}

.h34-progress-track {
  height: 6px;
  background: var(--h34-bg-muted);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.h34-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--h34-accent), #ff9a4d);
  border-radius: 999px;
  width: 25%;
  transition: width 0.45s var(--h34-ease);
}

.h34-funnel .section {
  display: none;
}

.h34-funnel .section.is-active {
  display: block;
  animation: h34Fade 0.4s var(--h34-ease);
}

.h34-step-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.35rem;
  text-align: center;
}

.h34-step-desc {
  text-align: center;
  color: var(--h34-text-secondary);
  font-size: 0.95rem;
  margin: 0 0 1.75rem;
}

.h34-options {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(2, 1fr);
}

.h34-options.cols-3 {
  grid-template-columns: 1fr;
}

@media (min-width: 480px) {
  .h34-options.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.h34-option-wrap {
  position: relative;
}

.h34-option-wrap input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.h34-option-label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--h34-text-secondary);
  background: var(--h34-bg);
  border: 2px solid var(--h34-border);
  border-radius: var(--h34-radius);
  cursor: pointer;
  transition: all 0.2s var(--h34-ease);
  margin: 0;
}

.h34-option-label:hover {
  border-color: rgba(255, 107, 0, 0.35);
  color: var(--h34-text);
  box-shadow: var(--h34-shadow-sm);
  transform: translateY(-1px);
}

.h34-option-wrap input:checked + .h34-option-label {
  border-color: var(--h34-accent);
  background: var(--h34-accent-soft);
  color: var(--h34-accent);
  box-shadow: 0 0 0 1px var(--h34-accent);
}

.h34-field {
  margin-bottom: 1rem;
}

.h34-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--h34-text-tertiary);
  margin-bottom: 0.4rem;
}

.h34-field input,
.h34-field select,
.h34-field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  border: 1px solid var(--h34-border-strong);
  border-radius: var(--h34-radius);
  background: var(--h34-bg);
  color: var(--h34-text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.h34-field input:focus,
.h34-field select:focus,
.h34-field textarea:focus {
  outline: none;
  border-color: var(--h34-accent);
  box-shadow: 0 0 0 3px var(--h34-accent-glow);
}

.h34-field textarea {
  min-height: 100px;
  resize: vertical;
}

.h34-form-grid {
  display: grid;
  gap: 0;
}

@media (min-width: 576px) {
  .h34-form-grid.two {
    grid-template-columns: 1fr 1fr;
    gap: 0 1rem;
  }
}

.h34-funnel-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  gap: 1rem;
}

.h34-funnel-nav .is-hidden {
  visibility: hidden;
  pointer-events: none;
}

#h34-nav-default {
  margin-top: 0;
}

/* FAQ */
.h34-faq .accordion-item {
  background: var(--h34-bg-elevated) !important;
  border: 1px solid var(--h34-border) !important;
  border-radius: var(--h34-radius) !important;
  margin-bottom: 0.65rem !important;
  overflow: hidden;
}

.h34-faq .accordion-button {
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  padding: 1.15rem 1.25rem !important;
  background: transparent !important;
  color: var(--h34-text) !important;
  box-shadow: none !important;
}

.h34-faq .accordion-button:not(.collapsed) {
  color: var(--h34-accent) !important;
  background: var(--h34-accent-soft) !important;
}

.h34-faq .accordion-body {
  padding: 0 1.25rem 1.15rem !important;
  color: var(--h34-text-secondary) !important;
  line-height: 1.65 !important;
}

/* Contact */
.h34-contact-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .h34-contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* CTA strip */
.h34-cta {
  text-align: center;
  padding: clamp(3rem, 8vw, 4.5rem) 0;
  background: var(--h34-text);
  color: #fff;
  border-radius: 0;
}

.h34-cta .h34-h2 {
  color: #fff;
}

.h34-cta p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  margin: 0 auto 1.5rem;
}

.h34-cta .h34-btn-primary {
  background: var(--h34-accent);
}

/* Footer */
.h34-footer {
  background: var(--h34-bg-elevated);
  border-top: 1px solid var(--h34-border);
  padding: 3rem 0 0;
}

.h34-footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) and (max-width: 991px) {
  .h34-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 2.5rem;
  }

  .h34-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (min-width: 992px) {
  .h34-footer-grid {
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 0 3rem;
    align-items: start;
  }
}

/* IT-Recht Logos Spalte */
.h34-footer-legal h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--h34-text-tertiary);
  margin: 0 0 1rem;
}

.h34-footer-itrk-logos {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
}

.h34-footer-itrk-logos a {
  display: inline-flex;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.h34-footer-itrk-logos a:hover {
  opacity: 1;
}

.h34-footer-itrk-logos img {
  height: 80px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  display: block;
}

.h34-footer-legal__headline {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--h34-text);
  margin: 0 0 0.4rem;
}

.h34-footer-legal__sub {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--h34-text);
  margin: 0 0 1.25rem;
}

.h34-footer-brand p {
  color: var(--h34-text-secondary);
  font-size: 0.9rem;
  max-width: 320px;
  margin: 1rem 0;
}

.h34-footer h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--h34-text-tertiary);
  margin: 0 0 1rem;
}

.h34-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.h34-footer ul li {
  margin-bottom: 0.5rem;
}

.h34-footer ul a {
  color: var(--h34-text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.h34-footer ul a:hover {
  color: var(--h34-accent);
}

.h34-footer-bottom {
  margin-top: 3rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--h34-border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--h34-text-tertiary);
}

.h34-footer-social {
  display: flex;
  gap: 0.5rem;
}

.h34-footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--h34-border);
  border-radius: 8px;
  color: var(--h34-text-secondary);
  transition: all 0.2s;
}

.h34-footer-social a:hover {
  border-color: var(--h34-accent);
  color: var(--h34-accent);
}

/* Reveal animation */
.h34-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--h34-ease), transform 0.6s var(--h34-ease);
}

.h34-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── v2: Hero Team Photo + KPI Floats ─── */
.h34-hero-compact {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.h34-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

.h34-hero-visual {
  position: relative;
}

.h34-hero-photo-wrap {
  position: relative;
  border-radius: var(--h34-radius-xl);
  overflow: hidden;
  box-shadow: var(--h34-shadow-lg);
  border: 1px solid var(--h34-border);
  background: var(--h34-bg-muted);
}

.h34-hero-photo-wrap.h34-about-photo {
  max-height: 420px;
}

.h34-hero-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: center 20%;
}

.h34-float-card {
  position: absolute;
  padding: 0.65rem 0.9rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--h34-border);
  border-radius: var(--h34-radius);
  box-shadow: var(--h34-shadow);
  min-width: 110px;
  animation: h34Float 4s var(--h34-ease) infinite alternate;
}

.h34-float-card strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--h34-text);
  line-height: 1.2;
}

.h34-float-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--h34-text-tertiary);
}

.h34-float-1 { top: 12%; left: -4%; animation-delay: 0s; }
.h34-float-2 { top: 8%; right: 4%; animation-delay: 0.5s; }
.h34-float-3 { bottom: 18%; left: 2%; animation-delay: 1s; }
.h34-float-4 { bottom: 10%; right: -2%; animation-delay: 1.5s; }

.h34-hero-photo--agent {
  object-position: 22% center;
}

.h34-hero-photo-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    transparent 45%,
    rgba(255, 107, 0, 0.06) 70%,
    rgba(15, 20, 25, 0.18) 100%
  );
}

/* Hero: Vektor-Illustration (ohne KPI-Overlays) */
.h34-hero-illus-wrap {
  position: relative;
  border-radius: var(--h34-radius-xl);
  overflow: hidden;
  border: 1px solid var(--h34-border);
  box-shadow: var(--h34-shadow-lg);
  background: var(--h34-bg-muted);
  line-height: 0;
}

.h34-hero-illus-wrap .h34-hero-illus,
.h34-hero-illus-wrap > svg {
  display: block;
  width: 100%;
  height: auto;
  min-height: 300px;
  aspect-ratio: 4 / 3;
}

.h34-hero-photo--office {
  object-fit: cover;
  object-position: center 38%;
  min-height: 320px;
}

@media (min-width: 992px) {
  .h34-home .h34-hero-photo-wrap {
    min-height: 400px;
  }

  .h34-home .h34-hero-photo--office {
    min-height: 400px;
    max-height: 520px;
  }
}

@media (min-width: 1200px) {
  .h34-home .h34-hero-photo--office {
    min-height: 440px;
  }
}

@keyframes h34Float {
  from { transform: translateY(0); }
  to { transform: translateY(-6px); }
}

@media (max-width: 991px) {
  .h34-float-card {
    display: none;
  }
  .h34-hero-photo {
    min-height: 280px;
  }
}

.h34-section-muted {
  background: var(--h34-bg-muted);
}

.h34-h3 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
}

.h34-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.h34-trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--h34-text-secondary);
  background: var(--h34-bg-elevated);
  border: 1px solid var(--h34-border);
  border-radius: 999px;
  box-shadow: var(--h34-shadow-sm);
}

.h34-trust-badges i {
  color: var(--h34-accent);
  font-size: 0.85rem;
}

.h34-career-block {
  padding: 0;
}

.h34-career-visual {
  position: relative;
  border-radius: var(--h34-radius-xl);
  overflow: hidden;
  border: 1px solid var(--h34-border);
  box-shadow: var(--h34-shadow-lg);
  background: var(--h34-bg-muted);
  line-height: 0;
}

.h34-career-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 38%;
}

@media (min-width: 992px) {
  .h34-career-photo {
    min-height: 320px;
  }
}

.h34-career-funnel-preview {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  z-index: 2;
}

.h34-career-funnel-preview span {
  flex: 1;
  min-width: 5.5rem;
  text-align: center;
  padding: 0.55rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 1px solid var(--h34-border);
  color: var(--h34-text-secondary);
  box-shadow: var(--h34-shadow-sm);
}

.h34-career-funnel-preview span:last-child {
  color: var(--h34-accent);
  border-color: rgba(255, 107, 0, 0.35);
}

.h34-step-preview {
  background: var(--h34-bg-elevated);
  border: 1px solid var(--h34-border);
  border-radius: var(--h34-radius-xl);
  padding: 1.5rem;
  box-shadow: var(--h34-shadow);
}

.h34-step-preview-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--h34-border);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--h34-text-secondary);
}

.h34-step-preview-item:last-child {
  border-bottom: none;
}

.h34-step-preview-item span {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--h34-bg-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.h34-step-preview-item.is-done {
  color: var(--h34-text);
}

.h34-step-preview-item.is-done span {
  background: var(--h34-accent-soft);
  color: var(--h34-accent);
}

.h34-step-card {
  padding: 0.25rem 0;
}

.h34-options-lg .h34-option-label {
  flex-direction: column;
  align-items: flex-start;
  min-height: 72px;
  padding: 1rem 1.15rem;
}

.h34-option-title {
  font-weight: 700;
  font-size: 1rem;
}

.h34-option-sub {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--h34-text-tertiary);
  margin-top: 0.2rem;
}

.h34-option-wrap input:checked + .h34-option-label .h34-option-sub {
  color: var(--h34-accent);
  opacity: 0.85;
}

.h34-options.cols-2 {
  grid-template-columns: 1fr;
}

@media (min-width: 480px) {
  .h34-options.cols-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.h34-form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--h34-text-tertiary);
  margin-top: 1rem;
}

.h34-contact-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.h34-contact-stack .h34-card a {
  color: var(--h34-text);
  font-weight: 600;
  text-decoration: none;
}

.h34-contact-stack .h34-card a:hover {
  color: var(--h34-accent);
}

.h34-legal-partner {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--h34-border);
}

.h34-legal-partner:empty {
  min-height: 0;
}

.h34-cta.is-center {
  text-align: center;
}

.h34-cta.is-center .h34-lead {
  margin-left: auto;
  margin-right: auto;
}

/* Hide legacy mockup (removed from pages) */
.h34-mockup,
.h34-platform,
.h34-platform-preview-wrap {
  display: none !important;
}

/* Legacy accordion on services */
.hub-site .faq-accordion .accordion-title {
  background: var(--h34-bg-elevated) !important;
  color: var(--h34-text) !important;
  border: 1px solid var(--h34-border) !important;
  border-radius: var(--h34-radius) !important;
  margin-bottom: 0.5rem;
  padding: 1rem 1.25rem !important;
}

.hub-site .faq-accordion .accordion-content {
  background: var(--h34-bg-muted) !important;
  border: 1px solid var(--h34-border) !important;
  color: var(--h34-text-secondary) !important;
  border-radius: 0 0 var(--h34-radius) var(--h34-radius) !important;
  padding: 1rem 1.25rem !important;
}

.hub-site .blockquote {
  border-left: 4px solid var(--h34-accent);
  padding: 1.5rem 2rem;
  background: var(--h34-bg-elevated);
  border-radius: var(--h34-radius-lg);
  box-shadow: var(--h34-shadow-sm);
}

.hub-site .blockquote h3 {
  font-size: 1.15rem;
  margin: 0;
  color: var(--h34-text);
}

.h34-form-card .alert {
  border-radius: var(--h34-radius);
}
