/* ============================================================
   GFK-Finderwelt – Future Pace Media
   Design-System: styles.css
   ============================================================ */

/* 1. CSS Custom Properties */
:root {
  --fpm-red: #e8443d;
  --fpm-red-dark: #c73530;
  --fpm-red-soft: #fff0ee;
  --fpm-pink-soft: #fff4f3;
  --fpm-green: #22b45f;
  --fpm-green-soft: #eafaf1;
  --fpm-blue: #35aee2;
  --fpm-blue-soft: #eaf7fd;
  --fpm-orange: #ff9f32;
  --fpm-yellow: #ffc857;
  --fpm-bg: #ffffff;
  --fpm-bg-soft: #fafafa;
  --fpm-bg-warm: #fff7f4;
  --fpm-text: #1f1f1f;
  --fpm-text-muted: #6c6c6c;
  --fpm-border: #eeeeee;
  --fpm-footer: #252525;
  --fpm-footer-text: #f2f2f2;
  --fpm-radius-sm: 8px;
  --fpm-radius-md: 14px;
  --fpm-radius-lg: 22px;
  --fpm-shadow-card: 0 4px 18px rgba(0,0,0,0.07);
  --fpm-shadow-hover: 0 12px 38px rgba(0,0,0,0.13);
  --gfk-feeling: #e8487a;
  --gfk-need: #22a84a;
  --gfk-communication: #16a3c7;
  --gfk-conflict: #ff8b2d;
  --gfk-empathy: #7b61ff;
  --gfk-pseudo: #f59e42;
  --font-main: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --transition: 0.22s ease;
  --gfk-subnav-offset: 0px;
}

/* 2. Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 74px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  color: var(--fpm-text);
  background: var(--fpm-bg);
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--fpm-red); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* 3. Typography */
h1 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fpm-text);
}
h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.5rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.025em;
}
h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 700;
  line-height: 1.25;
}
h4 { font-size: 1.05rem; font-weight: 700; }
p { font-size: 1rem; color: var(--fpm-text); line-height: 1.65; }
.text-muted { color: var(--fpm-text-muted); }
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fpm-red);
  margin-bottom: 10px;
}
.lead { font-size: 1.12rem; color: #444; line-height: 1.7; }

/* 4. Layout */
.container {
  width: min(1160px, calc(100% - 32px));
  margin-inline: auto;
}
.container-wide {
  width: min(1360px, calc(100% - 32px));
  margin-inline: auto;
}
.section {
  padding: clamp(52px, 7vw, 96px) 0;
}
.section-sm { padding: clamp(32px, 4vw, 56px) 0; }
.section-bg-warm { background: var(--fpm-bg-warm); }
.section-bg-soft { background: var(--fpm-bg-soft); }
.section-bg-red-soft { background: var(--fpm-red-soft); }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header p {
  max-width: 620px;
  margin: 12px auto 0;
  color: var(--fpm-text-muted);
  font-size: 1.05rem;
}

/* Grid Helpers */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }

