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

:root {
  --color-bg-primary: #0f0a1e;
  --color-bg-secondary: #1a1035;
  --color-bg-tertiary: #251848;
  --color-bg-card: rgba(26, 16, 53, 0.8);

  --color-text-primary: #ffffff;
  --color-text-secondary: #a5b4fc;
  --color-text-muted: #8b7ca8;

  --color-primary: #8b5cf6;
  --color-primary-hover: #a78bfa;
  --color-secondary: #7c3aed;
  --color-accent: #c084fc;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-info: #3b82f6;

  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Merriweather', 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.3);
  --shadow-md: 0 4px 12px rgba(139, 92, 246, 0.15);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 25px 60px rgba(139, 92, 246, 0.2);

  --transition-fast: 150ms ease-out;
  --transition-base: 300ms ease-out;
  --transition-slow: 500ms ease-out;

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

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

  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  font-weight: var(--font-weight-regular);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

h1 {
  font-size: var(--font-size-5xl);
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--font-size-4xl);
  letter-spacing: -0.01em;
}

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

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

h5 {
  font-size: var(--font-size-xl);
}

h6 {
  font-size: var(--font-size-lg);
}

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

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

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

a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

button,
input,
textarea,
select {
  font-family: var(--font-primary);
  font-size: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  border-radius: var(--radius-lg);
  padding: var(--space-sm) var(--space-md);
  font-weight: var(--font-weight-semibold);
  transition: all var(--transition-fast);
}

button:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-text-primary);
  box-shadow: var(--shadow-md);
}

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

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--color-bg-tertiary);
  color: var(--color-text-primary);
  border: 1px solid var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-bg-secondary);
  border-color: var(--color-primary-hover);
}

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

.btn-ghost:hover {
  background: rgba(139, 92, 246, 0.1);
  color: var(--color-primary-hover);
}

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

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

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--space-xl);
  }
}

.card {
  background: var(--color-bg-card);
  border: 1px solid rgba(139, 92, 246, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.card:hover {
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

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

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

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

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

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

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

.flex {
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.text-sm {
  font-size: var(--font-size-sm);
}

.text-lg {
  font-size: var(--font-size-lg);
}

.text-xl {
  font-size: var(--font-size-xl);
}

.font-medium {
  font-weight: var(--font-weight-medium);
}

.font-semibold {
  font-weight: var(--font-weight-semibold);
}

.font-bold {
  font-weight: var(--font-weight-bold);
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

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

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

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

.p-xs {
  padding: var(--space-xs);
}

.p-sm {
  padding: var(--space-sm);
}

.p-md {
  padding: var(--space-md);
}

.p-lg {
  padding: var(--space-lg);
}

.p-xl {
  padding: 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);
}

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

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

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

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

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-xl);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
}

.badge-primary {
  background: rgba(139, 92, 246, 0.15);
  color: var(--color-accent);
}

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

.badge-warning {
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-warning);
}

.badge-error {
  background: rgba(239, 68, 68, 0.15);
  color: var(--color-error);
}

.badge-info {
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-info);
}

.divider {
  width: 100%;
  height: 1px;
  background: rgba(139, 92, 246, 0.1);
  margin: var(--space-lg) 0;
}

.line {
  height: 1px;
  background: rgba(139, 92, 246, 0.1);
}

input,
textarea,
select {
  width: 100%;
  background: var(--color-bg-secondary);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-sm) var(--space-md);
  color: var(--color-text-primary);
  transition: all var(--transition-fast);
}

input::placeholder,
textarea::placeholder {
  color: var(--color-text-muted);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-bg-tertiary);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

select {
  cursor: pointer;
}

label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
}

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

.error-message {
  color: var(--color-error);
  font-size: var(--font-size-sm);
  margin-top: var(--space-xs);
}

.success-message {
  color: var(--color-success);
  font-size: var(--font-size-sm);
  margin-top: var(--space-xs);
}

.table {
  width: 100%;
  border-collapse: collapse;
  color: var(--color-text-secondary);
}

.table th {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
  font-weight: var(--font-weight-semibold);
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.table td {
  padding: var(--space-md);
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.table tbody tr:hover {
  background: rgba(139, 92, 246, 0.05);
}

.list {
  list-style: none;
}

.list li {
  padding: var(--space-sm) 0;
  line-height: var(--line-height-relaxed);
}

.list li::before {
  content: '›';
  color: var(--color-primary);
  font-weight: bold;
  margin-right: var(--space-sm);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

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

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

.breadcrumb li::after {
  content: '/';
  margin-left: var(--space-sm);
}

.breadcrumb li:last-child::after {
  content: '';
}

.alert {
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
  border-left: 4px solid;
}

.alert-success {
  background: rgba(16, 185, 129, 0.1);
  border-left-color: var(--color-success);
  color: var(--color-success);
}

.alert-warning {
  background: rgba(245, 158, 11, 0.1);
  border-left-color: var(--color-warning);
  color: var(--color-warning);
}

.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border-left-color: var(--color-error);
  color: var(--color-error);
}

.alert-info {
  background: rgba(59, 130, 246, 0.1);
  border-left-color: var(--color-info);
  color: var(--color-info);
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-md);
  white-space: nowrap;
  font-size: var(--font-size-sm);
  box-shadow: var(--shadow-lg);
  z-index: 100;
  pointer-events: none;
}

.tooltip:hover::before {
  content: '';
  position: absolute;
  bottom: 115%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--color-bg-secondary);
  z-index: 100;
  pointer-events: none;
}

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

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

@media (max-width: 640px) {
  h1 {
    font-size: var(--font-size-3xl);
  }

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

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

  .card {
    padding: var(--space-md);
  }

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

  .table {
    font-size: var(--font-size-sm);
  }

  .table th,
  .table td {
    padding: var(--space-sm);
  }
}
.header-salary-vault {
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border-light);
  position: static;
  z-index: 100;
  overflow: visible;
}

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

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

.header-salary-vault-brand:hover {
  opacity: 0.85;
}

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

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

.header-salary-vault-desktop-nav {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: clamp(1.5rem, 2vw, 2.5rem);
  flex: 1;
  justify-content: center;
  margin: 0 2rem;
}

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

.header-salary-vault-nav-link:hover {
  color: var(--color-accent);
}

.header-salary-vault-nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-base);
}

.header-salary-vault-nav-link:hover::after {
  width: 100%;
}

.header-salary-vault-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background: var(--color-accent);
  color: var(--color-bg-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: var(--font-weight-semibold);
  border-radius: 0.5rem;
  text-decoration: none;
  transition: var(--transition-base);
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.header-salary-vault-cta-button:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
}

.header-salary-vault-mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  transition: var(--transition-base);
  flex-shrink: 0;
}

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

.header-salary-vault-mobile-toggle:hover span {
  background: var(--color-accent);
}

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

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

.header-salary-vault-mobile-header {
  display: flex;
  justify-content: flex-end;
  padding: 0.5rem 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--color-border-light);
}

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

.header-salary-vault-mobile-close:hover {
  color: var(--color-accent);
}

.header-salary-vault-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  margin-bottom: 2rem;
}

.header-salary-vault-mobile-link {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-text-secondary);
  text-decoration: none;
  padding: 0.75rem 0;
  transition: var(--transition-base);
  border-bottom: 1px solid var(--color-border-light);
}

.header-salary-vault-mobile-link:hover {
  color: var(--color-accent);
  padding-left: 0.5rem;
}

.header-salary-vault-mobile-cta {
  padding: 0.875rem 1.5rem;
  background: var(--color-accent);
  color: var(--color-bg-primary);
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: var(--font-weight-semibold);
  border-radius: 0.5rem;
  text-decoration: none;
  text-align: center;
  transition: var(--transition-base);
  display: block;
}

.header-salary-vault-mobile-cta:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
}

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

  .header-salary-vault-mobile-menu {
    display: none;
  }

  .header-salary-vault-desktop-nav {
    display: flex;
  }

  .header-salary-vault-cta-button {
    display: block;
  }

  .header-salary-vault-container {
    height: 75px;
  }
}

@media (min-width: 1024px) {
  .header-salary-vault-container {
    height: 80px;
    gap: 2rem;
  }

  .header-salary-vault-logo-text {
    font-size: 1.4rem;
  }

  .header-salary-vault-desktop-nav {
    gap: 2.5rem;
  }

  .header-salary-vault-nav-link {
    font-size: 1.05rem;
  }
}

@media (max-width: 767px) {
  .header-salary-vault-container {
    height: 60px;
  }

  .header-salary-vault-logo-text {
    font-size: 1.1rem;
  }

  .header-salary-vault-logo-img {
    width: 36px;
    height: 36px;
  }
}

    

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

html {
  scroll-behavior: smooth;
}

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

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

.salary-literacy-hub {
  width: 100%;
}

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

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

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

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

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

