/* ============================================================
   WEIDTKE DIGITAL — Design System
   Fonts: LT Remark (display) + Inter (body/UI)
   ============================================================ */

@font-face {
  font-family: 'LT Remark';
  src: url('../fonts/LT Remark.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


/* ─── Tokens ──────────────────────────────────────────────── */
:root {
  --dark:       #0a1015;
  --dark-2:     #161e26;
  --white:      #ffffff;
  --bg-light:   #f7f8fa;
  --border:     #dde0e4;
  --text:       #1a2128;
  --text-muted: #5a6370;
  --text-light: #cecfd0;
  --accent-peach: #ffe1cb;
  --accent-blue:  #c5dffb;
  --max-w: 1200px;
  --nav-h: 72px;
}

/* ─── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'Inter', sans-serif; font-size: 16px; line-height: 1.6; color: var(--text); background: var(--white); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1,h2,h3,h4 { line-height: 1.15; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ─── Typography ──────────────────────────────────────────── */
.font-display { font-family: 'LT Remark', serif; font-weight: 400; }
.label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.label-light { color: var(--text-light); opacity: 0.7; }

/* ─── Layout ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
section { padding: 96px 0; }
section.tight { padding: 64px 0; }
section.dark { background: var(--dark); color: var(--white); }
section.light-bg { background: var(--bg-light); }

/* ─── Navigation ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.2s, box-shadow 0.2s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav.dark-mode { color: var(--white); }
.nav.dark-mode.scrolled { color: var(--text); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.nav-logo {
  font-family: 'LT Remark', serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  opacity: 0.85;
  transition: opacity 0.15s;
}
.nav-links a:hover { opacity: 1; }
.nav-links a.active { opacity: 1; font-weight: 500; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 0;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.15s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--dark);
  color: var(--white);
}
.btn-primary:hover { background: #1a2d3d; transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--dark); background: var(--bg-light); }
.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); }
.btn-white {
  background: var(--white);
  color: var(--dark);
}
.btn-white:hover { background: var(--bg-light); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: #1a2a36; }
.btn-sm { padding: 8px 16px; font-size: 0.8rem; }
.btn-lg { padding: 15px 32px; font-size: 1rem; }

/* ─── Hero ────────────────────────────────────────────────── */
.hero {
  background: #000;
  color: var(--white);
  padding: 0;
}
.hero .container { padding: 0; }
.hero-wrap {
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 80px) 32px 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  z-index: 0;
}
.hero-wrap > .hero-inner { width: 100%; }
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.hero-wrap::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(197,223,251,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.hero-wrap > .hero-inner { position: relative; z-index: 2; }
.hero-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.hero-actions { justify-content: center; }
.hero h1 {
  font-family: 'LT Remark', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: var(--accent-peach); }
.hero-sub {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── Section Titles ──────────────────────────────────────── */
.section-head {
  margin-bottom: 56px;
}
.section-head .label { margin-bottom: 12px; }
.section-head h2 {
  font-family: 'LT Remark', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.section-head p {
  margin-top: 16px;
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 560px;
}
.section-head.center { text-align: center; }
.section-head.center p { margin: 16px auto 0; }

/* ─── Cards ───────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 32px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: 0 8px 32px rgba(10,16,21,0.08); transform: translateY(-2px); }
.card.dark {
  background: var(--dark);
  border-color: rgba(255,255,255,0.1);
  color: var(--white);
}
.card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.card p { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.65; }
.card.dark p { color: var(--text-light); }

/* ─── Features Section ────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.feature-big {
  grid-column: span 2;
  background: var(--bg-light);
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  min-height: 420px;
}
.feature-big-content {
  flex: 1;
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 480px;
}
.feature-big-content h3 {
  font-family: 'LT Remark', serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--text);
}
.feature-big-content p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.65; }
.feature-big-media {
  flex: 1;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-peach) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}
.feature-big-media img { width: 100%; max-width: 420px; }
.feature-small {
  background: var(--bg-light);
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.feature-small-media {
  background: var(--bg-light);
  height: 280px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.feature-small-media img { width: 100%; height: 100%; object-fit: contain; }
.feature-small-content { padding: 24px 32px 32px; }
.feature-small-content h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; color: var(--text); }
.feature-small-content p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.05);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 8px 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─── Process Tabs ────────────────────────────────────────── */
.process-tabs { display: flex; gap: 0; border-bottom: 1px solid var(--border); margin-bottom: 48px; justify-content: center; }
.process-tab-btn {
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.15s;
  cursor: pointer;
  background: none;
  border-top: none; border-left: none; border-right: none;
  font-family: inherit;
}
.process-tab-btn.active { color: var(--dark); border-bottom-color: var(--dark); }
.process-tab-btn:hover:not(.active) { color: var(--text); }
.process-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.process-image-wrap { background: var(--bg-light); border-radius: 0; overflow: hidden; aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; }
.process-img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.process-content { position: relative; }
.process-panel { display: none; }
.process-panel.active { display: block; }
.process-pre { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px; }
.process-panel h3 {
  font-family: 'LT Remark', serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 16px;
}
.process-panel p { color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }

/* ─── Calculator ──────────────────────────────────────────── */
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.calc-inputs { display: flex; flex-direction: column; gap: 32px; }
.calc-label { font-size: 0.875rem; font-weight: 500; color: var(--text-light); margin-bottom: 10px; }
.calc-slider-wrap { display: flex; align-items: center; gap: 16px; }
.calc-val {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0;
  padding: 6px 12px;
  font-size: 0.9rem;
  color: var(--white);
  min-width: 56px;
  text-align: center;
}
input[type="range"] {
  -webkit-appearance: none;
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 0;
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.calc-result {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0;
  padding: 40px;
}
.calc-result-big {
  font-family: 'LT Remark', serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--accent-peach);
  line-height: 1;
  margin-bottom: 8px;
}
.calc-result-label { font-size: 0.85rem; color: var(--text-light); margin-bottom: 24px; }
.calc-savings {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
}
.calc-savings strong { color: var(--white); }

/* ─── Stats Row ───────────────────────────────────────────── */
.stats-row {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.stat-value {
  font-family: 'LT Remark', serif;
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.875rem; color: var(--text-muted); }
section.dark .stat-label { color: var(--text-light); }
section.dark .stat-value { color: var(--white); }

/* ─── Branchen ─────────────────────────────────────────────── */
.branchen-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: stretch; min-height: 520px; }
.branchen-scatter-wrap {
  position: relative;
  height: auto;
  background: linear-gradient(160deg, var(--accent-blue) 0%, #f0e8ff 50%, var(--accent-peach) 100%);
  border-radius: 0;
  overflow: hidden;
}
.branchen-scatter { position: relative; width: 100%; height: 100%; }
.bcard {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: rotate(var(--r));
  background: var(--white);
  border-radius: 0;
  padding: 10px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.branchen-content { display: flex; flex-direction: column; align-items: flex-start; }
.branchen-accordion { margin-top: 8px; }
.branchen-item { border-bottom: 1px solid var(--border); }
.branchen-item-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: color 0.15s;
}
.branchen-item.open .branchen-item-header { color: var(--text); }
.branchen-icon { font-size: 1.25rem; font-weight: 300; flex-shrink: 0; }
.branchen-item-body {
  display: none;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-bottom: 24px;
}
.branchen-item.open .branchen-item-body { display: block; }

/* ─── Benefits Grid ───────────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.benefit-card {
  padding: 40px 32px;
  border: 1px solid var(--border);
  margin: -1px 0 0 -1px;
}
.benefit-icon-box {
  width: 44px;
  height: 44px;
  background: var(--dark);
  color: var(--white);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 24px;
}
.benefit-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 10px; }
.benefit-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* ─── Comparison ──────────────────────────────────────────── */
.vergleich-box {
  background: var(--dark);
  border-radius: 0;
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
}
.vergleich-box::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(200,130,60,0.35) 0%, rgba(180,100,40,0.15) 40%, transparent 70%);
  pointer-events: none;
}
.vergleich-box .section-head h2 { color: var(--white); }
.vergleich-box .section-head p { color: var(--text-light); }
.comparison-table {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 0;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  position: relative;
  z-index: 1;
}
.comparison-divider { background: rgba(255,255,255,0.14); }
.comparison-col-inner { padding: 40px; }
.comparison-col-inner h3 {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-align: center;
  margin-bottom: 32px;
  text-transform: none;
  letter-spacing: 0;
}
.comparison-col-inner.weidtke h3 { color: var(--white); }
.comparison-item {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.9rem;
  line-height: 1.5;
  align-items: flex-start;
  color: rgba(255,255,255,0.75);
}
.comparison-item:last-child { border-bottom: none; }
.cmp-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.cmp-no { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.4); }
.cmp-yes { background: rgba(100,200,120,0.2); color: #6dc87a; }

/* ─── Testimonials ────────────────────────────────────────── */
.testimonials-list { display: flex; flex-direction: column; gap: 16px; }
.testimonial-card {
  display: flex;
  border-radius: 0;
  overflow: hidden;
  min-height: 280px;
}
.testimonial-logo-panel {
  width: 280px;
  flex-shrink: 0;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 36px;
}
.testimonial-logo-panel img { max-width: 160px; max-height: 60px; object-fit: contain; }
.testimonial-body {
  flex: 1;
  background: var(--bg-light);
  padding: 48px;
  display: flex;
  align-items: center;
}
.testimonial-body p { font-size: 0.9375rem; line-height: 1.75; color: var(--text); }

/* ─── Pricing ─────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pricing-card {
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 40px;
  background: var(--white);
}
.pricing-card.featured {
  background: var(--dark);
  border-color: transparent;
  color: var(--white);
}
.pricing-tag { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px; }
.pricing-card.featured .pricing-tag { color: var(--accent-peach); }
.pricing-card h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 8px; }
.pricing-card.featured h3 { color: var(--white); }
.pricing-desc { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 28px; line-height: 1.6; }
.pricing-card.featured .pricing-desc { color: var(--text-light); }
.pricing-price {
  font-family: 'LT Remark', serif;
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-period { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 28px; }
.pricing-card.featured .pricing-period { color: var(--text-light); }
.pricing-features { display: flex; flex-direction: column; gap: 10px; margin: 28px 0 32px; }
.pricing-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: var(--text-muted); line-height: 1.5; }
.pricing-card.featured .pricing-feature { color: var(--text-light); }
.pricing-feature::before { content: '→'; flex-shrink: 0; color: var(--text-muted); }
.pricing-card.featured .pricing-feature::before { color: var(--accent-peach); }

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  color: var(--text);
  gap: 16px;
  transition: color 0.15s;
}
.faq-question:hover { color: var(--dark); }
.faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: transform 0.2s, background 0.15s;
  color: var(--text-muted);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--dark); color: var(--white); border-color: var(--dark); }
.faq-answer { display: none; padding-bottom: 20px; font-size: 0.9375rem; color: var(--text-muted); line-height: 1.75; }
.faq-item.open .faq-answer { display: block; }

/* ─── Footer CTA ──────────────────────────────────────────── */
.footer-cta {
  background: var(--dark);
  color: var(--white);
  padding: 96px 0;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.footer-cta-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  pointer-events: none;
  user-select: none;
}
.footer-cta .container { position: relative; z-index: 1; }
.footer-cta h2 {
  font-family: 'LT Remark', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  max-width: 700px;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.footer-cta p { color: var(--text-light); max-width: 480px; margin: 0 0 40px; }
.footer-cta-actions { display: flex; gap: 12px; justify-content: flex-start; flex-wrap: wrap; }

/* ─── Footer ──────────────────────────────────────────────── */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 48px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand h3 {
  font-family: 'LT Remark', serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 12px;
}
.footer-brand p { font-size: 0.875rem; color: var(--text-light); line-height: 1.6; max-width: 280px; }
.footer-col h4 { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); opacity: 0.6; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.875rem; color: var(--text-light); transition: color 0.15s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.8125rem;
  transition: color 0.15s;
}
.footer-social a:hover { color: var(--white); }

/* ─── Use Cases Page ──────────────────────────────────────── */
.use-case-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.use-case-pill {
  padding: 7px 16px;
  border-radius: 0;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-light);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.15s;
}
.use-case-pill:hover, .use-case-pill.active {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.use-case-card {
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 48px;
  margin-bottom: 32px;
}
.use-case-category { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px; }
.use-case-card h2 { font-family: 'LT Remark', serif; font-size: 1.75rem; font-weight: 400; margin-bottom: 24px; }
.use-case-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.use-case-meta-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.use-case-meta-val { font-size: 0.9375rem; color: var(--text); line-height: 1.6; }
.use-case-steps { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.use-case-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  background: var(--bg-light);
  border-radius: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}
.step-num {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--dark);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}

/* ─── Contact Page ────────────────────────────────────────── */
/* ─── Contact hero section ────────────────────────────────── */
.contact-hero-section {
  background: #000;
  color: var(--white);
  padding: 0;
}
.contact-hero-section .container { padding: 0; }
.contact-hero-wrap {
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 64px) 32px 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.contact-hero-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5, 15, 30, 0.55);
  pointer-events: none;
  z-index: 1;
}
.contact-hero-wrap .hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 1;
  pointer-events: none;
}
.contact-hero-wrap { z-index: 0; }
.contact-hero-wrap > .contact-grid { position: relative; z-index: 2; width: 100%; }
.contact-hero-section .label { color: rgba(255,255,255,0.55); }
.contact-hero-section .contact-info h1,
.contact-hero-section .contact-info h2 { color: var(--white); }
.contact-hero-section .contact-info p { color: var(--text-light); }
.contact-hero-section .contact-detail { color: var(--text-light); }
.contact-hero-section .contact-detail a { color: var(--text-light); }
.contact-hero-section .contact-detail-icon { color: rgba(255,255,255,0.4); }