/* 5. Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--fpm-border);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fpm-text);
  font-weight: 800;
  font-size: 1.15rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--fpm-red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 1rem;
}
.logo:hover { text-decoration: none; }

/* Sub-Navigation (GFK-Mini-Nav) */
.gfk-subnav {
  background: var(--fpm-bg-soft);
  border-bottom: 1px solid var(--fpm-border);
  position: sticky;
  top: var(--gfk-subnav-offset);
  z-index: 300;
  box-shadow: 0 8px 18px rgba(0,0,0,0.05);
  backdrop-filter: blur(10px);
  overflow: hidden;
}
.gfk-subnav .container {
  width: min(1360px, calc(100% - 24px));
}
.gfk-subnav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 48px;
  height: auto;
  padding: 8px 0;
  overflow-x: visible;
  scrollbar-width: thin;
}
.gfk-subnav a {
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: clamp(0.76rem, 1.05vw, 0.88rem);
  font-weight: 600;
  color: var(--fpm-text-muted);
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.gfk-subnav a:hover,
.gfk-subnav a.active {
  background: var(--fpm-red);
  color: #fff;
}

/* Hamburger Mobile Menu */
.nav-desktop { display: flex; align-items: center; gap: 6px; }
.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fpm-text-muted);
  padding: 8px 12px;
  border-radius: var(--fpm-radius-sm);
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}
.nav-desktop a:hover { color: var(--fpm-red); background: var(--fpm-red-soft); }
.nav-desktop .btn-nav-cta {
  background: var(--fpm-red);
  color: #fff;
  padding: 8px 16px;
}
.nav-desktop .btn-nav-cta:hover { background: var(--fpm-red-dark); color: #fff; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px; height: 40px;
  gap: 5px;
  border-radius: var(--fpm-radius-sm);
  border: 1px solid var(--fpm-border);
}
.hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--fpm-text);
  border-radius: 2px;
  transition: all 0.22s;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #fff;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu-close {
  align-self: flex-end;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fpm-text);
  background: none;
  border: none;
  cursor: pointer;
  margin-bottom: 16px;
}
.mobile-menu nav a {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fpm-text);
  padding: 14px 0;
  border-bottom: 1px solid var(--fpm-border);
  text-decoration: none;
}
.mobile-menu nav a:hover { color: var(--fpm-red); }
.mobile-menu .btn { margin-top: 24px; }

/* 6. Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--fpm-red);
  color: #fff;
}
.btn-primary:hover {
  background: var(--fpm-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,68,61,0.25);
  text-decoration: none;
  color: #fff;
}
.btn-secondary {
  background: transparent;
  color: var(--fpm-text);
  border-color: var(--fpm-border);
}
.btn-secondary:hover {
  border-color: var(--fpm-red);
  color: var(--fpm-red);
  text-decoration: none;
}
.btn-outline-red {
  background: transparent;
  color: var(--fpm-red);
  border-color: var(--fpm-red);
}
.btn-outline-red:hover {
  background: var(--fpm-red);
  color: #fff;
  text-decoration: none;
}
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-full { width: 100%; }
.btn-green { background: var(--fpm-green); color: #fff; }
.btn-green:hover { background: #1a9a4f; color: #fff; text-decoration: none; }

/* 7. Hero Section */
.hero {
  background: linear-gradient(135deg, #fff 60%, var(--fpm-red-soft) 100%);
  padding: clamp(56px, 8vw, 100px) 0 clamp(48px, 7vw, 88px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-copy { max-width: 560px; }
.hero-copy h1 { margin-bottom: 18px; }
.hero-lead {
  font-size: 1.15rem;
  color: #444;
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--fpm-text-muted);
}
.hero-trust-item span.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--fpm-green);
  display: inline-block;
}
.hero-visual {
  position: relative;
}
.hero-visual img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--fpm-radius-lg);
  border: 1px solid var(--fpm-border);
  box-shadow: var(--fpm-shadow-card);
  background: var(--fpm-bg-soft);
}
.hero-visual-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--fpm-red-soft), var(--fpm-blue-soft));
  border-radius: var(--fpm-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  flex-direction: column;
  gap: 16px;
  color: var(--fpm-text-muted);
}
.hero-visual-placeholder .placeholder-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fpm-text-muted);
  text-align: center;
  padding: 0 20px;
}