.btn-secondary-index:hover {
  background: rgba(37, 99, 235, 0.05);
  border-color: var(--color-primary-hover);
}

.btn-primary-large-index {
  background: var(--color-primary);
  color: #ffffff;
  padding: 1rem 2.5rem;
  font-size: clamp(1rem, 1.2vw + 0.5rem, 1.25rem);
}

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

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

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

.hero-text-block {
  flex: 1 1 45%;
  min-width: 0;
}

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

.hero-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

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

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

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

.hero-image-block {
  flex: 1 1 45%;
  min-height: 300px;
  max-height: 500px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

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

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

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

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

  .hero-cta-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

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

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

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

.about-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

.about-subtitle-index {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

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

.about-text-block {
  flex: 1 1 45%;
  min-width: 0;
}

.about-text-index {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.about-image-block {
  flex: 1 1 45%;
  min-height: 300px;
  max-height: 450px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

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

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

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

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

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

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

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

.features-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

.features-subtitle-index {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

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

.feature-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1.5vw, 1.5rem);
}

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

.card-icon-index {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--color-primary);
}

.card-title-index {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
}

.card-text-index {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
}

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

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

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

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

.stats-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

.stats-subtitle-index {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
}

.stats-grid-index {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.stat-card-index {
  flex: 1 1 220px;
  max-width: 300px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.stat-number-large-index {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
}

.stat-description-index {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

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

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

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

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

.posts-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

.posts-subtitle-index {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

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

.post-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.post-image-wrapper-index {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.post-card-image-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.post-card-index:hover .post-card-image-index {
  transform: scale(1.05);
}

.post-card-body-index {
  padding: clamp(1.25rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  flex: 1;
}

.post-card-title-index {
  font-size: clamp(1.05rem, 1.8vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
}

.post-card-text-index {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  flex: 1;
}

.post-card-link-index {
  display: inline-block;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  transition: all var(--transition-base);
  margin-top: auto;
}

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

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

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

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

.faq-content {
  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: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

.faq-subtitle-index {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

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

.faq-item-index {
  background: var(--color-bg-card);
  padding: clamp(1.25rem, 2.5vw, 2rem);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
}

.faq-question-index {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
}

.faq-answer-index {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

@media (max-width: 767px) {
  .faq-items-index {
    max-width: 100%;
  }
}

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

.testimonials-content {
  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: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

.testimonials-subtitle-index {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

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

.testimonial-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1.5vw, 1.5rem);
}

.testimonial-quote-index {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  font-style: italic;
}

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

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

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

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

.cta-box-index {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: var(--radius-lg);
  text-align: center;
  color: #ffffff;
}

.cta-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
  line-height: var(--line-height-tight);
}

.cta-text-index {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.125rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1.5rem, 2.5vw, 2rem);
}

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

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

.cookie-banner-text-index {
  color: #ffffff;
  font-size: clamp(0.8rem, 1vw + 0.4rem, 0.95rem);
  margin: 0;
  max-width: 600px;
}

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

.cookie-btn-accept-index {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 1.5vw, 1.5rem);
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(0.8rem, 1vw + 0.4rem, 0.95rem);
  transition: all var(--transition-base);
}

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

.cookie-btn-decline-index {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 1.5vw, 1.5rem);
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(0.8rem, 1vw + 0.4rem, 0.95rem);
  transition: all var(--transition-base);
}

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

@media (max-width: 767px) {
  .cookie-banner {
    flex-direction: column;
  }

  .cookie-banner-text-index {
    max-width: 100%;
    text-align: center;
  }

  .cookie-banner-buttons-index {
    width: 100%;
    justify-content: center;
  }

  .cookie-btn-accept-index,
  .cookie-btn-decline-index {
    flex: 1 1 auto;
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  .btn {
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .hero-cta-group .btn {
    width: 100%;
  }
}

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

.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 {
  padding-bottom: clamp(1rem, 3vw, 1.5rem);
  border-bottom: 1px solid var(--color-border);
}

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

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

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

.footer-nav-section h4,
.footer-contact h4,
.footer-legal h4 {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: var(--font-weight-semibold);
  margin-bottom: clamp(0.75rem, 2vw, 1.125rem);
  letter-spacing: -0.3px;
}

.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.footer-link {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: color var(--transition-base);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-link:hover {
  color: var(--color-accent);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
}

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

.footer-label {
  color: var(--color-text-primary);
  font-weight: var(--font-weight-semibold);
  display: inline-block;
  min-width: 70px;
}

.footer-legal-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
}

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

.footer-copyright p {
  color: var(--color-text-muted);
  font-family: var(--font-primary);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  letter-spacing: 0.3px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(2rem, 5vw, 4rem);
  }

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

  .footer-nav-section {
    flex: 1 1 calc(50% - 1rem);
    min-width: 200px;
  }

  .footer-contact {
    flex: 1 1 calc(50% - 1rem);
    min-width: 200px;
  }

  .footer-legal {
    flex: 1 1 100%;
    border-top: 1px solid var(--color-border);
    padding-top: clamp(1.5rem, 3vw, 2rem);
  }

  .footer-copyright {
    flex: 1 1 100%;
    text-align: center;
    border-top: 1px solid var(--color-border);
  }
}

@media (max-width: 767px) {
  .footer-nav,
  .footer-legal-nav {
    flex-direction: column;
    gap: clamp(0.5rem, 1vw, 0.75rem);
  }

  .footer-link {
    display: block;
  }
}
    

.category-page-gehaltsabrechnung-literacy {
  background: var(--color-bg-primary);
  font-family: var(--font-primary);
}

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

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

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

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

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

.hero-subtitle-gehaltsabrechnung-literacy {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.hero-image-block-gehaltsabrechnung-literacy {
  flex: 1 1 50%;
  min-height: 350px;
  max-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-gehaltsabrechnung-literacy {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

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

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

.posts-header-gehaltsabrechnung-literacy {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.posts-title-gehaltsabrechnung-literacy {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.card-gehaltsabrechnung-literacy {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.card-image-gehaltsabrechnung-literacy {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.card-title-gehaltsabrechnung-literacy {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-description-gehaltsabrechnung-literacy {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-meta-gehaltsabrechnung-literacy {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-muted);
}

.card-reading-time-gehaltsabrechnung-literacy,
.card-level-gehaltsabrechnung-literacy,
.card-date-gehaltsabrechnung-literacy {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-reading-time-gehaltsabrechnung-literacy i,
.card-level-gehaltsabrechnung-literacy i,
.card-date-gehaltsabrechnung-literacy i {
  color: var(--color-accent);
}

.card-link-gehaltsabrechnung-literacy {
  align-self: flex-start;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-accent);
  text-decoration: none;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.card-link-gehaltsabrechnung-literacy:hover {
  color: var(--color-accent);
  text-decoration: underline;
  transform: translateX(4px);
}

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

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

.insights-header-gehaltsabrechnung-literacy {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.insights-title-gehaltsabrechnung-literacy {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.insights-intro-gehaltsabrechnung-literacy {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.insights-list-gehaltsabrechnung-literacy {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  width: 100%;
}

.insight-item-gehaltsabrechnung-literacy {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.insight-item-gehaltsabrechnung-literacy:hover {
  background: var(--color-bg-tertiary);
  transform: translateY(-2px);
}

.insight-icon-gehaltsabrechnung-literacy {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  border-radius: var(--radius-md);
  color: var(--color-bg-primary);
  font-size: 1.5rem;
}

.insight-text-gehaltsabrechnung-literacy {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.insight-name-gehaltsabrechnung-literacy {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.insight-description-gehaltsabrechnung-literacy {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.faq-title-gehaltsabrechnung-literacy {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  text-align: center;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.faq-list-gehaltsabrechnung-literacy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.faq-item-gehaltsabrechnung-literacy {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
}

.faq-question-gehaltsabrechnung-literacy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  cursor: pointer;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  user-select: none;
  transition: all var(--transition-fast);
  list-style: none;
}

.faq-question-gehaltsabrechnung-literacy:hover {
  background: var(--color-bg-tertiary);
}

.faq-question-gehaltsabrechnung-literacy::marker {
  display: none;
}

.faq-item-gehaltsabrechnung-literacy details[open] .faq-question-gehaltsabrechnung-literacy {
  background: var(--color-bg-tertiary);
}

.faq-answer-gehaltsabrechnung-literacy {
  padding: 0 clamp(1.25rem, 3vw, 1.75rem) clamp(1.25rem, 3vw, 1.75rem) clamp(1.25rem, 3vw, 1.75rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 1023px) {
  .hero-content-gehaltsabrechnung-literacy {
    flex-direction: column;
  }

  .hero-text-block-gehaltsabrechnung-literacy {
    flex: 1 1 100%;
  }

  .hero-image-block-gehaltsabrechnung-literacy {
    flex: 1 1 100%;
    min-height: 300px;
    max-height: 400px;
  }
}

@media (max-width: 767px) {
  .posts-grid-gehaltsabrechnung-literacy {
    flex-direction: column;
    align-items: center;
  }

  .card-gehaltsabrechnung-literacy {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .insights-list-gehaltsabrechnung-literacy {
    grid-template-columns: 1fr;
  }

  .insight-item-gehaltsabrechnung-literacy {
    flex-direction: column;
  }

  .faq-list-gehaltsabrechnung-literacy {
    max-width: 100%;
  }
}

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

.main-bruttolohn-nettolohn-unterschied {
  width: 100%;
  overflow: hidden;
}

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

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

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

.breadcrumbs-bruttolohn-nettolohn-unterschied a {
  color: var(--color-accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumbs-bruttolohn-nettolohn-unterschied a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

.breadcrumbs-bruttolohn-nettolohn-unterschied span {
  color: var(--color-text-secondary);
}

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

.hero-text-bruttolohn-nettolohn-unterschied {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-bruttolohn-nettolohn-unterschied {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-subtitle-bruttolohn-nettolohn-unterschied {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.15rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.6;
}

.hero-meta-bruttolohn-nettolohn-unterschied {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

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

.meta-item-bruttolohn-nettolohn-unterschied i {
  color: var(--color-accent);
}

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

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

  .hero-text-bruttolohn-nettolohn-unterschied,
  .hero-image-bruttolohn-nettolohn-unterschied {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-meta-bruttolohn-nettolohn-unterschied {
    flex-direction: column;
    gap: 0.75rem;
  }
}

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

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

.intro-text-bruttolohn-nettolohn-unterschied {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-bruttolohn-nettolohn-unterschied {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-bruttolohn-nettolohn-unterschied {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-paragraph-bruttolohn-nettolohn-unterschied {
  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-image-bruttolohn-nettolohn-unterschied img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .intro-content-bruttolohn-nettolohn-unterschied {
    flex-direction: column;
  }

  .intro-text-bruttolohn-nettolohn-unterschied,
  .intro-image-bruttolohn-nettolohn-unterschied {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.definition-content-bruttolohn-nettolohn-unterschied {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.definition-left-bruttolohn-nettolohn-unterschied {
  flex: 1 1 50%;
  max-width: 50%;
}

.definition-right-bruttolohn-nettolohn-unterschied {
  flex: 1 1 50%;
  max-width: 50%;
}

.definition-title-bruttolohn-nettolohn-unterschied {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.definition-box-bruttolohn-nettolohn-unterschied {
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  border-left: 4px solid var(--color-accent);
}

.definition-subheading-bruttolohn-nettolohn-unterschied {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.definition-text-bruttolohn-nettolohn-unterschied {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.definition-right-bruttolohn-nettolohn-unterschied img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .definition-content-bruttolohn-nettolohn-unterschied {
    flex-direction: column;
  }

  .definition-left-bruttolohn-nettolohn-unterschied,
  .definition-right-bruttolohn-nettolohn-unterschied {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.abzuege-content-bruttolohn-nettolohn-unterschied {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.abzuege-title-bruttolohn-nettolohn-unterschied {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.abzuege-intro-bruttolohn-nettolohn-unterschied {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.abzuege-items-bruttolohn-nettolohn-unterschied {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.abzug-item-bruttolohn-nettolohn-unterschied {
  flex: 1 1 calc(50% - 1rem);
  min-width: 280px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.abzug-name-bruttolohn-nettolohn-unterschied {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.abzug-description-bruttolohn-nettolohn-unterschied {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .abzug-item-bruttolohn-nettolohn-unterschied {
    flex: 1 1 100%;
  }
}

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

.example-content-bruttolohn-nettolohn-unterschied {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.example-text-bruttolohn-nettolohn-unterschied {
  flex: 1 1 50%;
  max-width: 50%;
}

.example-image-bruttolohn-nettolohn-unterschied {
  flex: 1 1 50%;
  max-width: 50%;
}

.example-title-bruttolohn-nettolohn-unterschied {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.example-paragraph-bruttolohn-nettolohn-unterschied {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.example-breakdown-bruttolohn-nettolohn-unterschied {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.breakdown-item-bruttolohn-nettolohn-unterschied {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  border-bottom: 1px solid var(--color-border-light);
}

.breakdown-item-bruttolohn-nettolohn-unterschied:last-child {
  border-bottom: none;
}

.breakdown-label-bruttolohn-nettolohn-unterschied {
  color: var(--color-text-secondary);
}

.breakdown-value-bruttolohn-nettolohn-unterschied {
  color: var(--color-text-primary);
  font-weight: 600;
}

.breakdown-total-bruttolohn-nettolohn-unterschied {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0 0 0;
  margin-top: 0.75rem;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.25rem);
  font-weight: 700;
  border-top: 2px solid var(--color-accent);
  padding-top: 1rem;
}

.breakdown-total-bruttolohn-nettolohn-unterschied .breakdown-label-bruttolohn-nettolohn-unterschied {
  color: var(--color-text-primary);
}

.breakdown-total-bruttolohn-nettolohn-unterschied .breakdown-value-bruttolohn-nettolohn-unterschied {
  color: var(--color-accent);
}

.example-note-bruttolohn-nettolohn-unterschied {
  font-size: clamp(0.8rem, 0.9vw + 0.4rem, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  font-style: italic;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(var(--color-primary-rgb, 37, 99, 235), 0.08);
  border-left: 3px solid var(--color-accent);
  border-radius: var(--radius-md);
}

.example-image-bruttolohn-nettolohn-unterschied img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .example-content-bruttolohn-nettolohn-unterschied {
    flex-direction: column;
  }

  .example-text-bruttolohn-nettolohn-unterschied,
  .example-image-bruttolohn-nettolohn-unterschied {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.vorteile-content-bruttolohn-nettolohn-unterschied {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  flex-direction: column;
}

.vorteile-text-bruttolohn-nettolohn-unterschied {
  flex: 1 1 50%;
  max-width: 50%;
}

.vorteile-image-bruttolohn-nettolohn-unterschied {
  flex: 1 1 50%;
  max-width: 50%;
}

.vorteile-title-bruttolohn-nettolohn-unterschied {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.vorteile-paragraph-bruttolohn-nettolohn-unterschied {
  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);
}

.vorteile-image-bruttolohn-nettolohn-unterschied img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .vorteile-content-bruttolohn-nettolohn-unterschied {
    flex-direction: column;
  }

  .vorteile-text-bruttolohn-nettolohn-unterschied,
  .vorteile-image-bruttolohn-nettolohn-unterschied {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.planning-content-bruttolohn-nettolohn-unterschied {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.planning-title-bruttolohn-nettolohn-unterschied {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.planning-intro-bruttolohn-nettolohn-unterschied {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.planning-list-bruttolohn-nettolohn-unterschied {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.planning-item-bruttolohn-nettolohn-unterschied {
  flex: 1 1 calc(50% - 1rem);
  min-width: 280px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.planning-number-bruttolohn-nettolohn-unterschied {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin: 0;
}

.planning-item-text-bruttolohn-nettolohn-unterschied {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.planning-item-text-bruttolohn-nettolohn-unterschied strong {
  color: var(--color-text-primary);
}

@media (max-width: 768px) {
  .planning-item-bruttolohn-nettolohn-unterschied {
    flex: 1 1 100%;
  }
}

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

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

.conclusion-title-bruttolohn-nettolohn-unterschied {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
}

.conclusion-text-bruttolohn-nettolohn-unterschied {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  text-align: center;
}

.conclusion-cta-bruttolohn-nettolohn-unterschied {
  display: flex;
  justify-content: center;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.cta-link-bruttolohn-nettolohn-unterschied {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: var(--color-accent);
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  transition: all 0.3s ease;
}

.cta-link-bruttolohn-nettolohn-unterschied:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
}

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

.disclaimer-content-bruttolohn-nettolohn-unterschied {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-info);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-bruttolohn-nettolohn-unterschied {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.disclaimer-title-bruttolohn-nettolohn-unterschied i {
  color: var(--color-info);
}

.disclaimer-text-bruttolohn-nettolohn-unterschied {
  font-size: clamp(0.8rem, 0.9vw + 0.4rem, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

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

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

.related-title-bruttolohn-nettolohn-unterschied {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
}

.related-cards-bruttolohn-nettolohn-unterschied {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-bruttolohn-nettolohn-unterschied {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 300px;
  max-width: 380px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.related-card-bruttolohn-nettolohn-unterschied:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.related-card-image-bruttolohn-nettolohn-unterschied {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

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

.related-card-title-bruttolohn-nettolohn-unterschied {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.3;
}

.related-card-text-bruttolohn-nettolohn-unterschied {
  font-size: clamp(0.8rem, 0.9vw + 0.4rem, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.related-card-link-bruttolohn-nettolohn-unterschied {
  display: inline-block;
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.8rem, 0.9vw + 0.4rem, 0.95rem);
  transition: all 0.3s ease;
  align-self: flex-start;
}

.related-card-link-bruttolohn-nettolohn-unterschied:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-card-bruttolohn-nettolohn-unterschied {
    flex: 1 1 calc(50% - 1rem);
  }
}

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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  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 !important;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.main-sozialversicherungsbeitraege-erklart {
  width: 100%;
  overflow: hidden;
}

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

.breadcrumbs-sozialversicherungsbeitraege-erklart {
  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.875rem);
  color: var(--color-text-secondary);
}

.breadcrumbs-sozialversicherungsbeitraege-erklart a {
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.breadcrumbs-sozialversicherungsbeitraege-erklart a:hover {
  color: var(--color-primary-hover);
}

.breadcrumbs-sozialversicherungsbeitraege-erklart span {
  color: var(--color-text-secondary);
}

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

.hero-text-sozialversicherungsbeitraege-erklart {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-sozialversicherungsbeitraege-erklart {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.hero-subtitle-sozialversicherungsbeitraege-erklart {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.5;
}

.hero-meta-sozialversicherungsbeitraege-erklart {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: center;
}

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

.meta-item-sozialversicherungsbeitraege-erklart i {
  color: var(--color-primary);
}

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

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

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

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

.intro-text-sozialversicherungsbeitraege-erklart {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-sozialversicherungsbeitraege-erklart {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.intro-paragraph-sozialversicherungsbeitraege-erklart {
  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;
}

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

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

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

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

.types-header-sozialversicherungsbeitraege-erklart {
  text-align: center;
}

.types-title-sozialversicherungsbeitraege-erklart {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.types-subtitle-sozialversicherungsbeitraege-erklart {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
}

.types-cards-sozialversicherungsbeitraege-erklart {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.type-card-sozialversicherungsbeitraege-erklart {
  flex: 1 1 calc(50% - 1.25rem);
  max-width: 380px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  transition: all 0.3s ease;
}

.type-card-sozialversicherungsbeitraege-erklart:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
  background: rgba(139, 92, 246, 0.12);
}

.card-icon-sozialversicherungsbeitraege-erklart {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-primary);
}

.card-title-sozialversicherungsbeitraege-erklart {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

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

@media (max-width: 768px) {
  .type-card-sozialversicherungsbeitraege-erklart {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.calculation-text-sozialversicherungsbeitraege-erklart {
  flex: 1 1 50%;
  max-width: 50%;
}

.calculation-image-sozialversicherungsbeitraege-erklart {
  flex: 1 1 50%;
  max-width: 50%;
}

.calculation-image-sozialversicherungsbeitraege-erklart img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  max-height: 400px;
}

.calculation-title-sozialversicherungsbeitraege-erklart {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.calculation-paragraph-sozialversicherungsbeitraege-erklart {
  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;
}

.calculation-highlight-sozialversicherungsbeitraege-erklart {
  background: rgba(139, 92, 246, 0.1);
  border-left: 4px solid var(--color-primary);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  margin: clamp(1rem, 2vw, 1.5rem) 0;
}

.highlight-text-sozialversicherungsbeitraege-erklart {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .calculation-content-sozialversicherungsbeitraege-erklart {
    flex-direction: column;
  }

  .calculation-text-sozialversicherungsbeitraege-erklart,
  .calculation-image-sozialversicherungsbeitraege-erklart {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.practical-text-sozialversicherungsbeitraege-erklart {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-image-sozialversicherungsbeitraege-erklart {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-image-sozialversicherungsbeitraege-erklart img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  max-height: 400px;
}

.practical-title-sozialversicherungsbeitraege-erklart {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.practical-paragraph-sozialversicherungsbeitraege-erklart {
  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;
}

@media (max-width: 768px) {
  .practical-content-sozialversicherungsbeitraege-erklart {
    flex-direction: column-reverse;
  }

  .practical-text-sozialversicherungsbeitraege-erklart,
  .practical-image-sozialversicherungsbeitraege-erklart {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.special-header-sozialversicherungsbeitraege-erklart {
  text-align: center;
}

.special-title-sozialversicherungsbeitraege-erklart {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.special-subtitle-sozialversicherungsbeitraege-erklart {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
}

.special-text-sozialversicherungsbeitraege-erklart {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
  flex-direction: column;
}

.special-text-sozialversicherungsbeitraege-erklart > div:first-child {
  flex: 1 1 60%;
  max-width: 60%;
}

.special-image-sozialversicherungsbeitraege-erklart {
  flex: 1 1 40%;
  max-width: 40%;
}

.special-image-sozialversicherungsbeitraege-erklart img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  max-height: 350px;
}

.special-subheading-sozialversicherungsbeitraege-erklart {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.special-paragraph-sozialversicherungsbeitraege-erklart {
  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);
}

@media (max-width: 768px) {
  .special-text-sozialversicherungsbeitraege-erklart {
    flex-direction: column;
  }

  .special-text-sozialversicherungsbeitraege-erklart > div:first-child,
  .special-image-sozialversicherungsbeitraege-erklart {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.tips-header-sozialversicherungsbeitraege-erklart {
  text-align: center;
}

.tips-title-sozialversicherungsbeitraege-erklart {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.tips-cards-sozialversicherungsbeitraege-erklart {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.tip-card-sozialversicherungsbeitraege-erklart {
  flex: 1 1 calc(50% - 1.25rem);
  max-width: 380px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  transition: all 0.3s ease;
  position: relative;
}

.tip-card-sozialversicherungsbeitraege-erklart:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
  background: rgba(139, 92, 246, 0.12);
}

.tip-number-sozialversicherungsbeitraege-erklart {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  opacity: 0.6;
}

.tip-title-sozialversicherungsbeitraege-erklart {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

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

@media (max-width: 768px) {
  .tip-card-sozialversicherungsbeitraege-erklart {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.faq-header-sozialversicherungsbeitraege-erklart {
  text-align: center;
}

.faq-title-sozialversicherungsbeitraege-erklart {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

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

.faq-item-sozialversicherungsbeitraege-erklart {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item-sozialversicherungsbeitraege-erklart:hover {
  border-color: var(--color-primary);
  background: rgba(139, 92, 246, 0.12);
}

.faq-summary-sozialversicherungsbeitraege-erklart {
  padding: clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  transition: color 0.3s ease;
}

.faq-summary-sozialversicherungsbeitraege-erklart:hover {
  color: var(--color-primary-hover);
}

.faq-summary-sozialversicherungsbeitraege-erklart::marker {
  color: var(--color-primary);
}

.faq-answer-sozialversicherungsbeitraege-erklart {
  padding: 0 clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  border-top: 1px solid var(--color-border);
}

details[open] .faq-summary-sozialversicherungsbeitraege-erklart {
  color: var(--color-primary);
}

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

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

.conclusion-text-sozialversicherungsbeitraege-erklart {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-image-sozialversicherungsbeitraege-erklart {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-image-sozialversicherungsbeitraege-erklart img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  max-height: 400px;
}

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

.conclusion-paragraph-sozialversicherungsbeitraege-erklart {
  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;
}

.conclusion-highlight-sozialversicherungsbeitraege-erklart {
  background: rgba(139, 92, 246, 0.1);
  border-left: 4px solid var(--color-primary);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  margin: clamp(1rem, 2vw, 1.5rem) 0;
}

.highlight-message-sozialversicherungsbeitraege-erklart {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .conclusion-content-sozialversicherungsbeitraege-erklart {
    flex-direction: column;
  }

  .conclusion-text-sozialversicherungsbeitraege-erklart,
  .conclusion-image-sozialversicherungsbeitraege-erklart {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.disclaimer-content-sozialversicherungsbeitraege-erklart {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-icon-sozialversicherungsbeitraege-erklart {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.disclaimer-text-sozialversicherungsbeitraege-erklart {
  flex: 1 1 auto;
}

.disclaimer-title-sozialversicherungsbeitraege-erklart {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
}

.disclaimer-body-sozialversicherungsbeitraege-erklart {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .disclaimer-content-sozialversicherungsbeitraege-erklart {
    flex-direction: column;
    align-items: center;
  }

  .disclaimer-icon-sozialversicherungsbeitraege-erklart {
    text-align: center;
    width: 100%;
    margin-top: 0;
  }
}

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

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

.related-header-sozialversicherungsbeitraege-erklart {
  text-align: center;
}

.related-title-sozialversicherungsbeitraege-erklart {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

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

.related-card-sozialversicherungsbeitraege-erklart {
  flex: 1 1 calc(33.333% - 1.67rem);
  max-width: 380px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: all 0.3s ease;
}

.related-card-sozialversicherungsbeitraege-erklart:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
  background: rgba(139, 92, 246, 0.12);
}

.related-image-sozialversicherungsbeitraege-erklart {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.related-image-sozialversicherungsbeitraege-erklart img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-body-sozialversicherungsbeitraege-erklart {
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1vw, 1rem);
  flex: 1 1 auto;
}

.related-card-title-sozialversicherungsbeitraege-erklart {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.3;
}

.related-card-text-sozialversicherungsbeitraege-erklart {
  font-size: clamp(0.8rem, 1vw + 0.4rem, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.5;
  flex: 1 1 auto;
}

.related-link-sozialversicherungsbeitraege-erklart {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-primary);
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: auto;
}

.related-link-sozialversicherungsbeitraege-erklart:hover {
  color: var(--color-primary-hover);
  transform: translateX(2px);
}

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

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

.main-geldwerte-vorteile-steuern {
    background: var(--color-bg-primary);
    color: var(--color-text-primary);
    font-family: var(--font-primary);
    overflow: hidden;
  }

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

  .hero-section-geldwerte-vorteile-steuern {
    background: var(--color-bg-primary);
    padding: clamp(2rem, 6vw, 4rem) 0;
    overflow: hidden;
  }

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

  .hero-text-geldwerte-vorteile-steuern {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .hero-image-geldwerte-vorteile-steuern {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .hero-img-geldwerte-vorteile-steuern {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
  }

  .breadcrumbs-geldwerte-vorteile-steuern {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    font-size: clamp(0.75rem, 1vw + 0.5rem, 0.95rem);
    flex-wrap: wrap;
  }

  .breadcrumbs-geldwerte-vorteile-steuern a {
    color: var(--color-accent);
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .breadcrumbs-geldwerte-vorteile-steuern a:hover {
    color: var(--color-text-primary);
    text-decoration: underline;
  }

  .breadcrumbs-geldwerte-vorteile-steuern span {
    color: var(--color-text-secondary);
  }

  .hero-title-geldwerte-vorteile-steuern {
    color: var(--color-text-primary);
    font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hero-description-geldwerte-vorteile-steuern {
    color: var(--color-text-secondary);
    font-size: clamp(0.95rem, 1vw + 0.5rem, 1.2rem);
    line-height: var(--line-height-relaxed);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hero-meta-geldwerte-vorteile-steuern {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: clamp(0.8rem, 0.9vw + 0.5rem, 0.95rem);
  }

  .meta-item-geldwerte-vorteile-steuern {
    color: var(--color-text-secondary);
  }

  .meta-separator-geldwerte-vorteile-steuern {
    color: var(--color-text-muted);
  }

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

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

  .intro-text-geldwerte-vorteile-steuern {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .intro-image-geldwerte-vorteile-steuern {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .intro-image-geldwerte-vorteile-steuern img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
  }

  .intro-title-geldwerte-vorteile-steuern {
    color: var(--color-text-primary);
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-weight: var(--font-weight-bold);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .intro-paragraph-geldwerte-vorteile-steuern {
    color: var(--color-text-secondary);
    font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
    line-height: var(--line-height-relaxed);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .benefits-types-section-geldwerte-vorteile-steuern {
    background: var(--color-bg-primary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

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

  .benefits-types-header-geldwerte-vorteile-steuern {
    text-align: center;
  }

  .benefits-types-title-geldwerte-vorteile-steuern {
    color: var(--color-text-primary);
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-weight: var(--font-weight-bold);
    margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .benefits-types-subtitle-geldwerte-vorteile-steuern {
    color: var(--color-text-secondary);
    font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
    line-height: var(--line-height-relaxed);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .benefits-types-grid-geldwerte-vorteile-steuern {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    justify-content: center;
  }

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

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

  .benefit-icon-geldwerte-vorteile-steuern {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-accent);
  }

  .benefit-card-title-geldwerte-vorteile-steuern {
    color: var(--color-text-primary);
    font-size: clamp(1.1rem, 2vw + 0.5rem, 1.5rem);
    font-weight: var(--font-weight-semibold);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

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

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

  .calculation-wrapper-geldwerte-vorteile-steuern {
    display: flex;
    flex-direction: row;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
  }

  .calculation-text-geldwerte-vorteile-steuern {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .calculation-image-geldwerte-vorteile-steuern {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .calculation-image-geldwerte-vorteile-steuern img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
  }

  .calculation-title-geldwerte-vorteile-steuern {
    color: var(--color-text-primary);
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-weight: var(--font-weight-bold);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .calculation-paragraph-geldwerte-vorteile-steuern {
    color: var(--color-text-secondary);
    font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
    line-height: var(--line-height-relaxed);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

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

  .impact-wrapper-geldwerte-vorteile-steuern {
    display: flex;
    flex-direction: row;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
  }

  .impact-image-geldwerte-vorteile-steuern {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .impact-image-geldwerte-vorteile-steuern img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
  }

  .impact-text-geldwerte-vorteile-steuern {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .impact-title-geldwerte-vorteile-steuern {
    color: var(--color-text-primary);
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-weight: var(--font-weight-bold);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .impact-paragraph-geldwerte-vorteile-steuern {
    color: var(--color-text-secondary);
    font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
    line-height: var(--line-height-relaxed);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .impact-box-geldwerte-vorteile-steuern {
    background: var(--color-bg-card);
    padding: clamp(1.5rem, 2vw, 2rem);
    border-left: 4px solid var(--color-accent);
    border-radius: var(--radius-md);
    margin: clamp(1.5rem, 2vw, 2rem) 0;
  }

  .impact-box-text-geldwerte-vorteile-steuern {
    color: var(--color-text-primary);
    font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
    line-height: var(--line-height-relaxed);
    margin-bottom: 0.75rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .impact-box-text-geldwerte-vorteile-steuern:last-child {
    margin-bottom: 0;
  }

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

  .strategy-content-geldwerte-vorteile-steuern {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3rem);
  }

  .strategy-title-geldwerte-vorteile-steuern {
    color: var(--color-text-primary);
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .strategy-grid-geldwerte-vorteile-steuern {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    justify-content: center;
  }

  .strategy-card-geldwerte-vorteile-steuern {
    flex: 1 1 280px;
    max-width: 380px;
    background: var(--color-bg-card);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
    transition: all 0.3s ease;
  }

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

  .strategy-card-title-geldwerte-vorteile-steuern {
    color: var(--color-text-primary);
    font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
    font-weight: var(--font-weight-semibold);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .strategy-card-text-geldwerte-vorteile-steuern {
    color: var(--color-text-secondary);
    font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
    line-height: var(--line-height-relaxed);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

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

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

  .conclusion-title-geldwerte-vorteile-steuern {
    color: var(--color-text-primary);
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
    font-weight: var(--font-weight-bold);
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .conclusion-text-geldwerte-vorteile-steuern {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .conclusion-paragraph-geldwerte-vorteile-steuern {
    color: var(--color-text-secondary);
    font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
    line-height: var(--line-height-relaxed);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .conclusion-highlight-geldwerte-vorteile-steuern {
    background: var(--color-bg-card);
    padding: clamp(1.5rem, 2vw, 2rem);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-accent);
  }

  .highlight-text-geldwerte-vorteile-steuern {
    color: var(--color-text-primary);
    font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
    line-height: var(--line-height-relaxed);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .disclaimer-section-geldwerte-vorteile-steuern {
    background: var(--color-bg-secondary);
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    overflow: hidden;
  }

  .disclaimer-content-geldwerte-vorteile-steuern {
    max-width: 800px;
    margin: 0 auto;
  }

  .disclaimer-title-geldwerte-vorteile-steuern {
    color: var(--color-text-primary);
    font-size: clamp(1.2rem, 2.5vw + 0.5rem, 1.5rem);
    font-weight: var(--font-weight-semibold);
    margin-bottom: clamp(1rem, 1.5vw, 1.5rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .disclaimer-text-geldwerte-vorteile-steuern {
    color: var(--color-text-secondary);
    font-size: clamp(0.85rem, 0.9vw + 0.5rem, 1rem);
    line-height: var(--line-height-relaxed);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

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

  .related-posts-content-geldwerte-vorteile-steuern {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3rem);
  }

  .related-posts-title-geldwerte-vorteile-steuern {
    color: var(--color-text-primary);
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-weight: var(--font-weight-bold);
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

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

  .related-card-geldwerte-vorteile-steuern {
    flex: 1 1 300px;
    max-width: 380px;
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

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

  .related-card-image-geldwerte-vorteile-steuern {
    width: 100%;
    height: 200px;
    overflow: hidden;
  }

  .related-card-image-geldwerte-vorteile-steuern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .related-card-content-geldwerte-vorteile-steuern {
    padding: clamp(1.5rem, 2vw, 2rem);
    display: flex;
    flex-direction: column;
    gap: clamp(0.75rem, 1vw, 1rem);
    flex-grow: 1;
  }

  .related-card-title-geldwerte-vorteile-steuern {
    color: var(--color-text-primary);
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.3rem);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-tight);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .related-card-text-geldwerte-vorteile-steuern {
    color: var(--color-text-secondary);
    font-size: clamp(0.85rem, 1vw + 0.5rem, 0.95rem);
    line-height: var(--line-height-relaxed);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  @media (max-width: 768px) {
    .hero-content-geldwerte-vorteile-steuern,
    .intro-content-geldwerte-vorteile-steuern,
    .calculation-wrapper-geldwerte-vorteile-steuern,
    .impact-wrapper-geldwerte-vorteile-steuern {
      flex-direction: column;
    }

    .hero-text-geldwerte-vorteile-steuern,
    .hero-image-geldwerte-vorteile-steuern,
    .intro-text-geldwerte-vorteile-steuern,
    .intro-image-geldwerte-vorteile-steuern,
    .calculation-text-geldwerte-vorteile-steuern,
    .calculation-image-geldwerte-vorteile-steuern,
    .impact-image-geldwerte-vorteile-steuern,
    .impact-text-geldwerte-vorteile-steuern {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }

  @media (min-width: 769px) and (max-width: 1023px) {
    .benefit-card-geldwerte-vorteile-steuern,
    .strategy-card-geldwerte-vorteile-steuern,
    .related-card-geldwerte-vorteile-steuern {
      flex: 1 1 calc(50% - 0.75rem);
      max-width: 100%;
    }
  }

.main-lohnsteuer-monatliche-berechnung {
  font-family: var(--font-primary);
  background-color: 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 !important;
}

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

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

.breadcrumbs-lohnsteuer-monatliche-berechnung {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-lohnsteuer-monatliche-berechnung a {
  color: var(--color-accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumbs-lohnsteuer-monatliche-berechnung a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

.breadcrumbs-lohnsteuer-monatliche-berechnung span {
  color: var(--color-text-secondary);
}

.breadcrumbs-lohnsteuer-monatliche-berechnung > span:last-child {
  color: var(--color-text-primary);
  font-weight: 600;
}

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

.hero-text-lohnsteuer-monatliche-berechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-lohnsteuer-monatliche-berechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-title-lohnsteuer-monatliche-berechnung {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-tight);
}

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

.hero-meta-lohnsteuer-monatliche-berechnung {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex-wrap: wrap;
  align-items: center;
}

.meta-item-lohnsteuer-monatliche-berechnung {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  font-size: clamp(0.75rem, 1vw, 0.9375rem);
  color: var(--color-text-secondary);
}

.meta-item-lohnsteuer-monatliche-berechnung i {
  color: var(--color-accent);
}

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

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

.intro-text-lohnsteuer-monatliche-berechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-lohnsteuer-monatliche-berechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-title-lohnsteuer-monatliche-berechnung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-tight);
}

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

.mechanism-section-lohnsteuer-monatliche-berechnung {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.mechanism-content-lohnsteuer-monatliche-berechnung {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.mechanism-text-lohnsteuer-monatliche-berechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.mechanism-image-lohnsteuer-monatliche-berechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.mechanism-image-lohnsteuer-monatliche-berechnung img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  max-height: 400px;
}

.mechanism-title-lohnsteuer-monatliche-berechnung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-tight);
}

.mechanism-paragraph-lohnsteuer-monatliche-berechnung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-relaxed);
}

.mechanism-list-lohnsteuer-monatliche-berechnung {
  list-style: none;
  padding: 0;
  margin: clamp(1rem, 2vw, 1.5rem) 0;
}

.list-item-lohnsteuer-monatliche-berechnung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  position: relative;
  line-height: var(--line-height-relaxed);
}

.list-item-lohnsteuer-monatliche-berechnung::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

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

.steuerklasse-content-lohnsteuer-monatliche-berechnung {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.steuerklasse-text-lohnsteuer-monatliche-berechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.steuerklasse-image-lohnsteuer-monatliche-berechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.steuerklasse-image-lohnsteuer-monatliche-berechnung img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  max-height: 400px;
}

.steuerklasse-title-lohnsteuer-monatliche-berechnung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-tight);
}

.steuerklasse-paragraph-lohnsteuer-monatliche-berechnung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-relaxed);
}

.freibetrag-section-lohnsteuer-monatliche-berechnung {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.freibetrag-content-lohnsteuer-monatliche-berechnung {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.freibetrag-text-lohnsteuer-monatliche-berechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.freibetrag-image-lohnsteuer-monatliche-berechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.freibetrag-image-lohnsteuer-monatliche-berechnung img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  max-height: 400px;
}

.freibetrag-title-lohnsteuer-monatliche-berechnung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-tight);
}

.freibetrag-paragraph-lohnsteuer-monatliche-berechnung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-relaxed);
}

.freibetrag-highlight-lohnsteuer-monatliche-berechnung {
  background: rgba(var(--color-primary-rgb), 0.1);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.highlight-text-lohnsteuer-monatliche-berechnung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

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

.changes-content-lohnsteuer-monatliche-berechnung {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.changes-title-lohnsteuer-monatliche-berechnung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
  line-height: var(--line-height-tight);
}

.changes-intro-lohnsteuer-monatliche-berechnung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  text-align: center;
  line-height: var(--line-height-relaxed);
}

.changes-grid-lohnsteuer-monatliche-berechnung {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.change-card-lohnsteuer-monatliche-berechnung {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

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

.card-icon-lohnsteuer-monatliche-berechnung {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--color-accent);
}

.card-title-lohnsteuer-monatliche-berechnung {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: var(--line-height-normal);
}

.card-text-lohnsteuer-monatliche-berechnung {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.prognose-section-lohnsteuer-monatliche-berechnung {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.prognose-content-lohnsteuer-monatliche-berechnung {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.prognose-text-lohnsteuer-monatliche-berechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.prognose-image-lohnsteuer-monatliche-berechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.prognose-image-lohnsteuer-monatliche-berechnung img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  max-height: 400px;
}

.prognose-title-lohnsteuer-monatliche-berechnung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-tight);
}

.prognose-paragraph-lohnsteuer-monatliche-berechnung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-relaxed);
}

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

.summary-content-lohnsteuer-monatliche-berechnung {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.summary-title-lohnsteuer-monatliche-berechnung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
  line-height: var(--line-height-tight);
}

.summary-list-lohnsteuer-monatliche-berechnung {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.summary-item-lohnsteuer-monatliche-berechnung {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
}

.summary-number-lohnsteuer-monatliche-berechnung {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-accent);
  flex-shrink: 0;
  min-width: 3rem;
}

.summary-text-lohnsteuer-monatliche-berechnung {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.disclaimer-section-lohnsteuer-monatliche-berechnung {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.disclaimer-content-lohnsteuer-monatliche-berechnung {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.disclaimer-box-lohnsteuer-monatliche-berechnung {
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid var(--color-info);
  border-radius: var(--radius-md);
}

.disclaimer-title-lohnsteuer-monatliche-berechnung {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
  line-height: var(--line-height-normal);
}

.disclaimer-text-lohnsteuer-monatliche-berechnung {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

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

.related-content-lohnsteuer-monatliche-berechnung {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.related-title-lohnsteuer-monatliche-berechnung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
  line-height: var(--line-height-tight);
}

.related-cards-lohnsteuer-monatliche-berechnung {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.related-card-lohnsteuer-monatliche-berechnung {
  flex: 1 1 320px;
  max-width: 380px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.related-card-lohnsteuer-monatliche-berechnung:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.related-card-image-lohnsteuer-monatliche-berechnung {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--color-bg-tertiary);
}

.related-card-image-lohnsteuer-monatliche-berechnung img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card-text-lohnsteuer-monatliche-berechnung {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-lohnsteuer-monatliche-berechnung {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: var(--line-height-normal);
  margin: 0;
}

.related-card-desc-lohnsteuer-monatliche-berechnung {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

@media (max-width: 768px) {
  .hero-content-lohnsteuer-monatliche-berechnung,
  .intro-content-lohnsteuer-monatliche-berechnung,
  .mechanism-content-lohnsteuer-monatliche-berechnung,
  .steuerklasse-content-lohnsteuer-monatliche-berechnung,
  .freibetrag-content-lohnsteuer-monatliche-berechnung,
  .prognose-content-lohnsteuer-monatliche-berechnung {
    flex-direction: column;
  }

  .hero-text-lohnsteuer-monatliche-berechnung,
  .hero-image-lohnsteuer-monatliche-berechnung,
  .intro-text-lohnsteuer-monatliche-berechnung,
  .intro-image-lohnsteuer-monatliche-berechnung,
  .mechanism-text-lohnsteuer-monatliche-berechnung,
  .mechanism-image-lohnsteuer-monatliche-berechnung,
  .steuerklasse-text-lohnsteuer-monatliche-berechnung,
  .steuerklasse-image-lohnsteuer-monatliche-berechnung,
  .freibetrag-text-lohnsteuer-monatliche-berechnung,
  .freibetrag-image-lohnsteuer-monatliche-berechnung,
  .prognose-text-lohnsteuer-monatliche-berechnung,
  .prognose-image-lohnsteuer-monatliche-berechnung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .summary-item-lohnsteuer-monatliche-berechnung {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .summary-number-lohnsteuer-monatliche-berechnung {
    min-width: auto;
  }

  .related-card-lohnsteuer-monatliche-berechnung {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .changes-grid-lohnsteuer-monatliche-berechnung {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .change-card-lohnsteuer-monatliche-berechnung {
    flex: 1 1 45%;
  }

  .related-card-lohnsteuer-monatliche-berechnung {
    flex: 1 1 45%;
  }
}

* {
  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;
}

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

.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-weight: 700;
}

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

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

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

.hero-header-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-title-about {
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  color: var(--color-text-primary);
  line-height: 1.2;
}

.hero-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

.hero-image-about {
  width: 100%;
  max-width: 800px;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
}

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

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

.mission-intro-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 900px;
}

.mission-title-about {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: var(--color-text-primary);
}

.mission-description-about {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.mission-highlight-about {
  color: var(--color-accent);
  font-weight: 600;
}

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

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

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

.expertise-title-about {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1.5rem);
}

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

.expertise-cards-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.expertise-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 10px;
  border: 1px solid var(--color-border);
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.expertise-card-about:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent);
  background: rgba(59, 130, 246, 0.05);
}

.card-icon-about {
  font-size: 2.5rem;
  color: var(--color-accent);
}

.card-title-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-primary);
  font-weight: 600;
}

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

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

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

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

.approach-title-about {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1.5rem);
}

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

.process-steps-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.process-step-about {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  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;
  flex-shrink: 0;
}

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

.step-title-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-primary);
  font-weight: 600;
}

.step-text-about {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.approach-image-about {
  width: 100%;
  max-width: 700px;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.values-title-about {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1.5rem);
}

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

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

.value-item-about {
  flex: 1 1 300px;
  max-width: 350px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 10px;
  border: 1px solid var(--color-border);
}

.value-name-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

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

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

.quote-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

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

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

.quote-author-about {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--color-accent);
  font-weight: 600;
}

.disclaimer-section-about {
  background: var(--color-bg-primary);
  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: clamp(1rem, 2vw, 1.5rem);
  max-width: 900px;
}

.disclaimer-title-about {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
}

.disclaimer-icon-about {
  font-size: 1.25rem;
  color: var(--color-accent);
}

.disclaimer-text-about {
  font-size: clamp(0.875rem, 1.5vw, 0.975rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .process-step-about {
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .step-number-about {
    min-width: auto;
  }

  .values-grid-about {
    flex-direction: column;
  }

  .value-item-about {
    flex: 1 1 100%;
  }
}

@media (max-width: 640px) {
  .hero-title-about {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
  }

  .expertise-cards-about,
  .values-grid-about {
    flex-direction: column;
  }

  .expertise-card-about,
  .value-item-about {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.portfolio-page {
  width: 100%;
  background-color: var(--color-bg-primary);
}

.portfolio-hero {
  padding: var(--space-3xl) var(--space-md);
  background-color: var(--color-bg-primary);
  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);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin: 0 0 var(--space-sm) 0;
}

.portfolio-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  font-weight: var(--font-weight-regular);
  margin: 0;
  line-height: var(--line-height-normal);
}

@media (min-width: 768px) {
  .portfolio-hero {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-hero {
    padding: 4rem var(--space-xl);
  }

  .portfolio-hero-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
  }
}

.portfolio-projects {
  padding: var(--space-3xl) var(--space-md);
  background-color: var(--color-bg-primary);
  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: 220px;
  overflow: hidden;
  background-color: var(--color-bg-secondary);
}

.portfolio-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-card-content {
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-card-tag {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
  background-color: var(--color-bg-tertiary);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  width: fit-content;
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-tight);
}

.portfolio-card-description {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-relaxed);
}

.portfolio-card-detail {
  font-family: var(--font-primary);
  font-size: clamp(0.8125rem, 0.9vw, 0.9375rem);
  color: var(--color-text-muted);
  margin: auto 0 0 0;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-border);
  line-height: var(--line-height-normal);
  font-weight: var(--font-weight-medium);
}

@media (min-width: 768px) {
  .portfolio-projects {
    padding: var(--space-3xl) var(--space-lg);
  }

  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .portfolio-card-image {
    height: 280px;
  }
}

@media (min-width: 1024px) {
  .portfolio-projects {
    padding: 4rem var(--space-xl);
  }

  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3xl);
  }

  .portfolio-card-image {
    height: 320px;
  }

  .portfolio-card-content {
    padding: var(--space-2xl) var(--space-xl);
  }
}

.portfolio-cta {
  padding: var(--space-3xl) var(--space-md);
  background-color: var(--color-bg-secondary);
  overflow: hidden;
}

.portfolio-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-tight);
}

.portfolio-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-lg) 0;
  line-height: var(--line-height-relaxed);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-cta-button {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: #ffffff;
  background-color: var(--color-primary);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background-color var(--transition-base), transform var(--transition-base);
  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-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-cta {
    padding: 4rem var(--space-xl);
  }

  .portfolio-cta-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
  }
}

.services-page {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  line-height: var(--line-height-normal);
}

.services-hero {
  background-color: var(--color-bg-secondary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
}

.services-hero-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.services-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(var(--font-size-3xl), 6vw + 0.5rem, var(--font-size-5xl));
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-tight);
}

.services-hero-subtitle {
  font-size: clamp(var(--font-size-base), 2vw + 0.5rem, var(--font-size-xl));
  color: var(--color-text-secondary);
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: var(--line-height-relaxed);
}

.services-content {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin: 0;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3xl);
  }
}

.service-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition-base), border-color var(--transition-base), transform var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.service-card-icon {
  width: 60px;
  height: 60px;
  background-color: var(--color-bg-tertiary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-2xl);
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: clamp(var(--font-size-lg), 2vw + 0.5rem, var(--font-size-2xl));
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-tight);
}

.service-card-description {
  font-size: clamp(var(--font-size-sm), 1vw + 0.4rem, var(--font-size-base));
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-lg) 0;
  line-height: var(--line-height-relaxed);
  flex-grow: 1;
}

.service-card-topics {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-lg) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.service-card-topics li {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  padding-left: var(--space-md);
  position: relative;
  line-height: var(--line-height-normal);
}

.service-card-topics li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: var(--font-weight-bold);
}

.service-card-cta {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-sm);
  transition: background-color var(--transition-base), color var(--transition-base);
  align-self: flex-start;
  border: 2px solid var(--color-primary);
}

.service-card-cta:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
}

.services-cta-section {
  background-color: var(--color-bg-secondary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
}

.services-cta-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.services-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(var(--font-size-2xl), 4vw + 0.5rem, var(--font-size-4xl));
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-lg) 0;
  line-height: var(--line-height-tight);
}

.services-cta-text {
  font-size: clamp(var(--font-size-base), 1.5vw + 0.5rem, var(--font-size-lg));
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-2xl) 0;
  line-height: var(--line-height-relaxed);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.services-cta-button {
  display: inline-block;
  background-color: var(--color-accent);
  color: var(--color-bg-primary);
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  font-size: clamp(var(--font-size-sm), 1vw + 0.4rem, var(--font-size-base));
  transition: background-color var(--transition-base), transform var(--transition-base);
  border: 2px solid var(--color-accent);
  display: inline-block;
}

.services-cta-button:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .services-hero {
    padding: var(--space-3xl) var(--space-lg);
  }

  .services-content {
    padding: var(--space-3xl) var(--space-lg);
  }

  .services-cta-section {
    padding: var(--space-3xl) var(--space-lg);
  }

  .service-card {
    padding: var(--space-2xl) var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: 5rem var(--space-lg);
  }

  .services-content {
    padding: 5rem var(--space-lg);
  }

  .services-cta-section {
    padding: 5rem var(--space-lg);
  }

  .service-card {
    padding: var(--space-3xl) var(--space-2xl);
  }

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

.legal-docs {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

.legal-docs main {
  width: 100%;
}

.legal-docs .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.legal-docs .content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-md);
}

.legal-docs h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  line-height: var(--line-height-tight);
}

.legal-docs .last-updated {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
  font-weight: var(--font-weight-regular);
}

.legal-docs h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-normal);
}

.legal-docs p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-weight: var(--font-weight-regular);
}

.legal-docs ul,
.legal-docs ol {
  margin-bottom: var(--space-lg);
  margin-left: var(--space-lg);
}

.legal-docs li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  font-weight: var(--font-weight-regular);
}

.legal-docs strong {
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
}

.legal-docs em {
  font-style: italic;
  color: var(--color-text-secondary);
}

.legal-docs .section {
  margin-bottom: var(--space-3xl);
}

.legal-docs .contact-section {
  background-color: var(--color-bg-secondary);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  margin-top: var(--space-3xl);
}

.legal-docs .contact-section h2 {
  color: var(--color-primary);
  margin-top: 0;
  margin-bottom: var(--space-lg);
}

.legal-docs .contact-section p {
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
}

.legal-docs .contact-section p strong {
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
}

@media (min-width: 768px) {
  .legal-docs .content {
    padding: var(--space-3xl) var(--space-lg);
  }

  .legal-docs .contact-section {
    padding: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .legal-docs .container {
    padding: 0 var(--space-lg);
  }

  .legal-docs .content {
    padding: var(--space-3xl) 0;
  }
}

.thank-you-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-section {
  width: 100%;
  padding: var(--space-2xl);
  overflow: hidden;
}

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

.content {
  max-width: 800px;
  margin: 0 auto;
}

.thank-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.thank-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(4rem, 12vw, 6rem);
  height: clamp(4rem, 12vw, 6rem);
  margin: 0 auto;
  color: var(--color-success);
  animation: iconPulse 0.6s ease-out;
}

.check-icon {
  width: 100%;
  height: 100%;
}

.thank-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin: 0;
}

.thank-lead {
  font-family: var(--font-primary);
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  margin: var(--space-sm) 0 0 0;
}

.thank-message {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  margin: var(--space-lg) 0 0 0;
}

.thank-next {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: var(--space-md) 0 0 0;
}

.btn-primary {
  display: inline-block;
  padding: clamp(0.875rem, 1.5vw, 1.125rem) clamp(2rem, 4vw, 3rem);
  margin-top: var(--space-xl);
  background-color: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
  box-shadow: var(--shadow-md);
}

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.btn-primary:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

@keyframes iconPulse {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 640px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-lg);
  }
  
  .thank-wrapper {
    gap: var(--space-xl);
  }
}

@media (min-width: 768px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-xl);
  }
  
  .container {
    padding: 0 var(--space-lg);
  }
  
  .thank-wrapper {
    gap: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: 4rem var(--space-xl);
  }
  
  .container {
    padding: 0 var(--space-2xl);
  }
}

@media (prefers-reduced-motion: reduce) {
  .thank-icon {
    animation: none;
  }
  
  .btn-primary {
    transition: none;
  }
  
  .btn-primary:hover {
    transform: none;
  }
}

@media (max-height: 600px) {
  .thank-section {
    min-height: auto;
  }
}

.error-page {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  width: 100%;
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-2xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl) var(--space-xl);
  }
}

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

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

.content {
  max-width: 800px;
  margin: 0 auto;
}

.error-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2xl);
}

@media (min-width: 768px) {
  .error-wrapper {
    gap: var(--space-3xl);
  }
}

.error-visual {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .error-visual {
    margin-bottom: var(--space-lg);
  }
}

.error-code-wrapper {
  position: relative;
  width: fit-content;
}

.error-code {
  font-size: clamp(3rem, 12vw, 8rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  line-height: var(--line-height-tight);
  display: block;
  position: relative;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

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

.error-icon {
  position: absolute;
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
  width: 120px;
  height: 120px;
  color: var(--color-accent);
  opacity: 0.8;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.6;
    transform: translateY(-50%) scale(1);
  }
  50% {
    opacity: 0.9;
    transform: translateY(-50%) scale(1.05);
  }
}

@media (max-width: 640px) {
  .error-icon {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 80px;
    height: 80px;
    margin-top: var(--space-lg);
  }
}

.error-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .error-content {
    gap: var(--space-xl);
  }
}

.error-content h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  line-height: var(--line-height-tight);
  margin: 0;
}

.error-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.25rem);
  color: var(--color-text-secondary);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-normal);
  margin: 0;
}

.error-description {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.error-description p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  text-align: center;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  box-shadow: var(--shadow-md);
}

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

.btn-primary:active {
  transform: translateY(0px);
}

@media (max-width: 640px) {
  .btn {
    width: 100%;
  }
}

.error-suggestions {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-top: var(--space-md);
}

@media (min-width: 768px) {
  .error-suggestions {
    padding: var(--space-xl);
    margin-top: var(--space-lg);
  }
}

.suggestions-label {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
}

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

.suggestions-list li {
  font-size: clamp(0.85rem, 0.9vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  line-height: var(--line-height-normal);
}

.bullet {
  color: var(--color-accent);
  font-weight: var(--font-weight-bold);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .error-wrapper {
    animation: slideUp 0.6s ease-out;
  }
}

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

.contact-write-to-us {
  width: 100%;
  background-color: var(--color-bg-primary);
}

.contact-write-to-us-hero {
  width: 100%;
  padding: 3rem 1.5rem;
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.contact-write-to-us-hero-content {
  width: 100%;
}

.contact-write-to-us-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0;
  margin-bottom: 1rem;
  line-height: var(--line-height-tight);
}

.contact-write-to-us-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.15rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-relaxed);
}

@media (min-width: 768px) {
  .contact-write-to-us-hero {
    padding: 4rem 2rem;
  }
}

@media (min-width: 1024px) {
  .contact-write-to-us-hero {
    padding: 5rem 3rem;
  }
}

.contact-write-to-us-main {
  width: 100%;
  padding: 2rem 1.5rem;
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.contact-write-to-us-main-content {
  width: 100%;
}

.contact-write-to-us-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.contact-write-to-us-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-write-to-us-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 1024px) {
  .contact-write-to-us-form-wrapper {
    flex: 1 1 45%;
  }

  .contact-write-to-us-info-wrapper {
    flex: 1 1 45%;
  }
}

.contact-write-to-us-form-header {
  margin-bottom: 2rem;
}

.contact-write-to-us-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0;
  margin-bottom: 0.75rem;
  line-height: var(--line-height-tight);
}

.contact-write-to-us-form-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-relaxed);
}

.contact-write-to-us-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-write-to-us-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-write-to-us-label {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
}

.contact-write-to-us-input,
.contact-write-to-us-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-primary);
  font-size: 1rem;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  transition: var(--transition-base);
  box-sizing: border-box;
}

.contact-write-to-us-input::placeholder,
.contact-write-to-us-textarea::placeholder {
  color: var(--color-text-muted);
}

.contact-write-to-us-input:focus,
.contact-write-to-us-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(var(--color-primary), 0.1);
}

.contact-write-to-us-textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-write-to-us-form-privacy {
  padding: 1rem;
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-md);
}

.contact-write-to-us-privacy-text {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-normal);
}

.contact-write-to-us-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition-fast);
  font-weight: var(--font-weight-semibold);
}

.contact-write-to-us-privacy-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-write-to-us-submit {
  width: 100%;
  padding: 1rem 1.5rem;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-bg-primary);
  background-color: var(--color-primary);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-base);
}

.contact-write-to-us-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

.contact-write-to-us-submit:active {
  transform: translateY(0);
}

.contact-write-to-us-info-header {
  margin-bottom: 2rem;
}

.contact-write-to-us-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0;
  margin-bottom: 0.75rem;
  line-height: var(--line-height-tight);
}

.contact-write-to-us-info-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-relaxed);
}

.contact-write-to-us-info-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-write-to-us-info-item {
  display: flex;
  gap: 1.5rem;
}

.contact-write-to-us-info-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  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: 1.25rem;
}

.contact-write-to-us-info-content {
  flex: 1;
}

.contact-write-to-us-info-item-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin: 0;
  margin-bottom: 0.5rem;
}

.contact-write-to-us-info-item-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-primary);
  margin: 0;
  line-height: var(--line-height-normal);
}

.contact-write-to-us-info-item-meta {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  color: var(--color-text-secondary);
  margin: 0.25rem 0 0 0;
  line-height: var(--line-height-normal);
}

.contact-write-to-us-highlight {
  padding: 1.5rem;
  background-color: var(--color-bg-secondary);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.contact-write-to-us-highlight-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin: 0;
  margin-bottom: 0.75rem;
}

.contact-write-to-us-highlight-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-relaxed);
}

@media (min-width: 768px) {
  .contact-write-to-us-main {
    padding: 3rem 2rem;
  }

  .contact-write-to-us-grid {
    gap: 4rem;
  }
}

@media (min-width: 1024px) {
  .contact-write-to-us-main {
    padding: 4rem 3rem;
  }

  .contact-write-to-us-grid {
    gap: 5rem;
  }
}
.header-salary-vault-mobile-close,.header-salary-vault-mobile-toggle{
  width: 34px;
}

.header-salary-vault-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;
}
