@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=Crimson+Text:wght@400;600&display=swap');

:root {
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #030815;
  --color-bg-tertiary: #0a0f1e;
  --color-bg-dark-accent: #1e293b;
  --color-bg-card: #0a0f1e;
  --color-text-primary: #ffffff;
  --color-text-primary-dark: #ffffff;
  --color-text-primary-light: #fff;
  --color-text-secondary-dark: #e2e8f0;
  --color-text-secondary-light: #e5eaf2;
  --color-text-muted-dark: #d2d9e4;
  --color-text-muted-light: #d1d5db;

  --color-primary: #06b6d4;
  --color-primary-hover: #0891b2;
  --color-primary-dark: #164e63;
  --color-secondary: #f97316;
  --color-secondary-hover: #ea580c;
  --color-accent-warm: #f59e0b;
  --color-accent-green: #10b981;
  --color-success: #22c55e;
  --color-error: #ef4444;

  --font-primary: 'Outfit', sans-serif;
  --font-heading: 'Crimson Text', serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --shadow-dark: 0 25px 50px rgba(0, 0, 0, 0.3);

  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;

  --letter-spacing-tight: -0.02em;
  --letter-spacing-normal: 0;
  --letter-spacing-wide: 0.05em;

  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;

  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-tooltip: 600;
  --z-notification: 700;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--color-text-primary-light);
  background: var(--color-bg-secondary);
  font-weight: 400;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-md);
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
}

h1 {
  font-size: var(--font-size-6xl);
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: var(--font-size-5xl);
  margin-bottom: var(--space-lg);
}

h3 {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-md);
}

h4 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-md);
}

h5 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-sm);
}

h6 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
}

p {
  margin-bottom: var(--space-md);
  line-height: var(--line-height-relaxed);
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-primary-hover);
}

button,
.btn {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  font-weight: 600;
  padding: var(--space-sm) var(--space-lg);
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  display: inline-block;
  text-align: center;
  letter-spacing: var(--letter-spacing-wide);
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-text-primary-dark);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--color-secondary);
  color: var(--color-text-primary-dark);
}

.btn-secondary:hover {
  background: var(--color-secondary-hover);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-text-primary-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--color-primary);
  padding: var(--space-sm) var(--space-md);
}

.btn-ghost:hover {
  background: rgba(6, 182, 212, 0.1);
}

section {
  padding: var(--space-3xl) 0;
}

@media (max-width: 768px) {
  section {
    padding: var(--space-2xl) 0;
  }

  h1 {
    font-size: var(--font-size-4xl);
  }

  h2 {
    font-size: var(--font-size-3xl);
  }

  h3 {
    font-size: var(--font-size-2xl);
  }
}

.hero {
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, #1a2847 100%);
  color: var(--color-text-primary-dark);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-lg);
  font-size: var(--font-size-6xl);
}

.hero p {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary-dark);
  margin-bottom: var(--space-xl);
  line-height: var(--line-height-relaxed);
}

.light-section {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary-light);
}

.light-section h2,
.light-section h3,
.light-section h4,
.light-section h5,
.light-section h6 {
  color: var(--color-text-primary-light);
}

.light-section p,
.light-section a {
  color: var(--color-text-secondary-light);
}

.light-section a {
  color: var(--color-primary);
  font-weight: 600;
}

.light-section a:hover {
  color: var(--color-primary-hover);
}

.light-alternate {
  background: var(--color-bg-tertiary);
  color: var(--color-text-primary-light);
}

.light-alternate h2,
.light-alternate h3,
.light-alternate h4,
.light-alternate h5,
.light-alternate h6 {
  color: var(--color-text-primary-light);
}

.light-alternate p {
  color: var(--color-text-secondary-light);
}

.dark-section {
  background: linear-gradient(135deg, var(--color-bg-dark-accent) 0%, #0f172a 100%);
  color: var(--color-text-primary-dark);
}

.dark-section h2,
.dark-section h3,
.dark-section h4,
.dark-section h5,
.dark-section h6 {
  color: var(--color-text-primary-dark);
}

.dark-section p {
  color: var(--color-text-secondary-dark);
}

.dark-section a {
  color: var(--color-primary);
}

.dark-section a:hover {
  color: var(--color-accent-warm);
}

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-dark {
  background: rgba(30, 41, 59, 0.8);
  color: var(--color-text-primary-dark);
  border: 1px solid rgba(148, 163, 184, 0.1);
}

.card-dark h3,
.card-dark h4 {
  color: var(--color-text-primary-dark);
}

.card-dark p {
  color: var(--color-text-secondary-dark);
}

.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.flex {
  display: flex;
}

.flex-center {
  justify-content: center;
  align-items: center;
}

.flex-between {
  justify-content: space-between;
  align-items: center;
}

.flex-col {
  flex-direction: column;
}

.flex-gap-sm {
  gap: var(--space-sm);
}

.flex-gap-md {
  gap: var(--space-md);
}

.flex-gap-lg {
  gap: var(--space-lg);
}

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  background: rgba(6, 182, 212, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: var(--letter-spacing-wide);
}

.badge-secondary {
  background: rgba(249, 115, 22, 0.1);
  color: var(--color-secondary);
}

.badge-success {
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-accent-green);
}

.text-primary {
  color: var(--color-primary);
}

.text-secondary {
  color: var(--color-secondary);
}

.text-muted {
  color: var(--color-text-muted-light);
}

.text-bold {
  font-weight: 700;
}

.text-semibold {
  font-weight: 600;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-xs {
  margin-top: var(--space-xs);
}

.mt-sm {
  margin-top: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mt-xl {
  margin-top: var(--space-xl);
}

.mb-xs {
  margin-bottom: var(--space-xs);
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.mb-xl {
  margin-bottom: var(--space-xl);
}

.px-md {
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.px-lg {
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}

.py-md {
  padding-top: var(--space-md);
  padding-bottom: var(--space-md);
}

.py-lg {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

.border-top {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: var(--space-lg);
}

.dark-section .border-top {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight {
  position: relative;
  display: inline;
  background: linear-gradient(120deg, rgba(6, 182, 212, 0.3) 0%, rgba(249, 115, 22, 0.3) 100%);
  padding: 0 var(--space-xs);
}

.list-reset {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-styled {
  list-style: none;
  padding: 0;
}

.list-styled li {
  padding: var(--space-sm) 0 var(--space-sm) var(--space-lg);
  position: relative;
}

.list-styled li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.icon-text {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.icon-text-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-weight: bold;
  font-size: var(--font-size-lg);
}

.feature-box {
  padding: var(--space-lg);
  border-left: 4px solid var(--color-primary);
  background: rgba(6, 182, 212, 0.05);
  border-radius: var(--radius-md);
}

.feature-box-secondary {
  border-left-color: var(--color-secondary);
  background: rgba(249, 115, 22, 0.05);
}

.feature-box h4 {
  margin-top: 0;
}

.overlay-text {
  position: relative;
  z-index: 2;
}

.section-title {
  margin-bottom: var(--space-2xl);
  text-align: center;
}

.section-title-underline {
  display: inline-block;
  position: relative;
  padding-bottom: var(--space-sm);
}

.section-title-underline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: var(--radius-sm);
}

.animation-fadeIn {
  animation: fadeIn 600ms ease-in-out;
}

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

.animation-slideInLeft {
  animation: slideInLeft 600ms ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animation-slideInRight {
  animation: slideInRight 600ms ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animation-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animation-bounce {
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.gradient-text {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.rounded-full {
  border-radius: 9999px;
}

.aspect-square {
  aspect-ratio: 1 / 1;
}

.aspect-video {
  aspect-ratio: 16 / 9;
}

.max-w-prose {
  max-width: 65ch;
}

.max-w-md {
  max-width: 448px;
}

.max-w-lg {
  max-width: 512px;
}

.max-w-xl {
  max-width: 576px;
}

.max-w-2xl {
  max-width: 672px;
}

.max-w-3xl {
  max-width: 768px;
}

.max-w-4xl {
  max-width: 896px;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media print {
  body {
    background: white;
    color: black;
  }

  a {
    text-decoration: underline;
  }

  button,
  .btn {
    display: none;
  }
}

@supports (backdrop-filter: blur(10px)) {
  .backdrop-blur {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.8);
  }

  .dark-section .backdrop-blur {
    background: rgba(15, 23, 42, 0.8);
  }
}
.header-feedback-forge {
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border-light);
  position: static;
  z-index: var(--z-sticky);
  overflow: visible;
}

.header-feedback-forge-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  gap: clamp(1rem, 3vw, 2rem);
}

.header-feedback-forge-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.header-feedback-forge-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.header-feedback-forge-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  letter-spacing: var(--letter-spacing-tight);
  white-space: nowrap;
}

.header-feedback-forge-brand:hover .header-feedback-forge-logo-text {
  color: var(--color-primary);
  transition: color var(--transition-base);
}

.header-feedback-forge-desktop-nav {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex: 1;
  justify-content: center;
}

.header-feedback-forge-nav-link {
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text-secondary-light);
  text-decoration: none;
  transition: color var(--transition-base);
  white-space: nowrap;
}

.header-feedback-forge-nav-link:hover {
  color: var(--color-primary);
}

.header-feedback-forge-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-text-primary-dark);
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-base);
  white-space: nowrap;
  flex-shrink: 0;
}

.header-feedback-forge-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

.header-feedback-forge-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.header-feedback-forge-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text-primary-light);
  border-radius: 2px;
  transition: all var(--transition-base);
  display: block;
}

.header-feedback-forge-mobile-toggle:hover span {
  background: var(--color-primary);
}

.header-feedback-forge-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-primary);
  z-index: calc(var(--z-modal) - 1);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-base);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.header-feedback-forge-mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.header-feedback-forge-mobile-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1rem, 4vw, 2rem);
  border-bottom: 1px solid var(--color-border-light);
  flex-shrink: 0;
}

.header-feedback-forge-mobile-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  letter-spacing: var(--letter-spacing-tight);
}

.header-feedback-forge-mobile-close {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-text-primary-light);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-base);
}

.header-feedback-forge-mobile-close:hover {
  color: var(--color-primary);
}

.header-feedback-forge-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  padding: 0;
  overflow-y: auto;
}

.header-feedback-forge-mobile-link {
  display: block;
  padding: clamp(1rem, 3vw, 1.5rem) clamp(1rem, 4vw, 2rem);
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 500;
  color: var(--color-text-secondary-light);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}

.header-feedback-forge-mobile-link:hover {
  background: var(--color-bg-secondary);
  color: var(--color-primary);
  padding-left: clamp(1.5rem, 5vw, 2.5rem);
}

.header-feedback-forge-mobile-cta {
  display: block;
  margin: auto clamp(1rem, 4vw, 2rem) clamp(1.5rem, 4vw, 2rem);
  padding: 1rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-text-primary-dark);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  text-align: center;
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.header-feedback-forge-mobile-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .header-feedback-forge-container {
    height: 5.5rem;
  }

  .header-feedback-forge-mobile-toggle {
    display: none !important;
  }

  .header-feedback-forge-mobile-menu {
    display: none !important;
  }

  .header-feedback-forge-desktop-nav {
    display: flex !important;
  }

  .header-feedback-forge-cta-button {
    display: block !important;
  }
}

@media (min-width: 1024px) {
  .header-feedback-forge-container {
    height: 6rem;
  }

  .header-feedback-forge-logo-text {
    font-size: 1.5rem;
  }

  .header-feedback-forge-nav-link {
    font-size: var(--font-size-base);
  }

  .header-feedback-forge-cta-button {
    font-size: var(--font-size-base);
    padding: 0.875rem 2rem;
  }
}

body {
  overflow-y: scroll;
}

body.menu-open {
  overflow: hidden;
}

    .feedback-hub {
  width: 100%;
  background: var(--color-bg-primary);
  color: var(--color-text-primary-dark);
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block;
}