/* 8. Cards & Knowledge Cards */
.card {
  background: #fff;
  border: 1px solid var(--fpm-border);
  border-radius: var(--fpm-radius-lg);
  padding: 28px;
  box-shadow: var(--fpm-shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--fpm-shadow-hover);
}
.knowledge-card {
  background: #fff;
  border: 1px solid var(--fpm-border);
  border-radius: var(--fpm-radius-lg);
  padding: 28px;
  box-shadow: var(--fpm-shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.knowledge-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--fpm-shadow-hover);
}
.knowledge-card.kc-feeling { border-top: 4px solid var(--gfk-feeling); }
.knowledge-card.kc-need { border-top: 4px solid var(--gfk-need); }
.knowledge-card.kc-communication { border-top: 4px solid var(--gfk-communication); }
.knowledge-card.kc-conflict { border-top: 4px solid var(--gfk-conflict); }
.knowledge-card.kc-empathy { border-top: 4px solid var(--gfk-empathy); }
.knowledge-card.kc-pseudo { border-top: 4px solid var(--gfk-pseudo); }
.kc-icon {
  width: 48px; height: 48px;
  border-radius: var(--fpm-radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.kc-icon.ic-feeling { background: #fde8f0; }
.kc-icon.ic-need { background: #e8f8ee; }
.kc-icon.ic-comm { background: #e4f4fb; }
.kc-icon.ic-conflict { background: #fff0e2; }
.kc-icon.ic-empathy { background: #f0edff; }
.kc-icon.ic-pseudo { background: #fff7e8; }
.knowledge-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.knowledge-card p { color: var(--fpm-text-muted); font-size: 0.93rem; margin-bottom: 16px; line-height: 1.55; }
.knowledge-card a {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--fpm-red);
}
.knowledge-card a:hover { text-decoration: underline; }
.knowledge-card .btn-primary,
.knowledge-card .btn-primary:visited,
.knowledge-card .btn-primary:hover,
.knowledge-card .btn-primary:focus {
  color: #fff;
  text-decoration: none;
}

/* 9. Product Cards */
.product-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--fpm-border);
  border-radius: var(--fpm-radius-lg);
  box-shadow: var(--fpm-shadow-card);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--fpm-shadow-hover);
}
.product-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: var(--fpm-bg-soft);
  padding: 22px;
}
.product-card-img-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  flex-direction: column;
  gap: 8px;
}
.product-card-img-placeholder span.pname {
  font-size: 0.7rem;
  font-weight: 700;
  color: #999;
  text-align: center;
  padding: 0 12px;
}
.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  border-radius: 999px;
  padding: 5px 11px;
  font-weight: 800;
  color: #fff;
  font-size: 0.75rem;
}
.badge-red { background: var(--fpm-red); }
.badge-green { background: var(--fpm-green); }
.badge-blue { background: var(--fpm-blue); }
.badge-orange { background: var(--fpm-orange); }
.badge-purple { background: var(--gfk-empathy); }
.product-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.format-badge {
  display: inline-block;
  background: var(--fpm-bg-soft);
  border: 1px solid var(--fpm-border);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--fpm-text-muted);
  margin-bottom: 10px;
}
.product-card-body h3 { font-size: 1rem; margin-bottom: 8px; }
.product-card-body p { font-size: 0.88rem; color: var(--fpm-text-muted); margin-bottom: 14px; flex: 1; line-height: 1.5; }
.product-card-body .btn { margin-top: auto; }

/* Featured product card */
.product-card-featured {
  border: 2px solid var(--fpm-red);
}

