
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Lato:wght@400;500;700&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-text-light: #cbd5e1;
  
  
  --color-primary: #4f46e5;
  --color-primary-hover: #4338ca;
  --color-primary-light: #eef2ff;
  --color-secondary: #06b6d4;
  --color-secondary-hover: #0891b2;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  
  
  --font-primary: 'Lato', sans-serif;
  --font-heading: 'Poppins', sans-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);
  
  
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
  
  
  --color-border: #e2e8f0;
  --color-border-light: #f1f5f9;
  --color-border-dark: #cbd5e1;
}

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

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

body {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
}

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

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

h2 {
  font-size: 2.25rem;
  letter-spacing: -0.015em;
  font-weight: 700;
}

h3 {
  font-size: 1.875rem;
  letter-spacing: -0.01em;
  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 {
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
}

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.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-color: var(--color-border);
}

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

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

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

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

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

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

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

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

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

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

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

input,
textarea,
select {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border: 2px solid var(--color-border);
  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;
}

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.badge-secondary {
  background: #dbeafe;
  color: #1e40af;
}

.badge-success {
  background: #d1fae5;
  color: #065f46;
}

.badge-warning {
  background: #fef3c7;
  color: #92400e;
}

.badge-error {
  background: #fee2e2;
  color: #991b1b;
}

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

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

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

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

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

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

