
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Source+Serif+Pro:wght@400;600&display=swap');

:root {
  
  
  
  --color-bg-primary: #f8fafc;
  --color-bg-secondary: #e2e8f0;
  --color-bg-tertiary: #ffffff;
  --color-bg-card: #ffffff;
  
  
  --color-text-primary: #0f172a;
  --color-text-secondary: #475569;
  --color-text-muted: #94a3b8;
  
  
  --color-primary: #4f46e5;
  --color-primary-hover: #4338ca;
  --color-primary-light: #eef2ff;
  --color-secondary: #06b6d4;
  --color-secondary-light: #cffafe;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  
  
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Source Serif Pro', 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: 20px;
  
  
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 10px 15px rgba(15, 23, 42, 0.1);
  --shadow-xl: 0 20px 25px rgba(15, 23, 42, 0.15);
  
  
  --border-color: #cbd5e1;
  --border-color-light: #e2e8f0;
  
  
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  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: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 2rem;
  font-weight: 600;
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
}

h5 {
  font-size: 1.25rem;
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
}

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-lg);
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
  user-select: none;
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  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-secondary);
  color: var(--color-text-primary);
  border: 2px solid var(--border-color);
}

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

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

.btn-ghost:hover {
  background: var(--color-primary-light);
  color: var(--color-primary-hover);
}

.btn-small {
  padding: var(--space-xs) var(--space-md);
  font-size: 0.875rem;
}

.btn-large {
  padding: var(--space-md) var(--space-xl);
  font-size: 1.125rem;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color-light);
  transition: all var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-color);
}

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

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.card-subtitle {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

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

.card-footer {
  border-top: 1px solid var(--border-color-light);
  padding-top: var(--space-md);
  margin-top: var(--space-lg);
}

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

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

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

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

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

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

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

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

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

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

.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.badge-success {
  background: #dcfce7;
  color: var(--color-success);
}

.badge-warning {
  background: #fef3c7;
  color: var(--color-warning);
}

.badge-error {
  background: #fee2e2;
  color: var(--color-error);
}

input,
textarea,
select {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border: 2px solid var(--border-color-light);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--color-text-primary);
  background: var(--color-bg-tertiary);
  transition: all var(--transition-fast);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

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

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

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

.form-label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 600;
  color: var(--color-text-primary);
  font-size: 0.95rem;
}

.form-help {
  display: block;
  margin-top: var(--space-xs);
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

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

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

thead {
  background: var(--color-bg-secondary);
}

th {
  padding: var(--space-md);
  text-align: left;
  font-weight: 600;
  color: var(--color-text-primary);
  border-bottom: 2px solid var(--border-color);
}

td {
  padding: var(--space-md);
  border-bottom: 1px solid var(--border-color-light);
  color: var(--color-text-secondary);
}

tbody tr:hover {
  background: var(--color-bg-secondary);
}

tbody tr:last-child td {
  border-bottom: none;
}

.list {
  list-style: none;
}

.list-item {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border-color-light);
}

.list-item:last-child {
  border-bottom: none;
}