/* 10. Process Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
.step-card {
  background: #fff;
  border-radius: var(--fpm-radius-lg);
  padding: 28px 22px;
  text-align: center;
  border: 1px solid var(--fpm-border);
  box-shadow: var(--fpm-shadow-card);
  position: relative;
}
.step-card::after {
  content: '→';
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--fpm-text-muted);
  z-index: 2;
}
.step-card:last-child::after { display: none; }
.step-number {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: #fff;
  margin: 0 auto 14px;
}
.step-1 .step-number { background: var(--fpm-blue); }
.step-2 .step-number { background: var(--gfk-feeling); }
.step-3 .step-number { background: var(--gfk-need); }
.step-4 .step-number { background: var(--fpm-red); }
.step-card h3 { font-size: 1rem; margin-bottom: 8px; }
.step-card p { font-size: 0.85rem; color: var(--fpm-text-muted); line-height: 1.5; }

/* 11. Info / Answer Box */
.answer-box {
  background: var(--fpm-blue-soft);
  border-left: 4px solid var(--fpm-blue);
  border-radius: 0 var(--fpm-radius-md) var(--fpm-radius-md) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.answer-box p { font-size: 1rem; color: var(--fpm-text); margin: 0; }

.tip-box {
  background: var(--fpm-green-soft);
  border-left: 4px solid var(--fpm-green);
  border-radius: 0 var(--fpm-radius-md) var(--fpm-radius-md) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.warn-box {
  background: var(--fpm-red-soft);
  border-left: 4px solid var(--fpm-red);
  border-radius: 0 var(--fpm-radius-md) var(--fpm-radius-md) 0;
  padding: 20px 24px;
  margin: 24px 0;
}

/* 12. Filter Chips */
.filter-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.filter-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  border: 1.5px solid var(--fpm-border);
  color: var(--fpm-text-muted);
  background: #fff;
  transition: all var(--transition);
  cursor: pointer;
}
.filter-chip:hover,
.filter-chip.active {
  border-color: var(--fpm-red);
  color: var(--fpm-red);
  background: var(--fpm-red-soft);
}
.filter-chip.active {
  background: var(--fpm-red);
  color: #fff;
}

/* 13. Search Box */
.search-wrap {
  position: relative;
  max-width: 560px;
  margin-bottom: 28px;
}
.search-wrap input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border: 2px solid var(--fpm-border);
  border-radius: 999px;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  background: #fff;
  color: var(--fpm-text);
  transition: border-color var(--transition);
}
.search-wrap input:focus { border-color: var(--fpm-red); }
.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: var(--fpm-text-muted);
  pointer-events: none;
}

/* 14. Accordion / FAQ */
.accordion { border: 1px solid var(--fpm-border); border-radius: var(--fpm-radius-md); overflow: hidden; margin-bottom: 8px; }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--fpm-text);
  text-align: left;
  transition: background var(--transition);
  cursor: pointer;
}
.accordion-trigger:hover { background: var(--fpm-bg-soft); }
.accordion-trigger.open { background: var(--fpm-red-soft); color: var(--fpm-red); }
.accordion-icon {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--fpm-text-muted);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 12px;
}
.accordion-trigger.open .accordion-icon { transform: rotate(45deg); color: var(--fpm-red); }
.accordion-content {
  display: none;
  padding: 18px 22px 22px;
  background: #fafafa;
  border-top: 1px solid var(--fpm-border);
}
.accordion-content.open { display: block; }
.accordion-content p { font-size: 0.93rem; color: var(--fpm-text-muted); margin-bottom: 10px; line-height: 1.6; }
.accordion-content a { font-size: 0.88rem; font-weight: 700; }