.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.contact-info { padding-top: 8px; }
.contact-info h1,
.contact-info h2 { font-family: 'LT Remark', serif; font-size: 2.5rem; font-weight: 400; margin-bottom: 12px; }
.contact-info p { color: var(--text-muted); margin-bottom: 32px; font-size: 1.0625rem; }
.contact-detail { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: 0.9rem; }
.contact-detail-icon { color: var(--text-muted); width: 20px; flex-shrink: 0; margin-top: 1px; }
.contact-form { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 0; padding: 48px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 8px; }
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 0;
  font-size: 0.9375rem;
  background: var(--white);
  outline: none;
  transition: border-color 0.15s;
}
.form-input:focus { border-color: var(--dark); }
textarea.form-input { resize: vertical; min-height: 120px; }
/* Dark form inputs inside contact hero */
.contact-hero-section .form-label { color: rgba(255,255,255,0.8); }
.contact-hero-section .form-input {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: var(--white);
}
.contact-hero-section .form-input::placeholder { color: rgba(255,255,255,0.35); }
.contact-hero-section .form-input:focus { border-color: rgba(255,255,255,0.45); }
.contact-hero-section .form-note { color: rgba(255,255,255,0.4); }
.contact-hero-section .form-note a { color: rgba(255,255,255,0.6); }
.form-note { font-size: 0.8125rem; color: var(--text-muted); margin-top: 12px; line-height: 1.5; }
.form-note a { text-decoration: underline; }
.form-submit { width: 100%; }