.hero-section-index {
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-content-index {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text-index {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.hero-title-index {
  color: var(--color-text-primary-dark);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-index {
  color: var(--color-text-secondary-dark);
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.15rem);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-buttons-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.btn {
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  border: none;
  cursor: pointer;
}

.btn-primary-index {
  background: var(--color-primary);
  color: #ffffff;
}

.btn-primary-index:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

.btn-secondary-index {
  background: transparent;
  color: var(--color-text-primary-dark);
  border: 2px solid var(--color-primary);
}

.btn-secondary-index:hover {
  background: rgba(var(--color-primary), 0.1);
  transform: translateY(-2px);
}

.hero-stats-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: clamp(1rem, 2vw, 1.5rem);
}

.stat-item-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-index {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
}

.stat-label-index {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
  color: var(--color-text-secondary-dark);
}

.hero-image-index {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.hero-image-index img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
}

.featured-section-index {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.featured-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.featured-header-index {
  text-align: center;
}

.featured-title-index {
  color: var(--color-text-primary-dark);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.featured-subtitle-index {
  color: var(--color-text-secondary-dark);
  font-size: clamp(0.95rem, 1.2vw + 0.4rem, 1.1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.featured-cards-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.featured-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  background: var(--color-bg-card);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.featured-card-index:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-image-index {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content-index {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card-title-index {
  color: var(--color-text-primary-dark);
  font-size: clamp(1.1rem, 2vw + 0.4rem, 1.35rem);
  font-weight: 600;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-text-index {
  color: var(--color-text-secondary-dark);
  font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-link-index {
  color: var(--color-primary);
  font-weight: 600;
  font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

.featured-card-index:hover .card-link-index {
  transform: translateX(4px);
}

.featured-footer-index {
  text-align: center;
  padding-top: clamp(1rem, 2vw, 1.5rem);
}

.view-all-index {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.95rem, 1.2vw + 0.4rem, 1.1rem);
  transition: all 0.3s ease;
}

.view-all-index:hover {
  text-decoration: underline;
}

.benefits-section-index {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.benefits-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.benefits-header-index {
  text-align: center;
}

.benefits-title-index {
  color: var(--color-text-primary-dark);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.benefits-subtitle-index {
  color: var(--color-text-secondary-dark);
  font-size: clamp(0.95rem, 1.2vw + 0.4rem, 1.1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.benefits-cards-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.benefit-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-primary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-card-index:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefit-icon-index {
  font-size: clamp(2rem, 3vw + 0.5rem, 2.5rem);
  color: var(--color-primary);
}

.benefit-card-title-index {
  color: var(--color-text-primary-dark);
  font-size: clamp(1.1rem, 2vw + 0.4rem, 1.3rem);
  font-weight: 600;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.benefit-card-text-index {
  color: var(--color-text-secondary-dark);
  font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.how-it-works-section-index {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.how-it-works-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.how-it-works-header-index {
  text-align: center;
}

.how-it-works-title-index {
  color: var(--color-text-primary-dark);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.how-it-works-subtitle-index {
  color: var(--color-text-secondary-dark);
  font-size: clamp(0.95rem, 1.2vw + 0.4rem, 1.1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.steps-grid-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.step-card-index {
  flex: 1 1 250px;
  max-width: 350px;
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-left: 4px solid var(--color-primary);
}

.step-number-index {
  font-size: clamp(2.5rem, 4vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.step-title-index {
  color: var(--color-text-primary-dark);
  font-size: clamp(1.1rem, 2vw + 0.4rem, 1.3rem);
  font-weight: 600;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.step-text-index {
  color: var(--color-text-secondary-dark);
  font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.testimonials-section-index {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.testimonials-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.testimonials-header-index {
  text-align: center;
}

.testimonials-title-index {
  color: var(--color-text-primary-dark);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.testimonials-subtitle-index {
  color: var(--color-text-secondary-dark);
  font-size: clamp(0.95rem, 1.2vw + 0.4rem, 1.1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.testimonials-cards-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.testimonial-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  background: var(--color-bg-primary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.testimonial-quote-index {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote-text-index {
  color: var(--color-text-secondary-dark);
  font-size: clamp(0.9rem, 1.1vw + 0.4rem, 1rem);
  line-height: 1.8;
  font-style: italic;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.quote-author-index {
  color: var(--color-text-primary-dark);
  font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
  font-weight: 600;
  font-style: normal;
}

.faq-section-index {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.faq-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 800px;
  margin: 0 auto;
}

.faq-header-index {
  text-align: center;
}

.faq-title-index {
  color: var(--color-text-primary-dark);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.faq-subtitle-index {
  color: var(--color-text-secondary-dark);
  font-size: clamp(0.95rem, 1.2vw + 0.4rem, 1.1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.faq-list-index {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.faq-item-index {
  background: var(--color-bg-secondary);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question-index {
  cursor: pointer;
  padding: clamp(1rem, 2vw, 1.5rem);
  color: var(--color-text-primary-dark);
  font-size: clamp(0.95rem, 1.2vw + 0.4rem, 1.1rem);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  user-select: none;
}

.faq-question-index:hover {
  background: rgba(var(--color-primary), 0.05);
}

.faq-item-index[open] .faq-question-index {
  color: var(--color-primary);
}

.faq-answer-index {
  padding: 0 clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem);
  color: var(--color-text-secondary-dark);
  font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
  line-height: 1.7;
}

.faq-answer-index p {
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-section-index {
  background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.cta-content-index {
  display: flex;
  justify-content: center;
}

.cta-box-index {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  max-width: 600px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid var(--color-primary);
}

.cta-title-index {
  color: var(--color-text-primary-dark);
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-text-index {
  color: var(--color-text-secondary-dark);
  font-size: clamp(0.9rem, 1.1vw + 0.4rem, 1.05rem);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-buttons-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  justify-content: center;
}

.services-section-index {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.services-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.services-header-index {
  text-align: center;
}

.services-title-index {
  color: var(--color-text-primary-dark);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.services-subtitle-index {
  color: var(--color-text-secondary-dark);
  font-size: clamp(0.95rem, 1.2vw + 0.4rem, 1.1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.services-cards-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.service-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-primary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card-index:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-icon-index {
  font-size: clamp(2.25rem, 3vw + 0.5rem, 3rem);
  color: var(--color-primary);
}

.service-title-index {
  color: var(--color-text-primary-dark);
  font-size: clamp(1.1rem, 2vw + 0.4rem, 1.3rem);
  font-weight: 600;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.service-text-index {
  color: var(--color-text-secondary-dark);
  font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.service-link-index {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
  transition: all 0.3s ease;
  align-self: flex-start;
}

.service-link-index:hover {
  transform: translateX(4px);
}

.cookie-banner-index {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--color-bg-secondary);
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 2vw, 1.5rem);
  box-shadow: var(--shadow-lg);
}

.cookie-banner-index.hidden {
  display: none;
}

.cookie-text-index {
  color: var(--color-text-secondary-dark);
  font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
  margin: 0;
  flex: 1 1 200px;
  line-height: 1.5;
}

.cookie-buttons-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.cookie-btn-accept-index {
  padding: 0.5rem 1.25rem;
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
  transition: all 0.3s ease;
}

.cookie-btn-accept-index:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

.cookie-btn-decline-index {
  padding: 0.5rem 1.25rem;
  background: transparent;
  color: var(--color-text-secondary-dark);
  border: 1px solid rgba(var(--color-primary), 0.3);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
  transition: all 0.3s ease;
}

.cookie-btn-decline-index:hover {
  background: rgba(var(--color-primary), 0.05);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero-content-index {
    flex-direction: column;
  }

  .hero-text-index {
    flex: 1 1 100%;
  }

  .hero-image-index {
    flex: 1 1 100%;
    min-height: 250px;
  }

  .hero-image-index img {
    max-height: 350px;
  }

  .featured-card-index {
    flex: 1 1 100%;
  }

  .benefit-card-index {
    flex: 1 1 100%;
  }

  .step-card-index {
    flex: 1 1 100%;
  }

  .testimonial-card-index {
    flex: 1 1 100%;
  }

  .service-card-index {
    flex: 1 1 100%;
  }

  .faq-content-index {
    max-width: 100%;
  }

  .cta-box-index {
    max-width: 100%;
  }

  .cookie-banner-index {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons-index {
    width: 100%;
  }

  .cta-buttons-index {
    flex-direction: column;
  }

  .cta-buttons-index .btn {
    width: 100%;
  }

  .hero-buttons-index {
    flex-direction: column;
  }

  .hero-buttons-index .btn {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero-content-index {
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .featured-card-index {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .benefit-card-index {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .step-card-index {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .testimonial-card-index {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .service-card-index {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (min-width: 1025px) {
  .featured-card-index {
    flex: 1 1 calc(33.333% - 1rem);
  }

  .benefit-card-index {
    flex: 1 1 calc(33.333% - 1rem);
  }

  .step-card-index {
    flex: 1 1 calc(25% - 1.125rem);
  }

  .testimonial-card-index {
    flex: 1 1 calc(33.333% - 1rem);
  }

  .service-card-index {
    flex: 1 1 calc(33.333% - 1rem);
  }
}

    .footer {
  background: var(--color-bg-secondary);
  color: var(--color-text-secondary-dark);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
}

.footer .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.footer-content {
  display: block;
}

.footer-about {
  margin-bottom: clamp(2rem, 5vw, 3rem);
  padding-bottom: clamp(2rem, 5vw, 3rem);
  border-bottom: 1px solid var(--color-border);
}

.footer-about h3 {
  color: var(--color-text-primary-dark);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
  letter-spacing: var(--letter-spacing-normal);
}

.footer-about p {
  color: var(--color-text-secondary-dark);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: var(--line-height-relaxed);
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-sections {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: clamp(2rem, 5vw, 3rem);
  padding-bottom: clamp(2rem, 5vw, 3rem);
  border-bottom: 1px solid var(--color-border);
}

.footer-nav,
.footer-contact,
.footer-legal {
  flex: 1;
  min-width: 200px;
}

.footer-nav h4,
.footer-contact h4,
.footer-legal h4 {
  color: var(--color-text-primary-dark);
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  margin-bottom: var(--space-md);
  letter-spacing: var(--letter-spacing-tight);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  color: var(--color-text-secondary-dark);
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: color var(--transition-base);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-links a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.contact-info {
  display: block;
}

.contact-info p {
  color: var(--color-text-secondary-dark);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: var(--line-height-relaxed);
  margin: 0 0 var(--space-md) 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.contact-info p strong {
  color: var(--color-text-primary-dark);
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}

.footer-copyright {
  text-align: center;
}

.footer-copyright p {
  color: var(--color-text-muted-dark);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .footer-sections {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .footer-nav,
  .footer-contact,
  .footer-legal {
    min-width: 100%;
  }

  .footer-links {
    gap: var(--space-xs);
  }
}

@media (max-width: 480px) {
  .footer {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  .footer-about {
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    padding-bottom: clamp(1.5rem, 3vw, 2rem);
  }

  .footer-sections {
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    padding-bottom: clamp(1.5rem, 3vw, 2rem);
  }

  .footer-nav h4,
  .footer-contact h4,
  .footer-legal h4 {
    font-size: 1rem;
  }

  .contact-info p {
    margin-bottom: var(--space-sm);
  }
}
    

.category-page-feedback-culture {
  width: 100%;
}

.hero-section-feedback-culture {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-content-feedback-culture {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

@media (min-width: 1024px) {
  .hero-content-feedback-culture {
    flex-direction: row;
    align-items: center;
  }
}

.hero-text-feedback-culture {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

@media (min-width: 1024px) {
  .hero-text-feedback-culture {
    flex: 1 1 50%;
  }
}

.hero-title-feedback-culture {
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--line-height-tight);
  color: var(--color-text-primary-light);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-feedback-culture {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary-light);
  line-height: var(--line-height-relaxed);
  font-weight: 500;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-description-feedback-culture {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-visual-feedback-culture {
  flex: 1 1 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-visual-feedback-culture {
    flex: 1 1 50%;
  }
}

.hero-image-feedback-culture {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.posts-section-feedback-culture {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.posts-content-feedback-culture {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.posts-header-feedback-culture {
  text-align: center;
}

.posts-title-feedback-culture {
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.posts-subtitle-feedback-culture {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-light);
  margin-top: clamp(0.5rem, 1vw, 1rem);
  line-height: var(--line-height-normal);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.posts-grid-feedback-culture {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.card-feedback-culture {
  flex: 1 1 100%;
  min-width: 280px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  padding: 0;
}

.card-feedback-culture:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card-image-feedback-culture {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.card-title-feedback-culture {
  font-size: clamp(1.125rem, 2vw + 0.25rem, 1.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  line-height: var(--line-height-tight);
  padding: 0 clamp(1rem, 3vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-description-feedback-culture {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-relaxed);
  padding: 0 clamp(1rem, 3vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-meta-feedback-culture {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: 0 clamp(1rem, 3vw, 1.5rem);
  font-size: clamp(0.75rem, 0.8vw + 0.5rem, 0.875rem);
  color: var(--color-text-muted-light);
}

.card-time-feedback-culture,
.card-level-feedback-culture,
.card-date-feedback-culture {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-muted-light);
}

.card-time-feedback-culture i,
.card-level-feedback-culture i,
.card-date-feedback-culture i {
  opacity: 0.7;
}

.card-link-feedback-culture {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  color: var(--color-bg-dark-accent);
  text-decoration: none;
  transition: all var(--transition-base);
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1rem, 3vw, 1.5rem);
  margin: 0 clamp(1rem, 3vw, 1.5rem) clamp(1rem, 2vw, 1.5rem) clamp(1rem, 3vw, 1.5rem);
  border: 2px solid var(--color-bg-dark-accent);
  border-radius: var(--radius-md);
}

.card-link-feedback-culture:hover {
  background: var(--color-bg-dark-accent);
  color: #ffffff;
}

.insights-section-feedback-culture {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.insights-content-feedback-culture {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.insights-header-feedback-culture {
  text-align: center;
}

.insights-title-feedback-culture {
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-primary-light);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.insights-quote-feedback-culture {
  background: var(--color-bg-card);
  border-left: 5px solid var(--color-bg-dark-accent);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-md);
  margin: clamp(1rem, 2vw, 2rem) 0;
}

.quote-text-feedback-culture {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.375rem);
  font-style: italic;
  color: var(--color-text-primary-dark);
  line-height: var(--line-height-relaxed);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.quote-text-feedback-culture p {
  margin: 0;
  color: var(--color-text-primary-dark);
}

.quote-author-feedback-culture {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: clamp(1rem, 2vw, 1.5rem);
  font-style: normal;
}

.author-name-feedback-culture {
  font-weight: 700;
  color: var(--color-text-primary-dark);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.author-title-feedback-culture {
  font-size: clamp(0.75rem, 0.8vw + 0.5rem, 0.875rem);
  color: var(--color-text-secondary-light);
}

.insights-text-feedback-culture {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.insights-text-feedback-culture p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-height-relaxed);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.concepts-section-feedback-culture {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.concepts-content-feedback-culture {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.concepts-header-feedback-culture {
  text-align: center;
}

.concepts-title-feedback-culture {
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.concepts-subtitle-feedback-culture {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-light);
  margin-top: clamp(0.5rem, 1vw, 1rem);
  line-height: var(--line-height-normal);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.concepts-list-feedback-culture {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.concept-item-feedback-culture {
  flex: 1 1 100%;
  min-width: 250px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}

.concept-item-feedback-culture:hover {
  border-color: var(--color-bg-dark-accent);
  box-shadow: var(--shadow-sm);
}

.concept-name-feedback-culture {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.375rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-bg-dark-accent);
  line-height: var(--line-height-tight);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.concept-text-feedback-culture {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-relaxed);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block;
}

@media (min-width: 768px) {
  .hero-section-feedback-culture {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .posts-section-feedback-culture {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .insights-section-feedback-culture {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .concepts-section-feedback-culture {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

@media (min-width: 1024px) {
  .concepts-list-feedback-culture {
    flex-direction: row;
  }

  .concept-item-feedback-culture {
    flex: 1 1 calc(50% - 1rem);
    max-width: none;
  }
}

.main-kritik-empfangen-offenheit {
  width: 100%;
  font-family: var(--font-primary);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-section-kritik-empfangen-offenheit {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-content-kritik-empfangen-offenheit {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text-kritik-empfangen-offenheit {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-kritik-empfangen-offenheit {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.hero-subtitle-kritik-empfangen-offenheit {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.hero-meta-kritik-empfangen-offenheit {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.meta-item-kritik-empfangen-offenheit {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
}

.meta-item-kritik-empfangen-offenheit i {
  color: var(--color-accent);
}

.hero-image-kritik-empfangen-offenheit {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-kritik-empfangen-offenheit img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

.breadcrumbs-kritik-empfangen-offenheit {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  margin-bottom: var(--space-lg);
  color: var(--color-text-secondary);
}

.breadcrumbs-kritik-empfangen-offenheit a {
  color: var(--color-accent);
  text-decoration: none;
  transition: var(--transition-base);
}

.breadcrumbs-kritik-empfangen-offenheit a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

.intro-section-kritik-empfangen-offenheit {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-kritik-empfangen-offenheit {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-kritik-empfangen-offenheit {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-kritik-empfangen-offenheit {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  line-height: 1.3;
}

.intro-paragraph-kritik-empfangen-offenheit {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.intro-image-kritik-empfangen-offenheit {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-kritik-empfangen-offenheit img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

.mindset-section-kritik-empfangen-offenheit {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.mindset-content-kritik-empfangen-offenheit {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.mindset-image-kritik-empfangen-offenheit {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.mindset-image-kritik-empfangen-offenheit img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

.mindset-text-kritik-empfangen-offenheit {
  flex: 1 1 50%;
  max-width: 50%;
}

.mindset-title-kritik-empfangen-offenheit {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  line-height: 1.3;
}

.mindset-paragraph-kritik-empfangen-offenheit {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.practical-section-kritik-empfangen-offenheit {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practical-content-kritik-empfangen-offenheit {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.practical-header-kritik-empfangen-offenheit {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.practical-title-kritik-empfangen-offenheit {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.practical-subtitle-kritik-empfangen-offenheit {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
}

.steps-wrapper-kritik-empfangen-offenheit {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.step-card-kritik-empfangen-offenheit {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.05);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: var(--transition-base);
}

.step-card-kritik-empfangen-offenheit:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.step-number-kritik-empfangen-offenheit {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}

.step-content-kritik-empfangen-offenheit {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.step-title-kritik-empfangen-offenheit {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.step-text-kritik-empfangen-offenheit {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.tools-section-kritik-empfangen-offenheit {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tools-content-kritik-empfangen-offenheit {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.tools-text-kritik-empfangen-offenheit {
  flex: 1 1 50%;
  max-width: 50%;
}

.tools-title-kritik-empfangen-offenheit {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  line-height: 1.3;
}

.tools-paragraph-kritik-empfangen-offenheit {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.tools-list-kritik-empfangen-offenheit {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.tools-item-kritik-empfangen-offenheit {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  padding-left: var(--space-md);
  position: relative;
}

.tools-item-kritik-empfangen-offenheit::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-size: 1.5rem;
  top: -0.25rem;
}

.tools-item-kritik-empfangen-offenheit strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

.tools-image-kritik-empfangen-offenheit {
  flex: 1 1 50%;
  max-width: 50%;
}

.tools-image-kritik-empfangen-offenheit img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

.deepwork-section-kritik-empfangen-offenheit {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.deepwork-content-kritik-empfangen-offenheit {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.deepwork-image-kritik-empfangen-offenheit {
  flex: 1 1 50%;
  max-width: 50%;
}

.deepwork-image-kritik-empfangen-offenheit img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

.deepwork-text-kritik-empfangen-offenheit {
  flex: 1 1 50%;
  max-width: 50%;
}

.deepwork-title-kritik-empfangen-offenheit {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  line-height: 1.3;
}

.deepwork-paragraph-kritik-empfangen-offenheit {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.reflection-section-kritik-empfangen-offenheit {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.reflection-content-kritik-empfangen-offenheit {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: center;
}

.reflection-box-kritik-empfangen-offenheit {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
  max-width: 700px;
  width: 100%;
}

.reflection-title-kritik-empfangen-offenheit {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.reflection-items-kritik-empfangen-offenheit {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.reflection-item-kritik-empfangen-offenheit {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.reflection-item-kritik-empfangen-offenheit i {
  color: var(--color-accent);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.reflection-item-kritik-empfangen-offenheit p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.disclaimer-section-kritik-empfangen-offenheit {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-kritik-empfangen-offenheit {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-text-kritik-empfangen-offenheit {
  font-size: clamp(0.8rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.03);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-lg);
}

.disclaimer-text-kritik-empfangen-offenheit strong {
  color: var(--color-text-primary);
}

.related-section-kritik-empfangen-offenheit {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-kritik-empfangen-offenheit {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-title-kritik-empfangen-offenheit {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.related-cards-kritik-empfangen-offenheit {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-kritik-empfangen-offenheit {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 300px;
  max-width: 400px;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-base);
  border: 1px solid var(--color-border);
}

.related-card-kritik-empfangen-offenheit:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.related-image-kritik-empfangen-offenheit {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
}

.related-card-content-kritik-empfangen-offenheit {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex-grow: 1;
}

.related-card-title-kritik-empfangen-offenheit {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.3;
}

.related-card-text-kritik-empfangen-offenheit {
  font-size: clamp(0.8rem, 1vw + 0.4rem, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  flex-grow: 1;
}

.related-link-kritik-empfangen-offenheit {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  margin-top: var(--space-sm);
  transition: var(--transition-base);
}

.related-link-kritik-empfangen-offenheit:hover {
  color: var(--color-accent-hover);
  gap: var(--space-sm);
}

@media (max-width: 768px) {
  .hero-content-kritik-empfangen-offenheit,
  .intro-content-kritik-empfangen-offenheit,
  .mindset-content-kritik-empfangen-offenheit,
  .tools-content-kritik-empfangen-offenheit,
  .deepwork-content-kritik-empfangen-offenheit {
    flex-direction: column;
  }

  .hero-text-kritik-empfangen-offenheit,
  .hero-image-kritik-empfangen-offenheit,
  .intro-text-kritik-empfangen-offenheit,
  .intro-image-kritik-empfangen-offenheit,
  .mindset-image-kritik-empfangen-offenheit,
  .mindset-text-kritik-empfangen-offenheit,
  .tools-text-kritik-empfangen-offenheit,
  .tools-image-kritik-empfangen-offenheit,
  .deepwork-image-kritik-empfangen-offenheit,
  .deepwork-text-kritik-empfangen-offenheit {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .mindset-image-kritik-empfangen-offenheit {
    order: 0;
  }

  .step-card-kritik-empfangen-offenheit {
    flex: 1 1 100%;
    min-width: auto;
    max-width: none;
  }

  .related-card-kritik-empfangen-offenheit {
    flex: 1 1 100%;
    min-width: auto;
    max-width: none;
  }

  .meta-item-kritik-empfangen-offenheit {
    flex: 1 1 auto;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .step-card-kritik-empfangen-offenheit {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: auto;
  }

  .related-card-kritik-empfangen-offenheit {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: auto;
  }
}

.main-feedback-geben-ohne-abwehr {
word-wrap: break-word;
overflow-wrap: break-word;
}

.main-feedback-geben-ohne-abwehr h1,
.main-feedback-geben-ohne-abwehr h2,
.main-feedback-geben-ohne-abwehr h3,
.main-feedback-geben-ohne-abwehr h4,
.main-feedback-geben-ohne-abwehr h5,
.main-feedback-geben-ohne-abwehr h6,
.main-feedback-geben-ohne-abwehr p {
word-wrap: break-word;
overflow-wrap: break-word;
}

.container {
max-width: 1440px;
margin: 0 auto;
padding: 0 clamp(1rem, 4vw, 2rem);
display: block !important;
}

.hero-section-feedback-geben-ohne-abwehr {
background: var(--color-bg-primary);
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.hero-content-feedback-geben-ohne-abwehr {
display: flex;
flex-direction: row;
gap: clamp(2rem, 5vw, 4rem);
align-items: center;
}

.hero-text-feedback-geben-ohne-abwehr {
flex: 1 1 50%;
max-width: 50%;
}

.hero-image-feedback-geben-ohne-abwehr {
flex: 1 1 50%;
max-width: 50%;
}

.hero-img-feedback-geben-ohne-abwehr {
width: 100%;
height: auto;
max-height: 500px;
object-fit: cover;
border-radius: var(--radius-lg);
display: block;
}

.hero-title-feedback-geben-ohne-abwehr {
font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
font-weight: 800;
color: var(--color-text-primary-dark);
margin-bottom: clamp(1rem, 2vw, 1.5rem);
line-height: var(--line-height-tight);
}

.hero-subtitle-feedback-geben-ohne-abwehr {
font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
color: var(--color-text-secondary-dark);
margin-bottom: clamp(1.5rem, 3vw, 2rem);
line-height: var(--line-height-relaxed);
}

.hero-meta-feedback-geben-ohne-abwehr {
display: flex;
flex-direction: row;
gap: 1rem;
align-items: center;
flex-wrap: wrap;
}

.meta-item-feedback-geben-ohne-abwehr {
font-size: clamp(0.875rem, 1vw, 1rem);
color: var(--color-text-secondary-dark);
}

.meta-separator-feedback-geben-ohne-abwehr {
color: var(--color-text-muted-dark);
}

.breadcrumbs-feedback-geben-ohne-abwehr {
display: flex;
flex-direction: row;
gap: 0.5rem;
margin-bottom: clamp(2rem, 4vw, 3rem);
flex-wrap: wrap;
}

.breadcrumbs-feedback-geben-ohne-abwehr a {
color: var(--color-primary);
text-decoration: none;
font-size: clamp(0.875rem, 1vw, 1rem);
transition: color var(--transition-base);
}

.breadcrumbs-feedback-geben-ohne-abwehr a:hover {
color: var(--color-primary-hover);
text-decoration: underline;
}

.breadcrumbs-feedback-geben-ohne-abwehr span {
color: var(--color-text-secondary-dark);
font-size: clamp(0.875rem, 1vw, 1rem);
}

.intro-section-feedback-geben-ohne-abwehr {
background: var(--color-bg-secondary);
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.intro-content-feedback-geben-ohne-abwehr {
display: flex;
flex-direction: row;
gap: clamp(2rem, 5vw, 4rem);
align-items: center;
}

.intro-text-feedback-geben-ohne-abwehr {
flex: 1 1 50%;
max-width: 50%;
}

.intro-image-feedback-geben-ohne-abwehr {
flex: 1 1 50%;
max-width: 50%;
}

.intro-title-feedback-geben-ohne-abwehr {
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
font-weight: 700;
color: var(--color-text-primary-light);
margin-bottom: clamp(1.5rem, 3vw, 2rem);
line-height: var(--line-height-tight);
}

.intro-paragraph-feedback-geben-ohne-abwehr {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
color: var(--color-text-secondary-light);
margin-bottom: clamp(1rem, 2vw, 1.5rem);
line-height: var(--line-height-relaxed);
}

.intro-img-feedback-geben-ohne-abwehr {
width: 100%;
height: auto;
max-height: 400px;
object-fit: cover;
border-radius: var(--radius-lg);
display: block;
}

.principle-section-feedback-geben-ohne-abwehr {
background: var(--color-bg-primary);
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.principle-content-feedback-geben-ohne-abwehr {
display: flex;
flex-direction: row;
gap: clamp(2rem, 5vw, 4rem);
align-items: center;
}

.principle-text-feedback-geben-ohne-abwehr {
flex: 1 1 50%;
max-width: 50%;
}

.principle-image-feedback-geben-ohne-abwehr {
flex: 1 1 50%;
max-width: 50%;
}

.principle-title-feedback-geben-ohne-abwehr {
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
font-weight: 700;
color: var(--color-text-primary-dark);
margin-bottom: clamp(1.5rem, 3vw, 2rem);
line-height: var(--line-height-tight);
}

.principle-paragraph-feedback-geben-ohne-abwehr {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
color: var(--color-text-secondary-dark);
margin-bottom: clamp(1rem, 2vw, 1.5rem);
line-height: var(--line-height-relaxed);
}

.principle-img-feedback-geben-ohne-abwehr {
width: 100%;
height: auto;
max-height: 400px;
object-fit: cover;
border-radius: var(--radius-lg);
display: block;
}

.techniques-section-feedback-geben-ohne-abwehr {
background: var(--color-bg-secondary);
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.techniques-header-feedback-geben-ohne-abwehr {
text-align: center;
margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.techniques-title-feedback-geben-ohne-abwehr {
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
font-weight: 700;
color: var(--color-text-primary-light);
margin-bottom: clamp(0.75rem, 2vw, 1.5rem);
line-height: var(--line-height-tight);
}

.techniques-subtitle-feedback-geben-ohne-abwehr {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
color: var(--color-text-secondary-light);
line-height: var(--line-height-relaxed);
}

.techniques-cards-feedback-geben-ohne-abwehr {
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: clamp(1.5rem, 3vw, 2.5rem);
justify-content: center;
}

.technique-card-feedback-geben-ohne-abwehr {
flex: 1 1 calc(50% - 1.25rem);
max-width: 380px;
background: var(--color-bg-card);
padding: clamp(1.5rem, 3vw, 2.5rem);
border-radius: var(--radius-lg);
display: flex;
flex-direction: column;
gap: 1rem;
transition: transform var(--transition-base);
}

.technique-card-feedback-geben-ohne-abwehr:hover {
transform: translateY(-4px);
}

.card-icon-feedback-geben-ohne-abwehr {
font-size: 2.5rem;
color: var(--color-primary);
}

.card-title-feedback-geben-ohne-abwehr {
font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
font-weight: 600;
color: var(--color-text-primary-light);
margin: 0;
}

.card-text-feedback-geben-ohne-abwehr {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
color: var(--color-text-secondary-light);
margin: 0;
line-height: var(--line-height-relaxed);
}

.example-section-feedback-geben-ohne-abwehr {
background: var(--color-bg-primary);
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.example-content-feedback-geben-ohne-abwehr {
display: flex;
flex-direction: row;
gap: clamp(2rem, 5vw, 4rem);
align-items: center;
}

.example-text-feedback-geben-ohne-abwehr {
flex: 1 1 50%;
max-width: 50%;
}

.example-image-feedback-geben-ohne-abwehr {
flex: 1 1 50%;
max-width: 50%;
}

.example-title-feedback-geben-ohne-abwehr {
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
font-weight: 700;
color: var(--color-text-primary-dark);
margin-bottom: clamp(1.5rem, 3vw, 2rem);
line-height: var(--line-height-tight);
}

.example-paragraph-feedback-geben-ohne-abwehr {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
color: var(--color-text-secondary-dark);
margin-bottom: clamp(1rem, 2vw, 1.5rem);
line-height: var(--line-height-relaxed);
}

.example-img-feedback-geben-ohne-abwehr {
width: 100%;
height: auto;
max-height: 400px;
object-fit: cover;
border-radius: var(--radius-lg);
display: block;
}

.deeper-section-feedback-geben-ohne-abwehr {
background: var(--color-bg-secondary);
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.deeper-content-feedback-geben-ohne-abwehr {
display: flex;
flex-direction: row;
gap: clamp(2rem, 5vw, 4rem);
align-items: center;
}

.deeper-text-feedback-geben-ohne-abwehr {
flex: 1 1 50%;
max-width: 50%;
}

.deeper-image-feedback-geben-ohne-abwehr {
flex: 1 1 50%;
max-width: 50%;
}

.deeper-title-feedback-geben-ohne-abwehr {
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
font-weight: 700;
color: var(--color-text-primary-light);
margin-bottom: clamp(1.5rem, 3vw, 2rem);
line-height: var(--line-height-tight);
}

.deeper-paragraph-feedback-geben-ohne-abwehr {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
color: var(--color-text-secondary-light);
margin-bottom: clamp(1rem, 2vw, 1.5rem);
line-height: var(--line-height-relaxed);
}

.deeper-img-feedback-geben-ohne-abwehr {
width: 100%;
height: auto;
max-height: 400px;
object-fit: cover;
border-radius: var(--radius-lg);
display: block;
}

.practice-section-feedback-geben-ohne-abwehr {
background: var(--color-bg-primary);
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.practice-header-feedback-geben-ohne-abwehr {
text-align: center;
margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.practice-title-feedback-geben-ohne-abwehr {
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
font-weight: 700;
color: var(--color-text-primary-dark);
margin-bottom: clamp(0.75rem, 2vw, 1.5rem);
line-height: var(--line-height-tight);
}

.practice-subtitle-feedback-geben-ohne-abwehr {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
color: var(--color-text-secondary-dark);
line-height: var(--line-height-relaxed);
}

.practice-steps-feedback-geben-ohne-abwehr {
display: flex;
flex-direction: column;
gap: clamp(2rem, 4vw, 3rem);
max-width: 900px;
margin: 0 auto;
}

.practice-step-feedback-geben-ohne-abwehr {
display: flex;
flex-direction: row;
gap: clamp(1.5rem, 3vw, 2.5rem);
align-items: flex-start;
}

.step-number-feedback-geben-ohne-abwehr {
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 800;
color: var(--color-primary);
flex-shrink: 0;
min-width: 60px;
}

.step-content-feedback-geben-ohne-abwehr {
flex: 1;
}

.step-title-feedback-geben-ohne-abwehr {
font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
font-weight: 600;
color: var(--color-text-primary-dark);
margin-bottom: clamp(0.5rem, 1vw, 1rem);
margin-top: 0;
}

.step-text-feedback-geben-ohne-abwehr {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
color: var(--color-text-secondary-dark);
line-height: var(--line-height-relaxed);
margin: 0;
}

.quote-section-feedback-geben-ohne-abwehr {
background: var(--color-bg-secondary);
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.featured-quote-feedback-geben-ohne-abwehr {
background: var(--color-bg-card);
padding: clamp(2rem, 4vw, 3.5rem);
border-left: 4px solid var(--color-primary);
border-radius: var(--radius-md);
max-width: 800px;
margin: 0 auto;
}

.quote-text-feedback-geben-ohne-abwehr {
font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
color: var(--color-text-primary-light);
font-style: italic;
margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
line-height: var(--line-height-relaxed);
}

.quote-author-feedback-geben-ohne-abwehr {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
color: var(--color-text-secondary-light);
display: block;
margin: 0;
}

.conclusion-section-feedback-geben-ohne-abwehr {
background: var(--color-bg-primary);
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.conclusion-content-feedback-geben-ohne-abwehr {
max-width: 800px;
margin: 0 auto;
}

.conclusion-title-feedback-geben-ohne-abwehr {
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
font-weight: 700;
color: var(--color-text-primary-dark);
margin-bottom: clamp(1.5rem, 3vw, 2rem);
line-height: var(--line-height-tight);
}

.conclusion-paragraph-feedback-geben-ohne-abwehr {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
color: var(--color-text-secondary-dark);
margin-bottom: clamp(1rem, 2vw, 1.5rem);
line-height: var(--line-height-relaxed);
}

.conclusion-cta-feedback-geben-ohne-abwehr {
margin-top: clamp(2rem, 4vw, 3rem);
text-align: center;
}

.btn-primary-feedback-geben-ohne-abwehr {
display: inline-block;
background: var(--color-primary);
color: #ffffff;
padding: clamp(0.875rem, 1.5vw, 1.25rem) clamp(1.5rem, 3vw, 2.5rem);
border-radius: var(--radius-md);
text-decoration: none;
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
font-weight: 600;
transition: all var(--transition-base);
}

.btn-primary-feedback-geben-ohne-abwehr:hover {
background: var(--color-primary-hover);
}

.disclaimer-section-feedback-geben-ohne-abwehr {
background: var(--color-bg-secondary);
padding: clamp(2rem, 5vw, 4rem) 0;
overflow: hidden;
}

.disclaimer-content-feedback-geben-ohne-abwehr {
background: var(--color-bg-card);
padding: clamp(1.5rem, 3vw, 2.5rem);
border-radius: var(--radius-lg);
max-width: 900px;
margin: 0 auto;
border-left: 4px solid var(--color-accent-warm);
}

.disclaimer-title-feedback-geben-ohne-abwehr {
font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
font-weight: 600;
color: var(--color-text-primary-light);
margin: 0 0 clamp(0.75rem, 1.5vw, 1.25rem) 0;
}

.disclaimer-text-feedback-geben-ohne-abwehr {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
color: var(--color-text-secondary-light);
line-height: var(--line-height-relaxed);
margin: 0;
}

.related-section-feedback-geben-ohne-abwehr {
background: var(--color-bg-primary);
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.related-header-feedback-geben-ohne-abwehr {
text-align: center;
margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.related-title-feedback-geben-ohne-abwehr {
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
font-weight: 700;
color: var(--color-text-primary-dark);
margin: 0;
line-height: var(--line-height-tight);
}

.related-cards-feedback-geben-ohne-abwehr {
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: clamp(1.5rem, 3vw, 2.5rem);
justify-content: center;
}

.related-card-feedback-geben-ohne-abwehr {
flex: 1 1 calc(33.333% - 1.67rem);
max-width: 400px;
background: var(--color-bg-secondary);
border-radius: var(--radius-lg);
overflow: hidden;
transition: transform var(--transition-base);
}

.related-card-feedback-geben-ohne-abwehr:hover {
transform: translateY(-4px);
}

.related-image-feedback-geben-ohne-abwehr {
width: 100%;
height: 200px;
overflow: hidden;
}

.related-img-feedback-geben-ohne-abwehr {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

.related-content-feedback-geben-ohne-abwehr {
padding: clamp(1.5rem, 2vw, 2rem);
}

.related-card-title-feedback-geben-ohne-abwehr {
font-size: clamp(1rem, 1.5vw + 0.5rem, 1.375rem);
font-weight: 600;
color: var(--color-text-primary-light);
margin: 0 0 clamp(0.5rem, 1vw, 1rem) 0;
line-height: var(--line-height-tight);
}

.related-card-text-feedback-geben-ohne-abwehr {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
color: var(--color-text-secondary-light);
margin: 0 0 clamp(1rem, 1.5vw, 1.5rem) 0;
line-height: var(--line-height-relaxed);
}

.related-link-feedback-geben-ohne-abwehr {
display: inline-block;
color: var(--color-primary);
text-decoration: none;
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
font-weight: 500;
transition: color var(--transition-base);
}

.related-link-feedback-geben-ohne-abwehr:hover {
color: var(--color-primary-hover);
text-decoration: underline;
}

@media (max-width: 768px) {
.hero-content-feedback-geben-ohne-abwehr {
flex-direction: column;
}

.hero-text-feedback-geben-ohne-abwehr,
.hero-image-feedback-geben-ohne-abwehr {
flex: 1 1 100%;
max-width: 100%;
}

.intro-content-feedback-geben-ohne-abwehr {
flex-direction: column;
}

.intro-text-feedback-geben-ohne-abwehr,
.intro-image-feedback-geben-ohne-abwehr {
flex: 1 1 100%;
max-width: 100%;
}

.principle-content-feedback-geben-ohne-abwehr {
flex-direction: column;
}

.principle-text-feedback-geben-ohne-abwehr,
.principle-image-feedback-geben-ohne-abwehr {
flex: 1 1 100%;
max-width: 100%;
}

.example-content-feedback-geben-ohne-abwehr {
flex-direction: column;
}

.example-text-feedback-geben-ohne-abwehr,
.example-image-feedback-geben-ohne-abwehr {
flex: 1 1 100%;
max-width: 100%;
}

.deeper-content-feedback-geben-ohne-abwehr {
flex-direction: column;
}

.deeper-text-feedback-geben-ohne-abwehr,
.deeper-image-feedback-geben-ohne-abwehr {
flex: 1 1 100%;
max-width: 100%;
}

.technique-card-feedback-geben-ohne-abwehr {
flex: 1 1 100%;
max-width: 100%;
}

.practice-step-feedback-geben-ohne-abwehr {
flex-direction: column;
}

.step-number-feedback-geben-ohne-abwehr {
min-width: auto;
}

.related-card-feedback-geben-ohne-abwehr {
flex: 1 1 100%;
max-width: 100%;
}
}

@media (max-width: 1024px) {
.technique-card-feedback-geben-ohne-abwehr {
flex: 1 1 calc(50% - 0.75rem);
}

.related-card-feedback-geben-ohne-abwehr {
flex: 1 1 calc(50% - 0.75rem);
}
}

* {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.main-persoenliche-verbesserungsschleife {
  width: 100%;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: block;
}

.hero-section-persoenliche-verbesserungsschleife {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.breadcrumbs-persoenliche-verbesserungsschleife {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.95rem);
}

.breadcrumbs-persoenliche-verbesserungsschleife a,
.breadcrumbs-persoenliche-verbesserungsschleife span {
  color: var(--color-text-secondary-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-persoenliche-verbesserungsschleife a:hover {
  color: var(--color-primary);
}

.hero-content-persoenliche-verbesserungsschleife {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text-persoenliche-verbesserungsschleife {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-persoenliche-verbesserungsschleife {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-persoenliche-verbesserungsschleife {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary-dark);
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: var(--font-heading);
}

.hero-subtitle-persoenliche-verbesserungsschleife {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-meta-persoenliche-verbesserungsschleife {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 2rem);
}

.meta-item-persoenliche-verbesserungsschleife {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary-dark);
}

.meta-item-persoenliche-verbesserungsschleife i {
  color: var(--color-primary);
}

.hero-img-persoenliche-verbesserungsschleife {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .hero-content-persoenliche-verbesserungsschleife {
    flex-direction: column;
  }

  .hero-text-persoenliche-verbesserungsschleife,
  .hero-image-persoenliche-verbesserungsschleife {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.intro-section-persoenliche-verbesserungsschleife {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-persoenliche-verbesserungsschleife {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-persoenliche-verbesserungsschleife {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-persoenliche-verbesserungsschleife {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-persoenliche-verbesserungsschleife {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  line-height: 1.3;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-family: var(--font-heading);
}

.intro-paragraph-persoenliche-verbesserungsschleife {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-img-persoenliche-verbesserungsschleife {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .intro-content-persoenliche-verbesserungsschleife {
    flex-direction: column;
  }

  .intro-text-persoenliche-verbesserungsschleife,
  .intro-image-persoenliche-verbesserungsschleife {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.cycle-section-persoenliche-verbesserungsschleife {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.cycle-content-persoenliche-verbesserungsschleife {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.cycle-header-persoenliche-verbesserungsschleife {
  text-align: center;
}

.cycle-title-persoenliche-verbesserungsschleife {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  line-height: 1.3;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: var(--font-heading);
}

.cycle-subtitle-persoenliche-verbesserungsschleife {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.15rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.cycle-steps-persoenliche-verbesserungsschleife {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.step-item-persoenliche-verbesserungsschleife {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
}

.step-number-persoenliche-verbesserungsschleife {
  flex-shrink: 0;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  min-width: clamp(3rem, 8vw, 5rem);
}

.step-details-persoenliche-verbesserungsschleife {
  flex: 1;
  padding-top: clamp(0.5rem, 1vw, 1rem);
}

.step-title-persoenliche-verbesserungsschleife {
  font-size: clamp(1.15rem, 2.5vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  line-height: 1.3;
}

.step-text-persoenliche-verbesserungsschleife {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
}

.setup-section-persoenliche-verbesserungsschleife {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.setup-content-persoenliche-verbesserungsschleife {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.setup-image-persoenliche-verbesserungsschleife {
  flex: 1 1 50%;
  max-width: 50%;
}

.setup-text-persoenliche-verbesserungsschleife {
  flex: 1 1 50%;
  max-width: 50%;
}

.setup-title-persoenliche-verbesserungsschleife {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  line-height: 1.3;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-family: var(--font-heading);
}

.setup-subtitle-persoenliche-verbesserungsschleife {
  font-size: clamp(1.05rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary-dark);
  margin-top: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  line-height: 1.4;
}

.setup-paragraph-persoenliche-verbesserungsschleife {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.setup-img-persoenliche-verbesserungsschleife {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .setup-content-persoenliche-verbesserungsschleife {
    flex-direction: column;
  }

  .setup-image-persoenliche-verbesserungsschleife,
  .setup-text-persoenliche-verbesserungsschleife {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.practice-section-persoenliche-verbesserungsschleife {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practice-content-persoenliche-verbesserungsschleife {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.practice-text-persoenliche-verbesserungsschleife {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-image-persoenliche-verbesserungsschleife {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-title-persoenliche-verbesserungsschleife {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  line-height: 1.3;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-family: var(--font-heading);
}

.practice-paragraph-persoenliche-verbesserungsschleife {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.practice-box-persoenliche-verbesserungsschleife {
  background: rgba(var(--color-primary), 0.1);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.practice-highlight-persoenliche-verbesserungsschleife {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
  margin: 0;
}

.practice-img-persoenliche-verbesserungsschleife {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .practice-content-persoenliche-verbesserungsschleife {
    flex-direction: column;
  }

  .practice-text-persoenliche-verbesserungsschleife,
  .practice-image-persoenliche-verbesserungsschleife {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.review-section-persoenliche-verbesserungsschleife {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.review-content-persoenliche-verbesserungsschleife {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.review-image-persoenliche-verbesserungsschleife {
  flex: 1 1 50%;
  max-width: 50%;
}

.review-text-persoenliche-verbesserungsschleife {
  flex: 1 1 50%;
  max-width: 50%;
}

.review-title-persoenliche-verbesserungsschleife {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  line-height: 1.3;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-family: var(--font-heading);
}

.review-paragraph-persoenliche-verbesserungsschleife {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.review-stats-persoenliche-verbesserungsschleife {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.stat-box-persoenliche-verbesserungsschleife {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stat-number-persoenliche-verbesserungsschleife {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label-persoenliche-verbesserungsschleife {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-secondary-dark);
  text-align: center;
}

.review-img-persoenliche-verbesserungsschleife {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .review-content-persoenliche-verbesserungsschleife {
    flex-direction: column;
  }

  .review-image-persoenliche-verbesserungsschleife,
  .review-text-persoenliche-verbesserungsschleife {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.common-section-persoenliche-verbesserungsschleife {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.common-content-persoenliche-verbesserungsschleife {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.common-header-persoenliche-verbesserungsschleife {
  text-align: center;
}

.common-title-persoenliche-verbesserungsschleife {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  line-height: 1.3;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: var(--font-heading);
}

.common-subtitle-persoenliche-verbesserungsschleife {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.15rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.common-cards-persoenliche-verbesserungsschleife {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.common-card-persoenliche-verbesserungsschleife {
  flex: 1 1 calc(50% - 0.75rem);
  max-width: 350px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  transition: transform 0.3s ease;
}

.common-card-persoenliche-verbesserungsschleife:hover {
  transform: translateY(-4px);
}

.card-title-persoenliche-verbesserungsschleife {
  font-size: clamp(1.05rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  line-height: 1.3;
}

.card-text-persoenliche-verbesserungsschleife {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .common-card-persoenliche-verbesserungsschleife {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.closing-section-persoenliche-verbesserungsschleife {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.closing-content-persoenliche-verbesserungsschleife {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.closing-title-persoenliche-verbesserungsschleife {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  line-height: 1.3;
  font-family: var(--font-heading);
}

.closing-paragraph-persoenliche-verbesserungsschleife {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.8;
  margin: 0;
}

.closing-cta-persoenliche-verbesserungsschleife {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.btn-primary-persoenliche-verbesserungsschleife {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.25rem);
  background: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.05rem);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary-persoenliche-verbesserungsschleife:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

.related-section-persoenliche-verbesserungsschleife {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-persoenliche-verbesserungsschleife {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-header-persoenliche-verbesserungsschleife {
  text-align: center;
}

.related-title-persoenliche-verbesserungsschleife {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  line-height: 1.3;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-family: var(--font-heading);
}

.related-subtitle-persoenliche-verbesserungsschleife {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.15rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
}

.related-cards-persoenliche-verbesserungsschleife {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-persoenliche-verbesserungsschleife {
  flex: 1 1 calc(33.333% - 1.5rem);
  max-width: 380px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.related-card-persoenliche-verbesserungsschleife:hover {
  transform: translateY(-6px);
}

.related-card-image-persoenliche-verbesserungsschleife {
  width: 100%;
  height: auto;
  min-height: 220px;
  max-height: 280px;
  overflow: hidden;
}

.related-card-img-persoenliche-verbesserungsschleife {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-text-persoenliche-verbesserungsschleife {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  flex: 1;
}

.related-card-title-persoenliche-verbesserungsschleife {
  font-size: clamp(1.05rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  line-height: 1.3;
  margin: 0;
}

.related-card-description-persoenliche-verbesserungsschleife {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.related-link-persoenliche-verbesserungsschleife {
  display: inline-block;
  color: var(--color-primary);
  text-decoration: none;
  font-size: clamp(0.85rem, 1vw + 0.5rem, 0.95rem);
  font-weight: 600;
  transition: color 0.3s ease;
  margin-top: clamp(0.5rem, 1vw, 0.75rem);
}

.related-link-persoenliche-verbesserungsschleife:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-card-persoenliche-verbesserungsschleife {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  .related-card-persoenliche-verbesserungsschleife {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.disclaimer-section-persoenliche-verbesserungsschleife {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-content-persoenliche-verbesserungsschleife {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-box-persoenliche-verbesserungsschleife {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: rgba(var(--color-primary), 0.08);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.disclaimer-title-persoenliche-verbesserungsschleife {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.35rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  line-height: 1.3;
}

.disclaimer-text-persoenliche-verbesserungsschleife {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 1024px) {
  .hero-section-persoenliche-verbesserungsschleife {
    padding: 5rem 0 6rem 0;
  }

  .intro-section-persoenliche-verbesserungsschleife {
    padding: 6rem 0;
  }

  .cycle-section-persoenliche-verbesserungsschleife {
    padding: 6rem 0;
  }

  .setup-section-persoenliche-verbesserungsschleife {
    padding: 6rem 0;
  }

  .practice-section-persoenliche-verbesserungsschleife {
    padding: 6rem 0;
  }

  .review-section-persoenliche-verbesserungsschleife {
    padding: 6rem 0;
  }

  .common-section-persoenliche-verbesserungsschleife {
    padding: 6rem 0;
  }

  .closing-section-persoenliche-verbesserungsschleife {
    padding: 6rem 0;
  }

  .related-section-persoenliche-verbesserungsschleife {
    padding: 6rem 0;
  }

  .disclaimer-section-persoenliche-verbesserungsschleife {
    padding: 5rem 0;
  }
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 4px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  scroll-behavior: smooth;
}

.main-peer-feedback-kreise-moderation {
  width: 100%;
  overflow-x: hidden;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block;
}

.hero-section-peer-feedback-kreise-moderation {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.hero-content-peer-feedback-kreise-moderation {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text-wrapper-peer-feedback-kreise-moderation {
  flex: 1 1 50%;
  max-width: 50%;
}

.breadcrumbs-peer-feedback-kreise-moderation {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.75rem, 1vw + 0.25rem, 0.875rem);
  flex-wrap: wrap;
}

.breadcrumbs-peer-feedback-kreise-moderation a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all var(--transition-base) ease;
}

.breadcrumbs-peer-feedback-kreise-moderation a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumbs-peer-feedback-kreise-moderation span {
  color: var(--color-text-secondary);
}

.hero-title-peer-feedback-kreise-moderation {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-peer-feedback-kreise-moderation {
  font-size: clamp(1rem, 1.5vw + 0.25rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-peer-feedback-kreise-moderation {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
}

.meta-item-peer-feedback-kreise-moderation {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  color: var(--color-text-secondary);
}

.meta-item-peer-feedback-kreise-moderation i {
  color: var(--color-primary);
}

.hero-image-wrapper-peer-feedback-kreise-moderation {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-peer-feedback-kreise-moderation {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .hero-content-peer-feedback-kreise-moderation {
    flex-direction: column;
  }

  .hero-text-wrapper-peer-feedback-kreise-moderation,
  .hero-image-wrapper-peer-feedback-kreise-moderation {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-peer-feedback-kreise-moderation {
    max-height: 300px;
  }

  .breadcrumbs-peer-feedback-kreise-moderation {
    margin-bottom: 1rem;
  }
}

.intro-section-peer-feedback-kreise-moderation {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-peer-feedback-kreise-moderation {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.intro-text-peer-feedback-kreise-moderation {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.intro-lead-peer-feedback-kreise-moderation {
  font-size: clamp(1rem, 1.5vw + 0.25rem, 1.25rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  font-weight: 600;
}

.intro-body-peer-feedback-kreise-moderation {
  font-size: clamp(0.9rem, 1.2vw + 0.25rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.intro-highlights-peer-feedback-kreise-moderation {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 2rem);
  flex-wrap: wrap;
  justify-content: center;
}

.highlight-card-peer-feedback-kreise-moderation {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 200px;
  max-width: 300px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.highlight-icon-peer-feedback-kreise-moderation {
  font-size: 2.5rem;
  color: var(--color-primary);
}

.highlight-title-peer-feedback-kreise-moderation {
  font-size: clamp(1rem, 1.5vw + 0.25rem, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 600;
}

.highlight-text-peer-feedback-kreise-moderation {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
}

@media (max-width: 768px) {
  .intro-highlights-peer-feedback-kreise-moderation {
    flex-direction: column;
  }

  .highlight-card-peer-feedback-kreise-moderation {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-one-peer-feedback-kreise-moderation {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-one-peer-feedback-kreise-moderation {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.content-text-one-peer-feedback-kreise-moderation {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-one-peer-feedback-kreise-moderation {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.content-paragraph-one-peer-feedback-kreise-moderation {
  font-size: clamp(0.95rem, 1.2vw + 0.25rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.steps-list-peer-feedback-kreise-moderation {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.step-item-peer-feedback-kreise-moderation {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.step-number-peer-feedback-kreise-moderation {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-primary);
  min-width: 60px;
  flex-shrink: 0;
}

.step-content-peer-feedback-kreise-moderation {
  flex: 1;
}

.step-title-peer-feedback-kreise-moderation {
  font-size: clamp(1rem, 1.5vw + 0.25rem, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.step-text-peer-feedback-kreise-moderation {
  font-size: clamp(0.9rem, 1.2vw + 0.25rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
}

.content-image-one-peer-feedback-kreise-moderation {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-peer-feedback-kreise-moderation {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .content-wrapper-one-peer-feedback-kreise-moderation {
    flex-direction: column;
  }

  .content-text-one-peer-feedback-kreise-moderation,
  .content-image-one-peer-feedback-kreise-moderation {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-two-peer-feedback-kreise-moderation {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-two-peer-feedback-kreise-moderation {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.content-image-two-peer-feedback-kreise-moderation {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-text-two-peer-feedback-kreise-moderation {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-two-peer-feedback-kreise-moderation {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.content-paragraph-two-peer-feedback-kreise-moderation {
  font-size: clamp(0.95rem, 1.2vw + 0.25rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-list-peer-feedback-kreise-moderation {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  margin-top: clamp(1.5rem, 3vw, 2rem);
  margin-left: 1.5rem;
}

.list-item-peer-feedback-kreise-moderation {
  font-size: clamp(0.95rem, 1.2vw + 0.25rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  list-style: disc;
}

.list-item-peer-feedback-kreise-moderation strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

.quote-peer-feedback-kreise-moderation {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-md);
}

.quote-text-peer-feedback-kreise-moderation {
  font-size: clamp(1rem, 1.5vw + 0.25rem, 1.25rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  font-style: italic;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.quote-author-peer-feedback-kreise-moderation {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: var(--color-text-secondary);
  font-style: normal;
  display: block;
}

@media (max-width: 768px) {
  .content-wrapper-two-peer-feedback-kreise-moderation {
    flex-direction: column;
  }

  .content-image-two-peer-feedback-kreise-moderation,
  .content-text-two-peer-feedback-kreise-moderation {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-three-peer-feedback-kreise-moderation {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-three-peer-feedback-kreise-moderation {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.content-text-three-peer-feedback-kreise-moderation {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-three-peer-feedback-kreise-moderation {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.content-paragraph-three-peer-feedback-kreise-moderation {
  font-size: clamp(0.95rem, 1.2vw + 0.25rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-image-three-peer-feedback-kreise-moderation {
  flex: 1 1 50%;
  max-width: 50%;
}

@media (max-width: 768px) {
  .content-wrapper-three-peer-feedback-kreise-moderation {
    flex-direction: column;
  }

  .content-text-three-peer-feedback-kreise-moderation,
  .content-image-three-peer-feedback-kreise-moderation {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-four-peer-feedback-kreise-moderation {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-four-peer-feedback-kreise-moderation {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.content-image-four-peer-feedback-kreise-moderation {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-text-four-peer-feedback-kreise-moderation {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-four-peer-feedback-kreise-moderation {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.content-paragraph-four-peer-feedback-kreise-moderation {
  font-size: clamp(0.95rem, 1.2vw + 0.25rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

@media (max-width: 768px) {
  .content-wrapper-four-peer-feedback-kreise-moderation {
    flex-direction: column;
  }

  .content-image-four-peer-feedback-kreise-moderation,
  .content-text-four-peer-feedback-kreise-moderation {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.tips-section-peer-feedback-kreise-moderation {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tips-content-peer-feedback-kreise-moderation {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.tips-title-peer-feedback-kreise-moderation {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
  line-height: var(--line-height-tight);
}

.tips-grid-peer-feedback-kreise-moderation {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 2rem);
  flex-wrap: wrap;
  justify-content: center;
}

.tip-card-peer-feedback-kreise-moderation {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 220px;
  max-width: 320px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  text-align: center;
  transition: all var(--transition-base) ease;
}

.tip-card-peer-feedback-kreise-moderation:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.tip-icon-peer-feedback-kreise-moderation {
  font-size: 2.5rem;
  color: var(--color-primary);
}

.tip-card-title-peer-feedback-kreise-moderation {
  font-size: clamp(1rem, 1.5vw + 0.25rem, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 600;
}

.tip-card-text-peer-feedback-kreise-moderation {
  font-size: clamp(0.9rem, 1.2vw + 0.25rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
}

@media (max-width: 768px) {
  .tips-grid-peer-feedback-kreise-moderation {
    flex-direction: column;
  }

  .tip-card-peer-feedback-kreise-moderation {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-peer-feedback-kreise-moderation {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-peer-feedback-kreise-moderation {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.conclusion-title-peer-feedback-kreise-moderation {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
  line-height: var(--line-height-tight);
}

.conclusion-text-peer-feedback-kreise-moderation {
  font-size: clamp(0.95rem, 1.2vw + 0.25rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  text-align: center;
}

.cta-box-peer-feedback-kreise-moderation {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--color-text-primary-light);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.cta-title-peer-feedback-kreise-moderation {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw + 0.25rem, 2rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
}

.cta-text-peer-feedback-kreise-moderation {
  font-size: clamp(0.95rem, 1.2vw + 0.25rem, 1.1rem);
  color: var(--color-text-primary-light);
  line-height: var(--line-height-relaxed);
}

.cta-button-peer-feedback-kreise-moderation {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-text-primary-light);
  color: var(--color-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.9rem, 1.2vw + 0.25rem, 1.05rem);
  transition: all var(--transition-base) ease;
  text-align: center;
}

.cta-button-peer-feedback-kreise-moderation:hover {
  background: var(--color-text-primary-light);
  opacity: 0.9;
  transform: translateY(-2px);
}

.related-section-peer-feedback-kreise-moderation {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-peer-feedback-kreise-moderation {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-title-peer-feedback-kreise-moderation {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
  line-height: var(--line-height-tight);
}

.related-cards-peer-feedback-kreise-moderation {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
  justify-content: center;
}

.related-card-peer-feedback-kreise-moderation {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 260px;
  max-width: 380px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base) ease;
  box-shadow: var(--shadow-sm);
}

.related-card-peer-feedback-kreise-moderation:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.related-image-wrapper-peer-feedback-kreise-moderation {
  width: 100%;
  height: auto;
  max-height: 200px;
  overflow: hidden;
}

.related-image-peer-feedback-kreise-moderation {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-text-peer-feedback-kreise-moderation {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.related-card-title-peer-feedback-kreise-moderation {
  font-size: clamp(1rem, 1.5vw + 0.25rem, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
}

.related-card-description-peer-feedback-kreise-moderation {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
}

.related-link-peer-feedback-kreise-moderation {
  display: inline-block;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  transition: all var(--transition-base) ease;
  margin-top: 0.5rem;
}

.related-link-peer-feedback-kreise-moderation:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-card-peer-feedback-kreise-moderation {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .related-cards-peer-feedback-kreise-moderation {
    flex-direction: column;
  }

  .related-card-peer-feedback-kreise-moderation {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.disclaimer-section-peer-feedback-kreise-moderation {
  background: var(--color-bg-primary);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
}

.disclaimer-content-peer-feedback-kreise-moderation {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-peer-feedback-kreise-moderation {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.disclaimer-text-peer-feedback-kreise-moderation {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

@media (max-width: 768px) {
  .disclaimer-content-peer-feedback-kreise-moderation {
    padding: 0 clamp(1rem, 3vw, 1.5rem);
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-family: var(--font-heading);
  font-weight: 700;
}

p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block !important;
}

.feedback-narrative-about {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.hero-section-about {
  background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  text-align: center;
}

.hero-title-about {
  color: var(--color-text-primary);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
}

.hero-subtitle-about {
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 700px;
}

.hero-image-about {
  width: 100%;
  max-width: 600px;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.mission-section-about {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.mission-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.mission-header-about {
  text-align: center;
}

.section-label-about {
  display: inline-block;
  color: var(--color-accent);
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.mission-title-about {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: var(--space-md);
}

.mission-text-about {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.mission-text-about p {
  margin-bottom: var(--space-md);
}

.values-section-about {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.values-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.values-header-about {
  text-align: center;
}

.values-title-about {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: var(--space-lg);
}

.values-grid-about {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.value-card-about {
  flex: 1 1 280px;
  max-width: 320px;
  background: var(--color-bg-primary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.value-card-about:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.value-icon-about {
  color: var(--color-accent);
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
}

.value-card-title-about {
  color: var(--color-text-primary);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: var(--space-sm);
}

.value-card-text-about {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.7;
}

.approach-section-about {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.approach-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.approach-header-about {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.approach-title-about {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}

.approach-description-about {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.8;
}

.process-steps-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 900px;
  margin: 0 auto;
}

.process-step-about {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
}

.step-number-about {
  color: var(--color-accent);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  font-family: var(--font-heading);
  min-width: 80px;
  text-align: center;
}

.step-content-about {
  flex: 1;
}

.step-title-about {
  color: var(--color-text-primary);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: var(--space-sm);
}

.step-text-about {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.8;
}

.expertise-section-about {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.expertise-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.expertise-header-about {
  text-align: center;
}

.expertise-title-about {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: var(--space-lg);
}

.expertise-cards-about {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.expertise-card-about {
  flex: 1 1 260px;
  max-width: 300px;
  background: var(--color-bg-primary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-border);
  transition: var(--transition-base);
}

.expertise-card-about:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.expertise-card-icon-about {
  color: var(--color-accent);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: var(--space-md);
}

.expertise-card-title-about {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: var(--space-sm);
}

.expertise-card-text-about {
  color: var(--color-text-secondary);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  line-height: 1.7;
}

.quote-section-about {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.quote-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: center;
}

.featured-quote-about {
  max-width: 800px;
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--color-bg-secondary);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
  text-align: center;
}

.quote-text-about {
  color: var(--color-text-primary);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic;
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.quote-author-about {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 600;
}

.story-image-about {
  width: 100%;
  max-width: 500px;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.disclaimer-section-about {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-header-about {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-sm);
}

.disclaimer-icon-about {
  color: var(--color-accent);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

.disclaimer-title-about {
  color: var(--color-text-primary);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

.disclaimer-text-about {
  color: var(--color-text-secondary);
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .process-step-about {
    flex-direction: column;
  }

  .step-number-about {
    font-size: 2rem;
    min-width: auto;
  }

  .mission-text-about p {
    margin-bottom: var(--space-sm);
  }

  .hero-content-about {
    gap: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .hero-title-about {
    font-size: 1.5rem;
  }

  .mission-title-about,
  .values-title-about,
  .approach-title-about,
  .expertise-title-about {
    font-size: 1.3rem;
  }

  .value-card-about,
  .expertise-card-about {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.portfolio-page {
  width: 100%;
}

.portfolio-hero {
  background-color: var(--color-bg-primary);
  padding: 3rem var(--space-md);
  overflow: hidden;
}

.portfolio-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.portfolio-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  color: var(--color-text-primary-dark);
  font-weight: 700;
  line-height: var(--line-height-tight);
  margin: 0 0 var(--space-sm) 0;
  letter-spacing: var(--letter-spacing-tight);
}

.portfolio-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.portfolio-projects {
  background-color: var(--color-bg-secondary);
  padding: 3rem var(--space-md);
  overflow: hidden;
}

.portfolio-container {
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.portfolio-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.portfolio-card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background-color: var(--color-bg-tertiary);
}

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

.portfolio-card-content {
  padding: var(--space-lg) var(--space-md);
}

.portfolio-card-meta {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.portfolio-card-tag {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-text-primary-dark);
  font-family: var(--font-primary);
  font-size: var(--font-size-xs);
  font-weight: 600;
  padding: 0.35rem var(--space-sm);
  border-radius: var(--radius-sm);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
}

.portfolio-card-date {
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted-dark);
}

.portfolio-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  color: var(--color-text-primary-dark);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-normal);
  font-weight: 700;
}

.portfolio-card-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.portfolio-cta {
  background-color: var(--color-bg-dark-accent);
  padding: 3rem var(--space-md);
  overflow: hidden;
}

.portfolio-cta-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 5vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary-light);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-tight);
  font-weight: 700;
}

.portfolio-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-relaxed);
  margin: 0 0 var(--space-xl) 0;
}

.portfolio-cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-text-primary-dark);
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  font-weight: 600;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background-color var(--transition-base), transform var(--transition-fast);
  letter-spacing: var(--letter-spacing-normal);
  border: 2px solid var(--color-primary);
}

.portfolio-cta-button:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

.portfolio-cta-button:active {
  transform: translateY(0);
}

@media (min-width: 640px) {
  .portfolio-hero {
    padding: 4rem var(--space-lg);
  }

  .portfolio-projects {
    padding: 4rem var(--space-lg);
  }

  .portfolio-cta {
    padding: 4rem var(--space-lg);
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .portfolio-card-image {
    height: 280px;
  }
}

@media (min-width: 1024px) {
  .portfolio-hero {
    padding: 5rem var(--space-xl);
  }

  .portfolio-projects {
    padding: 5rem var(--space-xl);
  }

  .portfolio-cta {
    padding: 5rem var(--space-xl);
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3xl);
  }

  .portfolio-card {
    display: flex;
    flex-direction: column;
  }

  .portfolio-card-image {
    height: 320px;
  }

  .portfolio-card-content {
    flex: 1;
    padding: var(--space-xl);
  }

  .portfolio-card:nth-child(3) {
    grid-column: 1 / 2;
  }

  .portfolio-card:nth-child(4) {
    grid-column: 2 / 3;
  }
}

@media (min-width: 1280px) {
  .portfolio-container {
    max-width: 1280px;
  }

  .portfolio-card-image {
    height: 340px;
  }
}

.services-page {
  background-color: var(--color-bg-primary);
  width: 100%;
}

.services-hero {
  background-color: var(--color-bg-dark-accent);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-hero-container {
  max-width: 900px;
  width: 100%;
  text-align: center;
}

.services-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw + 0.5rem, 3.75rem);
  color: var(--color-text-primary-dark);
  font-weight: 700;
  line-height: var(--line-height-tight);
  margin: 0 0 var(--space-md) 0;
  letter-spacing: var(--letter-spacing-normal);
}

.services-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-height-normal);
  margin: 0;
  font-weight: 400;
}

.services-content {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  width: 100%;
}

.service-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  display: inline-flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-tertiary);
  border-radius: var(--radius-md);
}

.service-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  color: var(--color-text-primary-light);
  font-weight: 700;
  line-height: var(--line-height-normal);
  margin: 0 0 var(--space-md) 0;
  letter-spacing: var(--letter-spacing-normal);
}

.service-description {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-relaxed);
  margin: 0 0 var(--space-lg) 0;
  flex-grow: 1;
}

.service-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-text-muted-light);
}

.detail-item {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-muted-light);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.detail-item i {
  color: var(--color-primary);
  flex-shrink: 0;
}

.services-cta {
  background-color: var(--color-bg-secondary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
}

.services-cta-container {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.services-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary-light);
  font-weight: 700;
  line-height: var(--line-height-normal);
  margin: 0 0 var(--space-lg) 0;
  letter-spacing: var(--letter-spacing-normal);
}

.services-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-relaxed);
  margin: 0 0 var(--space-2xl) 0;
}

.services-cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-text-primary-dark);
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  font-weight: 600;
  text-decoration: none;
  transition: background-color var(--transition-base), transform var(--transition-fast);
  cursor: pointer;
  border: none;
  letter-spacing: var(--letter-spacing-normal);
}

.services-cta-button:hover {
  background-color: var(--color-primary-hover);
  transform: scale(1.05);
}

.services-cta-button:active {
  transform: scale(0.98);
}

@media (min-width: 768px) {
  .services-hero {
    padding: var(--space-3xl) var(--space-lg);
    min-height: 240px;
  }

  .services-content {
    padding: var(--space-3xl) var(--space-lg);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .service-card {
    padding: var(--space-2xl);
  }

  .services-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: var(--space-3xl) var(--space-xl);
    min-height: 280px;
  }

  .services-content {
    padding: var(--space-3xl) var(--space-xl);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .service-card {
    padding: var(--space-2xl);
  }

  .services-cta {
    padding: var(--space-3xl) var(--space-xl);
  }
}

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

.legal-docs {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary-light);
}

.legal-docs .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.legal-docs .content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-md);
}

.legal-docs h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.legal-docs .updated {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-muted-light);
  margin-bottom: var(--space-2xl);
  font-style: italic;
}

.legal-docs h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-primary-light);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-normal);
}

.legal-docs p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary-light);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.legal-docs ul {
  margin-bottom: var(--space-md);
  margin-left: var(--space-lg);
}

.legal-docs li {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary-light);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-sm);
}

.legal-docs .contact-section {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  margin-top: var(--space-3xl);
}

.legal-docs .contact-section h2 {
  color: var(--color-text-primary-light);
  margin-top: 0;
}

.legal-docs .contact-section p {
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-md);
}

.legal-docs .contact-section strong {
  font-weight: 600;
  color: var(--color-text-primary-light);
}

@media (min-width: 768px) {
  .legal-docs .content {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .legal-docs .content {
    padding: var(--space-3xl) var(--space-xl);
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary-light);
  font-family: var(--font-primary);
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.thank-you-section {
  width: 100%;
  padding: var(--space-2xl) var(--space-md);
  background-color: var(--color-bg-primary);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.thank-you-wrapper {
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

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

.success-icon {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-2xl);
  color: var(--color-success);
  animation: scaleIn 0.6s ease-out;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.success-icon svg {
  width: 80px;
  height: 80px;
  stroke: var(--color-success);
}

h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-md);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-normal);
}

.lead-text {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-secondary-light);
  margin-bottom: var(--space-xl);
  font-weight: 500;
  line-height: var(--line-height-relaxed);
}

.message-box {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-2xl);
  box-shadow: var(--shadow-sm);
}

.message-box p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary-light);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.message-box p:last-child {
  margin-bottom: 0;
}

.next-steps {
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-2xl);
  text-align: left;
  display: inline-block;
  width: 100%;
}

.next-steps h2 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-md);
  text-align: center;
}

.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.steps-list li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-primary-light);
  line-height: var(--line-height-normal);
  padding-left: var(--space-lg);
  position: relative;
}

.steps-list li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: bold;
  font-size: 1.1em;
}

.btn-primary {
  display: inline-block;
  background-color: var(--color-bg-dark-accent);
  color: var(--color-text-primary-dark);
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 600;
  transition: all var(--transition-base);
  border: 2px solid var(--color-bg-dark-accent);
  cursor: pointer;
  letter-spacing: var(--letter-spacing-normal);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .thank-you-section {
    padding: var(--space-lg) var(--space-md);
    min-height: auto;
  }

  .success-icon svg {
    width: 70px;
    height: 70px;
  }

  .message-box {
    padding: var(--space-md);
  }

  .next-steps {
    padding: var(--space-md);
  }

  .steps-list li {
    padding-left: var(--space-md);
  }

  h1 {
    margin-bottom: var(--space-sm);
  }

  .lead-text {
    margin-bottom: var(--space-lg);
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .thank-you-section {
    padding: var(--space-2xl) var(--space-lg);
  }

  .message-box {
    padding: var(--space-lg);
  }

  .next-steps {
    padding: var(--space-lg);
  }
}

@media (min-width: 1025px) {
  .thank-you-section {
    padding: var(--space-3xl) var(--space-xl);
  }

  .thank-you-wrapper {
    padding: var(--space-2xl) 0;
  }

  .message-box {
    padding: var(--space-2xl);
  }

  .next-steps {
    padding: var(--space-2xl);
  }

  .btn-primary {
    padding: var(--space-lg) var(--space-3xl);
    margin-top: var(--space-lg);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

.error-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  width: 100%;
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  width: 100%;
}

.content {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.error-wrapper {
  position: relative;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.error-visual {
  margin-bottom: var(--space-2xl);
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code-container {
  position: relative;
  display: inline-block;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: var(--letter-spacing-tight);
  line-height: 1;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  animation: slideDown 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.error-message {
  position: relative;
  z-index: 2;
  margin-bottom: var(--space-2xl);
}

.error-message h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-md);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-normal);
  line-height: var(--line-height-tight);
  animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.error-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  font-weight: 600;
  letter-spacing: var(--letter-spacing-normal);
  line-height: var(--line-height-relaxed);
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.error-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-2xl);
  letter-spacing: var(--letter-spacing-normal);
  line-height: var(--line-height-relaxed);
  opacity: 0.85;
  animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.btn-primary {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background-color: var(--color-primary);
  color: var(--color-text-primary-dark);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  font-weight: 600;
  letter-spacing: var(--letter-spacing-normal);
  border: 2px solid var(--color-primary);
  transition: all var(--transition-base);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.error-accent {
  position: absolute;
  top: -40px;
  right: -60px;
  width: 300px;
  height: 300px;
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
}

.accent-icon {
  width: 100%;
  height: 100%;
  color: var(--color-primary);
  animation: rotate 20s linear infinite;
}

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

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (min-width: 640px) {
  .error-section {
    padding: var(--space-xl) var(--space-lg);
  }

  .error-visual {
    height: 240px;
    margin-bottom: var(--space-3xl);
  }

  .error-accent {
    top: -80px;
    right: -100px;
    width: 400px;
    height: 400px;
  }
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-2xl) var(--space-xl);
  }

  .container {
    padding: 0 var(--space-lg);
  }

  .error-visual {
    height: 280px;
    margin-bottom: var(--space-3xl);
  }

  .error-message {
    margin-bottom: var(--space-3xl);
  }

  .btn-primary {
    padding: var(--space-lg) var(--space-2xl);
    font-size: clamp(1rem, 1.2vw, 1.125rem);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl) var(--space-2xl);
  }

  .error-wrapper {
    max-width: 700px;
    margin: 0 auto;
  }

  .error-visual {
    height: 320px;
    margin-bottom: var(--space-3xl);
  }

  .error-code {
    font-size: clamp(6rem, 14vw, 8rem);
  }

  .error-message h1 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: var(--space-lg);
  }

  .error-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: var(--space-xl);
  }

  .error-description {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    margin-bottom: var(--space-2xl);
  }

  .error-accent {
    top: -120px;
    right: -150px;
    width: 500px;
    height: 500px;
  }
}

@media (min-width: 1440px) {
  .error-section {
    padding: var(--space-3xl) var(--space-3xl);
  }

  .error-visual {
    height: 360px;
  }
}

.contact-message-us {
  width: 100%;
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.contact-message-us-hero {
  background-color: var(--color-bg-secondary);
  padding: 3rem 1rem;
  overflow: hidden;
}

.contact-message-us-hero-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
}

.contact-message-us-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  margin: 0 0 1rem 0;
  letter-spacing: var(--letter-spacing-tight);
}

.contact-message-us-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-light);
  margin: 0;
  line-height: var(--line-height-relaxed);
  max-width: 600px;
}

@media (min-width: 768px) {
  .contact-message-us-hero {
    padding: 4rem 1rem;
  }

  .contact-message-us-hero-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
  }
}

@media (min-width: 1024px) {
  .contact-message-us-hero {
    padding: 5rem 1rem;
  }

  .contact-message-us-hero-title {
    font-size: clamp(2.25rem, 6vw, 3rem);
  }
}

.contact-message-us-main {
  background-color: var(--color-bg-primary);
  padding: 3rem 1rem;
  overflow: hidden;
}

.contact-message-us-main-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
}

.contact-message-us-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
}

@media (min-width: 768px) {
  .contact-message-us-main {
    padding: 4rem 1rem;
  }

  .contact-message-us-grid {
    flex-direction: row;
    gap: 4rem;
  }
}

@media (min-width: 1024px) {
  .contact-message-us-main {
    padding: 5rem 1rem;
  }

  .contact-message-us-grid {
    gap: 5rem;
  }
}

.contact-message-us-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .contact-message-us-form-wrapper {
    flex: 1 1 45%;
  }
}

.contact-message-us-form-header {
  margin-bottom: 2rem;
}

.contact-message-us-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  margin: 0 0 0.75rem 0;
  letter-spacing: var(--letter-spacing-tight);
}

.contact-message-us-form-description {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary-light);
  margin: 0;
  line-height: var(--line-height-normal);
}

.contact-message-us-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-message-us-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-message-us-label {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw + 0.4rem, 0.95rem);
  font-weight: 600;
  color: var(--color-text-primary-light);
  display: block;
}

.contact-message-us-input,
.contact-message-us-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-text-secondary-light);
  border-radius: var(--radius-md);
  color: var(--color-text-primary-light);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  box-sizing: border-box;
}

.contact-message-us-input:focus,
.contact-message-us-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(var(--color-primary), 0.1);
}

.contact-message-us-input::placeholder,
.contact-message-us-textarea::placeholder {
  color: var(--color-text-muted-light);
}

.contact-message-us-textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-message-us-form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background-color: var(--color-bg-tertiary);
  border-radius: var(--radius-md);
}

.contact-message-us-checkbox {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  margin-top: 0.2rem;
  cursor: pointer;
  accent-color: var(--color-primary);
}

.contact-message-us-consent-label {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw + 0.4rem, 0.95rem);
  color: var(--color-text-secondary-light);
  cursor: pointer;
  line-height: var(--line-height-normal);
}

.contact-message-us-consent-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.contact-message-us-consent-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-message-us-submit {
  width: 100%;
  padding: 1rem 2rem;
  background-color: var(--color-primary);
  color: var(--color-text-primary-dark);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-normal);
  cursor: pointer;
  transition: background-color var(--transition-base), transform var(--transition-fast), box-shadow var(--transition-base);
  box-sizing: border-box;
  margin-top: 0.5rem;
}

.contact-message-us-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-message-us-submit:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.contact-message-us-submit:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--color-primary), 0.3);
}

.contact-message-us-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .contact-message-us-info-wrapper {
    flex: 1 1 45%;
  }
}

.contact-message-us-info-header {
  margin-bottom: 2.5rem;
}

.contact-message-us-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  margin: 0 0 0.75rem 0;
  letter-spacing: var(--letter-spacing-tight);
}

.contact-message-us-info-description {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary-light);
  margin: 0;
  line-height: var(--line-height-normal);
}

.contact-message-us-info-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.contact-message-us-info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact-message-us-info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-tertiary);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.contact-message-us-info-content {
  flex: 1;
  min-width: 0;
}

.contact-message-us-info-item-title {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.45rem, 1.1rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  margin: 0 0 0.5rem 0;
}

.contact-message-us-info-item-text {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-primary-light);
  margin: 0 0 0.25rem 0;
  line-height: var(--line-height-normal);
}

.contact-message-us-info-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.contact-message-us-info-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-message-us-info-hours {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw + 0.4rem, 0.95rem);
  color: var(--color-text-secondary-light);
  margin: 0;
  font-style: italic;
}

.contact-message-us-info-box {
  padding: 1.5rem;
  background-color: var(--color-bg-tertiary);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.contact-message-us-info-box-title {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.45rem, 1.1rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  margin: 0 0 0.75rem 0;
}

.contact-message-us-info-box-text {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary-light);
  margin: 0;
  line-height: var(--line-height-relaxed);
}

@media (max-width: 767px) {
  .contact-message-us-info-item {
    gap: 1rem;
  }

  .contact-message-us-info-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    font-size: 1.25rem;
  }
}
.header-feedback-forge-mobile-close,.header-feedback-forge-mobile-toggle{
  width: 34px;
}

.header-feedback-forge-desktop-nav{
  justify-content: flex-end;
}

.portfolio-card{
  display: flex;
  flex-direction: column !important;
}

.portfolio-card__content{
  width: 100% !important;
}

.portfolio-card-content{
  width: 100% !important;
}

.hero-title-index{
  word-break: break-all;
}

.services-cards,.services-cards-container,.services-grid,.services-container{
  display: flex;
  flex-direction: column;
}

.content{
  display: block;
}