/* 15. Tag / Label Chips */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.tag-red { background: var(--fpm-red-soft); color: var(--fpm-red); }
.tag-green { background: var(--fpm-green-soft); color: var(--gfk-need); }
.tag-blue { background: var(--fpm-blue-soft); color: var(--fpm-blue); }
.tag-orange { background: #fff3e2; color: var(--fpm-orange); }
.tag-purple { background: #f0edff; color: var(--gfk-empathy); }

/* 16. Feeling & Need Grid Items */
.feeling-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.feeling-cluster {
  background: #fff;
  border-radius: var(--fpm-radius-md);
  border: 1px solid var(--fpm-border);
  padding: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.feeling-cluster h4 {
  font-size: 0.88rem;
  margin-bottom: 10px;
  color: var(--gfk-feeling);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.feeling-cluster .word {
  display: inline-block;
  font-size: 0.82rem;
  color: var(--fpm-text);
  padding: 3px 8px;
  margin: 2px;
  background: var(--fpm-bg-soft);
  border-radius: 6px;
  border: 1px solid var(--fpm-border);
  cursor: pointer;
  transition: background var(--transition);
}
.feeling-cluster .word:hover { background: #fde8f0; color: var(--gfk-feeling); }
.need-cluster h4 { color: var(--gfk-need); }
.need-cluster .word:hover { background: #e8f8ee; color: var(--gfk-need); }

/* 17. Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--fpm-text-muted);
  padding: 14px 0;
  flex-wrap: wrap;
}
.gfk-subnav + .breadcrumb {
  margin-top: 10px;
}
.breadcrumb a { color: var(--fpm-text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--fpm-red); }
.breadcrumb .sep { color: #ccc; }
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.breadcrumb li {
  display: inline-flex;
  align-items: center;
  color: var(--fpm-text-muted);
}
.breadcrumb li + li::before {
  content: "›";
  color: #ccc;
  margin-right: 8px;
}
.breadcrumb li[aria-current="page"] {
  color: var(--fpm-text);
  font-weight: 700;
}

/* 18. Sticky CTA Mobile */
.sticky-cta-mobile {
  display: none;
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 80;
}

/* 19. Inline Product Box */
.inline-product-box {
  background: var(--fpm-red-soft);
  border: 1.5px solid rgba(232,68,61,0.15);
  border-radius: var(--fpm-radius-lg);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin: 32px 0;
}
.inline-product-box .prod-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}
.inline-product-box img {
  width: 100%;
  max-width: 180px;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--fpm-bg-soft);
  border-radius: var(--fpm-radius-md);
  padding: 12px;
  border: 1px solid var(--fpm-border);
  flex-shrink: 0;
}
.inline-product-box h4 { font-size: 1rem; margin-bottom: 6px; }
.inline-product-box p { font-size: 0.88rem; color: var(--fpm-text-muted); margin-bottom: 14px; }

/* 20. Two-column content layout */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.content-sidebar {
  position: sticky;
  top: 120px;
}
.sidebar-product-box {
  background: #fff;
  border: 1px solid var(--fpm-border);
  border-radius: var(--fpm-radius-lg);
  padding: 24px;
  box-shadow: var(--fpm-shadow-card);
  text-align: center;
}
.sidebar-product-box img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--fpm-bg-soft);
  border-radius: var(--fpm-radius-md);
  padding: 14px;
  margin-bottom: 16px;
}
.sidebar-product-box .sidebar-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
  border-radius: var(--fpm-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin-bottom: 16px;
}
.sidebar-product-box h4 { margin-bottom: 8px; }
.sidebar-product-box p { font-size: 0.88rem; color: var(--fpm-text-muted); margin-bottom: 16px; }

/* 20b. Product bridge cards */
.product-bridge-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.product-mini-card {
  background: #fff;
  border: 1px solid var(--fpm-border);
  border-radius: var(--fpm-radius-lg);
  padding: 24px;
  box-shadow: var(--fpm-shadow-card);
}

.product-mini-card img {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--fpm-bg-soft);
  border-radius: var(--fpm-radius-md);
  padding: 12px;
  border: 1px solid var(--fpm-border);
  margin-bottom: 16px;
}

/* 21. Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--fpm-radius-md);
  overflow: hidden;
  box-shadow: var(--fpm-shadow-card);
}
.comparison-table th {
  background: var(--fpm-text);
  color: #fff;
  font-size: 0.88rem;
  text-align: left;
  padding: 14px 18px;
}
.comparison-table td {
  padding: 12px 18px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--fpm-border);
  color: var(--fpm-text);
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--fpm-bg-soft); }

/* 22. Translator Widget */
.translator-widget {
  background: #fff;
  border: 1px solid var(--fpm-border);
  border-radius: var(--fpm-radius-lg);
  padding: 32px;
  box-shadow: var(--fpm-shadow-card);
}
.translator-widget h3 { margin-bottom: 6px; }
.translator-widget p.desc { color: var(--fpm-text-muted); font-size: 0.9rem; margin-bottom: 20px; }
.translator-widget select,
.translator-widget input,
.translator-widget textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--fpm-border);
  border-radius: var(--fpm-radius-md);
  font-family: inherit;
  font-size: 0.93rem;
  color: var(--fpm-text);
  background: #fff;
  outline: none;
  transition: border-color var(--transition);
  margin-bottom: 14px;
}
.translator-widget select:focus,
.translator-widget input:focus,
.translator-widget textarea:focus { border-color: var(--fpm-red); }
.translator-result {
  background: var(--fpm-green-soft);
  border: 1.5px solid rgba(34,180,95,0.2);
  border-radius: var(--fpm-radius-md);
  padding: 18px;
  margin-top: 18px;
  display: none;
}
.translator-result.show { display: block; }
.translator-result .result-step {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  align-items: flex-start;
}
.result-step .step-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  min-width: 90px;
  padding-top: 2px;
}
.result-step .step-value { font-size: 0.92rem; color: var(--fpm-text); line-height: 1.55; }