/* ─── Legal Pages ─────────────────────────────────────────── */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 96px;
}
.legal-content h1 { font-family: 'LT Remark', serif; font-size: 2.5rem; font-weight: 400; margin-bottom: 32px; }
.legal-content h2 { font-size: 1.125rem; font-weight: 600; margin: 32px 0 12px; }
.legal-content p { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.legal-content a { color: var(--dark); text-decoration: underline; }

/* ─── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  background: #000;
  color: var(--white);
  padding: 0;
}
.page-hero .container { padding: 0; }
.page-hero-wrap {
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 80px) 32px 100px;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
}
.page-hero-wrap .hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  width: 100%;
}
.page-hero h1 {
  font-family: 'LT Remark', serif;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.page-hero p { color: var(--text-light); font-size: 1.0625rem; line-height: 1.7; padding-bottom: 6px; }


/* ─── About Page ──────────────────────────────────────────── */
.credo-section { padding: 96px 0; }
.credo-quote {
  font-family: 'LT Remark', serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  line-height: 1.35;
  max-width: 860px;
  letter-spacing: -0.01em;
}
.credo-quote em { font-style: italic; color: var(--text-muted); }

/* ─── Founder ─────────────────────────────────────────────── */
.founder-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}
.founder-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: grayscale(100%);
}
.founder-name {
  font-family: 'LT Remark', serif;
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 4px;
}
.founder-role {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.founder-bio p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.founder-bio p:last-child { margin-bottom: 0; }
.founder-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.founder-stat-value {
  font-family: 'LT Remark', serif;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 4px;
}
.founder-stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ─── Client Logos ────────────────────────────────────────── */
.client-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  padding: 48px 0;
}
.client-logos img {
  height: 28px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: opacity 0.2s;
}
.client-logos img:hover { opacity: 0.8; }
.client-logos span {
  font-size: 0.9375rem;
  font-weight: 500;
  opacity: 0.5;
  color: var(--text);
}

