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

:root {
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #050e29;
  --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: #fff;
  --color-text-muted: #d4ddeb;

  --color-primary: #d97706;
  --color-primary-hover: #b45309;
  --color-primary-light: #fbbf24;
  --color-secondary: #06b6d4;
  --color-secondary-hover: #0891b2;

  --color-accent-gold: #d4af37;
  --color-accent-emerald: #10b981;

  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', 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);

  --transition-base: all 0.3s ease;
  --transition-fast: all 0.15s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-primary-light);
  background: var(--color-bg-secondary);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1.125rem;
}

p {
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
  line-height: 1.75;
}

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

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

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

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

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

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

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

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

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

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

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

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

section.dark p {
  color: #cbd5e1;
}

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

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

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

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

section.accent {
  background: var(--color-bg-dark-accent);
  color: var(--color-text-primary-dark);
}

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

section.accent p {
  color: #cbd5e1;
}

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

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

section.dark .card {
  background: var(--color-bg-dark-accent);
  color: var(--color-text-primary-dark);
}

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

section.dark .card p {
  color: #cbd5e1;
}

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

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

@media (max-width: 768px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

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

.flex {
  display: flex;
}

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

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

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

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

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

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

.gap-xl {
  gap: var(--space-xl);
}

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

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

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

.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-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-sm {
  padding-left: var(--space-sm);
  padding-right: var(--space-sm);
}

.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-sm {
  padding-top: var(--space-sm);
  padding-bottom: var(--space-sm);
}

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

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

.rounded-sm {
  border-radius: var(--radius-sm);
}

.rounded-md {
  border-radius: var(--radius-md);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.rounded-xl {
  border-radius: var(--radius-xl);
}

.shadow-sm {
  box-shadow: var(--shadow-sm);
}

.shadow-md {
  box-shadow: var(--shadow-md);
}

.shadow-lg {
  box-shadow: var(--shadow-lg);
}

.shadow-xl {
  box-shadow: var(--shadow-xl);
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-90 {
  opacity: 0.9;
}

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

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

section.dark .accent-text {
  color: var(--color-primary-light);
}

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

.highlight {
  position: relative;
  padding: 0 var(--space-xs);
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-accent-gold);
  border-radius: 2px;
}

section.dark .highlight::after {
  background: var(--color-primary-light);
}

.underline-animation {
  position: relative;
  transition: var(--transition-base);
}

.underline-animation::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition-base);
}

.underline-animation:hover::after {
  width: 100%;
}

hr {
  border: none;
  height: 1px;
  background: #e2e8f0;
  margin: var(--space-xl) 0;
}

section.dark hr {
  background: #334155;
}

input,
textarea,
select {
  font-family: var(--font-primary);
  font-size: 1rem;
  padding: var(--space-sm) var(--space-md);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  width: 100%;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

section.dark input,
section.dark textarea,
section.dark select {
  background: var(--color-bg-dark-accent);
  border-color: #475569;
  color: var(--color-text-primary-dark);
}

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  background: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
}

.badge-secondary {
  background: var(--color-secondary);
}

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

section.dark .badge-outline {
  border-color: var(--color-primary-light);
  color: var(--color-primary-light);
}

.list-checkmark {
  list-style: none;
  padding-left: 0;
}

.list-checkmark li {
  padding-left: var(--space-lg);
  position: relative;
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
}

.list-checkmark li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-accent-emerald);
  font-weight: 700;
  font-size: 1.25rem;
}

section.dark .list-checkmark li::before {
  color: var(--color-accent-emerald);
}

.divider-vertical {
  width: 2px;
  height: 40px;
  background: #e2e8f0;
}

section.dark .divider-vertical {
  background: #475569;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

  50% {
    opacity: 0.5;
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 5px rgba(217, 119, 6, 0.3);
  }

  50% {
    box-shadow: 0 0 20px rgba(217, 119, 6, 0.6);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

.animate-slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

.animate-slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

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

.animate-glow {
  animation: glow 2s ease-in-out infinite;
}
.header-authentik-beacon {
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border);
  position: static;
  z-index: 1000;
}

.header-authentik-beacon-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;
  gap: clamp(1rem, 3vw, 2rem);
  height: auto;
  min-height: 70px;
}

.header-authentik-beacon-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
  transition: var(--transition-base);
}

.header-authentik-beacon-brand:hover {
  opacity: 0.85;
}

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

.header-authentik-beacon-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  letter-spacing: -0.5px;
}

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

.header-authentik-beacon-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: var(--transition-base);
  position: relative;
}

.header-authentik-beacon-nav-link:hover {
  color: var(--color-primary);
}

.header-authentik-beacon-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.header-authentik-beacon-nav-link:hover::after {
  width: 100%;
}

.header-authentik-beacon-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background: var(--color-bg-dark-accent);
  color: var(--color-text-primary-dark);
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 1rem);
  font-weight: 600;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-base);
  flex-shrink: 0;
  white-space: nowrap;
}

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

.header-authentik-beacon-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-shrink: 0;
  transition: var(--transition-base);
}

.header-authentik-beacon-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text-primary-light);
  border-radius: 2px;
  transition: var(--transition-base);
}

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

.header-authentik-beacon-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: var(--color-bg-secondary);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

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

.header-authentik-beacon-mobile-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

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

.header-authentik-beacon-mobile-close:hover {
  color: var(--color-primary);
}

.header-authentik-beacon-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 1rem 0;
  flex: 1;
}

.header-authentik-beacon-mobile-link {
  padding: 1rem 1.5rem;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: var(--transition-base);
  border-left: 3px solid transparent;
}

.header-authentik-beacon-mobile-link:hover {
  background: var(--color-bg-tertiary);
  color: var(--color-primary);
  border-left-color: var(--color-primary);
}

.header-authentik-beacon-mobile-cta {
  margin: 1.5rem;
  padding: 0.875rem 1.5rem;
  background: var(--color-bg-dark-accent);
  color: var(--color-text-primary-dark);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-base);
  text-align: center;
}

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

@media (min-width: 768px) {
  .header-authentik-beacon-mobile-toggle {
    display: none;
  }

  .header-authentik-beacon-mobile-menu {
    display: none;
  }

  .header-authentik-beacon-desktop-nav {
    display: flex;
  }

  .header-authentik-beacon-cta-button {
    display: block;
  }

  .header-authentik-beacon-container {
    gap: 2rem;
  }
}

@media (max-width: 767px) {
  .header-authentik-beacon-desktop-nav {
    display: none;
  }

  .header-authentik-beacon-cta-button {
    display: none;
  }
}

    .personal-brand-hub {
  width: 100%;
}

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

.hero-section-index {
  background: var(--color-bg-primary);
  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-wrapper-index {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.hero-title-index {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary-dark);
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.2;
}

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

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

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

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

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

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

.btn-secondary-index:hover {
  background: rgba(245, 158, 11, 0.1);
  transform: translateY(-2px);
}

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

.btn-outline-index:hover {
  background: rgba(245, 158, 11, 0.1);
}

.btn-large-index {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

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

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

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

.stat-label-index {
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-secondary);
  font-weight: 500;
}

.hero-image-wrapper-index {
  flex: 1 1 45%;
  min-height: 300px;
  max-height: 500px;
}

.hero-image-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

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

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

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

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

  .btn {
    width: 100%;
  }
}

.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 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary-dark);
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-bottom: 0.75rem;
}

.benefits-subtitle-index {
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

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

.benefit-card-index:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.benefit-icon-index {
  width: 48px;
  height: 48px;
  background: rgba(245, 158, 11, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-primary);
}

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

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

@media (max-width: 768px) {
  .benefit-card-index {
    flex: 1 1 100%;
  }
}

.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 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary-dark);
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-bottom: 0.75rem;
}

.how-it-works-subtitle-index {
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.process-steps-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
  max-width: 900px;
  margin: 0 auto;
}

.process-step-index {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
}

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

.step-content-index {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

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

@media (max-width: 768px) {
  .process-step-index {
    gap: 1.25rem;
  }

  .step-number-index {
    min-width: 60px;
  }
}

.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 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary-dark);
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-bottom: 0.75rem;
}