.list-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: var(--space-sm);
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.alert {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid;
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.alert-primary {
  background: var(--color-primary-light);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.alert-success {
  background: #dcfce7;
  border-color: var(--color-success);
  color: var(--color-success);
}

.alert-warning {
  background: #fef3c7;
  border-color: var(--color-warning);
  color: var(--color-warning);
}

.alert-error {
  background: #fee2e2;
  border-color: var(--color-error);
  color: var(--color-error);
}

.alert-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.alert-content {
  flex: 1;
}

.alert-title {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.divider {
  height: 1px;
  background: var(--border-color-light);
  margin: var(--space-lg) 0;
}

.divider-vertical {
  width: 1px;
  height: 100%;
  background: var(--border-color-light);
}

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

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

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

.section-title {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

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

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

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

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

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

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

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

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

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

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

.font-medium {
  font-weight: 500;
}

.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

.line-through {
  text-decoration: line-through;
}

.underline {
  text-decoration: underline;
}

.no-underline {
  text-decoration: none;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

.my-xs { margin-top: var(--space-xs); margin-bottom: var(--space-xs); }
.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); }
.my-xl { margin-top: var(--space-xl); margin-bottom: var(--space-xl); }

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

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

.block {
  display: block;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.hidden {
  display: none;
}

.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

.w-full {
  width: 100%;
}

.w-half {
  width: 50%;
}

.w-auto {
  width: auto;
}

.max-w-sm {
  max-width: 24rem;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-lg {
  max-width: 32rem;
}

.max-w-xl {
  max-width: 36rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.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-full {
  border-radius: 9999px;
}

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

@media (max-width: 768px) {
  .hidden-mobile {
    display: none;
  }
  
  .visible-mobile {
    display: block;
  }
}

@media (min-width: 769px) {
  .visible-mobile {
    display: none;
  }
  
  .hidden-mobile {
    display: block;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.animate-fadeIn {
  animation: fadeIn var(--transition-base) ease-in-out;
}

.animate-slideInUp {
  animation: slideInUp var(--transition-base) ease-out;
}

.animate-slideInDown {
  animation: slideInDown var(--transition-base) ease-out;
}

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

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

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

@media print {
  body {
    background: #ffffff;
  }
  
  .no-print {
    display: none;
  }
}
.header-lohn-portal {
  background: var(--color-bg-tertiary);
  border-bottom: 1px solid var(--border-color-light);
  position: static;
  width: 100%;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

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

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

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

.header-lohn-portal-logo-text {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.5px;
}

.header-lohn-portal-brand:hover .header-lohn-portal-logo-text {
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

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

.header-lohn-portal-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

.header-lohn-portal-nav-link:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.header-lohn-portal-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.header-lohn-portal-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.header-lohn-portal-mobile-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--color-text-primary);
  transition: color var(--transition-fast);
  padding: 0;
  flex-shrink: 0;
}

.header-lohn-portal-mobile-toggle:hover {
  color: var(--color-primary);
}

.header-lohn-portal-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-tertiary);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-base);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

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

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

.header-lohn-portal-mobile-close {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.75rem;
  color: var(--color-text-primary);
  padding: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast);
}

.header-lohn-portal-mobile-close:hover {
  color: var(--color-primary);
}

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

.header-lohn-portal-mobile-link {
  display: block;
  padding: 1rem clamp(1rem, 4vw, 2rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  font-weight: 500;
  border-bottom: 1px solid var(--border-color-light);
  transition: all var(--transition-fast);
}

.header-lohn-portal-mobile-link:hover {
  background: var(--color-primary-light);
  color: var(--color-primary);
  padding-left: clamp(1.5rem, 5vw, 2.5rem);
}

.header-lohn-portal-mobile-cta {
  display: block;
  margin: auto clamp(1rem, 4vw, 2rem) clamp(1.5rem, 3vw, 2rem) clamp(1rem, 4vw, 2rem);
  padding: 1rem 1.5rem;
  background: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  font-weight: 600;
  border-radius: 6px;
  text-align: center;
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
}

.header-lohn-portal-mobile-cta:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .header-lohn-portal-container {
    height: 80px;
  }

  .header-lohn-portal-desktop-nav {
    display: flex;
  }

  .header-lohn-portal-cta-button {
    display: block;
  }

  .header-lohn-portal-mobile-toggle {
    display: none;
  }

  .header-lohn-portal-mobile-menu {
    display: none;
  }
}

@media (min-width: 1024px) {
  .header-lohn-portal-container {
    height: 85px;
  }

  .header-lohn-portal-nav-link {
    font-size: 1rem;
  }

  .header-lohn-portal-cta-button {
    font-size: 1rem;
  }
}

    .payroll-hub {
  width: 100%;
}

.hero-section-index {
  background: linear-gradient(135deg, #042f2e 0%, #064e4a 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.hero-title-index {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: #ffffff;
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.25rem);
  color: #a7f3d0;
  line-height: 1.8;
  margin: 0;
}

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

.hero-buttons-index .btn {
  padding: clamp(0.75rem, 1vw, 1rem) clamp(1.5rem, 2vw, 2rem);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
}

.hero-stats-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 3vw, 3rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: clamp(1.5rem, 2vw, 2rem);
  border-top: 1px solid rgba(167, 243, 208, 0.3);
}

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

.stat-number-index {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #10b981;
}

.stat-label-index {
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: #a7f3d0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-image-block-index {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-index {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
}

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

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

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

@media (max-width: 640px) {
  .hero-section-index {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  .hero-stats-index {
    gap: 1.5rem;
  }

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

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

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

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

.section-header-index {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.section-tag-index {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(20, 184, 166, 0.1);
  color: #14b8a6;
  border-radius: 20px;
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.featured-posts-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin: 0 0 1rem 0;
  font-weight: 700;
}

.featured-posts-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

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

.featured-card-index {
  flex: 1 1 300px;
  max-width: 420px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(15, 23, 42, 0.1);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.featured-card-index:hover {
  box-shadow: 0 10px 15px rgba(15, 23, 42, 0.15);
  transform: translateY(-4px);
  border-color: #cbd5e1;
}

.card-image-wrapper-index {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #f8fafc;
}

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

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

.card-title-index {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #0f172a;
  margin: 0;
  line-height: 1.4;
  font-weight: 600;
}

.card-description-index {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #475569;
  margin: 0;
  line-height: 1.7;
  flex: 1;
}

.card-link-index {
  display: inline-flex;
  align-items: center;
  color: #14b8a6;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
  gap: 0.5rem;
}

.card-link-index:hover {
  color: #0d9488;
  gap: 1rem;
}

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

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

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

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

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

.how-it-works-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin: 0 0 1rem 0;
  font-weight: 700;
}

.how-it-works-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

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

.step-card-index {
  flex: 1 1 280px;
  max-width: 350px;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(15, 23, 42, 0.08);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.step-card-index:hover {
  box-shadow: 0 10px 15px rgba(15, 23, 42, 0.12);
  transform: translateY(-4px);
}

.step-number-index {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #14b8a6;
  line-height: 1;
}

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

.step-title-index {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #0f172a;
  margin: 0;
  font-weight: 600;
}

.step-text-index {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #475569;
  margin: 0;
  line-height: 1.7;
}

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

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

.features-section-index {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.features-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin: 0 0 1rem 0;
  font-weight: 700;
}

.features-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

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

.feature-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  padding: clamp(1.5rem, 2vw, 2rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.feature-card-index:hover {
  transform: translateY(-4px);
}

.feature-icon-index {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border-radius: 12px;
  background: rgba(20, 184, 166, 0.1);
  font-size: 28px;
  color: #14b8a6;
}

.feature-title-index {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #0f172a;
  margin: 0;
  font-weight: 600;
}

.feature-text-index {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #475569;
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .features-grid-index {
    flex-direction: column;
    align-items: center;
  }

  .feature-card-index {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.testimonials-section-index {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.testimonials-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin: 0 0 1rem 0;
  font-weight: 700;
}

.testimonials-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

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

.testimonial-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(15, 23, 42, 0.08);
  border-left: 4px solid #14b8a6;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.quote-text-index {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #475569;
  font-style: italic;
  line-height: 1.8;
  margin: 0;
}

.testimonial-author-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid #e2e8f0;
  padding-top: 1rem;
}

.author-name-index {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #0f172a;
  font-weight: 600;
  margin: 0;
}

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

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

.statistics-section-index {
  background: linear-gradient(135deg, #042f2e 0%, #064e4a 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.statistics-text-block-index {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.statistics-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
}

.statistics-description-index {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  margin: 0;
  line-height: 1.8;
}

.statistics-numbers-block-index {
  flex: 1 1 45%;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 2vw, 2rem);
  justify-content: center;
}

.stat-box-index {
  flex: 1 1 140px;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number-large-index {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #10b981;
  margin: 0 0 0.5rem 0;
  line-height: 1;
}

.stat-label-large-index {
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  color: #a7f3d0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

@media (max-width: 1024px) {
  .statistics-content-index {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .statistics-text-block-index,
  .statistics-numbers-block-index {
    flex: 1 1 100%;
  }

  .statistics-numbers-block-index {
    justify-content: space-around;
  }
}

@media (max-width: 640px) {
  .statistics-numbers-block-index {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-box-index {
    flex: 1 1 100%;
  }
}

.benefits-section-index {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.benefits-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin: 0 0 1rem 0;
  font-weight: 700;
}

.benefits-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

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

.benefit-item-index {
  flex: 1 1 300px;
  max-width: 420px;
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 2vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.benefit-item-index:hover {
  background: #f1f5f9;
  transform: translateX(4px);
}

.benefit-icon-index {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(20, 184, 166, 0.1);
  color: #14b8a6;
  font-size: 24px;
}

.benefit-text-index {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.benefit-title-index {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #0f172a;
  margin: 0;
  font-weight: 600;
}

.benefit-description-index {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #475569;
  margin: 0;
  line-height: 1.6;
}

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

  .benefit-item-index {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.faq-section-index {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.faq-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin: 0 0 1rem 0;
  font-weight: 700;
}

.faq-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

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

.faq-item-index {
  flex: 1 1 300px;
  max-width: 420px;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(15, 23, 42, 0.08);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.faq-item-index:hover {
  box-shadow: 0 10px 15px rgba(15, 23, 42, 0.12);
  border-color: #cbd5e1;
}

.faq-question-index {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #0f172a;
  margin: 0 0 1rem 0;
  font-weight: 600;
  line-height: 1.4;
}

.faq-answer-index {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #475569;
  margin: 0;
  line-height: 1.7;
}

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

.faq-cta-text-index {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #0f172a;
  margin: 0 0 1rem 0;
  font-weight: 600;
}

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

  .faq-item-index {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.cta-section-index {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.cta-box-index {
  flex: 1 1 50%;
  padding: clamp(2rem, 3vw, 3rem);
  background: linear-gradient(135deg, #042f2e 0%, #064e4a 100%);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
}

.cta-title-index {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: #ffffff;
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
}

.cta-text-index {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #a7f3d0;
  margin: 0;
  line-height: 1.8;
}

.btn-large-index {
  align-self: flex-start;
}

.cta-secondary-block-index {
  flex: 1 1 50%;
  padding: clamp(2rem, 3vw, 3rem);
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

.cta-secondary-title-index {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: #0f172a;
  margin: 0 0 1rem 0;
  font-weight: 600;
}

.cta-links-list-index {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-link-index {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  color: #14b8a6;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-link-index:hover {
  color: #0d9488;
  gap: 1rem;
}

@media (max-width: 1024px) {
  .cta-content-index {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .cta-box-index,
  .cta-secondary-block-index {
    flex: 1 1 100%;
  }
}

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

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

.cookie-banner-text-index {
  color: #cbd5e1;
  margin: 0;
  font-size: clamp(0.85rem, 0.95vw, 0.95rem);
  line-height: 1.6;
  flex: 1 1 auto;
}

.cookie-banner-buttons-index {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: 0.625rem 1.25rem;
  border: none;
  border-radius: 6px;
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 0.95vw, 0.95rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn-accept-index {
  background: #14b8a6;
  color: #0f172a;
}

.cookie-btn-accept-index:hover {
  background: #0d9488;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(20, 184, 166, 0.3);
}

.cookie-btn-decline-index {
  background: transparent;
  color: #cbd5e1;
  border: 1px solid #475569;
}

.cookie-btn-decline-index:hover {
  border-color: #cbd5e1;
  color: #ffffff;
}

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

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

  .cookie-banner-buttons-index {
    flex: 1 1 100%;
    justify-content: stretch;
  }

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

@media (max-width: 640px) {
  .cta-content-index {
    gap: 1rem;
  }

  .cta-box-index,
  .cta-secondary-block-index {
    padding: 1.5rem;
  }

  .benefits-list-index {
    gap: 1rem;
  }

  .benefit-item-index {
    flex-direction: column;
    gap: 1rem;
  }
}

html {
  scroll-behavior: smooth;
}

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

    .footer {
  background: var(--color-bg-primary);
  border-top: 1px solid var(--border-color-light);
  padding: clamp(3rem, 8vw, 5rem) 0;
  margin-top: 0;
}

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

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

.footer-about {
  display: block;
}

.footer-about h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

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

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

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

.footer-nav-list,
.footer-legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-list li,
.footer-legal-list li {
  margin: 0;
  padding: 0;
}

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

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

.footer-contact p {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  margin: 0;
  padding: 0.5rem 0;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-copyright {
  display: block;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color-light);
  text-align: center;
}

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

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

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

  .footer-nav,
  .footer-contact,
  .footer-legal {
    flex: 1 1 180px;
  }

  .footer-copyright {
    flex: 1 1 100%;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-color-light);
  }
}

@media (min-width: 1024px) {
  .footer-about {
    flex: 1 1 300px;
  }

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

.category-page-salary-calculation {
  width: 100%;
  overflow: hidden;
}

.hero-section-salary-calculation {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.hero-header-salary-calculation {
  flex: 1 1 100%;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-header-salary-calculation {
    text-align: left;
    flex: 1 1 50%;
  }
}

.hero-title-salary-calculation {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-family: 'Source Serif Pro', serif;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-subtitle-salary-calculation {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 0;
  max-width: 600px;
}

@media (min-width: 1024px) {
  .hero-subtitle-salary-calculation {
    max-width: 100%;
  }
}

.hero-visual-salary-calculation {
  flex: 1 1 100%;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-visual-salary-calculation {
    flex: 1 1 50%;
    min-height: 400px;
  }
}

.hero-image-salary-calculation {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 15px rgba(15, 23, 42, 0.1);
}

@media (min-width: 1024px) {
  .hero-image-salary-calculation {
    height: 100%;
    min-height: 400px;
  }
}

.posts-section-salary-calculation {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.posts-header-salary-calculation {
  text-align: center;
}

.posts-title-salary-calculation {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Source Serif Pro', serif;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  letter-spacing: -0.01em;
}

.posts-subtitle-salary-calculation {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

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

.card-salary-calculation {
  display: flex;
  flex-direction: column;
  flex: 1 1 100%;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(15, 23, 42, 0.1);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.card-salary-calculation:hover {
  box-shadow: 0 10px 15px rgba(15, 23, 42, 0.15);
  transform: translateY(-4px);
}

@media (min-width: 768px) {
  .card-salary-calculation {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (min-width: 1024px) {
  .card-salary-calculation {
    flex: 1 1 calc(25% - 1.5rem);
  }
}

.card-image-salary-calculation {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.card-body-salary-calculation {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title-salary-calculation {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-family: 'Source Serif Pro', serif;
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.card-description-salary-calculation {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.card-meta-salary-calculation {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.85rem;
}

.card-reading-time-salary-calculation,
.card-level-salary-calculation,
.card-date-salary-calculation {
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.card-reading-time-salary-calculation i,
.card-level-salary-calculation i,
.card-date-salary-calculation i {
  color: #4f46e5;
}

.card-link-salary-calculation {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: #4f46e5;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.card-link-salary-calculation:hover {
  background: #4338ca;
  transform: translateX(4px);
}

.fundamentals-section-salary-calculation {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.fundamentals-header-salary-calculation {
  text-align: center;
}

.fundamentals-title-salary-calculation {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Source Serif Pro', serif;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  letter-spacing: -0.01em;
}

.fundamentals-subtitle-salary-calculation {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  margin: 0;
}

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

.fundamental-item-salary-calculation {
  display: flex;
  flex-direction: column;
  flex: 1 1 100%;
  max-width: 280px;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #4f46e5;
}

@media (min-width: 768px) {
  .fundamental-item-salary-calculation {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (min-width: 1024px) {
  .fundamental-item-salary-calculation {
    flex: 1 1 calc(25% - 1.5rem);
  }
}

.fundamental-number-salary-calculation {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #4f46e5;
  margin-bottom: 0.75rem;
  font-family: 'Source Serif Pro', serif;
}

.fundamental-heading-salary-calculation {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.fundamental-text-salary-calculation {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.insights-section-salary-calculation {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.insights-header-salary-calculation {
  text-align: center;
}

.insights-title-salary-calculation {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Source Serif Pro', serif;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0;
  letter-spacing: -0.01em;
}

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

.insight-card-salary-calculation {
  display: flex;
  flex-direction: column;
  flex: 1 1 100%;
  max-width: 320px;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.insight-card-salary-calculation:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(79, 70, 229, 0.3);
}

@media (min-width: 768px) {
  .insight-card-salary-calculation {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (min-width: 1024px) {
  .insight-card-salary-calculation {
    flex: 1 1 calc(25% - 1.5rem);
  }
}

.insight-icon-salary-calculation {
  font-size: 2.5rem;
  color: #4f46e5;
  margin-bottom: 1rem;
}

.insight-heading-salary-calculation {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.insight-text-salary-calculation {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-content-salary-calculation {
    text-align: center;
  }

  .hero-header-salary-calculation {
    text-align: center;
  }

  .hero-subtitle-salary-calculation {
    text-align: center;
  }
}

@media (max-width: 1023px) {
  .card-salary-calculation {
    flex: 1 1 100%;
    max-width: none;
  }

  .fundamental-item-salary-calculation {
    flex: 1 1 100%;
    max-width: none;
  }

  .insight-card-salary-calculation {
    flex: 1 1 100%;
    max-width: none;
  }
}

.main-brutto-netto-unterschied {
  width: 100%;
  background: #f8fafc;
}

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

.hero-section-brutto-netto-unterschied {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.breadcrumbs-brutto-netto-unterschied {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-brutto-netto-unterschied a {
  color: #64748b;
  text-decoration: none;
  transition: color 250ms ease;
}

.breadcrumbs-brutto-netto-unterschied a:hover {
  color: #06b6d4;
}

.breadcrumbs-brutto-netto-unterschied span {
  color: #475569;
}

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

.hero-text-brutto-netto-unterschied {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-brutto-netto-unterschied {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-brutto-netto-unterschied {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #cbd5e1;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.6;
}

.hero-meta-brutto-netto-unterschied {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #94a3b8;
}

.meta-item-brutto-netto-unterschied {
  color: #94a3b8;
}

.meta-separator-brutto-netto-unterschied {
  color: #475569;
}

.hero-image-brutto-netto-unterschied {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-brutto-netto-unterschied {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

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

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

.intro-section-brutto-netto-unterschied {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-brutto-netto-unterschied {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-brutto-netto-unterschied {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-brutto-netto-unterschied {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.8;
}

.intro-image-brutto-netto-unterschied {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-brutto-netto-unterschied {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

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

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

.definition-section-brutto-netto-unterschied {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.definition-image-brutto-netto-unterschied {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.definition-img-brutto-netto-unterschied {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

.definition-text-brutto-netto-unterschied {
  flex: 1 1 50%;
  max-width: 50%;
}

.definition-title-brutto-netto-unterschied {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.definition-paragraph-brutto-netto-unterschied {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.8;
}

.definition-paragraph-brutto-netto-unterschied strong {
  color: #0f172a;
  font-weight: 600;
}

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

  .definition-image-brutto-netto-unterschied,
  .definition-text-brutto-netto-unterschied {
    flex: 1 1 100%;
    max-width: 100%;
    order: initial;
  }
}

.deductions-section-brutto-netto-unterschied {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.deductions-content-brutto-netto-unterschied {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.deductions-text-brutto-netto-unterschied {
  flex: 1 1 50%;
  max-width: 50%;
}

.deductions-title-brutto-netto-unterschied {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.deductions-intro-brutto-netto-unterschied {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.8;
}

.deduction-item-brutto-netto-unterschied {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.deduction-name-brutto-netto-unterschied {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #0f172a;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.deduction-description-brutto-netto-unterschied {
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: #64748b;
  line-height: 1.7;
}

.deductions-image-brutto-netto-unterschied {
  flex: 1 1 50%;
  max-width: 50%;
}

.deductions-img-brutto-netto-unterschied {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .deductions-content-brutto-netto-unterschied {
    flex-direction: column;
    align-items: center;
  }

  .deductions-text-brutto-netto-unterschied,
  .deductions-image-brutto-netto-unterschied {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.calculation-section-brutto-netto-unterschied {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.calculation-image-brutto-netto-unterschied {
  flex: 1 1 50%;
  max-width: 50%;
}

.calculation-img-brutto-netto-unterschied {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

.calculation-text-brutto-netto-unterschied {
  flex: 1 1 50%;
  max-width: 50%;
}

.calculation-title-brutto-netto-unterschied {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.calculation-intro-brutto-netto-unterschied {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.8;
}

.calculation-breakdown-brutto-netto-unterschied {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.breakdown-row-brutto-netto-unterschied {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e2e8f0;
  font-size: clamp(0.9rem, 1vw, 1.05rem);
}

.breakdown-row-brutto-netto-unterschied:last-child {
  border-bottom: none;
}

.breakdown-label-brutto-netto-unterschied {
  color: #475569;
  font-weight: 500;
}

.breakdown-value-brutto-netto-unterschied {
  color: #0f172a;
  font-weight: 600;
  text-align: right;
}

.breakdown-total-brutto-netto-unterschied {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 2px solid #4f46e5;
  font-size: clamp(1rem, 1.2vw, 1.25rem);
}

.breakdown-total-brutto-netto-unterschied .breakdown-label-brutto-netto-unterschied {
  color: #0f172a;
  font-weight: 700;
}

.breakdown-total-brutto-netto-unterschied .breakdown-value-brutto-netto-unterschied {
  color: #4f46e5;
  font-weight: 700;
}

.calculation-note-brutto-netto-unterschied {
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: #64748b;
  line-height: 1.7;
  font-style: italic;
}

@media (max-width: 768px) {
  .calculation-content-brutto-netto-unterschied {
    flex-direction: column;
  }

  .calculation-image-brutto-netto-unterschied,
  .calculation-text-brutto-netto-unterschied {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.factors-section-brutto-netto-unterschied {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.factors-header-brutto-netto-unterschied {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.factors-title-brutto-netto-unterschied {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.factors-subtitle-brutto-netto-unterschied {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

.factors-grid-brutto-netto-unterschied {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.factor-card-brutto-netto-unterschied {
  flex: 1 1 calc(50% - 1rem);
  max-width: 380px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: all 250ms ease;
}

.factor-card-brutto-netto-unterschied:hover {
  border-color: #4f46e5;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.1);
  transform: translateY(-4px);
}

.factor-title-brutto-netto-unterschied {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #0f172a;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.factor-text-brutto-netto-unterschied {
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: #64748b;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .factor-card-brutto-netto-unterschied {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-brutto-netto-unterschied {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.conclusion-text-brutto-netto-unterschied {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-title-brutto-netto-unterschied {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-highlight-brutto-netto-unterschied {
  background: #ffffff;
  border-left: 4px solid #4f46e5;
  padding: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
}

.conclusion-paragraph-brutto-netto-unterschied {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.8;
}

.conclusion-paragraph-brutto-netto-unterschied strong {
  color: #0f172a;
  font-weight: 600;
}

.conclusion-image-brutto-netto-unterschied {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-img-brutto-netto-unterschied {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .conclusion-content-brutto-netto-unterschied {
    flex-direction: column;
  }

  .conclusion-text-brutto-netto-unterschied,
  .conclusion-image-brutto-netto-unterschied {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.disclaimer-section-brutto-netto-unterschied {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-box-brutto-netto-unterschied {
  background: #eef2ff;
  border: 2px solid #4f46e5;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.disclaimer-title-brutto-netto-unterschied {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #4f46e5;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.disclaimer-text-brutto-netto-unterschied {
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: #4338ca;
  line-height: 1.7;
}

.related-section-brutto-netto-unterschied {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-brutto-netto-unterschied {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-title-brutto-netto-unterschied {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-subtitle-brutto-netto-unterschied {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

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

.related-card-brutto-netto-unterschied {
  flex: 1 1 calc(33.333% - 1.5rem);
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 250ms ease;
}

.related-card-brutto-netto-unterschied:hover {
  border-color: #4f46e5;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
  transform: translateY(-8px);
}

.related-image-wrapper-brutto-netto-unterschied {
  overflow: hidden;
  height: 200px;
  background: #e2e8f0;
}

.related-image-brutto-netto-unterschied {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-content-brutto-netto-unterschied {
  padding: clamp(1.25rem, 2vw, 1.75rem);
}

.related-card-title-brutto-netto-unterschied {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: #0f172a;
  margin-bottom: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
}

.related-card-description-brutto-netto-unterschied {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #64748b;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.related-link-brutto-netto-unterschied {
  display: inline-block;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #4f46e5;
  text-decoration: none;
  font-weight: 600;
  transition: color 250ms ease;
}

.related-link-brutto-netto-unterschied:hover {
  color: #4338ca;
  text-decoration: underline;
}

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

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

@media (max-width: 480px) {
  .hero-meta-brutto-netto-unterschied {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .meta-separator-brutto-netto-unterschied {
    display: none;
  }
}

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

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

.hero-section-sozialversicherungsbeitraege {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

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

.breadcrumbs-sozialversicherungsbeitraege a {
  color: #64748b;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumbs-sozialversicherungsbeitraege a:hover {
  color: #94a3b8;
}

.breadcrumbs-sozialversicherungsbeitraege span {
  color: #475569;
}

.hero-title-sozialversicherungsbeitraege {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-subtitle-sozialversicherungsbeitraege {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #cbd5e1;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.4;
}

.hero-meta-sozialversicherungsbeitraege {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: #94a3b8;
}

.meta-item-sozialversicherungsbeitraege {
  display: inline-block;
}

.meta-divider-sozialversicherungsbeitraege {
  color: #475569;
}

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

.hero-image-sozialversicherungsbeitraege {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  display: block;
}

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

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

.intro-section-sozialversicherungsbeitraege {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-sozialversicherungsbeitraege {
  flex: 1;
}

.intro-title-sozialversicherungsbeitraege {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.intro-paragraph-sozialversicherungsbeitraege {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-highlight-sozialversicherungsbeitraege {
  flex: 1;
}

.highlight-box-sozialversicherungsbeitraege {
  background: #eef2ff;
  border-left: 4px solid #4f46e5;
  padding: clamp(1.25rem, 2vw, 2rem);
  border-radius: var(--radius-lg);
}

.highlight-text-sozialversicherungsbeitraege {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #1e293b;
  line-height: 1.7;
  margin: 0;
}

.highlight-text-sozialversicherungsbeitraege strong {
  color: #4f46e5;
  font-weight: 600;
}

.content-section-one-sozialversicherungsbeitraege {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-text-one-sozialversicherungsbeitraege {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-one-sozialversicherungsbeitraege {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-one-sozialversicherungsbeitraege {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.25;
}

.content-paragraph-one-sozialversicherungsbeitraege {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-image-one-sozialversicherungsbeitraege img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

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

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

.content-section-two-sozialversicherungsbeitraege {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-image-two-sozialversicherungsbeitraege {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.content-text-two-sozialversicherungsbeitraege {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-two-sozialversicherungsbeitraege {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.25;
}

.content-paragraph-two-sozialversicherungsbeitraege {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-image-two-sozialversicherungsbeitraege img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

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

  .content-image-two-sozialversicherungsbeitraege {
    order: 0;
  }

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

.content-section-three-sozialversicherungsbeitraege {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-text-three-sozialversicherungsbeitraege {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-three-sozialversicherungsbeitraege {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-three-sozialversicherungsbeitraege {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.25;
}

.content-paragraph-three-sozialversicherungsbeitraege {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-image-three-sozialversicherungsbeitraege img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

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

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

.breakdown-section-sozialversicherungsbeitraege {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.breakdown-title-sozialversicherungsbeitraege {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

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

.breakdown-item-sozialversicherungsbeitraege {
  background: #f8fafc;
  border-left: 4px solid #4f46e5;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.item-label-sozialversicherungsbeitraege {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  font-weight: 600;
  color: #0f172a;
}

.item-rate-sozialversicherungsbeitraege {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: #4f46e5;
  font-weight: 600;
}

.item-example-sozialversicherungsbeitraege {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 0.95rem);
  color: #64748b;
}

.breakdown-note-sozialversicherungsbeitraege {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 0.95rem);
  color: #475569;
  line-height: 1.7;
  font-style: italic;
  margin: 0;
}

.pflegeversicherung-section-sozialversicherungsbeitraege {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

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

.pflegeversicherung-title-sozialversicherungsbeitraege {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.25;
}

.pflegeversicherung-paragraph-sozialversicherungsbeitraege {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.pflegeversicherung-image-sozialversicherungsbeitraege img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

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

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

.tips-section-sozialversicherungsbeitraege {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.tips-title-sozialversicherungsbeitraege {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  text-align: center;
}

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

.tips-card-sozialversicherungsbeitraege {
  flex: 1 1 calc(50% - 1rem);
  max-width: 350px;
  background: #1e293b;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid #334155;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-base);
}

.tips-card-sozialversicherungsbeitraege:hover {
  transform: translateY(-4px);
  background: #2d3e50;
  border-color: #4f46e5;
}

.tips-card-icon-sozialversicherungsbeitraege {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: #4f46e5;
  height: 50px;
  display: flex;
  align-items: center;
}

.tips-card-title-sozialversicherungsbeitraege {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.tips-card-text-sozialversicherungsbeitraege {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
}

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

.conclusion-section-sozialversicherungsbeitraege {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.conclusion-title-sozialversicherungsbeitraege {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  text-align: center;
}

.conclusion-text-sozialversicherungsbeitraege {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin: 0;
}

.disclaimer-section-sozialversicherungsbeitraege {
  background: #f8fafc;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.disclaimer-box-sozialversicherungsbeitraege {
  background: #fff5f5;
  border-left: 4px solid #ef4444;
  padding: clamp(1.25rem, 2vw, 2rem);
  border-radius: var(--radius-lg);
}

.disclaimer-title-sozialversicherungsbeitraege {
  font-size: clamp(1rem, 1vw + 0.75rem, 1.35rem);
  font-weight: 600;
  color: #991b1b;
  margin-bottom: 0.75rem;
}

.disclaimer-text-sozialversicherungsbeitraege {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: #7f1d1d;
  line-height: 1.7;
  margin: 0;
}

.related-section-sozialversicherungsbeitraege {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.related-title-sozialversicherungsbeitraege {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  text-align: center;
}

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

.related-card-sozialversicherungsbeitraege {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 400px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

.related-card-sozialversicherungsbeitraege:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #4f46e5;
}

.related-card-image-sozialversicherungsbeitraege {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f8fafc;
}

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

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

.related-card-title-sozialversicherungsbeitraege {
  font-size: clamp(1.05rem, 1vw + 0.75rem, 1.35rem);
  font-weight: 600;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
}

.related-card-text-sozialversicherungsbeitraege {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.related-card-link-sozialversicherungsbeitraege {
  display: inline-flex;
  align-items: center;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: #4f46e5;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
  margin-top: 0.5rem;
}

.related-card-link-sozialversicherungsbeitraege:hover {
  color: #4338ca;
  text-decoration: underline;
}

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

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

@media (max-width: 640px) {
  h1 {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

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

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

.main-lohnsteuer-berechnung {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  overflow: hidden;
}

.container {
  max-width: 1440px;
  width: 100%;
  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;
}

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

.hero-section-lohnsteuer-berechnung {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

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

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

.hero-title-lohnsteuer-berechnung {
  font-size: clamp(1.75rem, 5vw + 1rem, 3rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.hero-subtitle-lohnsteuer-berechnung {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

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

.meta-item-lohnsteuer-berechnung {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #64748b;
}

.meta-item-lohnsteuer-berechnung i {
  color: #4f46e5;
  font-size: 1rem;
}

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

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

.breadcrumbs-lohnsteuer-berechnung a {
  color: #4f46e5;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumbs-lohnsteuer-berechnung a:hover {
  color: #4338ca;
  text-decoration: underline;
}

.breadcrumbs-lohnsteuer-berechnung span {
  color: #cbd5e1;
}

@media (max-width: 768px) {
  .hero-content-lohnsteuer-berechnung {
    flex-direction: column;
  }
  
  .hero-text-lohnsteuer-berechnung,
  .hero-image-lohnsteuer-berechnung {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .hero-section-lohnsteuer-berechnung {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }
}

.intro-section-lohnsteuer-berechnung {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

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

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

.intro-title-lohnsteuer-berechnung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-paragraph-lohnsteuer-berechnung {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

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

@media (max-width: 768px) {
  .intro-content-lohnsteuer-berechnung {
    flex-direction: column;
  }
  
  .intro-text-lohnsteuer-berechnung,
  .intro-image-lohnsteuer-berechnung {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.steuerklassen-section-lohnsteuer-berechnung {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

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

.steuerklassen-title-lohnsteuer-berechnung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.steuerklassen-paragraph-lohnsteuer-berechnung {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

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

.list-item-lohnsteuer-berechnung {
  background: #ffffff;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid #4f46e5;
  box-shadow: var(--shadow-sm);
}

.list-label-lohnsteuer-berechnung {
  display: block;
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.list-text-lohnsteuer-berechnung {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.6;
}

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

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

@media (max-width: 768px) {
  .steuerklassen-content-lohnsteuer-berechnung {
    flex-direction: column;
  }
  
  .steuerklassen-text-lohnsteuer-berechnung,
  .steuerklassen-image-lohnsteuer-berechnung {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.berechnung-section-lohnsteuer-berechnung {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

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

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

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

.berechnung-title-lohnsteuer-berechnung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.berechnung-paragraph-lohnsteuer-berechnung {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.berechnung-steps-lohnsteuer-berechnung {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.step-box-lohnsteuer-berechnung {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.step-number-lohnsteuer-berechnung {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #4f46e5;
  flex-shrink: 0;
  min-width: 50px;
  font-family: var(--font-heading);
}

.step-content-lohnsteuer-berechnung {
  flex: 1;
}

.step-title-lohnsteuer-berechnung {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-text-lohnsteuer-berechnung {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: #475569;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .berechnung-content-lohnsteuer-berechnung {
    flex-direction: column;
  }
  
  .berechnung-image-lohnsteuer-berechnung,
  .berechnung-text-lohnsteuer-berechnung {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.freibetraege-section-lohnsteuer-berechnung {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

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

.freibetraege-title-lohnsteuer-berechnung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.freibetraege-paragraph-lohnsteuer-berechnung {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

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

.highlight-item-lohnsteuer-berechnung {
  background: #ffffff;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid #4f46e5;
  box-shadow: var(--shadow-sm);
}

.highlight-label-lohnsteuer-berechnung {
  display: block;
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.highlight-value-lohnsteuer-berechnung {
  display: block;
  color: #4f46e5;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.highlight-text-lohnsteuer-berechnung {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

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

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

@media (max-width: 768px) {
  .freibetraege-content-lohnsteuer-berechnung {
    flex-direction: column;
  }
  
  .freibetraege-text-lohnsteuer-berechnung,
  .freibetraege-image-lohnsteuer-berechnung {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.praktisches-section-lohnsteuer-berechnung {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.praktisches-title-lohnsteuer-berechnung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  text-align: center;
}

.praktisches-intro-lohnsteuer-berechnung {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  text-align: center;
}

.example-card-lohnsteuer-berechnung {
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 2px solid #e2e8f0;
}

.example-row-lohnsteuer-berechnung {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(0.75rem, 1vw, 1rem) 0;
  border-bottom: 1px solid #e2e8f0;
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
}

.example-row-lohnsteuer-berechnung:last-child {
  border-bottom: none;
}

.example-label-lohnsteuer-berechnung {
  color: #475569;
  font-weight: 500;
}

.example-value-lohnsteuer-berechnung {
  color: #0f172a;
  font-weight: 600;
  font-family: 'Courier New', monospace;
}

.example-result-lohnsteuer-berechnung {
  background: #eef2ff;
  padding: clamp(0.75rem, 1vw, 1rem) clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-md);
  border-bottom: none;
  margin-top: 0.5rem;
}

.example-result-lohnsteuer-berechnung .example-label-lohnsteuer-berechnung {
  color: #4f46e5;
  font-weight: 600;
}

.example-result-lohnsteuer-berechnung .example-value-lohnsteuer-berechnung {
  color: #4f46e5;
}

.praktisches-note-lohnsteuer-berechnung {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: #64748b;
  line-height: 1.7;
  font-style: italic;
  text-align: center;
}

.tipps-section-lohnsteuer-berechnung {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.tipps-title-lohnsteuer-berechnung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  text-align: center;
}

.tipps-intro-lohnsteuer-berechnung {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

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

.tip-card-lohnsteuer-berechnung {
  flex: 1 1 300px;
  max-width: 350px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  transition: all var(--transition-base);
}

.tip-card-lohnsteuer-berechnung:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.tip-icon-lohnsteuer-berechnung {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef2ff;
  border-radius: var(--radius-lg);
  color: #4f46e5;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.tip-title-lohnsteuer-berechnung {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #0f172a;
  font-weight: 600;
  margin: 0;
}

.tip-text-lohnsteuer-berechnung {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

.zusammenfassung-section-lohnsteuer-berechnung {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.zusammenfassung-title-lohnsteuer-berechnung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  text-align: center;
}

.zusammenfassung-highlight-lohnsteuer-berechnung {
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid #4f46e5;
}

.zusammenfassung-text-lohnsteuer-berechnung {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.key-points-lohnsteuer-berechnung {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.key-point-lohnsteuer-berechnung {
  display: flex;
  flex-direction: row;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  align-items: flex-start;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.05rem);
  color: #0f172a;
  line-height: 1.6;
}

.key-icon-lohnsteuer-berechnung {
  color: #4f46e5;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.key-text-lohnsteuer-berechnung {
  flex: 1;
}

.zusammenfassung-closing-lohnsteuer-berechnung {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  text-align: center;
  font-style: italic;
}

.disclaimer-section-lohnsteuer-berechnung {
  background: #f8fafc;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-lohnsteuer-berechnung {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-box-lohnsteuer-berechnung {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid #f59e0b;
  box-shadow: var(--shadow-sm);
}

.disclaimer-title-lohnsteuer-berechnung {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: #f59e0b;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.disclaimer-text-lohnsteuer-berechnung {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: #475569;
  line-height: 1.8;
  margin: 0;
}

.related-section-lohnsteuer-berechnung {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.related-title-lohnsteuer-berechnung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  text-align: center;
}

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

.related-card-lohnsteuer-berechnung {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e2e8f0;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.related-image-lohnsteuer-berechnung {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f8fafc;
}

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

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

.related-card-title-lohnsteuer-berechnung {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #0f172a;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.related-card-text-lohnsteuer-berechnung {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.related-link-lohnsteuer-berechnung {
  color: #4f46e5;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  transition: color var(--transition-fast);
}

.related-link-lohnsteuer-berechnung:hover {
  color: #4338ca;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .tipps-grid-lohnsteuer-berechnung {
    flex-direction: column;
  }
  
  .tip-card-lohnsteuer-berechnung {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .related-grid-lohnsteuer-berechnung {
    flex-direction: column;
  }
  
  .related-card-lohnsteuer-berechnung {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  .tipps-grid-lohnsteuer-berechnung {
    gap: clamp(1rem, 2vw, 1.5rem);
  }
  
  .tip-card-lohnsteuer-berechnung {
    flex: 1 1 calc(50% - 0.75rem);
    max-width: none;
  }
  
  .related-grid-lohnsteuer-berechnung {
    gap: clamp(1rem, 2vw, 1.5rem);
  }
  
  .related-card-lohnsteuer-berechnung {
    flex: 1 1 calc(50% - 0.75rem);
    max-width: none;
  }
}

.main-gehaltsabrechnung-schritt-fuer-schritt {
  width: 100%;
  overflow: hidden;
}

.hero-section-gehaltsabrechnung-schritt-fuer-schritt {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.breadcrumbs-gehaltsabrechnung-schritt-fuer-schritt {
  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);
  color: #cbd5e1;
}

.breadcrumbs-gehaltsabrechnung-schritt-fuer-schritt a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-gehaltsabrechnung-schritt-fuer-schritt a:hover {
  color: #93c5fd;
  text-decoration: underline;
}

.breadcrumbs-gehaltsabrechnung-schritt-fuer-schritt span {
  color: #475569;
}

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

.hero-text-gehaltsabrechnung-schritt-fuer-schritt {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-gehaltsabrechnung-schritt-fuer-schritt {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-gehaltsabrechnung-schritt-fuer-schritt {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-gehaltsabrechnung-schritt-fuer-schritt {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-gehaltsabrechnung-schritt-fuer-schritt {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: #94a3b8;
}

.meta-item-gehaltsabrechnung-schritt-fuer-schritt {
  color: #94a3b8;
}

.meta-divider-gehaltsabrechnung-schritt-fuer-schritt {
  color: #475569;
}

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

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

  .hero-text-gehaltsabrechnung-schritt-fuer-schritt,
  .hero-image-gehaltsabrechnung-schritt-fuer-schritt {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.intro-section-gehaltsabrechnung-schritt-fuer-schritt {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-gehaltsabrechnung-schritt-fuer-schritt {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-gehaltsabrechnung-schritt-fuer-schritt {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-gehaltsabrechnung-schritt-fuer-schritt {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-gehaltsabrechnung-schritt-fuer-schritt {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

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

@media (max-width: 768px) {
  .intro-content-gehaltsabrechnung-schritt-fuer-schritt {
    flex-direction: column;
  }

  .intro-text-gehaltsabrechnung-schritt-fuer-schritt,
  .intro-image-gehaltsabrechnung-schritt-fuer-schritt {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.steps-section-gehaltsabrechnung-schritt-fuer-schritt {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.steps-header-gehaltsabrechnung-schritt-fuer-schritt {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.steps-title-gehaltsabrechnung-schritt-fuer-schritt {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.steps-subtitle-gehaltsabrechnung-schritt-fuer-schritt {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

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

.step-card-gehaltsabrechnung-schritt-fuer-schritt {
  flex: 1 1 calc(33.333% - 1.5rem);
  max-width: 380px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.step-card-gehaltsabrechnung-schritt-fuer-schritt:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
  border-color: #cbd5e1;
}

.step-number-gehaltsabrechnung-schritt-fuer-schritt {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #4f46e5;
  line-height: 1;
}

.step-title-gehaltsabrechnung-schritt-fuer-schritt {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.step-text-gehaltsabrechnung-schritt-fuer-schritt {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1024px) {
  .step-card-gehaltsabrechnung-schritt-fuer-schritt {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (max-width: 640px) {
  .step-card-gehaltsabrechnung-schritt-fuer-schritt {
    flex: 1 1 100%;
  }
}

.breakdown-section-gehaltsabrechnung-schritt-fuer-schritt {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.breakdown-text-gehaltsabrechnung-schritt-fuer-schritt {
  flex: 1 1 50%;
  max-width: 50%;
}

.breakdown-image-gehaltsabrechnung-schritt-fuer-schritt {
  flex: 1 1 50%;
  max-width: 50%;
}

.breakdown-title-gehaltsabrechnung-schritt-fuer-schritt {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.breakdown-paragraph-gehaltsabrechnung-schritt-fuer-schritt {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.breakdown-highlight-gehaltsabrechnung-schritt-fuer-schritt {
  background: #eef2ff;
  border-left: 4px solid #4f46e5;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  margin: clamp(1.5rem, 3vw, 2rem) 0;
}

.highlight-text-gehaltsabrechnung-schritt-fuer-schritt {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #1e293b;
  line-height: 1.7;
  margin: 0;
}

.highlight-text-gehaltsabrechnung-schritt-fuer-schritt strong {
  font-weight: 700;
  color: #0f172a;
}

.breakdown-img-gehaltsabrechnung-schritt-fuer-schritt {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .breakdown-content-gehaltsabrechnung-schritt-fuer-schritt {
    flex-direction: column;
  }

  .breakdown-text-gehaltsabrechnung-schritt-fuer-schritt,
  .breakdown-image-gehaltsabrechnung-schritt-fuer-schritt {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.calculation-section-gehaltsabrechnung-schritt-fuer-schritt {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.calculation-image-gehaltsabrechnung-schritt-fuer-schritt {
  flex: 1 1 50%;
  max-width: 50%;
}

.calculation-text-gehaltsabrechnung-schritt-fuer-schritt {
  flex: 1 1 50%;
  max-width: 50%;
}

.calculation-title-gehaltsabrechnung-schritt-fuer-schritt {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.calculation-paragraph-gehaltsabrechnung-schritt-fuer-schritt {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.calculation-table-gehaltsabrechnung-schritt-fuer-schritt {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  margin: clamp(1.5rem, 3vw, 2rem) 0;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.table-row-gehaltsabrechnung-schritt-fuer-schritt {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1rem, 2vw, 1.5rem);
  border-bottom: 1px solid #e2e8f0;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
}

.table-row-gehaltsabrechnung-schritt-fuer-schritt:last-child {
  border-bottom: none;
}

.table-row-gehaltsabrechnung-schritt-fuer-schritt.table-total-gehaltsabrechnung-schritt-fuer-schritt {
  background: #f8fafc;
  border-top: 2px solid #cbd5e1;
  font-weight: 700;
}

.table-label-gehaltsabrechnung-schritt-fuer-schritt {
  color: #475569;
}

.table-total-gehaltsabrechnung-schritt-fuer-schritt .table-label-gehaltsabrechnung-schritt-fuer-schritt {
  color: #0f172a;
}

.table-value-gehaltsabrechnung-schritt-fuer-schritt {
  color: #0f172a;
  font-weight: 600;
}

.calculation-img-gehaltsabrechnung-schritt-fuer-schritt {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .calculation-content-gehaltsabrechnung-schritt-fuer-schritt {
    flex-direction: column;
  }

  .calculation-image-gehaltsabrechnung-schritt-fuer-schritt,
  .calculation-text-gehaltsabrechnung-schritt-fuer-schritt {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.tips-section-gehaltsabrechnung-schritt-fuer-schritt {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tips-header-gehaltsabrechnung-schritt-fuer-schritt {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.tips-title-gehaltsabrechnung-schritt-fuer-schritt {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tips-subtitle-gehaltsabrechnung-schritt-fuer-schritt {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

.tips-grid-gehaltsabrechnung-schritt-fuer-schritt {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.tip-item-gehaltsabrechnung-schritt-fuer-schritt {
  flex: 1 1 calc(50% - 0.75rem);
  max-width: 380px;
  background: rgba(255, 255, 255, 0.05);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.tip-item-gehaltsabrechnung-schritt-fuer-schritt:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.tip-icon-gehaltsabrechnung-schritt-fuer-schritt {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  border-radius: 10px;
  color: #ffffff;
  font-size: 24px;
}

.tip-name-gehaltsabrechnung-schritt-fuer-schritt {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tip-text-gehaltsabrechnung-schritt-fuer-schritt {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .tip-item-gehaltsabrechnung-schritt-fuer-schritt {
    flex: 1 1 100%;
  }
}

.quote-section-gehaltsabrechnung-schritt-fuer-schritt {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.quote-content-gehaltsabrechnung-schritt-fuer-schritt {
  max-width: 700px;
  margin: 0 auto;
}

.featured-quote-gehaltsabrechnung-schritt-fuer-schritt {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #4f46e5;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
  margin: 0;
}

.quote-text-gehaltsabrechnung-schritt-fuer-schritt {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-style: italic;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.quote-author-gehaltsabrechnung-schritt-fuer-schritt {
  display: block;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  font-style: normal;
  font-weight: 500;
}

.conclusion-section-gehaltsabrechnung-schritt-fuer-schritt {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-gehaltsabrechnung-schritt-fuer-schritt {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-gehaltsabrechnung-schritt-fuer-schritt {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-text-gehaltsabrechnung-schritt-fuer-schritt {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-cta-gehaltsabrechnung-schritt-fuer-schritt {
  text-align: center;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid #e2e8f0;
}

.cta-text-gehaltsabrechnung-schritt-fuer-schritt {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #475569;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.btn-cta-gehaltsabrechnung-schritt-fuer-schritt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #4f46e5;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.btn-cta-gehaltsabrechnung-schritt-fuer-schritt:hover {
  background: #4338ca;
  box-shadow: 0 6px 16px rgba(79, 70, 229, 0.4);
  transform: translateY(-2px);
}

.related-section-gehaltsabrechnung-schritt-fuer-schritt {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-gehaltsabrechnung-schritt-fuer-schritt {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-title-gehaltsabrechnung-schritt-fuer-schritt {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-subtitle-gehaltsabrechnung-schritt-fuer-schritt {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

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

.related-card-gehaltsabrechnung-schritt-fuer-schritt {
  flex: 1 1 calc(33.333% - 1.5rem);
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.related-card-gehaltsabrechnung-schritt-fuer-schritt:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
  border-color: #cbd5e1;
}

.related-card-image-gehaltsabrechnung-schritt-fuer-schritt {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-img-gehaltsabrechnung-schritt-fuer-schritt {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-gehaltsabrechnung-schritt-fuer-schritt {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.related-card-title-gehaltsabrechnung-schritt-fuer-schritt {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-text-gehaltsabrechnung-schritt-fuer-schritt {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.related-card-link-gehaltsabrechnung-schritt-fuer-schritt {
  display: inline-flex;
  align-items: center;
  color: #4f46e5;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  transition: color 0.3s ease;
  margin-top: 0.5rem;
}

.related-card-link-gehaltsabrechnung-schritt-fuer-schritt:hover {
  color: #4338ca;
  text-decoration: underline;
}

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

@media (max-width: 640px) {
  .related-card-gehaltsabrechnung-schritt-fuer-schritt {
    flex: 1 1 100%;
  }
}

.disclaimer-section-gehaltsabrechnung-schritt-fuer-schritt {
  background: #f8fafc;
  padding: clamp(2rem, 5vw, 4rem) 0;
  border-top: 1px solid #e2e8f0;
  overflow: hidden;
}

.disclaimer-content-gehaltsabrechnung-schritt-fuer-schritt {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
  border-left: 4px solid #f59e0b;
}

.disclaimer-title-gehaltsabrechnung-schritt-fuer-schritt {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-text-gehaltsabrechnung-schritt-fuer-schritt {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

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

@media (max-width: 768px) {
  .container {
    padding: 0 clamp(1rem, 3vw, 1.5rem);
  }
}

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

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

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

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

.payroll-expertise-about {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
}

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

.hero-section-payroll-about {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.hero-header-payroll-about {
  text-align: center;
  max-width: 900px;
}

.hero-title-payroll-about {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 1rem 0;
}

.hero-subtitle-payroll-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  color: #94a3b8;
  margin: 0 0 2rem 0;
}

.hero-stats-payroll-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  margin-top: 2rem;
}

.stat-item-payroll-about {
  text-align: center;
  flex: 1 1 150px;
  min-width: 120px;
}

.stat-number-payroll-about {
  display: block;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #06b6d4;
  margin: 0;
}

.stat-label-payroll-about {
  display: block;
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: #cbd5e1;
  margin-top: 0.5rem;
}

.hero-visual-payroll-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: 0 auto;
}

.story-section-payroll-about {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.story-header-payroll-about {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.section-tag-payroll-about {
  display: inline-block;
  padding: 0.35rem 1.2rem;
  background: #cffafe;
  color: #0369a1;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.story-title-payroll-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 1.5rem 0;
}

.story-subtitle-payroll-about {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #64748b;
  margin: 0;
}

.story-text-payroll-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin: 0;
}

.story-text-payroll-about + .story-text-payroll-about {
  margin-top: 1.5rem;
}

.expertise-section-payroll-about {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.expertise-header-payroll-about {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.expertise-title-payroll-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 1rem 0;
}

.expertise-subtitle-payroll-about {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #64748b;
  margin: 0;
}

.expertise-cards-payroll-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
  margin-top: 2rem;
}

.expertise-card-payroll-about {
  flex: 1 1 280px;
  max-width: 350px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.expertise-card-payroll-about:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-icon-payroll-about {
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: #06b6d4;
  margin-bottom: 1rem;
}

.card-title-payroll-about {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.75rem 0;
}

.card-text-payroll-about {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

.approach-section-payroll-about {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.approach-header-payroll-about {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.approach-title-payroll-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1rem 0;
}

.approach-subtitle-payroll-about {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #cbd5e1;
  margin: 0;
}

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

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

.step-number-payroll-about {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #06b6d4;
  flex-shrink: 0;
  min-width: 80px;
}

.step-content-payroll-about {
  flex: 1;
}

.step-title-payroll-about {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.75rem 0;
}

.step-text-payroll-about {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: #cbd5e1;
  margin: 0;
  line-height: 1.6;
}

.approach-image-payroll-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: 2rem auto 0;
}

.value-section-payroll-about {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.value-header-payroll-about {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.value-title-payroll-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 1rem 0;
}

.value-subtitle-payroll-about {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #64748b;
  margin: 0;
}

.featured-quote-payroll-about {
  background: #f1f5f9;
  border-left: 4px solid #06b6d4;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-md);
  margin: 2rem auto;
  max-width: 800px;
}

.quote-text-payroll-about {
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  color: #1e293b;
  font-style: italic;
  margin: 0 0 1rem 0;
  line-height: 1.8;
}

.quote-author-payroll-about {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: #64748b;
  font-style: normal;
  display: block;
}

.disclaimer-section-payroll-about {
  background: #f8fafc;
  padding: clamp(3rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-payroll-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-payroll-about {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-icon-payroll-about {
  color: #4f46e5;
  font-size: 1.25rem;
}

.disclaimer-text-payroll-about {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: #64748b;
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero-stats-payroll-about {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-item-payroll-about {
    flex: 1 1 100%;
  }

  .process-step-payroll-about {
    flex-direction: column;
    gap: 1rem;
  }

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

@media (max-width: 480px) {
  .hero-title-payroll-about {
    font-size: 1.75rem;
  }

  .story-title-payroll-about,
  .expertise-title-payroll-about,
  .approach-title-payroll-about,
  .value-title-payroll-about {
    font-size: 1.5rem;
  }

  .stat-number-payroll-about {
    font-size: 2rem;
  }

  .step-number-payroll-about {
    font-size: 2.5rem;
  }
}

.faq-page {
  width: 100%;
}

.faq-hero {
  background-color: var(--color-primary);
  padding: 2rem var(--space-md);
  overflow: hidden;
}

.faq-hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.2;
}

.faq-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw + 0.3rem, 1.125rem);
  color: #f0f4ff;
  margin: 0;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .faq-hero {
    padding: 3rem var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .faq-hero {
    padding: 4rem var(--space-xl);
  }
}

.faq-content {
  background-color: var(--color-bg-primary);
  padding: 2rem var(--space-md);
  overflow: hidden;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background-color: var(--color-bg-tertiary);
  border: 1px solid var(--border-color-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}

.faq-trigger {
  width: 100%;
  padding: var(--space-md);
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  transition: background-color var(--transition-fast);
  font-family: var(--font-primary);
  text-align: left;
}

.faq-trigger:hover {
  background-color: var(--color-primary-light);
}

.faq-trigger:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: -2px;
}

.faq-question {
  font-size: clamp(0.95rem, 1.5vw + 0.2rem, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary);
  flex: 1;
  line-height: 1.4;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq-trigger[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 500px;
  overflow: hidden;
  animation: slideDown var(--transition-base) ease-out;
}

.faq-answer[hidden] {
  display: none;
}

.faq-answer p {
  padding: 0 var(--space-md) var(--space-md) var(--space-md);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.2vw + 0.2rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 500px;
  }
}

@media (min-width: 768px) {
  .faq-content {
    padding: 3rem var(--space-lg);
  }

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

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

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

@media (min-width: 1024px) {
  .faq-content {
    padding: 4rem var(--space-xl);
  }
}

.faq-cta {
  background-color: var(--color-bg-secondary);
  padding: 2rem var(--space-md);
  overflow: hidden;
}

.faq-cta-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.3rem, 2rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
}

.faq-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw + 0.2rem, 1.05rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.6;
}

.faq-cta-button {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.2rem, 1rem);
  font-weight: 600;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  border: none;
}

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

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

@media (min-width: 768px) {
  .faq-cta {
    padding: 3rem var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .faq-cta {
    padding: 4rem var(--space-xl);
  }
}

.services-page {
    width: 100%;
  }

  .services-hero {
    background-color: var(--color-primary);
    padding: 3rem var(--space-md) 2rem;
    overflow: hidden;
  }

  .services-hero-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .services-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
    color: #ffffff;
    margin: 0 0 var(--space-sm) 0;
    font-weight: 700;
    line-height: 1.2;
  }

  .services-hero-subtitle {
    font-family: var(--font-primary);
    font-size: clamp(0.95rem, 2vw + 0.25rem, 1.15rem);
    color: #e0e7ff;
    margin: 0;
    font-weight: 400;
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    .services-hero {
      padding: 4rem var(--space-lg) 3rem;
    }
  }

  @media (min-width: 1024px) {
    .services-hero {
      padding: 5rem var(--space-xl) 4rem;
    }
  }

  .services-content {
    background-color: var(--color-bg-primary);
    padding: 3rem var(--space-md);
    overflow: hidden;
  }

  .services-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

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

    .services-content {
      padding: 4rem var(--space-lg);
    }
  }

  @media (min-width: 1024px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-xl);
    }

    .services-content {
      padding: 5rem var(--space-xl);
    }
  }

  .service-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--border-color-light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-base), border-color var(--transition-base);
  }

  .service-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
  }

  .service-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--color-primary-light);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    font-size: 1.75rem;
    color: var(--color-primary);
  }

  .service-card-title {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2vw + 0.25rem, 1.4rem);
    color: var(--color-text-primary);
    margin: 0 0 var(--space-sm) 0;
    font-weight: 700;
    line-height: 1.3;
  }

  .service-card-description {
    font-family: var(--font-primary);
    font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.7;
  }

  .services-images {
    background-color: var(--color-bg-tertiary);
    padding: 3rem var(--space-md);
    overflow: hidden;
  }

  .services-image-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  @media (min-width: 768px) {
    .services-images {
      padding: 4rem var(--space-lg);
    }

    .services-image-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-lg);
    }
  }

  @media (min-width: 1024px) {
    .services-images {
      padding: 5rem var(--space-xl);
    }

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

  .services-image-item {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
  }

  .services-image-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    object-fit: cover;
  }

  .services-cta {
    background-color: var(--color-secondary);
    padding: 3rem var(--space-md);
    overflow: hidden;
  }

  .services-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }

  .services-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw + 0.25rem, 2.2rem);
    color: #ffffff;
    margin: 0 0 var(--space-md) 0;
    font-weight: 700;
    line-height: 1.3;
  }

  .services-cta-text {
    font-family: var(--font-primary);
    font-size: clamp(0.9rem, 1.5vw + 0.25rem, 1.05rem);
    color: #f0f9ff;
    margin: 0 0 var(--space-lg) 0;
    line-height: 1.7;
  }

  .services-cta-button {
    display: inline-block;
    background-color: var(--color-bg-tertiary);
    color: var(--color-secondary);
    font-family: var(--font-primary);
    font-size: clamp(0.9rem, 1vw + 0.25rem, 1rem);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: background-color var(--transition-base), transform var(--transition-base);
    border: none;
    cursor: pointer;
  }

  .services-cta-button:hover {
    background-color: #f0f9ff;
    transform: translateY(-2px);
  }

  @media (min-width: 768px) {
    .services-cta {
      padding: 4rem var(--space-lg);
    }
  }

  @media (min-width: 1024px) {
    .services-cta {
      padding: 5rem var(--space-xl);
    }
  }

:root {
  --color-bg-primary: #f8fafc;
  --color-bg-secondary: #e2e8f0;
  --color-bg-tertiary: #ffffff;
  --color-bg-card: #ffffff;
  --color-text-primary: #0f172a;
  --color-text-secondary: #475569;
  --color-text-muted: #94a3b8;
  --color-primary: #4f46e5;
  --color-primary-hover: #4338ca;
  --color-primary-light: #eef2ff;
  --color-secondary: #06b6d4;
  --color-secondary-light: #cffafe;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --border-color: #cbd5e1;
  --border-color-light: #e2e8f0;
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Source Serif Pro', serif;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 10px 15px rgba(15, 23, 42, 0.1);
  --shadow-xl: 0 20px 25px rgba(15, 23, 42, 0.15);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.payroll-docs {
  background-color: var(--color-bg-primary);
  padding: var(--space-lg) 0;
  overflow: hidden;
}

.payroll-docs .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  overflow: hidden;
}

.payroll-docs .payroll-docs-content {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.payroll-docs h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.2;
  font-weight: 600;
}

.payroll-docs .updated-date {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
  font-weight: 500;
}

.payroll-docs h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-primary);
  margin: var(--space-2xl) 0 var(--space-md) 0;
  line-height: 1.3;
  font-weight: 600;
}

.payroll-docs p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0 0 var(--space-md) 0;
}

.payroll-docs ul {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: 0 0 var(--space-md) var(--space-lg);
  padding: 0;
}

.payroll-docs ul li {
  margin-bottom: var(--space-sm);
  list-style-position: outside;
}

.payroll-docs .section {
  margin-bottom: var(--space-2xl);
}

.payroll-docs .contact-section {
  background-color: var(--color-bg-card);
  border: 1px solid var(--border-color-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-top: var(--space-3xl);
}

.payroll-docs .contact-section h2 {
  margin-top: 0;
}

.payroll-docs .contact-section p {
  margin-bottom: var(--space-sm);
}

.payroll-docs .contact-section strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

@media (min-width: 768px) {
  .payroll-docs {
    padding: var(--space-2xl) 0;
  }

  .payroll-docs .container {
    padding: 0 var(--space-lg);
  }

  .payroll-docs h1 {
    margin-bottom: var(--space-md);
  }

  .payroll-docs .contact-section {
    padding: var(--space-2xl);
  }
}

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

  .payroll-docs .container {
    padding: 0 var(--space-xl);
  }
}

.thank-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-primary);
  padding: var(--space-md) 0;
}

.thank-section {
  width: 100%;
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
}

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

.thank-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn var(--transition-slow);
}

.thank-icon svg {
  width: 80px;
  height: 80px;
  display: block;
}

h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.lead {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.6;
}

.thank-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.7;
  max-width: 600px;
}

.thank-next-steps {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.7;
  max-width: 600px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  min-width: 200px;
  white-space: nowrap;
}

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

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 768px) {
  .thank-section {
    padding: var(--space-xl) var(--space-md);
  }

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

  .thank-icon svg {
    width: 100px;
    height: 100px;
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--space-2xl) var(--space-md);
  }

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

  .btn {
    padding: var(--space-md) var(--space-xl);
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .thank-page {
    min-height: auto;
  }

  .thank-section {
    padding: var(--space-lg) var(--space-sm);
  }

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

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

  .btn {
    min-width: 160px;
    padding: var(--space-sm) var(--space-md);
  }
}

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

html, body {
  height: 100%;
  width: 100%;
}

.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  background-color: var(--color-bg-primary);
}

.error-section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: var(--space-lg);
  overflow: hidden;
}

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

.content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.error-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.error-code-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--space-md);
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -2px;
}

.error-decoration {
  position: absolute;
  top: -20px;
  right: -30px;
  width: 120px;
  height: 120px;
  background-color: var(--color-primary-light);
  border-radius: 50%;
  opacity: 0.6;
  animation: float 3s ease-in-out infinite;
  z-index: -1;
}

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

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.error-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.error-subtext {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.btn-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-md) var(--space-xl);
  background-color: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--color-primary);
  cursor: pointer;
}

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

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

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

.btn-arrow {
  display: inline-block;
  transition: transform var(--transition-base);
}

.btn-home:hover .btn-arrow {
  transform: translateX(4px);
}

.error-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  flex-wrap: wrap;
}

.icon-item {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.icon-calc {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
}

.icon-doc {
  background-color: var(--color-secondary-light);
  color: var(--color-secondary);
}

.icon-wallet {
  background-color: #f0fdf4;
  color: var(--color-success);
}

.icon-item svg {
  width: 32px;
  height: 32px;
}

.icon-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

@media (max-width: 640px) {
  .error-section {
    padding: var(--space-md);
  }

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

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

  .error-decoration {
    width: 80px;
    height: 80px;
    right: -20px;
    top: -10px;
  }

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

  .icon-item {
    width: 56px;
    height: 56px;
  }

  .icon-item svg {
    width: 28px;
    height: 28px;
  }

  .btn-home {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
  }
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-2xl) var(--space-lg);
  }

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

  .error-code-container {
    margin-bottom: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl) var(--space-lg);
  }

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

  .error-code-container {
    margin-bottom: var(--space-xl);
  }

  .error-icons {
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
  }
}

.contact-write-to-us {
  background-color: var(--color-bg-primary);
}

.contact-write-to-us-hero {
  background-color: var(--color-primary);
  padding: 3rem 1rem;
  overflow: hidden;
}

.contact-write-to-us-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.contact-write-to-us-hero-title {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1.2;
}

.contact-write-to-us-hero-subtitle {
  color: #f1f5f9;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  font-family: var(--font-primary);
  margin: 1rem 0 0 0;
  padding: 0;
  line-height: 1.6;
  max-width: 700px;
}

@media (min-width: 768px) {
  .contact-write-to-us-hero {
    padding: 4rem 1rem;
  }
}

@media (min-width: 1024px) {
  .contact-write-to-us-hero {
    padding: 5rem 1rem;
  }
}

.contact-write-to-us-main {
  background-color: var(--color-bg-primary);
  padding: 3rem 1rem;
  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: 768px) {
  .contact-write-to-us-form-wrapper {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 350px;
  }

  .contact-write-to-us-info-wrapper {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 350px;
  }
}

@media (min-width: 1024px) {
  .contact-write-to-us-main {
    padding: 4rem 1rem;
  }
}

.contact-write-to-us-form-title {
  color: var(--color-text-primary);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 0 0 2rem 0;
  padding: 0;
  line-height: 1.3;
}

.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;
  width: 100%;
}

.contact-write-to-us-label {
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  font-weight: 600;
  display: block;
}

.contact-write-to-us-input,
.contact-write-to-us-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: var(--color-bg-card);
  border: 1px solid var(--border-color-light);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.5;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.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 var(--color-primary-light);
}

.contact-write-to-us-textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--font-primary);
}

.contact-write-to-us-form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0.5rem 0;
}

.contact-write-to-us-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
}

.contact-write-to-us-checkbox {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--color-primary);
  flex-shrink: 0;
}

.contact-write-to-us-checkbox:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.contact-write-to-us-checkbox-text {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  line-height: 1.5;
  flex: 1;
}

.contact-write-to-us-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.contact-write-to-us-privacy-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-write-to-us-privacy-link:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.contact-write-to-us-submit {
  width: 100%;
  padding: 1rem 2rem;
  background-color: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  font-weight: 700;
  cursor: pointer;
  transition: background-color var(--transition-base), transform var(--transition-fast);
  margin-top: 0.5rem;
}

.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-submit:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.contact-write-to-us-info-title {
  color: var(--color-text-primary);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 0 0 2rem 0;
  padding: 0;
  line-height: 1.3;
}

.contact-write-to-us-info-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-write-to-us-info-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-write-to-us-info-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.contact-write-to-us-info-icon i {
  color: var(--color-primary);
  font-size: 1.5rem;
}

.contact-write-to-us-info-content {
  flex: 1;
}

.contact-write-to-us-info-label {
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  padding: 0;
}

.contact-write-to-us-info-text {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 1rem);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.contact-write-to-us-info-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.contact-write-to-us-info-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-write-to-us-info-link:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.contact-write-to-us-info-extra {
  background-color: var(--color-bg-card);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color-light);
  margin-bottom: 1.5rem;
}

.contact-write-to-us-info-extra-title {
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 700;
  margin: 0 0 1rem 0;
  padding: 0;
}

.contact-write-to-us-info-hours {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-write-to-us-info-hour-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.contact-write-to-us-info-day {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  font-weight: 500;
}

.contact-write-to-us-info-time {
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  font-weight: 600;
}

.contact-write-to-us-info-response {
  background-color: var(--color-secondary-light);
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-secondary);
}

.contact-write-to-us-info-response-text {
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .contact-write-to-us-main {
    padding: 4rem 1rem;
  }
}

@media (min-width: 1024px) {
  .contact-write-to-us-main {
    padding: 5rem 1rem;
  }
}