/* 23. Glossary */
.glossary-letters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}
.glossary-letter-btn {
  width: 34px; height: 34px;
  border-radius: var(--fpm-radius-sm);
  border: 1px solid var(--fpm-border);
  background: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--fpm-text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.glossary-letter-btn:hover,
.glossary-letter-btn.active {
  background: var(--fpm-red);
  color: #fff;
  border-color: var(--fpm-red);
}
.glossary-group-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--fpm-red);
  margin: 32px 0 12px;
  border-bottom: 2px solid var(--fpm-border);
  padding-bottom: 8px;
}
.glossary-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--fpm-border);
}
.glossary-item h4 { font-size: 1rem; margin-bottom: 4px; }
.glossary-item p { font-size: 0.9rem; color: var(--fpm-text-muted); }
.glossary-item a { font-size: 0.85rem; }

/* 24. Application Cards */
.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.app-card {
  background: #fff;
  border: 1px solid var(--fpm-border);
  border-radius: var(--fpm-radius-md);
  padding: 22px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}
.app-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--fpm-shadow-card);
}
.app-card .app-icon { font-size: 2rem; margin-bottom: 12px; }
.app-card h3 { font-size: 0.95rem; margin-bottom: 6px; }
.app-card p { font-size: 0.85rem; color: var(--fpm-text-muted); line-height: 1.5; }

/* 25. Quote / Callout */
.callout-quote {
  background: var(--fpm-bg-warm);
  border-radius: var(--fpm-radius-lg);
  padding: 36px 40px;
  text-align: center;
  margin: 40px 0;
}
.callout-quote p {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fpm-text);
  line-height: 1.45;
  font-style: italic;
}
.callout-quote cite {
  display: block;
  margin-top: 12px;
  font-size: 0.88rem;
  font-style: normal;
  color: var(--fpm-text-muted);
}

/* 26. No-results state */
.no-results {
  text-align: center;
  padding: 48px 20px;
  color: var(--fpm-text-muted);
  display: none;
}
.no-results.show { display: block; }
.no-results .icon { font-size: 2.5rem; margin-bottom: 12px; }

/* 27. Back link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fpm-text-muted);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color var(--transition);
}
.back-link:hover { color: var(--fpm-red); text-decoration: none; }

/* 28. Page Hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--fpm-bg-warm) 60%, var(--fpm-red-soft));
  padding: clamp(40px, 5vw, 72px) 0;
}
.page-hero h1 { margin-bottom: 14px; }
.page-hero .lead { max-width: 600px; }
.page-hero-sub,
.page-hero .lead {
  max-width: 760px;
}
.page-hero-media {
  margin-top: 28px;
}
.page-hero-image {
  width: 100%;
  max-width: 980px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--fpm-radius-lg);
  border: 1px solid var(--fpm-border);
  box-shadow: var(--fpm-shadow-card);
  background: var(--fpm-bg-soft);
}

/* 29. Utility */
.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.text-center { text-align: center; }
.text-red { color: var(--fpm-red); }
.text-green { color: var(--gfk-need); }
.bold { font-weight: 700; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.hidden { display: none !important; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--fpm-bg-soft);
  border: 1px solid var(--fpm-border);
  color: var(--fpm-text-muted);
}