.testimonials-subtitle-index {
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

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

.testimonial-text-index {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.testimonial-quote-index {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  font-style: italic;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.testimonial-author-index {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.author-name-index {
  font-size: 0.9rem;
  color: var(--color-text-primary-dark);
  font-weight: 600;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .testimonial-card-index {
    flex: 1 1 100%;
  }
}

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

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

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

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

.featured-posts-subtitle-index {
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.featured-card-index {
  flex: 1 1 320px;
  max-width: 400px;
  background: var(--color-bg-secondary);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.featured-card-index:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-image-wrapper-index {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

.card-content-index {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

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

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

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

.card-link-index:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.featured-posts-cta-index {
  display: flex;
  justify-content: center;
  padding-top: clamp(1rem, 2vw, 1.5rem);
}

@media (max-width: 768px) {
  .featured-card-index {
    flex: 1 1 100%;
  }
}

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

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

.about-text-wrapper-index {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.about-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 800;
  color: var(--color-text-primary-dark);
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.3;
}

.about-text-index {
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.about-image-wrapper-index {
  flex: 1 1 45%;
  min-height: 300px;
  max-height: 450px;
}

.about-image-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

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

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

  .about-image-wrapper-index {
    flex: 1 1 100%;
    min-height: 250px;
    max-height: 350px;
  }
}

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

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

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

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

.statistics-subtitle-index {
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.stat-card-index {
  flex: 1 1 200px;
  max-width: 280px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--color-bg-secondary);
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stat-value-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.stat-description-index {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .stat-card-index {
    flex: 1 1 100%;
  }
}

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

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

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

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

.faq-subtitle-index {
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.faq-list-index {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
  max-width: 850px;
  margin: 0 auto;
}

.faq-item-index {
  padding: clamp(1.5rem, 2vw, 2rem);
  background: var(--color-bg-primary);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-question-index {
  font-size: clamp(1.05rem, 2vw + 0.5rem, 1.3rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.faq-answer-index {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.cta-final-content-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

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

.cta-final-text-index {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.15rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cookie-banner-index {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-primary);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.cookie-banner-text-index {
  font-size: clamp(0.8rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-secondary);
  margin: 0;
  flex: 1 1 300px;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cookie-banner-buttons-index {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-size: clamp(0.8rem, 1vw + 0.5rem, 0.95rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-btn-accept-index {
  background: var(--color-primary);
  color: #000000;
}

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

.cookie-btn-decline-index {
  background: transparent;
  color: var(--color-text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-decline-index:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .cookie-banner-index {
    flex-direction: column;
    gap: 1rem;
  }

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

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

  .cookie-btn-accept-index,
  .cookie-btn-decline-index {
    flex: 1 1 auto;
  }
}

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

@media (max-width: 1024px) {
  .hero-section-index {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
  }

  .benefits-section-index,
  .how-it-works-section-index,
  .testimonials-section-index,
  .featured-posts-section-index,
  .about-section-index,
  .statistics-section-index,
  .faq-section-index {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
  }
}

    .footer {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

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

.footer-about,
.footer-nav,
.footer-contact,
.footer-legal {
  display: block;
}

.footer h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-primary-light);
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer p {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 0.75rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.footer-nav-list,
.footer-legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 1.5rem);
}

.footer-nav-list li,
.footer-legal-list li {
  display: inline;
}

.footer a {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: var(--transition-base);
  display: inline-block;
}

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

.footer-about p {
  max-width: 480px;
}

.footer-copyright {
  display: block;
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid var(--color-border);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.footer-copyright p {
  color: var(--color-text-muted);
  font-size: clamp(0.8125rem, 0.9vw, 0.9375rem);
  margin: 0;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(2.5rem, 6vw, 4rem);
    align-items: flex-start;
  }

  .footer-about {
    flex: 1 1 280px;
  }

  .footer-nav {
    flex: 1 1 200px;
  }

  .footer-contact {
    flex: 1 1 240px;
  }

  .footer-legal {
    flex: 1 1 200px;
  }

  .footer-copyright {
    flex: 1 1 100%;
  }

  .footer-nav-list,
  .footer-legal-list {
    flex-direction: column;
    gap: clamp(0.75rem, 1vw, 1rem);
  }

  .footer-nav-list li,
  .footer-legal-list li {
    display: block;
  }

  .footer a {
    display: inline;
  }
}

@media (max-width: 767px) {
  .footer-about,
  .footer-nav,
  .footer-contact,
  .footer-legal {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: clamp(1.5rem, 3vw, 2rem);
  }

  .footer-about:last-of-type {
    border-bottom: none;
  }
}
    

.category-page-personal-branding-workshops {
  overflow: hidden;
}

.hero-section-personal-branding-workshops {
  background: var(--color-bg-primary);
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
}

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

.hero-text-block-personal-branding-workshops {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-image-block-personal-branding-workshops {
  flex: 1 1 45%;
  min-width: 300px;
  display: flex;
  align-items: center;
}

.hero-title-personal-branding-workshops {
  color: var(--color-text-primary-dark);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-personal-branding-workshops {
  color: var(--color-text-primary-dark);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-description-personal-branding-workshops {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-image-personal-branding-workshops {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 767px) {
  .hero-content-personal-branding-workshops {
    flex-direction: column;
  }

  .hero-text-block-personal-branding-workshops {
    flex: 1 1 100%;
  }

  .hero-image-block-personal-branding-workshops {
    flex: 1 1 100%;
    min-width: auto;
  }
}

.posts-section-personal-branding-workshops {
  background: var(--color-bg-secondary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.posts-content-personal-branding-workshops {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.posts-header-personal-branding-workshops {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.posts-title-personal-branding-workshops {
  color: var(--color-text-primary-light);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.posts-subtitle-personal-branding-workshops {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 600px;
  margin: 0 auto;
}

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

.card-personal-branding-workshops {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.card-personal-branding-workshops:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-image-personal-branding-workshops {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.card-title-personal-branding-workshops {
  color: var(--color-text-primary-dark);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-description-personal-branding-workshops {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
  flex-grow: 1;
}

.card-meta-personal-branding-workshops {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0.75rem 0;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
}

.card-reading-time-personal-branding-workshops,
.card-level-personal-branding-workshops,
.card-date-personal-branding-workshops {
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-reading-time-personal-branding-workshops i,
.card-level-personal-branding-workshops i,
.card-date-personal-branding-workshops i {
  color: var(--color-primary);
}

.card-link-personal-branding-workshops {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
  display: inline-block;
}

.card-link-personal-branding-workshops:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

@media (max-width: 767px) {
  .card-personal-branding-workshops {
    flex: 1 1 100%;
    max-width: none;
  }
}

.insights-section-personal-branding-workshops {
  background: var(--color-bg-primary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.insights-content-personal-branding-workshops {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.insights-header-personal-branding-workshops {
  text-align: center;
}

.insights-title-personal-branding-workshops {
  color: var(--color-text-primary-dark);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.insights-quote-personal-branding-workshops {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.insights-blockquote-personal-branding-workshops {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.insights-quote-text-personal-branding-workshops {
  color: var(--color-text-primary-light);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-style: italic;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.insights-attribution-personal-branding-workshops {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-style: normal;
}

.insights-description-personal-branding-workshops {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.insights-text-personal-branding-workshops {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 767px) {
  .insights-quote-personal-branding-workshops {
    border-left-width: 3px;
  }
}

.process-section-personal-branding-workshops {
  background: var(--color-bg-secondary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.process-content-personal-branding-workshops {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 4.5rem);
}

.process-header-personal-branding-workshops {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.process-title-personal-branding-workshops {
  color: var(--color-text-primary-light);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.process-subtitle-personal-branding-workshops {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 600px;
  margin: 0 auto;
}

.process-steps-personal-branding-workshops {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.process-step-personal-branding-workshops {
  flex: 1 1 250px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  text-align: center;
  border-top: 3px solid var(--color-primary);
}

.process-step-number-personal-branding-workshops {
  color: var(--color-primary);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
}

.process-step-title-personal-branding-workshops {
  color: var(--color-text-primary-dark);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.process-step-text-personal-branding-workshops {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 767px) {
  .process-step-personal-branding-workshops {
    flex: 1 1 100%;
    max-width: none;
  }

  .process-steps-personal-branding-workshops {
    flex-direction: column;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .process-step-personal-branding-workshops {
    flex: 1 1 calc(50% - 1.25rem);
  }
}

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

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

@media (max-width: 767px) {
  .hero-section-personal-branding-workshops {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .posts-section-personal-branding-workshops {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .insights-section-personal-branding-workshops {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .process-section-personal-branding-workshops {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }
}

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

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

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

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

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

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

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

.hero-image-persoenliche-geschichte-erzaehlen img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

.breadcrumbs-persoenliche-geschichte-erzaehlen {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
}

.breadcrumbs-persoenliche-geschichte-erzaehlen a {
  color: var(--color-accent);
  text-decoration: none;
  transition: var(--transition-base);
}

.breadcrumbs-persoenliche-geschichte-erzaehlen a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

.breadcrumbs-persoenliche-geschichte-erzaehlen span {
  color: var(--color-text-muted);
}

.hero-title-persoenliche-geschichte-erzaehlen {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  font-family: var(--font-heading);
  line-height: 1.2;
}

.hero-subtitle-persoenliche-geschichte-erzaehlen {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.hero-meta-persoenliche-geschichte-erzaehlen {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: var(--color-text-muted);
}

.meta-item-persoenliche-geschichte-erzaehlen {
  display: flex;
  align-items: center;
}

.meta-separator-persoenliche-geschichte-erzaehlen {
  color: var(--color-text-muted);
}

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

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

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

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

.intro-text-persoenliche-geschichte-erzaehlen {
  flex: 1 1 60%;
  max-width: 60%;
}

.intro-text-persoenliche-geschichte-erzaehlen p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.intro-highlight-persoenliche-geschichte-erzaehlen {
  flex: 1 1 40%;
  max-width: 40%;
}

.highlight-box-persoenliche-geschichte-erzaehlen {
  background: var(--color-bg-primary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-xl);
  border-left: 4px solid var(--color-accent);
}

.highlight-title-persoenliche-geschichte-erzaehlen {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-family: var(--font-heading);
}

.highlight-list-persoenliche-geschichte-erzaehlen {
  list-style: none;
}

.highlight-list-persoenliche-geschichte-erzaehlen li {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
  position: relative;
}

.highlight-list-persoenliche-geschichte-erzaehlen li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

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

  .intro-text-persoenliche-geschichte-erzaehlen,
  .intro-highlight-persoenliche-geschichte-erzaehlen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.structure-section-persoenliche-geschichte-erzaehlen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.structure-text-persoenliche-geschichte-erzaehlen {
  flex: 1 1 50%;
  max-width: 50%;
}

.structure-title-persoenliche-geschichte-erzaehlen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  font-family: var(--font-heading);
  line-height: 1.3;
}

.structure-text-persoenliche-geschichte-erzaehlen p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.structure-image-persoenliche-geschichte-erzaehlen {
  flex: 1 1 50%;
  max-width: 50%;
}

.structure-image-persoenliche-geschichte-erzaehlen img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

@media (max-width: 768px) {
  .structure-content-persoenliche-geschichte-erzaehlen {
    flex-direction: column;
  }

  .structure-text-persoenliche-geschichte-erzaehlen,
  .structure-image-persoenliche-geschichte-erzaehlen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.elements-section-persoenliche-geschichte-erzaehlen {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.elements-title-persoenliche-geschichte-erzaehlen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary);
  text-align: center;
  font-family: var(--font-heading);
  line-height: 1.3;
}

.elements-cards-persoenliche-geschichte-erzaehlen {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.element-card-persoenliche-geschichte-erzaehlen {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-primary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  border: 1px solid var(--color-border);
  transition: var(--transition-base);
}

.element-card-persoenliche-geschichte-erzaehlen:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.card-number-persoenliche-geschichte-erzaehlen {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-accent);
  font-family: var(--font-heading);
}

.card-title-persoenliche-geschichte-erzaehlen {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
}

.card-text-persoenliche-geschichte-erzaehlen {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.craft-section-persoenliche-geschichte-erzaehlen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.craft-image-persoenliche-geschichte-erzaehlen {
  flex: 1 1 50%;
  max-width: 50%;
}

.craft-image-persoenliche-geschichte-erzaehlen img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

.craft-text-persoenliche-geschichte-erzaehlen {
  flex: 1 1 50%;
  max-width: 50%;
}

.craft-title-persoenliche-geschichte-erzaehlen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  font-family: var(--font-heading);
  line-height: 1.3;
}

.craft-text-persoenliche-geschichte-erzaehlen p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.quote-persoenliche-geschichte-erzaehlen {
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: var(--space-lg) 0;
  font-style: italic;
}

.quote-persoenliche-geschichte-erzaehlen p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--color-text-primary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.quote-persoenliche-geschichte-erzaehlen cite {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--color-text-secondary);
  font-style: normal;
  display: block;
}

@media (max-width: 768px) {
  .craft-content-persoenliche-geschichte-erzaehlen {
    flex-direction: column;
  }

  .craft-image-persoenliche-geschichte-erzaehlen,
  .craft-text-persoenliche-geschichte-erzaehlen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.practice-section-persoenliche-geschichte-erzaehlen {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

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

.practice-title-persoenliche-geschichte-erzaehlen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  font-family: var(--font-heading);
  line-height: 1.3;
}

.practice-text-persoenliche-geschichte-erzaehlen p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.practice-exercise-persoenliche-geschichte-erzaehlen {
  background: var(--color-bg-primary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
  border: 1px solid var(--color-border);
}

.exercise-title-persoenliche-geschichte-erzaehlen {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  font-family: var(--font-heading);
}

.exercise-text-persoenliche-geschichte-erzaehlen {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

.practice-image-persoenliche-geschichte-erzaehlen img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

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

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

.authentic-section-persoenliche-geschichte-erzaehlen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.authentic-content-persoenliche-geschichte-erzaehlen {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.authentic-title-persoenliche-geschichte-erzaehlen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  font-family: var(--font-heading);
  line-height: 1.3;
  text-align: center;
}

.authentic-intro-persoenliche-geschichte-erzaehlen {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.authentic-box-persoenliche-geschichte-erzaehlen {
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  margin-bottom: var(--space-lg);
}

.authentic-box-persoenliche-geschichte-erzaehlen p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.authentic-box-persoenliche-geschichte-erzaehlen p:last-child {
  margin-bottom: 0;
}

.authentic-outro-persoenliche-geschichte-erzaehlen {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.conclusion-section-persoenliche-geschichte-erzaehlen {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-persoenliche-geschichte-erzaehlen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.conclusion-text-persoenliche-geschichte-erzaehlen {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-title-persoenliche-geschichte-erzaehlen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  font-family: var(--font-heading);
  line-height: 1.3;
}

.conclusion-text-persoenliche-geschichte-erzaehlen p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.conclusion-cta-persoenliche-geschichte-erzaehlen {
  flex: 1 1 50%;
  max-width: 50%;
}

.cta-box-persoenliche-geschichte-erzaehlen {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
  text-align: center;
  color: var(--color-text-primary);
}

.cta-title-persoenliche-geschichte-erzaehlen {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
  font-family: var(--font-heading);
}

.cta-text-persoenliche-geschichte-erzaehlen {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.btn-primary-persoenliche-geschichte-erzaehlen {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--color-text-primary);
  color: var(--color-primary);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  transition: var(--transition-base);
  cursor: pointer;
}

.btn-primary-persoenliche-geschichte-erzaehlen:hover {
  background: var(--color-text-secondary);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .conclusion-content-persoenliche-geschichte-erzaehlen {
    flex-direction: column;
  }

  .conclusion-text-persoenliche-geschichte-erzaehlen,
  .conclusion-cta-persoenliche-geschichte-erzaehlen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.disclaimer-section-persoenliche-geschichte-erzaehlen {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-persoenliche-geschichte-erzaehlen {
  max-width: 900px;
  margin: 0 auto;
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-xl);
  border-left: 4px solid var(--color-accent);
}

.disclaimer-title-persoenliche-geschichte-erzaehlen {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  font-family: var(--font-heading);
}

.disclaimer-text-persoenliche-geschichte-erzaehlen {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.related-section-persoenliche-geschichte-erzaehlen {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.related-title-persoenliche-geschichte-erzaehlen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary);
  text-align: center;
  font-family: var(--font-heading);
  line-height: 1.3;
}

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

.related-card-persoenliche-geschichte-erzaehlen {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--color-bg-primary);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: var(--transition-base);
}

.related-card-persoenliche-geschichte-erzaehlen:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.related-image-persoenliche-geschichte-erzaehlen {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-image-persoenliche-geschichte-erzaehlen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-text-persoenliche-geschichte-erzaehlen {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.related-card-title-persoenliche-geschichte-erzaehlen {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 700;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  line-height: 1.4;
}

.related-card-description-persoenliche-geschichte-erzaehlen {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.related-link-persoenliche-geschichte-erzaehlen {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-base);
  display: inline-block;
}

.related-link-persoenliche-geschichte-erzaehlen:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .related-cards-persoenliche-geschichte-erzaehlen {
    flex-direction: column;
  }

  .related-card-persoenliche-geschichte-erzaehlen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-content-persoenliche-geschichte-erzaehlen,
  .intro-content-persoenliche-geschichte-erzaehlen,
  .structure-content-persoenliche-geschichte-erzaehlen,
  .craft-content-persoenliche-geschichte-erzaehlen,
  .practice-content-persoenliche-geschichte-erzaehlen,
  .conclusion-content-persoenliche-geschichte-erzaehlen {
    gap: var(--space-md);
  }

  .hero-title-persoenliche-geschichte-erzaehlen,
  .structure-title-persoenliche-geschichte-erzaehlen,
  .craft-title-persoenliche-geschichte-erzaehlen,
  .practice-title-persoenliche-geschichte-erzaehlen,
  .conclusion-title-persoenliche-geschichte-erzaehlen,
  .authentic-title-persoenliche-geschichte-erzaehlen {
    margin-bottom: var(--space-md);
  }

  .breadcrumbs-persoenliche-geschichte-erzaehlen {
    flex-wrap: wrap;
    font-size: 0.75rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.6;
}

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

h1, h2, h3, h4, h5, h6 {
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

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

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

img {
  display: block;
  width: 100%;
  height: auto;
}

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

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

.hero-text-kernwerte-staerken-identifizieren {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-kernwerte-staerken-identifizieren {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.1;
}

.hero-subtitle-kernwerte-staerken-identifizieren {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.5;
}

.hero-meta-kernwerte-staerken-identifizieren {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.875rem;
}

.meta-item-kernwerte-staerken-identifizieren {
  color: var(--color-text-secondary);
}

.meta-separator-kernwerte-staerken-identifizieren {
  color: var(--color-text-muted);
}

.hero-image-kernwerte-staerken-identifizieren {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-kernwerte-staerken-identifizieren img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.breadcrumbs-kernwerte-staerken-identifizieren {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.875rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.breadcrumbs-kernwerte-staerken-identifizieren a {
  color: var(--color-primary);
  text-decoration: none;
}

.breadcrumbs-kernwerte-staerken-identifizieren a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumbs-kernwerte-staerken-identifizieren span {
  color: var(--color-text-muted);
}

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

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

.intro-text-kernwerte-staerken-identifizieren {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-kernwerte-staerken-identifizieren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

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

.intro-image-kernwerte-staerken-identifizieren {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-kernwerte-staerken-identifizieren img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

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

.method-content-kernwerte-staerken-identifizieren {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
}

.method-header-kernwerte-staerken-identifizieren {
  text-align: center;
}

.method-title-kernwerte-staerken-identifizieren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.method-subtitle-kernwerte-staerken-identifizieren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
}

.method-steps-kernwerte-staerken-identifizieren {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.step-card-kernwerte-staerken-identifizieren {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-tertiary);
  border-radius: 8px;
  border-left: 4px solid var(--color-primary);
}

.step-number-kernwerte-staerken-identifizieren {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.step-content-kernwerte-staerken-identifizieren {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-title-kernwerte-staerken-identifizieren {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--color-text-primary);
  margin: 0;
}

.step-text-kernwerte-staerken-identifizieren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

.values-content-kernwerte-staerken-identifizieren {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.values-text-kernwerte-staerken-identifizieren {
  flex: 1 1 50%;
  max-width: 50%;
}

.values-title-kernwerte-staerken-identifizieren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.values-paragraph-kernwerte-staerken-identifizieren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.values-image-kernwerte-staerken-identifizieren {
  flex: 1 1 50%;
  max-width: 50%;
}

.values-image-kernwerte-staerken-identifizieren img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

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

.strengths-content-kernwerte-staerken-identifizieren {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.strengths-image-kernwerte-staerken-identifizieren {
  flex: 1 1 50%;
  max-width: 50%;
}

.strengths-image-kernwerte-staerken-identifizieren img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.strengths-text-kernwerte-staerken-identifizieren {
  flex: 1 1 50%;
  max-width: 50%;
}

.strengths-title-kernwerte-staerken-identifizieren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.strengths-paragraph-kernwerte-staerken-identifizieren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

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

.practical-content-kernwerte-staerken-identifizieren {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
}

.practical-header-kernwerte-staerken-identifizieren {
  text-align: center;
}

.practical-title-kernwerte-staerken-identifizieren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

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

.practical-cards-kernwerte-staerken-identifizieren {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.practical-card-kernwerte-staerken-identifizieren {
  flex: 1 1 250px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: 8px;
  transition: var(--transition-base);
}

.practical-card-kernwerte-staerken-identifizieren:hover {
  transform: translateY(-4px);
  background: var(--color-bg-tertiary);
}

.card-icon-kernwerte-staerken-identifizieren {
  font-size: 2rem;
  color: var(--color-primary);
}

.card-title-kernwerte-staerken-identifizieren {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--color-text-primary);
  margin: 0;
}

.card-text-kernwerte-staerken-identifizieren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

.quote-content-kernwerte-staerken-identifizieren {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.featured-quote-kernwerte-staerken-identifizieren {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-secondary);
  border-radius: 8px;
}

.quote-text-kernwerte-staerken-identifizieren {
  font-size: clamp(1.05rem, 1.5vw, 1.4rem);
  color: var(--color-text-primary);
  font-style: italic;
  line-height: 1.7;
  margin: 0;
}

.quote-author-kernwerte-staerken-identifizieren {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  font-style: normal;
}

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

.implementation-content-kernwerte-staerken-identifizieren {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.implementation-text-kernwerte-staerken-identifizieren {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-title-kernwerte-staerken-identifizieren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.implementation-paragraph-kernwerte-staerken-identifizieren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.implementation-image-kernwerte-staerken-identifizieren {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-image-kernwerte-staerken-identifizieren img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

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

.conclusion-content-kernwerte-staerken-identifizieren {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-kernwerte-staerken-identifizieren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-text-kernwerte-staerken-identifizieren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

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

.disclaimer-content-kernwerte-staerken-identifizieren {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-tertiary);
  border-radius: 8px;
  border-left: 4px solid var(--color-primary);
}

.disclaimer-title-kernwerte-staerken-identifizieren {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.disclaimer-text-kernwerte-staerken-identifizieren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

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

.related-content-kernwerte-staerken-identifizieren {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
}

.related-title-kernwerte-staerken-identifizieren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  text-align: center;
  margin: 0;
}

.related-cards-kernwerte-staerken-identifizieren {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-kernwerte-staerken-identifizieren {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--color-bg-secondary);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-base);
  text-decoration: none;
}

.related-card-kernwerte-staerken-identifizieren:hover {
  transform: translateY(-4px);
  background: var(--color-bg-tertiary);
}

.related-image-kernwerte-staerken-identifizieren {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-image-kernwerte-staerken-identifizieren img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-base);
}

.related-card-kernwerte-staerken-identifizieren:hover .related-image-kernwerte-staerken-identifizieren img {
  transform: scale(1.05);
}

.related-card-text-kernwerte-staerken-identifizieren {
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-kernwerte-staerken-identifizieren {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--color-text-primary);
  margin: 0;
}

.related-card-description-kernwerte-staerken-identifizieren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-content-kernwerte-staerken-identifizieren,
  .intro-content-kernwerte-staerken-identifizieren,
  .values-content-kernwerte-staerken-identifizieren,
  .strengths-content-kernwerte-staerken-identifizieren,
  .implementation-content-kernwerte-staerken-identifizieren {
    flex-direction: column;
  }

  .hero-text-kernwerte-staerken-identifizieren,
  .hero-image-kernwerte-staerken-identifizieren,
  .intro-text-kernwerte-staerken-identifizieren,
  .intro-image-kernwerte-staerken-identifizieren,
  .values-text-kernwerte-staerken-identifizieren,
  .values-image-kernwerte-staerken-identifizieren,
  .strengths-text-kernwerte-staerken-identifizieren,
  .strengths-image-kernwerte-staerken-identifizieren,
  .implementation-text-kernwerte-staerken-identifizieren,
  .implementation-image-kernwerte-staerken-identifizieren {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .breadcrumbs-kernwerte-staerken-identifizieren {
    flex-wrap: wrap;
  }

  .method-steps-kernwerte-staerken-identifizieren {
    flex-direction: column;
  }

  .step-card-kernwerte-staerken-identifizieren {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .practical-cards-kernwerte-staerken-identifizieren {
    flex-direction: column;
  }

  .practical-card-kernwerte-staerken-identifizieren {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-cards-kernwerte-staerken-identifizieren {
    flex-direction: column;
  }

  .related-card-kernwerte-staerken-identifizieren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-section-kernwerte-staerken-identifizieren,
  .intro-section-kernwerte-staerken-identifizieren,
  .method-section-kernwerte-staerken-identifizieren,
  .values-section-kernwerte-staerken-identifizieren,
  .strengths-section-kernwerte-staerken-identifizieren,
  .practical-section-kernwerte-staerken-identifizieren,
  .quote-section-kernwerte-staerken-identifizieren,
  .implementation-section-kernwerte-staerken-identifizieren,
  .conclusion-section-kernwerte-staerken-identifizieren,
  .disclaimer-section-kernwerte-staerken-identifizieren,
  .related-section-kernwerte-staerken-identifizieren {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .hero-content-kernwerte-staerken-identifizieren {
    gap: clamp(1rem, 2vw, 2rem);
  }

  .breadcrumbs-kernwerte-staerken-identifizieren {
    font-size: 0.75rem;
    gap: 0.25rem;
  }
}

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

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

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

.main-konsistentes-professionelles-image {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
}

.hero-section-konsistentes-professionelles-image {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

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

.hero-text-konsistentes-professionelles-image {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-konsistentes-professionelles-image {
  flex: 1 1 50%;
  max-width: 50%;
}

.breadcrumbs-konsistentes-professionelles-image {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.95rem);
}

.breadcrumbs-konsistentes-professionelles-image a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-konsistentes-professionelles-image a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumbs-konsistentes-professionelles-image span {
  color: var(--color-text-muted);
}

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

.hero-subtitle-konsistentes-professionelles-image {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.hero-meta-konsistentes-professionelles-image {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: clamp(0.8rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-muted);
}

.meta-item-konsistentes-professionelles-image {
  display: inline-block;
}

.meta-divider-konsistentes-professionelles-image {
  display: inline-block;
}

.hero-img-konsistentes-professionelles-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

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

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

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

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

.intro-text-konsistentes-professionelles-image {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-konsistentes-professionelles-image {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.intro-img-konsistentes-professionelles-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

@media (max-width: 768px) {
  .intro-content-konsistentes-professionelles-image {
    flex-direction: column;
  }

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

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

.appearance-content-konsistentes-professionelles-image {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.appearance-image-konsistentes-professionelles-image {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.appearance-text-konsistentes-professionelles-image {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.appearance-paragraph-konsistentes-professionelles-image {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.appearance-img-konsistentes-professionelles-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

@media (max-width: 768px) {
  .appearance-content-konsistentes-professionelles-image {
    flex-direction: column;
  }

  .appearance-image-konsistentes-professionelles-image,
  .appearance-text-konsistentes-professionelles-image {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }
}

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

.communication-content-konsistentes-professionelles-image {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.communication-text-konsistentes-professionelles-image {
  flex: 1 1 50%;
  max-width: 50%;
}

.communication-image-konsistentes-professionelles-image {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.communication-paragraph-konsistentes-professionelles-image {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.communication-img-konsistentes-professionelles-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

@media (max-width: 768px) {
  .communication-content-konsistentes-professionelles-image {
    flex-direction: column;
  }

  .communication-text-konsistentes-professionelles-image,
  .communication-image-konsistentes-professionelles-image {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.behavior-content-konsistentes-professionelles-image {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.behavior-image-konsistentes-professionelles-image {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.behavior-text-konsistentes-professionelles-image {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.behavior-paragraph-konsistentes-professionelles-image {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.behavior-img-konsistentes-professionelles-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

@media (max-width: 768px) {
  .behavior-content-konsistentes-professionelles-image {
    flex-direction: column;
  }

  .behavior-image-konsistentes-professionelles-image,
  .behavior-text-konsistentes-professionelles-image {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }
}

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

.implementation-content-konsistentes-professionelles-image {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.implementation-title-konsistentes-professionelles-image {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
}

.steps-wrapper-konsistentes-professionelles-image {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.step-card-konsistentes-professionelles-image {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.25rem);
}

.step-number-konsistentes-professionelles-image {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.step-title-konsistentes-professionelles-image {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.35rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.3;
}

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

.implementation-image-konsistentes-professionelles-image {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.impl-img-konsistentes-professionelles-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

@media (max-width: 768px) {
  .steps-wrapper-konsistentes-professionelles-image {
    flex-direction: column;
  }

  .step-card-konsistentes-professionelles-image {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.key-points-section-konsistentes-professionelles-image {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.key-points-content-konsistentes-professionelles-image {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.key-points-title-konsistentes-professionelles-image {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  text-align: center;
  line-height: 1.3;
}

.points-grid-konsistentes-professionelles-image {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.point-card-konsistentes-professionelles-image {
  flex: 1 1 280px;
  max-width: 360px;
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1rem);
}

.point-heading-konsistentes-professionelles-image {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.35rem);
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.point-text-konsistentes-professionelles-image {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .points-grid-konsistentes-professionelles-image {
    flex-direction: column;
  }

  .point-card-konsistentes-professionelles-image {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.closing-content-konsistentes-professionelles-image {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

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

.closing-text-konsistentes-professionelles-image {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.cta-button-konsistentes-professionelles-image {
  display: inline-block;
  padding: clamp(0.75rem, 2vw, 1.25rem) clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-button-konsistentes-professionelles-image:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

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

.related-title-konsistentes-professionelles-image {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  text-align: center;
  line-height: 1.3;
}

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

.related-card-konsistentes-professionelles-image {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.related-card-image-konsistentes-professionelles-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.related-card-text-konsistentes-professionelles-image {
  padding: clamp(1.25rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1rem);
}

.related-card-title-konsistentes-professionelles-image {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.35rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.3;
}

.related-card-description-konsistentes-professionelles-image {
  font-size: clamp(0.8rem, 1vw + 0.4rem, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.related-link-konsistentes-professionelles-image {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.8rem, 1vw + 0.4rem, 0.95rem);
  transition: color 0.3s ease;
}

.related-link-konsistentes-professionelles-image:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .related-cards-konsistentes-professionelles-image {
    flex-direction: column;
  }

  .related-card-konsistentes-professionelles-image {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.disclaimer-section-konsistentes-professionelles-image {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
}

.disclaimer-content-konsistentes-professionelles-image {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-konsistentes-professionelles-image {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
}

.disclaimer-text-konsistentes-professionelles-image {
  font-size: clamp(0.8rem, 1vw + 0.4rem, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero-section-konsistentes-professionelles-image {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-konsistentes-professionelles-image {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

html, body {
  margin: 0;
  padding: 0;
}

.main-authentisches-netzwerken {
  font-family: var(--font-primary);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  overflow-x: hidden;
}

.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;
  margin: 0;
}

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

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

.hero-section-authentisches-netzwerken {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

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

.hero-text-authentisches-netzwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-authentisches-netzwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.hero-meta-authentisches-netzwerken {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  flex-wrap: wrap;
}

.meta-item-authentisches-netzwerken {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
}

.meta-item-authentisches-netzwerken i {
  color: var(--color-accent);
}

.hero-img-authentisches-netzwerken {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

.breadcrumbs-authentisches-netzwerken {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.breadcrumbs-authentisches-netzwerken a {
  color: var(--color-accent);
  transition: var(--transition-base);
}

.breadcrumbs-authentisches-netzwerken a:hover {
  color: var(--color-accent-hover);
}

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

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

.intro-text-authentisches-netzwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-authentisches-netzwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.intro-img-authentisches-netzwerken {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

.foundation-section-authentisches-netzwerken {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

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

.foundation-image-authentisches-netzwerken {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.foundation-text-authentisches-netzwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.foundation-paragraph-authentisches-netzwerken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.foundation-pillars-authentisches-netzwerken {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.pillar-item-authentisches-netzwerken {
  padding: clamp(1.5rem, 2vw, 2rem);
  background: var(--color-bg-card);
  border-left: 3px solid var(--color-accent);
  border-radius: var(--radius-md);
}

.pillar-title-authentisches-netzwerken {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.pillar-text-authentisches-netzwerken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.foundation-img-authentisches-netzwerken {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

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

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

.practices-title-authentisches-netzwerken {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}

.practices-intro-authentisches-netzwerken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  text-align: center;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.practice-cards-authentisches-netzwerken {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.practice-card-authentisches-netzwerken {
  flex: 1 1 280px;
  max-width: 320px;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition-base);
}

.practice-card-authentisches-netzwerken:hover {
  transform: translateY(-4px);
  background: var(--color-bg-card);
  box-shadow: var(--shadow-md);
}

.card-icon-authentisches-netzwerken {
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--color-accent);
}

.card-title-authentisches-netzwerken {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-primary);
  font-weight: 600;
}

.card-text-authentisches-netzwerken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.obstacles-section-authentisches-netzwerken {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

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

.obstacles-text-authentisches-netzwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

.obstacles-image-authentisches-netzwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.obstacles-img-authentisches-netzwerken {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

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

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

.strategy-image-authentisches-netzwerken {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.strategy-text-authentisches-netzwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.strategy-paragraph-authentisches-netzwerken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.strategy-phases-authentisches-netzwerken {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.phase-authentisches-netzwerken {
  padding: clamp(1.5rem, 2vw, 2rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-accent);
}

.phase-title-authentisches-netzwerken {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.phase-text-authentisches-netzwerken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.strategy-img-authentisches-netzwerken {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

.quote-section-authentisches-netzwerken {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.quote-content-authentisches-netzwerken {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.featured-quote-authentisches-netzwerken {
  padding: clamp(2rem, 3vw, 3rem);
  border-left: 4px solid var(--color-accent);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  max-width: 800px;
  margin: 0 auto;
}

.quote-text-authentisches-netzwerken {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.quote-author-authentisches-netzwerken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  display: block;
}

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

.conclusion-content-authentisches-netzwerken {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-authentisches-netzwerken {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}

.conclusion-paragraph-authentisches-netzwerken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.cta-box-authentisches-netzwerken {
  background: linear-gradient(135deg, var(--color-accent), #6d28d9);
  padding: clamp(2rem, 3vw, 3rem);
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--color-text-primary);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.cta-title-authentisches-netzwerken {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.cta-text-authentisches-netzwerken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.btn-primary-authentisches-netzwerken {
  display: inline-block;
  padding: clamp(0.75rem, 1vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: var(--color-text-primary);
  color: var(--color-accent);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: var(--transition-base);
}

.btn-primary-authentisches-netzwerken:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #6d28d9;
}

.disclaimer-section-authentisches-netzwerken {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
}

.disclaimer-content-authentisches-netzwerken {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-accent);
}

.disclaimer-title-authentisches-netzwerken {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-primary);
  font-weight: 600;
}

.disclaimer-text-authentisches-netzwerken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

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

.related-title-authentisches-netzwerken {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}

.related-cards-authentisches-netzwerken {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-authentisches-netzwerken {
  flex: 1 1 320px;
  max-width: 380px;
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-base);
}

.related-card-authentisches-netzwerken:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.related-image-authentisches-netzwerken {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.related-img-authentisches-netzwerken {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-authentisches-netzwerken {
  padding: clamp(1.5rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-card-title-authentisches-netzwerken {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-primary);
  font-weight: 600;
  line-height: 1.3;
}

.related-card-text-authentisches-netzwerken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.related-link-authentisches-netzwerken {
  color: var(--color-accent);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: var(--transition-base);
  align-self: flex-start;
}

.related-link-authentisches-netzwerken:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero-content-authentisches-netzwerken,
  .intro-content-authentisches-netzwerken,
  .foundation-content-authentisches-netzwerken,
  .obstacles-content-authentisches-netzwerken,
  .strategy-content-authentisches-netzwerken {
    flex-direction: column;
  }

  .hero-text-authentisches-netzwerken,
  .hero-image-authentisches-netzwerken,
  .intro-text-authentisches-netzwerken,
  .intro-image-authentisches-netzwerken,
  .foundation-image-authentisches-netzwerken,
  .foundation-text-authentisches-netzwerken,
  .obstacles-text-authentisches-netzwerken,
  .obstacles-image-authentisches-netzwerken,
  .strategy-image-authentisches-netzwerken,
  .strategy-text-authentisches-netzwerken {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .foundation-image-authentisches-netzwerken,
  .strategy-image-authentisches-netzwerken {
    order: 0;
  }

  .practice-cards-authentisches-netzwerken {
    flex-direction: column;
    align-items: center;
  }

  .practice-card-authentisches-netzwerken {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-cards-authentisches-netzwerken {
    flex-direction: column;
    align-items: center;
  }

  .related-card-authentisches-netzwerken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .practice-cards-authentisches-netzwerken {
    justify-content: center;
  }

  .related-cards-authentisches-netzwerken {
    justify-content: center;
  }
}

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

html, body {
  font-family: var(--font-primary);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

p, span, li {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.personal-branding-about {
  background: var(--color-bg-primary);
  overflow: hidden;
}

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

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

.hero-header-about {
  text-align: center;
}

.hero-title-about {
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-weight: 800;
  letter-spacing: -1px;
}

.hero-subtitle-about {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.hero-description-about {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

.hero-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  display: block;
}

.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;
}

.section-tag-about {
  display: inline-block;
  padding: 0.35rem 1.2rem;
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-accent);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 auto var(--space-sm);
}

.values-title-about {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-text-primary);
  margin: var(--space-md) 0;
}

.values-intro-about {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  max-width: 650px;
  margin: 0 auto;
}

.values-grid-about {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.value-card-about {
  flex: 1 1 250px;
  max-width: 320px;
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: var(--transition-base);
}

.value-card-about:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.value-icon-about {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.value-title-about {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.value-text-about {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

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

.methodology-header-about {
  text-align: center;
}

.methodology-title-about {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-text-primary);
  margin: var(--space-md) 0;
}

.methodology-subtitle-about {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  max-width: 680px;
  margin: 0 auto;
}

.methodology-split-about {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.methodology-text-about {
  flex: 1 1 45%;
  min-width: 250px;
}

.methodology-text-about p {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.methodology-text-about p:first-child {
  color: var(--color-text-primary);
  font-weight: 500;
}

.methodology-visual-about {
  flex: 1 1 45%;
  min-height: 300px;
  max-height: 450px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  width: 100%;
  box-shadow: var(--shadow-lg);
}

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

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

.process-header-about {
  text-align: center;
}

.process-title-about {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-text-primary);
  margin: var(--space-md) 0;
}

.process-intro-about {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  max-width: 680px;
  margin: 0 auto;
}

.steps-wrapper-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.step-number-about {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-accent);
  min-width: 80px;
  text-align: center;
  line-height: 1;
}

.step-details-about {
  flex: 1;
  padding-top: var(--space-sm);
}

.step-title-about {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.step-description-about {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

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

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

.authenticity-header-about {
  text-align: center;
}

.authenticity-title-about {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-text-primary);
  margin: var(--space-md) 0;
}

.authenticity-text-about {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.8;
}

.featured-quote-about {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
  margin: clamp(2rem, 4vw, 3rem) 0;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.quote-text-about {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--color-text-primary);
  font-style: italic;
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.quote-author-about {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-accent);
  font-weight: 600;
}

.disclaimer-section-about {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 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: 800px;
}

.disclaimer-header-about {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  align-items: flex-start;
}

.disclaimer-icon-about {
  font-size: 1.5rem;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.disclaimer-title-about {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
}

.disclaimer-text-about {
  font-size: clamp(0.85rem, 1.3vw, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

@media (max-width: 767px) {
  .methodology-split-about {
    flex-direction: column;
  }

  .methodology-text-about {
    flex: 1 1 100%;
  }

  .methodology-visual-about {
    flex: 1 1 100%;
  }

  .step-item-about {
    flex-direction: column;
    gap: var(--space-md);
  }

  .step-number-about {
    min-width: auto;
  }

  .disclaimer-header-about {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .values-grid-about {
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .value-card-about {
    flex: 1 1 280px;
  }
}

@media (min-width: 1024px) {
  .hero-section-about {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .methodology-split-about {
    gap: clamp(3rem, 5vw, 4rem);
  }
}

.portfolio-page {
  width: 100%;
  background-color: var(--color-bg-primary);
}

.portfolio-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
}

.portfolio-hero-container {
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: var(--color-text-primary-dark);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.2;
  font-weight: 700;
}

.portfolio-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  margin: 0;
  max-width: 600px;
  line-height: 1.6;
}

.portfolio-projects {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
}

.portfolio-projects-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

.portfolio-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.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);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex-grow: 1;
}

.portfolio-card-tag {
  font-family: var(--font-primary);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  align-self: flex-start;
  background-color: var(--color-primary-light);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
}

.portfolio-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-primary-dark);
  margin: 0;
  line-height: 1.3;
  font-weight: 700;
}

.portfolio-card-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.7;
}

.portfolio-card-detail {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  color: var(--color-text-muted);
  margin-top: auto;
  font-weight: 500;
}

.portfolio-cta {
  background-color: var(--color-bg-secondary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
}

.portfolio-cta-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary-dark);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.3;
  font-weight: 700;
}

.portfolio-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-2xl) 0;
  line-height: 1.7;
}

.portfolio-cta-button {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 600;
  background-color: var(--color-bg-dark-accent);
  color: var(--color-text-primary-light);
  padding: var(--space-sm) var(--space-2xl);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background-color var(--transition-base), transform var(--transition-fast);
  border: none;
  cursor: pointer;
}

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

.portfolio-cta-button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .portfolio-hero {
    padding: var(--space-3xl) var(--space-lg);
  }

  .portfolio-projects {
    padding: var(--space-3xl) var(--space-lg);
  }

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

  .portfolio-card {
    flex-direction: column;
  }

  .portfolio-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-hero {
    padding: var(--space-3xl) 0;
  }

  .portfolio-projects {
    padding: var(--space-3xl) 0;
  }

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

  .portfolio-card-image {
    height: 280px;
  }

  .portfolio-cta {
    padding: var(--space-3xl) 0;
  }
}

@media (min-width: 1440px) {
  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.services-page {
  width: 100%;
  background-color: var(--color-bg-primary);
}

.services-hero {
  position: relative;
  padding: var(--space-xl) var(--space-md);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-secondary);
  overflow: hidden;
}

.services-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  padding: var(--space-xl);
}

.services-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: var(--color-text-primary-light);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.services-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  color: var(--color-text-secondary);
  margin: 0;
  font-weight: 400;
  line-height: 1.5;
}

.services-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.services-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.services-cards-section {
  padding: var(--space-3xl) var(--space-md);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.services-cards-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.services-card {
  background-color: var(--color-bg-card);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  border: 1px solid var(--color-accent-emerald);
}

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

.services-card-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
}

.services-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw + 0.25rem, 1.5rem);
  color: var(--color-text-primary-light);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.services-card-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.1rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0 0 var(--space-lg) 0;
  flex-grow: 1;
}

.services-card-topics {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.services-topic-tag {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  color: var(--color-text-primary-light);
  background-color: var(--color-accent-emerald);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.services-cta-section {
  padding: var(--space-3xl) var(--space-md);
  background-color: var(--color-bg-secondary);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.services-cta-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.services-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  color: var(--color-text-primary-light);
  margin: 0 0 var(--space-lg) 0;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.services-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.1rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0 0 var(--space-2xl) 0;
}

.services-cta-button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background-color: var(--color-primary);
  color: var(--color-text-primary-dark);
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.1rem, 1.05rem);
  font-weight: 600;
  transition: background-color var(--transition-base), transform var(--transition-fast);
  border: none;
  cursor: pointer;
}

.services-cta-button:hover {
  background-color: var(--color-primary-hover);
  transform: translateX(4px);
}

.services-cta-button-text {
  display: inline;
}

.services-cta-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

@media (min-width: 768px) {
  .services-hero {
    padding: var(--space-2xl) var(--space-xl);
    min-height: 400px;
  }

  .services-cards-section {
    padding: var(--space-3xl) var(--space-xl);
  }

  .services-cards-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .services-cta-section {
    padding: var(--space-3xl) var(--space-xl);
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }

  .services-cta-content {
    text-align: left;
    margin: 0;
  }

  .services-cta-title {
    text-align: left;
  }

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

@media (min-width: 1024px) {
  .services-hero {
    padding: var(--space-3xl) var(--space-2xl);
    min-height: 450px;
  }

  .services-cards-section {
    padding: var(--space-3xl) var(--space-2xl);
  }

  .services-cards-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .services-card {
    padding: var(--space-2xl);
  }

  .services-cta-section {
    padding: var(--space-3xl) var(--space-2xl);
  }
}

@media (min-width: 1200px) {
  .services-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.authentik-legal {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary-light);
}

.authentik-legal .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.authentik-legal .content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) 0;
}

.authentik-legal 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);
  font-weight: 700;
}

.authentik-legal .last-updated {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
  font-style: italic;
}

.authentik-legal section {
  margin-bottom: var(--space-3xl);
}

.authentik-legal h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-lg);
  font-weight: 600;
}

.authentik-legal p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.7;
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-md);
}

.authentik-legal ul,
.authentik-legal ol {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
}

.authentik-legal li {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.7;
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-sm);
}

.authentik-legal strong {
  color: var(--color-text-primary-light);
  font-weight: 600;
}

.authentik-legal .contact-section {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  margin-top: var(--space-3xl);
}

.authentik-legal .contact-section h2 {
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-lg);
}

.authentik-legal .contact-section p {
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-sm);
}

.authentik-legal .contact-section strong {
  color: var(--color-primary);
  font-weight: 600;
}

@media (min-width: 768px) {
  .authentik-legal .container {
    padding: 0 var(--space-lg);
  }

  .authentik-legal .content {
    padding: var(--space-3xl) 0;
  }
}

@media (min-width: 1024px) {
  .authentik-legal .container {
    padding: 0 var(--space-xl);
  }

  .authentik-legal .content {
    padding: var(--space-3xl) 0;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg-primary);
  font-family: var(--font-primary);
  overflow-x: hidden;
}

.thank-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-primary);
}

.thank-section {
  width: 100%;
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
  background-color: var(--color-bg-primary);
}

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

.thank-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.thank-icon {
  margin-bottom: var(--space-lg);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  width: 120px;
  margin-left: auto;
  margin-right: auto;
}

.thank-icon svg {
  width: 100%;
  height: 100%;
  color: var(--color-primary);
  stroke: var(--color-primary);
}

.thank-content 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);
  font-weight: 700;
  line-height: 1.2;
}

.lead-text {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  font-weight: 600;
  line-height: 1.6;
}

.description-text {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.description-text:last-of-type {
  margin-bottom: var(--space-2xl);
}

.btn-primary {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--color-primary);
  color: var(--color-text-primary-dark);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  transition: var(--transition-base);
  cursor: pointer;
  border: 2px solid var(--color-primary);
  margin-top: var(--space-lg);
}

.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);
}

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

@media (min-width: 768px) {
  .thank-section {
    padding: var(--space-2xl) var(--space-md);
  }

  .thank-icon {
    height: 140px;
    width: 140px;
    margin-bottom: var(--space-xl);
  }

  .thank-content h1 {
    margin-bottom: var(--space-lg);
  }

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

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

  .description-text:last-of-type {
    margin-bottom: var(--space-3xl);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-md);
  }

  .thank-icon {
    height: 160px;
    width: 160px;
    margin-bottom: var(--space-2xl);
  }
}

.error-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) 0;
}

.error-section {
  width: 100%;
  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 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-2xl);
  padding: var(--space-2xl) var(--space-md);
}

.error-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.error-code-container {
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-size: clamp(4rem, 20vw, 12rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  line-height: 1;
  position: relative;
  z-index: 2;
}

.error-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid var(--color-primary-light);
  border-radius: var(--radius-2xl);
  opacity: 0.3;
  animation: rotate-decoration 20s linear infinite;
}

@keyframes rotate-decoration {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.error-message {
  width: 100%;
}

.error-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-primary-light);
  margin: 0 0 var(--space-md) 0;
  letter-spacing: -0.01em;
}

.error-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.6;
  font-weight: 500;
}

.error-content-box {
  background-color: var(--color-bg-secondary);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
  border-radius: var(--radius-md);
}

.error-description {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary-light);
  margin: 0;
  line-height: 1.7;
}

.error-actions {
  margin: var(--space-2xl) 0 var(--space-xl) 0;
}

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  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 transparent;
  cursor: pointer;
  font-family: var(--font-primary);
}

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

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

.btn-primary:active {
  transform: translateY(0);
}

.error-hint {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-top: var(--space-lg);
}

.hint-text {
  font-size: clamp(0.85rem, 0.9vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
  font-style: italic;
}

@media (min-width: 768px) {
  .error-wrapper {
    padding: var(--space-3xl) var(--space-lg);
    gap: var(--space-3xl);
  }

  .error-code-container {
    max-width: 400px;
  }

  .error-decoration {
    border-width: 4px;
  }

  .error-content-box {
    padding: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .error-page {
    padding: var(--space-3xl) 0;
  }

  .container {
    padding: 0 var(--space-lg);
  }

  .error-wrapper {
    padding: var(--space-3xl) 0;
  }

  .error-code-container {
    max-width: 450px;
  }

  .error-visual {
    margin-bottom: var(--space-2xl);
  }

  .error-hint {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-decoration {
    animation: none;
  }

  .btn-primary:hover {
    transform: none;
  }
}

.contact-lets-talk {
  width: 100%;
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary-light);
  overflow: hidden;
}

.contact-lets-talk-hero {
  background-color: var(--color-bg-dark-accent);
  padding: 3rem var(--space-md);
  overflow: hidden;
}

.contact-lets-talk-hero-content {
  width: 100%;
}

.contact-lets-talk-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.contact-lets-talk-lead {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.15rem);
  color: var(--color-text-primary-dark);
  line-height: 1.7;
  max-width: 600px;
}

@media (min-width: 768px) {
  .contact-lets-talk-hero {
    padding: 4rem var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .contact-lets-talk-hero {
    padding: 5rem var(--space-lg);
  }
}

.contact-lets-talk-main {
  background-color: var(--color-bg-primary);
  padding: 3rem var(--space-md);
  overflow: hidden;
}

.contact-lets-talk-main-content {
  width: 100%;
}

.contact-lets-talk-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xl);
  width: 100%;
}

.contact-lets-talk-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-lets-talk-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .contact-lets-talk-form-wrapper {
    flex: 1 1 45%;
  }

  .contact-lets-talk-info-wrapper {
    flex: 1 1 45%;
  }
}

.contact-lets-talk-form-wrapper h2,
.contact-lets-talk-info-wrapper h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-lg);
  font-weight: 600;
}

.contact-lets-talk-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  width: 100%;
}

.contact-lets-talk-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  width: 100%;
}

.contact-lets-talk-label {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-weight: 500;
  color: var(--color-text-primary-light);
  display: block;
}

.contact-lets-talk-input,
.contact-lets-talk-textarea {
  font-family: var(--font-primary);
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-primary-light);
  font-size: clamp(0.9rem, 1vw, 1rem);
  transition: var(--transition-base);
  box-sizing: border-box;
}

.contact-lets-talk-input::placeholder,
.contact-lets-talk-textarea::placeholder {
  color: var(--color-text-muted);
}

.contact-lets-talk-input:focus,
.contact-lets-talk-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: var(--color-bg-secondary);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.contact-lets-talk-textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-lets-talk-submit {
  font-family: var(--font-primary);
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-primary);
  color: var(--color-text-primary-dark);
  border: none;
  border-radius: var(--radius-md);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
  margin-top: var(--space-sm);
}

.contact-lets-talk-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-lets-talk-submit:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.contact-lets-talk-privacy-note {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-top: var(--space-sm);
}

.contact-lets-talk-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition-fast);
  border-bottom: 1px solid transparent;
}

.contact-lets-talk-privacy-link:hover {
  color: var(--color-primary-hover);
  border-bottom-color: var(--color-primary-hover);
}

.contact-lets-talk-info-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.contact-lets-talk-info-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-lets-talk-info-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

.contact-lets-talk-info-content {
  flex: 1;
}

.contact-lets-talk-info-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

.contact-lets-talk-info-content p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.contact-lets-talk-info-link {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition-fast);
  border-bottom: 1px solid transparent;
}

.contact-lets-talk-info-link:hover {
  color: var(--color-primary-hover);
  border-bottom-color: var(--color-primary-hover);
}

.contact-lets-talk-info-section {
  padding: var(--space-lg);
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
}

.contact-lets-talk-info-section h3 {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.contact-lets-talk-info-section p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0 0 var(--space-sm) 0;
}

.contact-lets-talk-info-section p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .contact-lets-talk-main {
    padding: 4rem var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .contact-lets-talk-main {
    padding: 5rem var(--space-lg);
  }
}

.contact-lets-talk-faq {
  background-color: var(--color-bg-secondary);
  padding: 3rem var(--space-md);
  overflow: hidden;
}

.contact-lets-talk-faq-content {
  width: 100%;
}

.contact-lets-talk-faq h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-2xl);
  text-align: center;
  font-weight: 600;
}

.contact-lets-talk-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  width: 100%;
}

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

@media (min-width: 1024px) {
  .contact-lets-talk-faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }
}

.contact-lets-talk-faq-item {
  background-color: var(--color-bg-card);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: var(--transition-base);
}

.contact-lets-talk-faq-item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.contact-lets-talk-faq-item h3 {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.contact-lets-talk-faq-item p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .contact-lets-talk-faq {
    padding: 4rem var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .contact-lets-talk-faq {
    padding: 5rem var(--space-lg);
  }
}

@media (max-width: 480px) {
  .contact-lets-talk-hero h1 {
    margin-bottom: var(--space-sm);
  }

  .contact-lets-talk-form {
    gap: var(--space-sm);
  }

  .contact-lets-talk-submit {
    padding: var(--space-sm) var(--space-md);
  }
}
.header-authentik-beacon-mobile-close,.header-authentik-beacon-mobile-toggle{
  width: 34px;
}

.header-authentik-beacon-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;
}