.flex {
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

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

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

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

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

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

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

ul, ol {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

li {
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-lg);
}

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

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

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

code {
  background: var(--color-bg-secondary);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 0.875em;
  color: var(--color-primary);
}

pre {
  background: var(--color-bg-secondary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  margin-bottom: var(--space-lg);
}

pre code {
  background: transparent;
  padding: 0;
  color: var(--color-text-primary);
}

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

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

.alert-success {
  background: #d1fae5;
  border-color: var(--color-success);
  color: #065f46;
}

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

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

.breadcrumb {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

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

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

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

.pagination {
  display: flex;
  gap: var(--space-xs);
  justify-content: center;
  margin-top: var(--space-xl);
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  color: var(--color-text-primary);
  transition: all var(--transition-fast);
}

.pagination a:hover {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

.pagination .active {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid var(--color-border);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .container {
    padding: 0 var(--space-md);
  }
  
  section {
    padding: var(--space-2xl) 0;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.25rem;
  }
  
  h3 {
    font-size: 1.125rem;
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
  
  section {
    padding: var(--space-xl) 0;
  }
  
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.hidden {
  display: none !important;
}

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

.overflow-hidden {
  overflow: hidden;
}

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

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

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

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

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

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

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

.border {
  border: 1px solid var(--color-border);
}

.border-top {
  border-top: 1px solid var(--color-border);
}

.border-bottom {
  border-bottom: 1px solid var(--color-border);
}

.divide-y > * + * {
  border-top: 1px solid var(--color-border);
}

.divide-x > * + * {
  border-left: 1px solid var(--color-border);
}

.leading-tight {
  line-height: 1.25;
}

.leading-snug {
  line-height: 1.375;
}

.leading-normal {
  line-height: 1.5;
}

.leading-relaxed {
  line-height: 1.625;
}

.leading-loose {
  line-height: 2;
}

.tracking-tight {
  letter-spacing: -0.01em;
}

.tracking-normal {
  letter-spacing: 0;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

.tracking-wider {
  letter-spacing: 0.05em;
}

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

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.max-w-full {
  max-width: 100%;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-100 {
  opacity: 1;
}

.pointer-events-none {
  pointer-events: none;
}

.pointer-events-auto {
  pointer-events: auto;
}

.transition-fast {
  transition: all var(--transition-fast);
}

.transition-base {
  transition: all var(--transition-base);
}

.transition-slow {
  transition: all var(--transition-slow);
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-default {
  cursor: default;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
}

.z-0 {
  z-index: 0;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-30 {
  z-index: 30;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

.block {
  display: block;
}

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

.inline {
  display: inline;
}

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

.grid {
  display: grid;
}

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

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

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.w-auto {
  width: auto;
}

.h-auto {
  height: auto;
}

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

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

.bg-tertiary {
  background: var(--color-bg-tertiary);
}

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

.scale-100 {
  transform: scale(1);
}

.scale-105 {
  transform: scale(1.05);
}

.scale-110 {
  transform: scale(1.1);
}

.translate-y-0 {
  transform: translateY(0);
}

.translate-y-1 {
  transform: translateY(4px);
}

.translate-y-2 {
  transform: translateY(8px);
}

.-translate-y-1 {
  transform: translateY(-4px);
}

.-translate-y-2 {
  transform: translateY(-8px);
}

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

.hover-scale:hover {
  transform: scale(1.05);
}

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

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

.gradient-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: #ffffff;
}

.gradient-light {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, #dbeafe 100%);
}
.payroll-hub {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

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

.payroll-hub p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

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

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

.hero-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.hero-cta-buttons .btn {
  flex: 0 1 auto;
}

.hero-stats-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

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

.hero-stat-label {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  font-weight: 500;
}

.hero-image-block {
  flex: 1 1 45%;
  min-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
  }
  
  .hero-text-block,
  .hero-image-block {
    flex: 1 1 100%;
  }
  
  .hero-image-index {
    max-height: 400px;
  }
}

@media (max-width: 640px) {
  .hero-cta-buttons {
    flex-direction: column;
  }
  
  .hero-cta-buttons .btn {
    width: 100%;
  }
}

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

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

.features-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.section-tag-index {
  display: inline-block;
  padding: clamp(0.25rem, 1vw, 0.35rem) clamp(0.75rem, 2vw, 1rem);
  background: rgba(79, 70, 229, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

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

.features-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

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

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

.feature-icon-index {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
  color: var(--color-primary);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-title-index {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin: 0;
}

.feature-text-index {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

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

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

.process-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.process-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.process-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

.process-step-index {
  flex: 1 1 clamp(250px, 25%, 320px);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

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

.step-content-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.step-title-index {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin: 0;
}

.step-text-index {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

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

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

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

.benefits-text-block {
  flex: 1 1 45%;
  min-width: 280px;
}

.benefits-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.benefits-intro-index {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.benefits-list-index {
  list-style: none;
  margin: 0 0 var(--space-lg) 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.benefit-item-index {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.benefit-check-index {
  color: var(--color-success);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-text-index {
  margin: 0;
}

.benefits-image-block {
  flex: 1 1 45%;
  min-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits-image-index {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 1024px) {
  .benefits-split {
    flex-direction: column;
  }
  
  .benefits-text-block,
  .benefits-image-block {
    flex: 1 1 100%;
  }
  
  .benefits-image-index {
    max-height: 350px;
  }
}

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

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

.testimonials-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.testimonials-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

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

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

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

.testimonial-quote-index {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
  font-style: italic;
  border-left: 4px solid var(--color-primary);
  padding-left: var(--space-md);
}

.testimonial-author-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.author-name-index {
  font-size: clamp(0.95rem, 1.2vw + 0.4rem, 1.125rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin: 0;
}

.author-role-index {
  font-size: clamp(0.8rem, 1vw + 0.3rem, 0.95rem);
  color: var(--color-text-muted);
  margin: 0;
}

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

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

.posts-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

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

.posts-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

.post-card-index {
  flex: 1 1 clamp(280px, 30%, 380px);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.post-image-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-bg-secondary);
}

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

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

.post-title-index {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.375rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.post-description-index {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.post-link-index {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.posts-cta-index {
  display: flex;
  justify-content: center;
  margin-top: var(--space-lg);
}

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

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

.cta-box-index {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
  text-align: center;
  max-width: 600px;
  color: #ffffff;
  box-shadow: var(--shadow-lg);
}

.cta-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin-bottom: var(--space-md);
  font-weight: 700;
}

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

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

.cta-box-index .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg);
}

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

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

.cookie-banner-text-index {
  color: #ffffff;
  margin: 0;
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  flex: 1 1 auto;
  min-width: 200px;
  line-height: 1.5;
}

.cookie-banner-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.cookie-btn-accept,
.cookie-btn-decline {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.25rem);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(0.8rem, 1vw + 0.3rem, 0.95rem);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.cookie-btn-accept {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

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

.cookie-btn-decline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .features-cards-index,
  .testimonials-grid-index,
  .posts-grid-index {
    flex-direction: column;
  }
  
  .feature-card-index,
  .testimonial-card-index,
  .post-card-index {
    flex: 1 1 100%;
  }
  
  .process-steps-index {
    flex-direction: column;
  }
  
  .process-step-index {
    flex: 1 1 100%;
  }
  
  .cookie-banner {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .cookie-banner-text-index {
    width: 100%;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    justify-content: stretch;
  }
  
  .cookie-btn-accept,
  .cookie-btn-decline {
    flex: 1;
  }
}

@media (max-width: 640px) {
  .hero-stats-index {
    flex-direction: row;
    gap: var(--space-lg);
    justify-content: flex-start;
  }
  
  .hero-stat-item {
    flex: 1 1 auto;
  }
}

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

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

.footer-content {
  display: block;
}

.footer-about {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

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

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

.footer-nav {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

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

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

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

.footer-nav-list a:hover {
  color: var(--color-primary);
}

.footer-contact {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

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

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

.footer-legal {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

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

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

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

.footer-legal-list a:hover {
  color: var(--color-primary);
}

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

.footer-copyright p {
  font-family: var(--font-primary);
  font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
  color: var(--color-text-muted);
  margin: 0;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

  .footer-nav {
    flex: 1 1 180px;
    margin-bottom: 0;
  }

  .footer-contact {
    flex: 1 1 220px;
    margin-bottom: 0;
  }

  .footer-legal {
    flex: 1 1 220px;
    margin-bottom: 0;
  }

  .footer-copyright {
    flex: 1 1 100%;
    margin-top: clamp(1rem, 2vw, 2rem);
    padding-top: clamp(1.5rem, 2vw, 2.5rem);
  }
}

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

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

.category-page-payroll-software {
  background: #0a0f1e;
}

.hero-section-payroll-software {
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1526 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

@media (min-width: 1024px) {
  .hero-content-payroll-software {
    flex-direction: row;
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
  }
}

.hero-header-payroll-software {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.hero-subtitle-payroll-software {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #94a3b8;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-image-payroll-software {
  flex: 1 1 45%;
  width: 100%;
  min-height: 300px;
}

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

@media (max-width: 1023px) {
  .hero-image-payroll-software {
    flex: 1 1 100%;
    min-height: 250px;
  }
}

.posts-section-payroll-software {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.posts-title-payroll-software {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  line-height: 1.2;
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.posts-subtitle-payroll-software {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.card-payroll-software {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 12px;
  flex: 1 1 100%;
  max-width: 380px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.card-payroll-software:hover {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(148, 163, 184, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.card-payroll-software img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.card-title-payroll-software {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #ffffff;
  line-height: 1.3;
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-description-payroll-software {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  flex-grow: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-meta-payroll-software {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  font-size: 0.85rem;
}

.card-reading-time-payroll-software,
.card-level-payroll-software,
.card-date-payroll-software {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
}

.card-reading-time-payroll-software i,
.card-level-payroll-software i,
.card-date-payroll-software i {
  font-size: 0.9rem;
  color: #64748b;
}

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

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

.insight-section-payroll-software {
  background: rgba(30, 41, 59, 0.5);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

@media (min-width: 1024px) {
  .insight-content-payroll-software {
    flex-direction: row;
    align-items: flex-start;
    gap: clamp(2rem, 5vw, 4rem);
  }
}

.insight-quote-payroll-software {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
}

.insight-blockquote-payroll-software {
  padding: 2rem;
  background: rgba(15, 23, 42, 0.6);
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  font-style: italic;
}

.insight-quote-text-payroll-software {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.5rem);
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.insight-footer-payroll-software {
  font-style: normal;
  text-align: right;
}

.insight-author-payroll-software {
  color: #94a3b8;
  font-size: 0.95rem;
}

.insight-context-payroll-software {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.insight-heading-payroll-software {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  color: #ffffff;
  line-height: 1.3;
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.insight-text-payroll-software {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.process-section-payroll-software {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.process-title-payroll-software {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  text-align: center;
  line-height: 1.2;
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.process-step-payroll-software {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 12px;
  flex: 1 1 100%;
  max-width: 260px;
  text-align: center;
  transition: all 0.3s ease;
}

.process-step-payroll-software:hover {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(148, 163, 184, 0.4);
  transform: translateY(-4px);
}

.step-number-payroll-software {
  width: 50px;
  height: 50px;
  background: #f59e0b;
  color: #0a0f1e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 auto;
}

.step-title-payroll-software {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #ffffff;
  line-height: 1.3;
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.step-description-payroll-software {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

  .insight-content-payroll-software {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .card-payroll-software {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .process-step-payroll-software {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .posts-grid-payroll-software {
    flex-direction: column;
    align-items: center;
  }

  .process-steps-payroll-software {
    flex-direction: column;
    align-items: center;
  }
}

.main-steuerliche-anforderungen-lohn {
  width: 100%;
  overflow: hidden;
}

.hero-section-steuerliche-anforderungen-lohn {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(2rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.breadcrumbs-steuerliche-anforderungen-lohn a {
  color: #64b5f6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-steuerliche-anforderungen-lohn a:hover {
  color: #90caf9;
  text-decoration: underline;
}

.breadcrumbs-steuerliche-anforderungen-lohn span {
  color: #64748b;
}

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

.hero-text-steuerliche-anforderungen-lohn {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-steuerliche-anforderungen-lohn {
  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-steuerliche-anforderungen-lohn {
  font-size: clamp(0.95rem, 1.5vw, 1.25rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
}

.hero-meta-steuerliche-anforderungen-lohn {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
}

.meta-item-steuerliche-anforderungen-lohn {
  color: #94a3b8;
  font-weight: 500;
}

.meta-separator-steuerliche-anforderungen-lohn {
  color: #64748b;
}

.hero-image-steuerliche-anforderungen-lohn {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-steuerliche-anforderungen-lohn {
  width: 100%;
  height: auto;
  max-height: 450px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
}

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

  .hero-text-steuerliche-anforderungen-lohn,
  .hero-image-steuerliche-anforderungen-lohn {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-img-steuerliche-anforderungen-lohn {
    max-height: 300px;
  }
}

.intro-section-steuerliche-anforderungen-lohn {
  background: #ffffff;
  padding: clamp(2.5rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.intro-content-steuerliche-anforderungen-lohn {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: flex-start;
}

.intro-text-steuerliche-anforderungen-lohn {
  flex: 1 1 55%;
  max-width: 55%;
}

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

.intro-paragraph-steuerliche-anforderungen-lohn {
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 400;
}

.intro-highlight-steuerliche-anforderungen-lohn {
  flex: 1 1 45%;
  max-width: 45%;
}

.highlight-box-steuerliche-anforderungen-lohn {
  background: #f1f5f9;
  border-left: 4px solid #4f46e5;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 8px;
}

.highlight-title-steuerliche-anforderungen-lohn {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 1rem;
}

.highlight-list-steuerliche-anforderungen-lohn {
  list-style: none;
  margin: 0;
  padding: 0;
}

.highlight-item-steuerliche-anforderungen-lohn {
  color: #334155;
  font-size: clamp(0.85rem, 1vw, 1rem);
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
  font-weight: 400;
}

.highlight-item-steuerliche-anforderungen-lohn::before {
  content: "";
  position: absolute;
  left: 0;
  color: #4f46e5;
  font-weight: 700;
}

@media (max-width: 768px) {
  .intro-content-steuerliche-anforderungen-lohn {
    flex-direction: column;
  }

  .intro-text-steuerliche-anforderungen-lohn,
  .intro-highlight-steuerliche-anforderungen-lohn {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-one-steuerliche-anforderungen-lohn {
  background: #f8fafc;
  padding: clamp(2.5rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.content-text-steuerliche-anforderungen-lohn {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-steuerliche-anforderungen-lohn {
  font-size: clamp(1.4rem, 4vw, 2.25rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-paragraph-steuerliche-anforderungen-lohn {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  font-weight: 400;
}

.content-list-steuerliche-anforderungen-lohn {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-list-item-steuerliche-anforderungen-lohn {
  color: #475569;
  font-size: clamp(0.85rem, 1vw, 1rem);
  margin-bottom: 0.75rem;
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.5;
  font-weight: 400;
}

.content-list-item-steuerliche-anforderungen-lohn::before {
  content: "";
  position: absolute;
  left: 0;
  color: #4f46e5;
  font-weight: 700;
  font-size: 1.25rem;
}

.content-image-steuerliche-anforderungen-lohn {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-steuerliche-anforderungen-lohn {
  width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 15px rgba(15, 23, 42, 0.1);
}

@media (max-width: 768px) {
  .content-wrapper-steuerliche-anforderungen-lohn {
    flex-direction: column;
  }

  .content-text-steuerliche-anforderungen-lohn,
  .content-image-steuerliche-anforderungen-lohn {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-img-steuerliche-anforderungen-lohn {
    max-height: 300px;
  }
}

.content-section-two-steuerliche-anforderungen-lohn {
  background: #ffffff;
  padding: clamp(2.5rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.content-image-alt-steuerliche-anforderungen-lohn {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.content-img-alt-steuerliche-anforderungen-lohn {
  width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 15px rgba(15, 23, 42, 0.1);
}

.content-text-alt-steuerliche-anforderungen-lohn {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-alt-steuerliche-anforderungen-lohn {
  font-size: clamp(1.4rem, 4vw, 2.25rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-paragraph-alt-steuerliche-anforderungen-lohn {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  font-weight: 400;
}

.quote-block-steuerliche-anforderungen-lohn {
  background: #eef2ff;
  border-left: 4px solid #4f46e5;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  margin-top: clamp(1.25rem, 2vw, 1.5rem);
  border-radius: 8px;
}

.quote-text-steuerliche-anforderungen-lohn {
  font-style: italic;
  color: #1e293b;
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  line-height: 1.7;
  font-weight: 400;
}

@media (max-width: 768px) {
  .content-wrapper-alt-steuerliche-anforderungen-lohn {
    flex-direction: column;
  }

  .content-text-alt-steuerliche-anforderungen-lohn,
  .content-image-alt-steuerliche-anforderungen-lohn {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }

  .content-img-alt-steuerliche-anforderungen-lohn {
    max-height: 300px;
  }
}

.content-section-three-steuerliche-anforderungen-lohn {
  background: #f8fafc;
  padding: clamp(2.5rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.content-section-four-steuerliche-anforderungen-lohn {
  background: #ffffff;
  padding: clamp(2.5rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.content-list-alt-steuerliche-anforderungen-lohn {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-list-item-alt-steuerliche-anforderungen-lohn {
  color: #475569;
  font-size: clamp(0.85rem, 1vw, 1rem);
  margin-bottom: 1rem;
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.5;
  font-weight: 400;
}

.content-list-item-alt-steuerliche-anforderungen-lohn::before {
  content: "";
  position: absolute;
  left: 0;
  color: #4f46e5;
  font-weight: 700;
}

.conclusion-section-steuerliche-anforderungen-lohn {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(2.5rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-steuerliche-anforderungen-lohn {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-steuerliche-anforderungen-lohn {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #ffffff;
  font-weight: 700;
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-text-steuerliche-anforderungen-lohn {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 400;
}

.conclusion-cta-steuerliche-anforderungen-lohn {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(100, 181, 246, 0.3);
}

.conclusion-cta-text-steuerliche-anforderungen-lohn {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: #64b5f6;
  font-weight: 500;
}

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

.disclaimer-content-steuerliche-anforderungen-lohn {
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  max-width: 900px;
}

.disclaimer-title-steuerliche-anforderungen-lohn {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 1rem;
}

.disclaimer-text-steuerliche-anforderungen-lohn {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #475569;
  line-height: 1.6;
  font-weight: 400;
}

.related-section-steuerliche-anforderungen-lohn {
  background: #ffffff;
  padding: clamp(2.5rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.related-content-steuerliche-anforderungen-lohn {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.related-title-steuerliche-anforderungen-lohn {
  font-size: clamp(1.4rem, 4vw, 2.25rem);
  color: #0f172a;
  font-weight: 700;
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-card-steuerliche-anforderungen-lohn {
  flex: 1 1 280px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(15, 23, 42, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-steuerliche-anforderungen-lohn:hover {
  box-shadow: 0 10px 15px rgba(15, 23, 42, 0.1);
  transform: translateY(-4px);
}

.related-image-steuerliche-anforderungen-lohn {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-img-steuerliche-anforderungen-lohn {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-text-steuerliche-anforderungen-lohn {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.75rem;
}

.related-card-title-steuerliche-anforderungen-lohn {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: #0f172a;
  font-weight: 700;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-text-steuerliche-anforderungen-lohn {
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: #64748b;
  line-height: 1.5;
  flex-grow: 1;
  font-weight: 400;
}

.related-link-steuerliche-anforderungen-lohn {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #4f46e5;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  align-self: flex-start;
  margin-top: auto;
}

.related-link-steuerliche-anforderungen-lohn:hover {
  color: #4338ca;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .related-cards-steuerliche-anforderungen-lohn {
    flex-direction: column;
    align-items: stretch;
  }

  .related-card-steuerliche-anforderungen-lohn {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-section-steuerliche-anforderungen-lohn,
  .intro-section-steuerliche-anforderungen-lohn,
  .content-section-one-steuerliche-anforderungen-lohn,
  .content-section-two-steuerliche-anforderungen-lohn,
  .content-section-three-steuerliche-anforderungen-lohn,
  .content-section-four-steuerliche-anforderungen-lohn,
  .conclusion-section-steuerliche-anforderungen-lohn,
  .disclaimer-section-steuerliche-anforderungen-lohn,
  .related-section-steuerliche-anforderungen-lohn {
    padding: clamp(1.5rem, 4vw, 2.5rem) 0;
  }

  .breadcrumbs-steuerliche-anforderungen-lohn {
    font-size: 0.7rem;
  }

  .hero-title-steuerliche-anforderungen-lohn {
    font-size: 1.5rem;
  }

  .intro-title-steuerliche-anforderungen-lohn,
  .content-title-steuerliche-anforderungen-lohn,
  .content-title-alt-steuerliche-anforderungen-lohn {
    font-size: 1.25rem;
  }
}

.main-automatisierung-lohnprozesse {
  width: 100%;
  background: var(--color-bg-primary);
}

.hero-section-automatisierung-lohnprozesse {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.hero-text-automatisierung-lohnprozesse {
  flex: 1 1 50%;
  max-width: 50%;
}

.breadcrumbs-automatisierung-lohnprozesse {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.95rem);
}

.breadcrumbs-automatisierung-lohnprozesse a {
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

.breadcrumbs-automatisierung-lohnprozesse a:hover {
  color: var(--color-primary-hover);
}

.breadcrumbs-automatisierung-lohnprozesse span {
  color: var(--color-text-secondary);
}

.hero-title-automatisierung-lohnprozesse {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: #0f172a;
  margin-bottom: var(--space-md);
  font-weight: 700;
  line-height: 1.2;
}

.hero-subtitle-automatisierung-lohnprozesse {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #475569;
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.hero-meta-automatisierung-lohnprozesse {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.meta-item-automatisierung-lohnprozesse {
  color: #64748b;
  font-weight: 500;
}

.meta-separator-automatisierung-lohnprozesse {
  color: #cbd5e1;
}

.hero-image-automatisierung-lohnprozesse {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

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

  .hero-title-automatisierung-lohnprozesse {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
  }
}

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

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

.intro-text-automatisierung-lohnprozesse {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-automatisierung-lohnprozesse {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: var(--space-lg);
  font-weight: 700;
}

.intro-paragraph-automatisierung-lohnprozesse {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.intro-image-automatisierung-lohnprozesse {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-automatisierung-lohnprozesse img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  display: block;
}

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

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

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

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

.steps-header-automatisierung-lohnprozesse {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.steps-title-automatisierung-lohnprozesse {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.steps-subtitle-automatisierung-lohnprozesse {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

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

.step-card-automatisierung-lohnprozesse {
  flex: 1 1 calc(50% - 1rem);
  max-width: 320px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all var(--transition-base);
}

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

.step-number-automatisierung-lohnprozesse {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  color: #4f46e5;
  line-height: 1;
}

.step-body-automatisierung-lohnprozesse {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.step-title-automatisierung-lohnprozesse {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.35rem);
  color: #0f172a;
  font-weight: 600;
}

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

@media (max-width: 768px) {
  .step-card-automatisierung-lohnprozesse {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.benefits-text-automatisierung-lohnprozesse {
  flex: 1 1 50%;
  max-width: 50%;
}

.benefits-title-automatisierung-lohnprozesse {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: var(--space-lg);
  font-weight: 700;
}

.benefits-paragraph-automatisierung-lohnprozesse {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.benefits-list-automatisierung-lohnprozesse {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.benefit-item-automatisierung-lohnprozesse {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.benefit-icon-automatisierung-lohnprozesse {
  flex-shrink: 0;
  font-size: 1.5rem;
  color: #10b981;
  font-weight: bold;
}

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

.benefit-text-automatisierung-lohnprozesse strong {
  color: #0f172a;
  font-weight: 600;
}

.benefits-image-automatisierung-lohnprozesse {
  flex: 1 1 50%;
  max-width: 50%;
}

.benefits-image-automatisierung-lohnprozesse img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  display: block;
}

@media (max-width: 768px) {
  .benefits-content-automatisierung-lohnprozesse {
    flex-direction: column;
  }

  .benefits-text-automatisierung-lohnprozesse,
  .benefits-image-automatisierung-lohnprozesse {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.implementation-image-automatisierung-lohnprozesse {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-image-automatisierung-lohnprozesse img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  display: block;
}

.implementation-text-automatisierung-lohnprozesse {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-title-automatisierung-lohnprozesse {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: var(--space-lg);
  font-weight: 700;
}

.implementation-paragraph-automatisierung-lohnprozesse {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.implementation-highlight-automatisierung-lohnprozesse {
  background: #eef2ff;
  padding: clamp(1rem, 3vw, 1.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid #4f46e5;
  margin-bottom: var(--space-lg);
}

.highlight-text-automatisierung-lohnprozesse {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #0f172a;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .implementation-content-automatisierung-lohnprozesse {
    flex-direction: column-reverse;
  }

  .implementation-image-automatisierung-lohnprozesse,
  .implementation-text-automatisierung-lohnprozesse {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.features-header-automatisierung-lohnprozesse {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.features-title-automatisierung-lohnprozesse {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.features-subtitle-automatisierung-lohnprozesse {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

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

.feature-card-automatisierung-lohnprozesse {
  flex: 1 1 calc(33.333% - 1.33rem);
  max-width: 320px;
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all var(--transition-base);
}

.feature-card-automatisierung-lohnprozesse:hover {
  background: #ffffff;
  box-shadow: var(--shadow-md);
  border-color: #4f46e5;
  transform: translateY(-4px);
}

.feature-icon-automatisierung-lohnprozesse {
  font-size: 2.5rem;
  line-height: 1;
}

.feature-title-automatisierung-lohnprozesse {
  font-size: clamp(1.05rem, 2vw + 0.5rem, 1.25rem);
  color: #0f172a;
  font-weight: 600;
}

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

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

@media (max-width: 768px) {
  .feature-card-automatisierung-lohnprozesse {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.quote-section-automatisierung-lohnprozesse {
  background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.quote-content-automatisierung-lohnprozesse {
  display: flex;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.featured-quote-automatisierung-lohnprozesse {
  background: rgba(255, 255, 255, 0.15);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid #ffffff;
  backdrop-filter: blur(10px);
}

.quote-text-automatisierung-lohnprozesse {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  color: #ffffff;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.quote-author-automatisierung-lohnprozesse {
  display: block;
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  color: #f1f5f9;
  font-style: normal;
  font-weight: 500;
}

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

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

.checklist-text-automatisierung-lohnprozesse {
  flex: 1 1 50%;
  max-width: 50%;
}

.checklist-title-automatisierung-lohnprozesse {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.checklist-intro-automatisierung-lohnprozesse {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  margin-bottom: var(--space-lg);
}

.checklist-items-automatisierung-lohnprozesse {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-left: 0;
  margin-bottom: 0;
}

.checklist-item-automatisierung-lohnprozesse {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  line-height: 1.6;
}

.checkbox-automatisierung-lohnprozesse {
  flex-shrink: 0;
  font-size: 1.25rem;
  color: #4f46e5;
  font-weight: bold;
}

.checklist-image-automatisierung-lohnprozesse {
  flex: 1 1 50%;
  max-width: 50%;
}

.checklist-image-automatisierung-lohnprozesse img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  display: block;
}

@media (max-width: 768px) {
  .checklist-content-automatisierung-lohnprozesse {
    flex-direction: column;
  }

  .checklist-text-automatisierung-lohnprozesse,
  .checklist-image-automatisierung-lohnprozesse {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.conclusion-content-automatisierung-lohnprozesse {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-automatisierung-lohnprozesse {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: var(--space-md);
  font-weight: 700;
  text-align: center;
}

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

.cta-box-automatisierung-lohnprozesse {
  background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.cta-title-automatisierung-lohnprozesse {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  color: #ffffff;
  margin-bottom: 0;
  font-weight: 700;
}

.cta-text-automatisierung-lohnprozesse {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #f1f5f9;
  line-height: 1.6;
}

.cta-box-automatisierung-lohnprozesse .btn {
  align-self: center;
}

.disclaimer-section-automatisierung-lohnprozesse {
  background: #ffffff;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-automatisierung-lohnprozesse {
  background: #faf5ff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid #7c3aed;
}

.disclaimer-title-automatisierung-lohnprozesse {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.35rem);
  color: #1e1b4b;
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.disclaimer-text-automatisierung-lohnprozesse {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: #6b7280;
  line-height: 1.7;
}

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

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

.related-title-automatisierung-lohnprozesse {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: var(--space-lg);
  font-weight: 700;
  text-align: center;
}

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

.related-card-automatisierung-lohnprozesse {
  flex: 1 1 calc(33.333% - 1.33rem);
  max-width: 360px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all var(--transition-base);
}

.related-card-automatisierung-lohnprozesse:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: #4f46e5;
}

.related-image-automatisierung-lohnprozesse {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

.related-info-automatisierung-lohnprozesse {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.related-card-title-automatisierung-lohnprozesse {
  font-size: clamp(1.05rem, 2vw + 0.5rem, 1.35rem);
  color: #0f172a;
  margin-bottom: 0;
  font-weight: 600;
  line-height: 1.4;
}

.related-card-text-automatisierung-lohnprozesse {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: #475569;
  line-height: 1.6;
}

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

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

@media (max-width: 480px) {
  .hero-title-automatisierung-lohnprozesse {
    font-size: 1.5rem;
  }

  .steps-title-automatisierung-lohnprozesse,
  .benefits-title-automatisierung-lohnprozesse,
  .implementation-title-automatisierung-lohnprozesse,
  .features-title-automatisierung-lohnprozesse,
  .checklist-title-automatisierung-lohnprozesse,
  .conclusion-title-automatisierung-lohnprozesse,
  .related-title-automatisierung-lohnprozesse {
    font-size: 1.25rem;
  }

  .step-number-automatisierung-lohnprozesse {
    font-size: 2rem;
  }
}

.main-payroll-systeme-vergleichen {
  background: #f8fafc;
  color: #0f172a;
}

.hero-section-payroll-systeme-vergleichen {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.breadcrumbs-payroll-systeme-vergleichen {
  display: flex;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}

.breadcrumbs-payroll-systeme-vergleichen a {
  color: #64748b;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  transition: color 250ms ease-in-out;
}

.breadcrumbs-payroll-systeme-vergleichen a:hover {
  color: #cbd5e1;
}

.breadcrumbs-payroll-systeme-vergleichen span {
  color: #475569;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
}

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

.hero-text-wrapper-payroll-systeme-vergleichen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-wrapper-payroll-systeme-vergleichen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-payroll-systeme-vergleichen {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

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

.hero-meta-payroll-systeme-vergleichen {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.meta-item-payroll-systeme-vergleichen {
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  color: #94a3b8;
}

.meta-divider-payroll-systeme-vergleichen {
  color: #475569;
}

.hero-image-payroll-systeme-vergleichen {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

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

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

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

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

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

.intro-text-wrapper-payroll-systeme-vergleichen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-wrapper-payroll-systeme-vergleichen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-image-payroll-systeme-vergleichen {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 15px rgba(15, 23, 42, 0.1);
}

@media (max-width: 768px) {
  .intro-content-payroll-systeme-vergleichen {
    flex-direction: column;
  }

  .intro-text-wrapper-payroll-systeme-vergleichen,
  .intro-image-wrapper-payroll-systeme-vergleichen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.features-section-payroll-systeme-vergleichen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.features-header-payroll-systeme-vergleichen {
  text-align: center;
}

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

.features-subtitle-payroll-systeme-vergleichen {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #64748b;
}

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

.feature-card-payroll-systeme-vergleichen {
  flex: 1 1 280px;
  max-width: 350px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
  transition: all 250ms ease-in-out;
}

.feature-card-payroll-systeme-vergleichen:hover {
  box-shadow: 0 10px 15px rgba(15, 23, 42, 0.1);
  transform: translateY(-4px);
}

.feature-icon-payroll-systeme-vergleichen {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef2ff;
  border-radius: 12px;
  color: #4f46e5;
  font-size: 1.5rem;
}

.feature-card-title-payroll-systeme-vergleichen {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #0f172a;
  font-weight: 600;
}

.feature-card-text-payroll-systeme-vergleichen {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.6;
}

.comparison-section-payroll-systeme-vergleichen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.comparison-header-payroll-systeme-vergleichen {
  text-align: center;
}

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

.comparison-subtitle-payroll-systeme-vergleichen {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #64748b;
}

.comparison-wrapper-payroll-systeme-vergleichen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.comparison-text-payroll-systeme-vergleichen {
  flex: 1 1 50%;
  max-width: 50%;
}

.comparison-image-payroll-systeme-vergleichen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.comparison-strong-payroll-systeme-vergleichen {
  color: #0f172a;
  font-weight: 600;
}

.comparison-image-tag-payroll-systeme-vergleichen {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 15px rgba(15, 23, 42, 0.1);
}

@media (max-width: 768px) {
  .comparison-wrapper-payroll-systeme-vergleichen {
    flex-direction: column;
  }

  .comparison-text-payroll-systeme-vergleichen,
  .comparison-image-payroll-systeme-vergleichen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.checklist-section-payroll-systeme-vergleichen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.checklist-header-payroll-systeme-vergleichen {
  text-align: center;
}

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

.checklist-subtitle-payroll-systeme-vergleichen {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #64748b;
}

.checklist-wrapper-payroll-systeme-vergleichen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.checklist-steps-payroll-systeme-vergleichen {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.checklist-image-payroll-systeme-vergleichen {
  flex: 1 1 50%;
  max-width: 50%;
}

.checklist-step-payroll-systeme-vergleichen {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-number-payroll-systeme-vergleichen {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #4f46e5;
  min-width: 60px;
  line-height: 1;
}

.step-content-payroll-systeme-vergleichen {
  flex: 1;
}

.step-title-payroll-systeme-vergleichen {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-text-payroll-systeme-vergleichen {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.6;
}

.checklist-image-tag-payroll-systeme-vergleichen {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 15px rgba(15, 23, 42, 0.1);
}

@media (max-width: 768px) {
  .checklist-wrapper-payroll-systeme-vergleichen {
    flex-direction: column;
  }

  .checklist-steps-payroll-systeme-vergleichen,
  .checklist-image-payroll-systeme-vergleichen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.quote-section-payroll-systeme-vergleichen {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.quote-content-payroll-systeme-vergleichen {
  display: flex;
  justify-content: center;
}

.featured-quote-payroll-systeme-vergleichen {
  max-width: 700px;
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #4f46e5;
  background: rgba(79, 70, 229, 0.05);
  border-radius: 12px;
}

.quote-text-payroll-systeme-vergleichen {
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  color: #ffffff;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.quote-author-payroll-systeme-vergleichen {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  font-style: normal;
}

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

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

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

.conclusion-text-wrapper-payroll-systeme-vergleichen {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-image-wrapper-payroll-systeme-vergleichen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.conclusion-image-payroll-systeme-vergleichen {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 15px rgba(15, 23, 42, 0.1);
}

@media (max-width: 768px) {
  .conclusion-content-payroll-systeme-vergleichen {
    flex-direction: column;
  }

  .conclusion-text-wrapper-payroll-systeme-vergleichen,
  .conclusion-image-wrapper-payroll-systeme-vergleichen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.disclaimer-section-payroll-systeme-vergleichen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.disclaimer-content-payroll-systeme-vergleichen {
  display: flex;
  justify-content: center;
}

.disclaimer-box-payroll-systeme-vergleichen {
  max-width: 700px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.disclaimer-title-payroll-systeme-vergleichen {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.disclaimer-text-payroll-systeme-vergleichen {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.7;
}

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

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

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

.related-header-payroll-systeme-vergleichen {
  text-align: center;
}

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

.related-subtitle-payroll-systeme-vergleichen {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #64748b;
}

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

.related-card-payroll-systeme-vergleichen {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all 250ms ease-in-out;
}

.related-card-payroll-systeme-vergleichen:hover {
  box-shadow: 0 10px 15px rgba(15, 23, 42, 0.1);
  transform: translateY(-4px);
}

.related-image-wrapper-payroll-systeme-vergleichen {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f8fafc;
}

.related-card-image-payroll-systeme-vergleichen {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.related-card-title-payroll-systeme-vergleichen {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: #0f172a;
  font-weight: 600;
  line-height: 1.4;
}

.related-card-text-payroll-systeme-vergleichen {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: #475569;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .related-grid-payroll-systeme-vergleichen {
    flex-direction: column;
  }

  .related-card-payroll-systeme-vergleichen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.main-compliance-datenschutz-lohnabrechnung {
  width: 100%;
  overflow: hidden;
}

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

.hero-section-compliance-datenschutz-lohnabrechnung {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.breadcrumbs-compliance-datenschutz-lohnabrechnung a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-compliance-datenschutz-lohnabrechnung a:hover {
  color: #60a5fa;
  text-decoration: underline;
}

.breadcrumbs-compliance-datenschutz-lohnabrechnung span {
  color: #64748b;
}

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

.hero-text-compliance-datenschutz-lohnabrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-compliance-datenschutz-lohnabrechnung {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.hero-meta-compliance-datenschutz-lohnabrechnung {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.meta-item-compliance-datenschutz-lohnabrechnung {
  color: #94a3b8;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
}

.meta-divider-compliance-datenschutz-lohnabrechnung {
  color: #475569;
}

.hero-image-compliance-datenschutz-lohnabrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-compliance-datenschutz-lohnabrechnung {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

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

  .hero-text-compliance-datenschutz-lohnabrechnung,
  .hero-image-compliance-datenschutz-lohnabrechnung {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.intro-text-compliance-datenschutz-lohnabrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.intro-image-compliance-datenschutz-lohnabrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-compliance-datenschutz-lohnabrechnung {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .intro-content-compliance-datenschutz-lohnabrechnung {
    flex-direction: column;
  }

  .intro-text-compliance-datenschutz-lohnabrechnung,
  .intro-image-compliance-datenschutz-lohnabrechnung {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.requirements-section-compliance-datenschutz-lohnabrechnung {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.requirements-header-compliance-datenschutz-lohnabrechnung {
  text-align: center;
}

.requirements-title-compliance-datenschutz-lohnabrechnung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.requirements-subtitle-compliance-datenschutz-lohnabrechnung {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.requirement-card-compliance-datenschutz-lohnabrechnung {
  flex: 1 1 clamp(250px, 22vw, 350px);
  background: #1e293b;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border: 1px solid #334155;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.requirement-card-compliance-datenschutz-lohnabrechnung:hover {
  border-color: #3b82f6;
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
  transform: translateY(-4px);
}

.card-number-compliance-datenschutz-lohnabrechnung {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
}

.card-title-compliance-datenschutz-lohnabrechnung {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #ffffff;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.card-text-compliance-datenschutz-lohnabrechnung {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
}

.implementation-section-compliance-datenschutz-lohnabrechnung {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.implementation-content-compliance-datenschutz-lohnabrechnung {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.implementation-text-compliance-datenschutz-lohnabrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-title-compliance-datenschutz-lohnabrechnung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.2;
}

.implementation-steps-compliance-datenschutz-lohnabrechnung {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.step-compliance-datenschutz-lohnabrechnung {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-number-compliance-datenschutz-lohnabrechnung {
  font-size: clamp(0.85rem, 1vw, 1rem);
  font-weight: 700;
  color: #3b82f6;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.step-title-compliance-datenschutz-lohnabrechnung {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #0f172a;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

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

.implementation-image-compliance-datenschutz-lohnabrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-img-compliance-datenschutz-lohnabrechnung {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .implementation-content-compliance-datenschutz-lohnabrechnung {
    flex-direction: column;
  }

  .implementation-text-compliance-datenschutz-lohnabrechnung,
  .implementation-image-compliance-datenschutz-lohnabrechnung {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.common-mistakes-section-compliance-datenschutz-lohnabrechnung {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.common-mistakes-content-compliance-datenschutz-lohnabrechnung {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

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

.mistakes-wrapper-compliance-datenschutz-lohnabrechnung {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.mistake-text-compliance-datenschutz-lohnabrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.mistake-heading-compliance-datenschutz-lohnabrechnung {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: #ffffff;
  font-weight: 700;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.3;
}

.mistakes-list-compliance-datenschutz-lohnabrechnung {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.mistake-item-compliance-datenschutz-lohnabrechnung {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mistake-title-compliance-datenschutz-lohnabrechnung {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #e0e0e0;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.mistake-text-compliance-datenschutz-lohnabrechnung {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

.mistake-image-compliance-datenschutz-lohnabrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.mistake-img-compliance-datenschutz-lohnabrechnung {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .mistakes-wrapper-compliance-datenschutz-lohnabrechnung {
    flex-direction: column;
  }

  .mistake-text-compliance-datenschutz-lohnabrechnung,
  .mistake-image-compliance-datenschutz-lohnabrechnung {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.checklist-section-compliance-datenschutz-lohnabrechnung {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.checklist-title-compliance-datenschutz-lohnabrechnung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-weight: 700;
  text-align: center;
  margin: 0;
  line-height: 1.2;
}

.checklist-intro-compliance-datenschutz-lohnabrechnung {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.checklist-grid-compliance-datenschutz-lohnabrechnung {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  justify-content: center;
}

.checklist-item-compliance-datenschutz-lohnabrechnung {
  flex: 1 1 clamp(200px, 20vw, 280px);
}

.checklist-box-compliance-datenschutz-lohnabrechnung {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

.checklist-box-compliance-datenschutz-lohnabrechnung:hover {
  border-color: #3b82f6;
  background: #eef2ff;
}

.checklist-icon-compliance-datenschutz-lohnabrechnung {
  width: 32px;
  height: 32px;
  color: #10b981;
  stroke-width: 3;
  flex-shrink: 0;
}

.checklist-label-compliance-datenschutz-lohnabrechnung {
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: #0f172a;
  font-weight: 600;
  margin: 0;
  line-height: 1.5;
}

.conclusion-section-compliance-datenschutz-lohnabrechnung {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.conclusion-title-compliance-datenschutz-lohnabrechnung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  margin: 0;
  line-height: 1.2;
}

.conclusion-text-compliance-datenschutz-lohnabrechnung {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.conclusion-paragraph-compliance-datenschutz-lohnabrechnung {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.15rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin: 0;
}

.conclusion-highlight-compliance-datenschutz-lohnabrechnung {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
  border-left: 4px solid #3b82f6;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 8px;
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

.highlight-text-compliance-datenschutz-lohnabrechnung {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #bfdbfe;
  line-height: 1.7;
  margin: 0;
  font-weight: 500;
}

.disclaimer-section-compliance-datenschutz-lohnabrechnung {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

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

.disclaimer-title-compliance-datenschutz-lohnabrechnung {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: #0f172a;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.disclaimer-text-compliance-datenschutz-lohnabrechnung {
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: #475569;
  line-height: 1.8;
  margin: 0;
}

.related-section-compliance-datenschutz-lohnabrechnung {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.related-title-compliance-datenschutz-lohnabrechnung {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  margin: 0;
  line-height: 1.2;
}

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

.related-card-compliance-datenschutz-lohnabrechnung {
  flex: 1 1 clamp(250px, 28vw, 380px);
  background: #1e293b;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #334155;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-compliance-datenschutz-lohnabrechnung:hover {
  border-color: #3b82f6;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
  transform: translateY(-6px);
}

.related-image-compliance-datenschutz-lohnabrechnung {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-image-compliance-datenschutz-lohnabrechnung img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-compliance-datenschutz-lohnabrechnung:hover .related-image-compliance-datenschutz-lohnabrechnung img {
  transform: scale(1.05);
}

.related-text-compliance-datenschutz-lohnabrechnung {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.related-card-title-compliance-datenschutz-lohnabrechnung {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #ffffff;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.related-card-description-compliance-datenschutz-lohnabrechnung {
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

@media (max-width: 768px) {
  .related-cards-compliance-datenschutz-lohnabrechnung {
    flex-direction: column;
  }

  .related-card-compliance-datenschutz-lohnabrechnung {
    flex: 1 1 100%;
  }
}

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

html, body {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
}

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

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

.payroll-solutions-about {
  width: 100%;
}

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

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

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

.hero-title-about {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
  font-family: var(--font-heading);
}

.hero-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.5rem);
  color: #94a3b8;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 700px;
}

.hero-stats-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.stat-item-about {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stat-number-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #06b6d4;
  font-family: var(--font-heading);
}

.stat-label-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  text-align: center;
}

.hero-visual-about {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 8px;
  display: block;
}

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

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

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

.section-tag-about {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(79, 70, 229, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.expertise-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.expertise-subtitle-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

.expertise-grid-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.expertise-item-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.expertise-item-title-about {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: #0f172a;
  font-family: var(--font-heading);
}

.expertise-item-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.6;
}

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

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

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

.approach-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.approach-subtitle-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

.process-steps-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.process-step-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: #1e293b;
  border-radius: 8px;
  border-left: 4px solid #06b6d4;
}

.step-number-about {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #06b6d4;
  font-family: var(--font-heading);
}

.step-title-about {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  font-family: var(--font-heading);
}

.step-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.6;
}

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

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

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

.features-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.features-subtitle-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

.features-cards-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.feature-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  background: #ffffff;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-base);
}

.feature-card-about:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

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

.card-title-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  color: #0f172a;
  font-family: var(--font-heading);
}

.card-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.6;
}

.quote-section-about {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.featured-quote-about {
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(2rem, 3vw, 2.5rem);
  border-left: 4px solid #06b6d4;
  background: #0f172a;
  border-radius: 4px;
}

.quote-text-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.5rem);
  font-style: italic;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.quote-author-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #94a3b8;
  font-style: normal;
  display: block;
}

.disclaimer-section-about {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

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

.disclaimer-title-about {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: #0f172a;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-text-about {
  font-size: clamp(0.8rem, 0.9vw + 0.5rem, 0.95rem);
  color: #475569;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero-stats-about {
    gap: clamp(2rem, 4vw, 3.5rem);
  }

  .expertise-grid-about {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2rem, 4vw, 3rem);
  }

  .features-cards-about {
    gap: clamp(1.5rem, 4vw, 2.5rem);
  }

  .feature-card-about {
    flex: 1 1 300px;
  }
}

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

  .features-cards-about {
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .feature-card-about {
    flex: 1 1 320px;
    max-width: none;
  }
}

.services-page {
  width: 100%;
  overflow: hidden;
}

.services-hero {
  background-color: var(--color-primary);
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
}

.services-hero-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-bg-tertiary);
  margin: 0;
  margin-bottom: var(--space-sm);
}

.services-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.6;
  max-width: 600px;
}

@media (min-width: 768px) {
  .services-hero {
    padding: var(--space-3xl) var(--space-lg);
  }

  .services-hero-title {
    margin-bottom: var(--space-md);
  }

  .services-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: 5rem var(--space-xl);
  }
}

.services-content {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

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

  .services-content {
    padding: var(--space-3xl) var(--space-lg);
  }
}

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

  .services-content {
    padding: 5rem var(--space-xl);
  }
}

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

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

.service-card-icon {
  width: 56px;
  height: 56px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--color-primary);
  font-size: 1.75rem;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
  margin-bottom: var(--space-sm);
}

.service-card-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .service-card {
    padding: var(--space-xl);
  }

  .service-card-icon {
    width: 64px;
    height: 64px;
    font-size: 2rem;
  }
}

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

.services-cta {
  background-color: var(--color-secondary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.services-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--color-bg-tertiary);
  margin: 0;
  margin-bottom: var(--space-md);
}

.services-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.services-cta-button {
  display: inline-block;
  background-color: var(--color-bg-tertiary);
  color: var(--color-secondary);
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 1.5vw, 1rem);
  font-weight: 600;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-base);
  border: 2px solid var(--color-bg-tertiary);
}

.services-cta-button:hover {
  background-color: transparent;
  color: var(--color-bg-tertiary);
}

@media (min-width: 768px) {
  .services-cta {
    padding: var(--space-3xl) var(--space-lg);
  }

  .services-cta-title {
    margin-bottom: var(--space-lg);
  }

  .services-cta-text {
    margin-bottom: var(--space-xl);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
  }

  .services-cta-button {
    padding: var(--space-md) var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .services-cta {
    padding: 5rem var(--space-xl);
  }

  .services-cta-title {
    margin-bottom: var(--space-lg);
  }
}

.portfolio-page {
  background-color: var(--color-bg-primary);
}

.portfolio-hero {
  background-color: var(--color-primary);
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
}

.portfolio-hero__container {
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #ffffff;
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.portfolio-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #e0e7ff;
  margin: 0;
  font-weight: 300;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .portfolio-hero {
    padding: var(--space-2xl) var(--space-lg);
  }

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

@media (min-width: 1024px) {
  .portfolio-hero {
    padding: var(--space-3xl) var(--space-xl);
  }
}

.portfolio-projects {
  background-color: var(--color-bg-primary);
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
}

.portfolio-projects__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .portfolio-projects {
    padding: var(--space-2xl) var(--space-lg);
  }

  .portfolio-projects__container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .portfolio-projects {
    padding: var(--space-3xl) var(--space-xl);
  }

  .portfolio-projects__container {
    grid-template-columns: 1fr 1fr;
  }
}

.portfolio-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.portfolio-card__image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background-color: var(--color-bg-secondary);
}

.portfolio-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .portfolio-card__image {
    height: 280px;
  }
}

.portfolio-card__content {
  padding: var(--space-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.portfolio-card__category {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  background-color: var(--color-primary-light);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}

.portfolio-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  font-weight: 600;
  line-height: 1.3;
}

.portfolio-card__description {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.6;
  flex-grow: 1;
}

.portfolio-card__detail {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
  font-weight: 500;
}

.portfolio-cta {
  background-color: var(--color-bg-secondary);
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
}

.portfolio-cta__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
  line-height: 1.3;
}

.portfolio-cta__text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.6;
}

.portfolio-cta__button {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  background-color: var(--color-primary);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background-color var(--transition-base), transform var(--transition-base);
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-md);
}

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

.portfolio-cta__button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .portfolio-cta {
    padding: var(--space-2xl) var(--space-lg);
  }

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

@media (min-width: 1024px) {
  .portfolio-cta {
    padding: var(--space-3xl) var(--space-xl);
  }
}

.legal-portal {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

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

.legal-portal .legal-portal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) 0;
}

.legal-portal h1 {
  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;
  line-height: 1.3;
}

.legal-portal .updated-date {
  font-size: clamp(0.85rem, 0.9vw + 0.5rem, 1rem);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
  font-style: italic;
}

.legal-portal h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-primary);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  font-weight: 700;
  line-height: 1.4;
}

.legal-portal p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.legal-portal ul {
  margin: var(--space-md) 0 var(--space-lg) var(--space-lg);
  list-style: none;
}

.legal-portal li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
  padding-left: var(--space-md);
  position: relative;
}

.legal-portal li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.legal-portal .contact-section {
  background-color: var(--color-bg-tertiary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-top: var(--space-3xl);
}

.legal-portal .contact-section h2 {
  margin-top: 0;
}

.legal-portal .contact-section p {
  margin-bottom: var(--space-md);
}

.legal-portal .contact-section strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

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

  .legal-portal .legal-portal-content {
    padding: var(--space-2xl) 0;
  }

  .legal-portal .contact-section {
    padding: var(--space-lg);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .legal-portal .legal-portal-content {
    padding: var(--space-2xl) var(--space-lg);
  }
}

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

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

html {
  scroll-behavior: smooth;
}

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

main {
  min-height: 100vh;
  display: flex;

  justify-content: center;
}

.thank-section {
  width: 100%;
  padding: var(--space-lg);
  background-color: var(--color-bg-primary);
  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;
}

.thank-wrapper {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  background-color: var(--color-bg-tertiary);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.thank-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(80px, 15vw, 120px);
  height: clamp(80px, 15vw, 120px);
  margin: 0 auto var(--space-lg);
  background-color: var(--color-primary-light);
  border-radius: 50%;
  color: var(--color-primary);
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thank-icon svg {
  width: 60%;
  height: 60%;
  stroke-width: 1.5;
}

h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.5px;
}

.thank-lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.thank-description {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.thank-next {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  letter-spacing: 0.3px;
}

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

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 480px) {
  .thank-wrapper {
    padding: var(--space-2xl) var(--space-lg);
  }

  .thank-section {
    padding: var(--space-xl);
  }
}

@media (min-width: 768px) {
  .thank-wrapper {
    padding: var(--space-3xl) var(--space-2xl);
  }

  .thank-section {
    padding: var(--space-2xl) var(--space-lg);
  }

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

  .btn {
    padding: 0.875rem 2rem;
  }
}

@media (min-width: 1024px) {
  .thank-wrapper {
    padding: 4rem 3rem;
  }

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

  .thank-icon {
    margin-bottom: var(--space-2xl);
  }

  .thank-description,
  .thank-next {
    margin-bottom: var(--space-lg);
  }

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

  .btn:hover {
    transform: translateY(-3px);
  }
}

@media (max-width: 479px) {
  body {
    padding: 0;
  }

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

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

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

.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  width: 100%;
  padding: var(--space-lg) var(--space-sm);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-2xl) var(--space-lg);
  }
}

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

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

.content {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.error-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2xl);
}

@media (min-width: 768px) {
  .error-wrapper {
    gap: var(--space-3xl);
  }
}

.error-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.error-code-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.05em;
  line-height: 1;
  position: relative;
  z-index: 2;
}

.error-decoration {
  position: absolute;
  width: clamp(150px, 40vw, 300px);
  height: clamp(150px, 40vw, 300px);
  background-color: var(--color-primary-light);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 1;
  animation: pulse-decoration 3s ease-in-out infinite;
}

@keyframes pulse-decoration {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.5;
  }
}

.error-message {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  width: 100%;
}

.error-title {
  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.3;
}

.error-description {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.8;
}

.error-suggestions {
  background-color: var(--color-bg-tertiary);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  text-align: left;
  box-shadow: var(--shadow-sm);
}

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

.suggestions-label {
  font-size: clamp(0.85rem, 0.9vw + 0.5rem, 1rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
}

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

.suggestion-item {
  font-size: clamp(0.9rem, 0.95vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  padding-left: var(--space-md);
  position: relative;
}

.suggestion-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--color-primary);
  border-radius: 50%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  min-width: 200px;
}

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

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

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

@media (max-width: 480px) {
  .error-code-wrapper {
    margin-bottom: var(--space-lg);
  }

  .btn {
    width: 100%;
    min-width: unset;
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl) var(--space-2xl);
  }
}

.contact-page-contact {
  background-color: var(--color-bg-primary);
  width: 100%;
  overflow: hidden;
}

.contact-page-hero {
  background-color: var(--color-primary);
  padding: 3rem 1rem;
  overflow: hidden;
}

.contact-page-hero-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
}

.contact-page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.contact-page-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #e0e7ff;
  margin: 0;
  line-height: 1.6;
  max-width: 600px;
}

@media (min-width: 768px) {
  .contact-page-hero {
    padding: 4rem 1rem;
  }
}

@media (min-width: 1024px) {
  .contact-page-hero {
    padding: 5rem 1rem;
  }
}

.contact-page-main {
  background-color: var(--color-bg-primary);
  padding: 3rem 1rem;
  overflow: hidden;
}

.contact-page-main-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
}

.contact-page-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.contact-page-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-page-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .contact-page-grid {
    gap: 2rem;
  }

  .contact-page-form-wrapper {
    flex: 1 1 45%;
  }

  .contact-page-info-wrapper {
    flex: 1 1 45%;
  }
}

@media (min-width: 1024px) {
  .contact-page-grid {
    gap: 3rem;
  }

  .contact-page-form-wrapper {
    flex: 1 1 48%;
  }

  .contact-page-info-wrapper {
    flex: 1 1 48%;
  }
}

.contact-page-form-header {
  margin-bottom: 2rem;
}

.contact-page-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 0.5rem 0;
}

.contact-page-form-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.contact-page-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-page-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-page-label {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 0.9vw, 0.95rem);
  font-weight: 600;
  color: var(--color-text-primary);
  display: block;
}

.contact-page-input,
.contact-page-textarea {
  font-family: var(--font-primary);
  font-size: 1rem;
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  transition: all var(--transition-base);
  box-sizing: border-box;
}

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

.contact-page-input:focus,
.contact-page-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: var(--color-bg-card);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

.contact-page-textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--font-primary);
}

.contact-page-form-privacy {
  padding: 1rem;
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
}

.contact-page-privacy-text {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 0.9vw, 0.95rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.5;
}

.contact-page-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-base);
}

.contact-page-privacy-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-page-submit {
  width: 100%;
  padding: 1rem 2rem;
  background-color: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.contact-page-submit:active {
  transform: translateY(0);
}

.contact-page-info-header {
  margin-bottom: 2.5rem;
}

.contact-page-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 0.5rem 0;
}

.contact-page-info-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.contact-page-info-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-page-info-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-page-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.contact-page-info-content {
  flex: 1;
}

.contact-page-info-item-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 0.5rem 0;
}

.contact-page-info-item-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0 0 0.5rem 0;
  line-height: 1.6;
}

.contact-page-info-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-base);
}

.contact-page-info-link:hover {
  color: var(--color-primary-hover);
}

.contact-page-info-hours {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.85vw, 0.9rem);
  color: var(--color-text-muted);
  margin: 0;
  font-style: italic;
}

.contact-page-info-benefits {
  padding: 2rem;
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.contact-page-benefits-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 1.5rem 0;
}

.contact-page-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-page-benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.contact-page-benefit-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-success);
  color: #ffffff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .contact-page-main {
    padding: 4rem 1rem;
  }
}

@media (min-width: 1024px) {
  .contact-page-main {
    padding: 5rem 1rem;
  }
}

@media (max-width: 767px) {
  .contact-page-form-wrapper,
  .contact-page-info-wrapper {
    flex: 1 1 100%;
  }

  .contact-page-info-item {
    gap: 1rem;
  }

  .contact-page-info-icon {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
  }
}
.header-lohn-deck {
  background: var(--color-bg-tertiary);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

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

.header-lohn-deck-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.header-lohn-deck-brand:hover {
  opacity: 0.8;
}

.header-lohn-deck-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.header-lohn-deck-logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.header-lohn-deck-desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.header-lohn-deck-nav-link {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
}

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

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

.header-lohn-deck-nav-link:hover::after {
  width: 100%;
}

.header-lohn-deck-cta-button {
  display: none;
  padding: 0.625rem 1.5rem;
  background: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  white-space: nowrap;
}

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

.header-lohn-deck-mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  transition: opacity var(--transition-fast);
}

.header-lohn-deck-mobile-toggle:hover {
  opacity: 0.7;
}

.header-lohn-deck-mobile-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.header-lohn-deck-mobile-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header-lohn-deck-mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.header-lohn-deck-mobile-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.header-lohn-deck-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: var(--color-bg-tertiary);
  box-shadow: var(--shadow-xl);
  transition: right var(--transition-slow);
  z-index: 1001;
  overflow-y: auto;
}

.header-lohn-deck-mobile-menu.active {
  right: 0;
}

.header-lohn-deck-mobile-header {
  display: flex;
  justify-content: flex-end;
  padding: 1.25rem;
  border-bottom: 1px solid var(--color-border);
}

.header-lohn-deck-mobile-close {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-primary);
  font-size: 1.5rem;
  transition: opacity var(--transition-fast);
  border-radius: var(--radius-md);
}

.header-lohn-deck-mobile-close:hover {
  background: var(--color-bg-secondary);
}

.header-lohn-deck-mobile-links {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  gap: 0.5rem;
}

.header-lohn-deck-mobile-link {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.header-lohn-deck-mobile-link:hover {
  background: var(--color-bg-secondary);
  color: var(--color-primary);
}

.header-lohn-deck-mobile-cta {
  margin-top: 1rem;
  padding: 0.875rem 1.5rem;
  background: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

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

@media (min-width: 768px) {
  .header-lohn-deck-desktop-nav {
    display: flex;
  }

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

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

  .header-lohn-deck-mobile-menu {
    display: none;
  }
}
main{
  display: flex;
  flex-direction: column;
}