/* 30. Audience / Zielgruppen-Tiles */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.audience-card {
  background: #fff;
  border: 1px solid var(--fpm-border);
  border-radius: var(--fpm-radius-lg);
  padding: 26px 24px;
  box-shadow: var(--fpm-shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.audience-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--fpm-red);
  border-radius: var(--fpm-radius-lg) var(--fpm-radius-lg) 0 0;
}
.audience-card.ac-green::before { background: var(--fpm-green); }
.audience-card.ac-blue::before { background: var(--fpm-blue); }
.audience-card.ac-orange::before { background: var(--fpm-orange); }
.audience-card.ac-purple::before { background: var(--gfk-empathy); }
.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--fpm-shadow-hover);
}
.audience-card .aud-icon { font-size: 2rem; margin-bottom: 12px; }
.audience-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.audience-card p { font-size: 0.87rem; color: var(--fpm-text-muted); line-height: 1.55; margin-bottom: 12px; }
.audience-card a { font-size: 0.84rem; font-weight: 700; color: var(--fpm-red); }
.audience-card a:hover { text-decoration: underline; }
.audience-card ul { list-style: disc; padding-left: 18px; margin-bottom: 12px; }
.audience-card ul li { font-size: 0.84rem; color: var(--fpm-text-muted); margin-bottom: 4px; line-height: 1.5; }

/* 31. Inline Produkt-Tipp (schmal, Lesefluß-Unterbrechung) */
.product-tip {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--fpm-red-soft);
  border: 1.5px solid rgba(232,68,61,0.18);
  border-radius: var(--fpm-radius-md);
  padding: 18px 22px;
  margin: 28px 0;
}
.product-tip .pt-icon { font-size: 1.8rem; flex-shrink: 0; }
.product-tip .pt-body { flex: 1; }
.product-tip .pt-label {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fpm-red);
  margin-bottom: 4px;
}
.product-tip h4 { font-size: 0.95rem; margin-bottom: 4px; }
.product-tip p { font-size: 0.84rem; color: var(--fpm-text-muted); margin-bottom: 10px; }

/* 32. FAQ Schema Section */
.faq-section { margin-top: 48px; }
.faq-section h2 { margin-bottom: 24px; }

/* 33. Example Card (Vorher/Nachher) */
.example-card {
  background: #fff;
  border: 1px solid var(--fpm-border);
  border-radius: var(--fpm-radius-lg);
  overflow: hidden;
  box-shadow: var(--fpm-shadow-card);
  margin-bottom: 24px;
}
.example-card-header {
  background: var(--fpm-bg-soft);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--fpm-border);
}
.example-card-header .ctx-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--fpm-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.example-before, .example-after {
  padding: 18px 22px;
}
.example-before { border-bottom: 1px solid var(--fpm-border); }
.example-label {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.example-label.before { color: #c00; }
.example-label.after { color: var(--fpm-green); }
.example-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--fpm-text);
}
.example-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 12px;
}
.example-step-box {
  background: var(--fpm-bg-soft);
  border-radius: var(--fpm-radius-sm);
  padding: 10px;
  font-size: 0.78rem;
}
.example-step-box .esb-label {
  font-weight: 800;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fpm-text-muted);
  margin-bottom: 3px;
}
.example-step-box .esb-val { color: var(--fpm-text); line-height: 1.45; }