.about-team {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.about-team-text h2 { font-family: 'LT Remark', serif; font-size: 2.25rem; font-weight: 400; margin-bottom: 20px; }
.about-team-text p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.75; margin-bottom: 16px; }

/* ─── Zahlen & Fakten (About) ─────────────────────────────── */
.zahlen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
  margin-top: 48px;
}
.zahlen-card {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  border-right: 1px solid var(--border);
}
.zahlen-card:last-child { border-right: none; }
.zahlen-dark { background: var(--dark); color: var(--white); }
.zahlen-logo { font-family: 'LT Remark', serif; font-size: 1.1rem; font-weight: 400; }
.zahlen-price {
  font-family: 'LT Remark', serif;
  font-size: 2.75rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: auto 0;
}
.zahlen-caption { font-size: 0.8125rem; color: rgba(255,255,255,0.45); }
.zahlen-header { display: flex; align-items: flex-start; justify-content: space-between; }
.zahlen-value {
  font-family: 'LT Remark', serif;
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}
.zahlen-unit { font-size: 0.8125rem; color: var(--text-muted); margin-top: 4px; text-align: right; }
.zahlen-footer { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-top: auto; }
.zahlen-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }
.zahlen-icon { font-size: 1.25rem; flex-shrink: 0; }

/* ─── About Mission ───────────────────────────────────────── */
.about-mission-box {
  background: var(--dark);
  border-radius: 0;
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
}
.about-mission-box::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 30%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.about-mission-left h2 {
  font-family: 'LT Remark', serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.02em;
}
.about-mission-right p {
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
.about-mission-right p:last-child { margin-bottom: 0; }

/* ─── Careers Page ────────────────────────────────────────── */
.careers-empty {
  text-align: center;
  padding: 80px 32px;
  border: 1px dashed var(--border);
  border-radius: 0;
  color: var(--text-muted);
}
.careers-empty h3 { font-size: 1.1rem; font-weight: 500; margin-bottom: 8px; }
.careers-empty p { font-size: 0.9rem; }

/* ─── Tablet ──────────────────────────────────────────────── */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero h1 { font-size: clamp(2.6rem, 5vw, 3.4rem); }
  .section-head h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .zahlen-grid { grid-template-columns: 1fr 1fr; }
  .zahlen-card:nth-child(2n) { border-right: none; }
  .zahlen-card:nth-child(2n+1) { border-right: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-layout { gap: 40px; }
  .branchen-layout { gap: 40px; }
  .pricing-grid { gap: 16px; }
  .page-hero-inner { gap: 40px; }
  .contact-grid { gap: 48px; }
  .use-case-card { padding: 32px; }
}

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-big { grid-column: auto; flex-direction: column; min-height: auto; }
  .feature-big-content { max-width: 100%; padding: 36px; }
  .feature-big-media { min-height: 280px; }
  .calc-grid { grid-template-columns: 1fr; }
  .comparison-table { grid-template-columns: 1fr; }
  .comparison-divider { height: 1px; width: 100%; }
  .about-team { grid-template-columns: 1fr; }
  .founder-grid { grid-template-columns: 1fr; }
  .founder-photo { max-width: 240px; }
  .founder-stats { gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ─── Mobile Nav ──────────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: inherit;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: all 0.2s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  height: calc(100vh - var(--nav-h));
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  padding: 32px 24px;
  overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 400;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
  opacity: 0.85;
}
.nav-mobile a:hover { opacity: 1; }
.nav-mobile .nav-mobile-cta {
  margin-top: 28px;
  border: none;
  text-align: center;
  justify-content: center;
}

/* ─── Utilities ──────────────────────────────────────────── */
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.text-white { color: var(--white); }
.inline-flex { display: inline-flex; }

/* Semantic component helpers */
.feature-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.use-case-how-label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.legal-content-wrap {
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 80px;
}
.calc-loss-meta {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 8px;
}
.label-dim {
  color: rgba(255,255,255,0.45);
}
.text-sm-muted {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ─── Skip to Content ────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 8px 16px;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 0 0 6px 6px;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* ─── Language Switcher ───────────────────────────────────── */
.nav-lang {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
}
.nav-lang a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 6px;
  opacity: 0.5;
  transition: opacity 0.15s;
  color: inherit;
}
.nav-lang a:hover { opacity: 1; }
.nav-lang a.active { opacity: 1; }
.nav-lang a + a { border-left: 1px solid rgba(255,255,255,0.2); }
.nav:not(.dark-mode) .nav-lang a + a { border-left-color: rgba(0,0,0,0.2); }

.nav-mobile-lang {
  display: flex;
  gap: 0;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-mobile .nav-mobile-lang a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  padding: 4px 10px;
  opacity: 0.5;
  border: none;
}
.nav-mobile .nav-mobile-lang a:hover { opacity: 1; }
.nav-mobile .nav-mobile-lang a.active { opacity: 1; }
.nav-mobile .nav-mobile-lang a + a { border-left: 1px solid rgba(255,255,255,0.2); }

@media (max-width: 768px) {
  .nav-lang { display: none; }
  :root { --nav-h: 64px; }
  section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero h1 { font-size: 2.5rem; }
  .section-head h2 { font-size: 2rem; }
  .benefits-grid { grid-template-columns: 1fr; }
  .testimonial-card { flex-direction: column; }
  .testimonial-logo-panel { width: 100%; min-height: 160px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .process-layout { grid-template-columns: 1fr; }
  .process-image-wrap { aspect-ratio: 4 / 3; }
  .branchen-layout { grid-template-columns: 1fr; }
  .branchen-scatter-wrap { height: 320px; }
  .use-case-meta { grid-template-columns: 1fr; }
  .use-case-card { padding: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .feature-big { padding: 32px; }
  .feature-big-content h3 { font-size: 1.75rem; word-break: break-word; }
  .vergleich-box { padding: 48px 24px; }
  .about-mission-box { padding: 48px 24px; }
  .zahlen-grid { grid-template-columns: 1fr; }
  .zahlen-card { border-right: none; border-bottom: 1px solid var(--border); }
  .zahlen-card:last-child { border-bottom: none; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .about-mission-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-hero-wrap { padding: calc(var(--nav-h) + 40px) 20px 60px; }
}

/* ─── Print ───────────────────────────────────────────────── */
@media print {
  /* Hide non-content elements */
  .nav,
  .nav-mobile,
  .nav-hamburger,
  .footer-cta,
  .cookie-banner,
  .skip-link,
  .btn,
  .footer-social { display: none !important; }

  /* Reset backgrounds and colors for ink savings */
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
    font-family: Georgia, serif;
  }

  /* Show full URLs after links */
  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.75em;
    color: #555 !important;
  }
  /* Skip internal and anchor links */
  a[href^="#"]::after,
  a[href^="javascript:"]::after { content: ""; }

  /* Hero sections: strip background imagery, keep text */
  .hero-bg-img { display: none; }
  .page-hero-wrap,
  .hero-wrap,
  .contact-hero-wrap {
    min-height: auto !important;
    padding: 24pt 0 !important;
  }
  .hero h1,
  .page-hero-inner h1 {
    font-size: 24pt;
  }

  /* Avoid breaking inside key content blocks */
  .faq-item,
  .card,
  .use-case-card,
  .pricing-card,
  .branchen-item { page-break-inside: avoid; }

  /* Force single-column layouts */
  .benefits-grid,
  .zahlen-grid,
  .pricing-grid,
  .process-layout,
  .branchen-layout,
  .footer-grid,
  .use-case-meta,
  .contact-grid,
  .about-team,
  .about-mission-grid,
  .features-grid { grid-template-columns: 1fr !important; }

  /* Footer: minimal */
  footer {
    border-top: 1pt solid #ccc;
    padding-top: 12pt;
    margin-top: 24pt;
  }

  /* Section spacing */
  section { padding: 24pt 0 !important; }
  .container { max-width: 100%; padding: 0 !important; }
}