/* 34. CTA Banner (full-width) */
.cta-banner {
  background: linear-gradient(135deg, var(--fpm-red) 60%, #c73530);
  border-radius: var(--fpm-radius-lg);
  padding: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin: 48px 0;
}
.cta-banner .cta-copy h2 { color: #fff; margin-bottom: 8px; font-size: clamp(1.3rem, 2.5vw, 2rem); }
.cta-banner .cta-copy p { color: rgba(255,255,255,0.85); font-size: 1rem; max-width: 520px; }
.cta-banner .btn-white {
  background: #fff;
  color: var(--fpm-red);
  font-weight: 800;
  padding: 14px 30px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.cta-banner .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  text-decoration: none;
}

/* 35. Section Size Variants */
.section-sm {
  padding: clamp(20px, 3vw, 36px) 0;
}
.section-lg {
  padding: clamp(64px, 8vw, 112px) 0;
}

/* 36. Hub-Grid für Listen/Seiten-Übersicht */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.hub-card {
  background: #fff;
  border: 1px solid var(--fpm-border);
  border-radius: var(--fpm-radius-lg);
  padding: 28px 24px;
  box-shadow: var(--fpm-shadow-card);
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hub-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--fpm-shadow-hover);
  text-decoration: none;
}
.hub-card .hub-icon { font-size: 2.4rem; }
.hub-card h3 { font-size: 1.05rem; font-weight: 700; margin: 0; }
.hub-card p { font-size: 0.87rem; color: var(--fpm-text-muted); line-height: 1.55; margin: 0; }
.hub-card .hub-cta {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--fpm-red);
  margin-top: auto;
  padding-top: 8px;
}

/* 37. Target-Group Tiles (compact, for inner pages) */
.zg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
  margin: 24px 0;
}
.zg-tile {
  background: #fff;
  border: 1.5px solid var(--fpm-border);
  border-radius: var(--fpm-radius-md);
  padding: 18px 16px;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.zg-tile:hover {
  border-color: var(--fpm-red);
  box-shadow: 0 4px 14px rgba(232,68,61,0.10);
}
.zg-tile .zg-icon { font-size: 1.8rem; margin-bottom: 8px; }
.zg-tile h4 { font-size: 0.88rem; font-weight: 700; margin-bottom: 4px; }
.zg-tile p { font-size: 0.78rem; color: var(--fpm-text-muted); line-height: 1.45; margin: 0; }

/* 38. Produkt-Box (inline CTA inside content) */
.produkt-box {
  background: linear-gradient(135deg, var(--fpm-red-soft), var(--fpm-bg-warm));
  border: 1.5px solid rgba(232,68,61,0.18);
  border-radius: var(--fpm-radius-lg);
  padding: 28px 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin: 40px 0;
}
.produkt-box .pb-icon {
  font-size: 3rem;
  flex-shrink: 0;
  line-height: 1;
}
.produkt-box .pb-body { flex: 1; }
.produkt-box .pb-label {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fpm-red);
  margin-bottom: 4px;
}
.produkt-box h3 { font-size: 1.1rem; margin-bottom: 6px; }
.produkt-box p { font-size: 0.9rem; color: var(--fpm-text-muted); margin-bottom: 16px; line-height: 1.55; }
.produkt-box .pb-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* 39. SEO-Textblock (für interne Links und Kontext) */
.seo-text-block {
  background: var(--fpm-bg-soft);
  border-radius: var(--fpm-radius-md);
  padding: 28px 32px;
  border-left: 4px solid var(--fpm-red);
  margin: 32px 0;
}
.seo-text-block p { font-size: 0.93rem; color: var(--fpm-text-muted); line-height: 1.7; margin-bottom: 10px; }
.seo-text-block p:last-child { margin-bottom: 0; }

/* 35. Responsive Media Queries (consolidated) */
@media (max-width: 900px) {
  .content-layout { grid-template-columns: 1fr; }
  .content-sidebar { position: static; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step-card::after { display: none; }
  .cta-banner { flex-direction: column; text-align: center; }
  .cta-banner .btn-white { width: 100%; justify-content: center; }
}
@media (max-width: 640px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .example-steps { grid-template-columns: 1fr 1fr; }
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
  .sticky-cta-mobile { display: block; }
  h1 { font-size: clamp(1.7rem, 6vw, 2.6rem); }
  .section { padding: clamp(36px, 6vw, 64px) 0; }
  .callout-quote { padding: 24px 20px; }
  .callout-quote p { font-size: 1.1rem; }
  .inline-product-box { flex-direction: column; gap: 12px; }
  .product-tip { flex-direction: column; gap: 10px; }
}
