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

:root {
  
  
  
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f8fafc;
  --color-bg-card-dark: rgba(255, 255, 255, 0.05);
  --color-bg-card-light: #ffffff;
  
  
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #94a3b8;
  --color-text-dark-muted: #64748b;
  
  --color-text-light-primary: #0f172a;
  --color-text-light-secondary: #475569;
  --color-text-light-muted: #94a3b8;
  
  
  --color-primary: #10b981;
  --color-primary-hover: #059669;
  --color-primary-light: #d1fae5;
  --color-secondary: #3b82f6;
  --color-secondary-hover: #2563eb;
  --color-accent-gold: #f59e0b;
  --color-accent-red: #ef4444;
  
  
  --font-primary: 'Sora', 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(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  
  
  --z-dropdown: 100;
  --z-modal: 1000;
  --z-tooltip: 1100;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: var(--space-md);
}

h4 {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

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

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

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

.section-hero {
  background: var(--color-bg-primary);
  color: var(--color-text-dark-primary);
  padding: var(--space-3xl) var(--space-md);
  position: relative;
  overflow: hidden;
}

.section-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.section-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.section-hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 700px;
  animation: slideInUp 0.8s ease-out;
}

.hero-content h1 {
  color: var(--color-text-dark-primary);
  margin-bottom: var(--space-lg);
  font-weight: 700;
}

.hero-content p {
  color: var(--color-text-dark-secondary);
  font-size: 1.125rem;
  margin-bottom: var(--space-xl);
  max-width: 600px;
}

.hero-badge {
  display: inline-block;
  background: var(--color-bg-card-dark);
  color: var(--color-primary);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-2xl);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-lg);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.section-features {
  background: var(--color-bg-secondary);
  color: var(--color-text-light-primary);
  padding: var(--space-3xl) var(--space-md);
}

.section-features .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

.features-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.features-header h2 {
  color: var(--color-text-light-primary);
  margin-bottom: var(--space-md);
}

.features-header p {
  color: var(--color-text-light-secondary);
  font-size: 1.0625rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.feature-card {
  background: var(--color-bg-tertiary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

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

.feature-card h3 {
  color: var(--color-text-light-primary);
  margin-bottom: var(--space-sm);
}

.feature-card p {
  color: var(--color-text-light-secondary);
  margin-bottom: 0;
  font-size: 0.9375rem;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  font-size: 1.5rem;
}

.section-process {
  background: var(--color-bg-primary);
  color: var(--color-text-dark-primary);
  padding: var(--space-3xl) var(--space-md);
  position: relative;
  overflow: hidden;
}

.section-process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-primary), transparent);
  transform: translateX(-50%);
  opacity: 0.5;
}

.process-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  position: relative;
  z-index: 1;
}

.process-header h2 {
  color: var(--color-text-dark-primary);
  margin-bottom: var(--space-md);
}

.process-header p {
  color: var(--color-text-dark-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.timeline-item {
  position: relative;
  padding-left: var(--space-lg);
}

.timeline-item::before {
  content: attr(data-step);
  position: absolute;
  left: -8px;
  top: 0;
  width: 24px;
  height: 24px;
  background: var(--color-primary);
  border: 3px solid var(--color-bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-bg-primary);
  box-shadow: 0 0 0 4px var(--color-bg-card-dark);
}

.timeline-item h4 {
  color: var(--color-text-dark-primary);
  margin-bottom: var(--space-sm);
}

.timeline-item p {
  color: var(--color-text-dark-secondary);
  margin-bottom: 0;
  font-size: 0.9375rem;
}

.section-benefits {
  background: var(--color-bg-tertiary);
  color: var(--color-text-light-primary);
  padding: var(--space-3xl) var(--space-md);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.benefit-box {
  background: var(--color-bg-secondary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  border-top: 3px solid var(--color-secondary);
}

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

.benefit-icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.benefit-box h3 {
  color: var(--color-text-light-primary);
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.benefit-box p {
  color: var(--color-text-light-secondary);
  margin-bottom: 0;
  font-size: 0.9375rem;
}

.section-cta {
  background: var(--color-bg-primary);
  color: var(--color-text-dark-primary);
  padding: var(--space-3xl) var(--space-md);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--color-text-dark-primary);
  margin-bottom: var(--space-lg);
}

.cta-content p {
  color: var(--color-text-dark-secondary);
  font-size: 1.0625rem;
  margin-bottom: var(--space-xl);
}

.section-services {
  background: var(--color-bg-secondary);
  color: var(--color-text-light-primary);
  padding: var(--space-3xl) var(--space-md);
}

.services-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.services-header h2 {
  color: var(--color-text-light-primary);
}

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

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
}

.service-item {
  padding: var(--space-lg);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.1);
  transition: all 0.3s ease;
}

.service-item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.service-number {
  display: inline-block;
  width: 36px;
  height: 36px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: var(--space-md);
}

.service-item h3 {
  color: var(--color-text-light-primary);
  margin-bottom: var(--space-sm);
}

.service-item p {
  color: var(--color-text-light-secondary);
  margin-bottom: 0;
  font-size: 0.9375rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-primary);
  text-decoration: none;
  white-space: nowrap;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

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

.card {
  background: var(--color-bg-card-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

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

.card-dark {
  background: var(--color-bg-card-dark);
  color: var(--color-text-dark-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

.badge-success {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

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

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-sm);
  }
  
  h1 {
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .section-hero,
  .section-features,
  .section-process,
  .section-benefits,
  .section-cta,
  .section-services {
    padding: var(--space-2xl) var(--space-sm);
  }
  
  .features-grid,
  .benefits-grid,
  .services-list {
    grid-template-columns: 1fr;
  }
  
  .process-timeline {
    grid-template-columns: 1fr;
  }
  
  .section-process::before {
    display: none;
  }
  
  .timeline-item {
    padding-left: var(--space-xl);
  }
}

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

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

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

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

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

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

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

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

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

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

.btn:focus,
a:focus,
button:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

@media print {
  .no-print {
    display: none;
  }
}
.header-payroll-hub {
  background: var(--color-bg-primary);
  padding: 1rem 0;
  position: static;
  z-index: 99;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.header-payroll-hub-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

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

.header-payroll-hub-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  letter-spacing: -0.5px;
}

.header-payroll-hub-desktop-nav {
  display: none;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 2rem);
  flex: 1;
  justify-content: center;
}

.header-payroll-hub-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.header-payroll-hub-nav-link:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.header-payroll-hub-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-text-dark-primary);
  border-radius: 6px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

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

.header-payroll-hub-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 101;
}

.header-payroll-hub-mobile-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--color-text-dark-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header-payroll-hub-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.header-payroll-hub-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.header-payroll-hub-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.header-payroll-hub-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-primary);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.3s ease;
  z-index: 100;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

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

.header-payroll-hub-mobile-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-payroll-hub-mobile-close {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-text-dark-primary);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.header-payroll-hub-mobile-close:hover {
  color: var(--color-primary);
}

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

.header-payroll-hub-mobile-link {
  padding: 1rem 1.5rem;
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.header-payroll-hub-mobile-link:hover {
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-primary);
  padding-left: 2rem;
}

.header-payroll-hub-mobile-cta {
  padding: 1rem 1.5rem;
  margin: 1rem;
  background: var(--color-primary);
  color: var(--color-text-dark-primary);
  border-radius: 6px;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}

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

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

  .header-payroll-hub-mobile-menu {
    display: none;
  }

  .header-payroll-hub-desktop-nav {
    display: flex;
  }

  .header-payroll-hub-cta-button {
    display: block;
  }
}

    .payroll-hub {
  width: 100%;
}

.hero-section-index {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a2332 100%);
  color: #ffffff;
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-index::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section-index::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero-badge-index {
  display: inline-block;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  padding: clamp(0.4rem, 1vw, 0.6rem) clamp(0.8rem, 2vw, 1.2rem);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  font-weight: 600;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid rgba(16, 185, 129, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.hero-text-index {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: #94a3b8;
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.8;
  max-width: 650px;
}

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

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

.hero-stats-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(1.5rem, 2vw, 2rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item-index {
  display: flex;
  flex-direction: column;
  gap: clamp(0.3rem, 0.5vw, 0.5rem);
}

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

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

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

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

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

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

.features-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 0;
}

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

.feature-card-index {
  flex: 1 1 clamp(280px, 30%, 380px);
  background: #f8fafc;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 12px;
  border-left: 4px solid #10b981;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.feature-card-index:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-icon-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #d1fae5;
  color: #10b981;
  border-radius: 10px;
  margin-bottom: clamp(1rem, 1.5vw, 1.5rem);
  font-size: 1.5rem;
}

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

.feature-card-text-index {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #475569;
  margin-bottom: 0;
  line-height: 1.6;
}

.process-section-index {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.process-section-index::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #10b981, transparent);
  transform: translateX(-50%);
  opacity: 0.3;
}

.process-content-index {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 5vw, 4rem);
}

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

.process-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 1.5vw, 1.5rem);
}

.process-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: 0;
}

.process-timeline-index {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(2rem, 3vw, 2.5rem);
  max-width: 1200px;
  margin: 0 auto;
}

.timeline-item-index {
  position: relative;
  padding-left: clamp(2rem, 3vw, 2.5rem);
}

.timeline-item-index::before {
  content: attr(data-step);
  position: absolute;
  left: -12px;
  top: 0;
  width: 32px;
  height: 32px;
  background: #10b981;
  border: 3px solid #0a0f1e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #0a0f1e;
  box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.1);
}

.timeline-title-index {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: #ffffff;
  margin-bottom: clamp(0.5rem, 0.75vw, 0.75rem);
  font-weight: 600;
}

.timeline-text-index {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 0;
}

.blog-preview-section-index {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.blog-preview-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 4vw, 3.5rem);
}

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

.blog-preview-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 1.5vw, 1.5rem);
}

.blog-preview-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 0;
}

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

.featured-card-index {
  flex: 1 1 clamp(300px, 30%, 400px);
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

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

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

.card-img-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-card-index:hover .card-img-index {
  transform: scale(1.05);
}

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

.card-title-index {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: #0f172a;
  margin-bottom: clamp(0.5rem, 0.75vw, 0.75rem);
  font-weight: 600;
  line-height: 1.4;
}

.card-text-index {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #475569;
  line-height: 1.6;
  margin-bottom: clamp(1rem, 1.5vw, 1.5rem);
  flex: 1;
}

.card-link-index {
  display: inline-block;
  color: #10b981;
  font-weight: 600;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  transition: color 0.3s ease;
}

.card-link-index:hover {
  color: #059669;
}

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

.about-section-index {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.about-content-index {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 4rem);
  align-items: center;
}

.about-text-index {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 1.5vw, 1.5rem);
}

.about-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #0f172a;
  margin-bottom: 0;
}

.about-description-index {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 0;
}

.about-highlights-index {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1vw, 1rem);
  padding-top: clamp(0.5rem, 1vw, 1rem);
}

.highlight-item-index {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1vw, 1rem);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: #0f172a;
}

.highlight-item-index i {
  color: #10b981;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.highlight-text-index {
  display: block;
}

.about-image-index {
  width: 100%;
  height: auto;
  max-height: 450px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

.faq-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 0;
}

.faq-list-index {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 2vw, 2rem);
  max-width: 900px;
  margin: 0 auto;
}

.faq-item-index {
  background: #ffffff;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 12px;
  border-left: 4px solid #10b981;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.faq-question-index {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: #0f172a;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  font-weight: 600;
}

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

.statistics-section-index {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.statistics-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 1.5vw, 1.5rem);
}

.statistics-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: 0;
}

.statistics-grid-index {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(2rem, 3vw, 2.5rem);
}

.stat-card-index {
  background: rgba(16, 185, 129, 0.1);
  padding: clamp(2rem, 3vw, 2.5rem);
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card-index:hover {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
}

.stat-card-number-index {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #10b981;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.stat-card-text-index {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 0;
}

.cta-section-index {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(4rem, 8vw, 6rem) 0;
  text-align: center;
  overflow: hidden;
}

.cta-content-index {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 1.5vw, 1.5rem);
}

.cta-text-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
}

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

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

.cookie-banner-text-index {
  flex: 1 1 auto;
  min-width: 250px;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

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

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: clamp(0.5rem, 0.75vw, 0.75rem) clamp(1rem, 1.5vw, 1.5rem);
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  transition: all 0.3s ease;
  font-family: 'Sora', sans-serif;
  white-space: nowrap;
}

.cookie-btn-accept-index {
  background: #10b981;
  color: #ffffff;
}

.cookie-btn-accept-index:hover {
  background: #059669;
  transform: translateY(-2px);
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1vw, 1rem) clamp(1.5rem, 2vw, 2rem);
  border-radius: 10px;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw, 1rem);
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Sora', sans-serif;
  text-decoration: none;
  white-space: nowrap;
  gap: 0.5rem;
}

.btn-primary {
  background: #10b981;
  color: #ffffff;
}

.btn-primary:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
  background: #3b82f6;
  color: #ffffff;
}

.btn-secondary:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-outline {
  background: transparent;
  color: #10b981;
  border: 2px solid #10b981;
}

.btn-outline:hover {
  background: #10b981;
  color: #ffffff;
}

.btn-lg {
  padding: clamp(1rem, 1.25vw, 1.25rem) clamp(2rem, 3vw, 2.5rem);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
}

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

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

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

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

  .hero-stats-index {
    flex-direction: column;
    gap: 1.5rem;
    border-top: none;
    padding-top: 0;
  }

  .about-content-index {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cookie-banner {
    flex-direction: column;
    padding: 1rem;
  }

  .cookie-banner-text-index {
    order: 1;
    min-width: 100%;
  }

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

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

@media (max-width: 480px) {
  .featured-cards-index {
    gap: 1rem;
  }

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

  .statistics-grid-index {
    grid-template-columns: 1fr;
  }

  .stat-card-number-index {
    font-size: 1.75rem;
  }
}

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

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

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

.footer-about {
  max-width: 420px;
}

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

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

.footer-sections {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.footer-column {
  flex: 1 1 180px;
  min-width: 160px;
}

.footer-column h4 {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--color-text-dark-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.3px;
}

.footer-nav,
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1.5vw, 0.875rem);
}

.footer-link {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  transition: all 0.25s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
  display: inline-block;
}

.footer-link:hover {
  color: var(--color-primary);
  padding-left: 4px;
}

.footer-contact {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
}

.footer-contact p {
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.footer-copyright {
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

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

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

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

  .footer-nav,
  .footer-legal {
    gap: clamp(0.5rem, 1vw, 0.75rem);
  }

  .footer-link:hover {
    padding-left: 0;
  }
}
    

.category-page-payroll-processing-germany {
  background: #ffffff;
  color: #0f172a;
}

.hero-section-payroll-processing-germany {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-payroll-processing-germany::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section-payroll-processing-germany::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content-payroll-processing-germany {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-badge-payroll-processing-germany {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

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

.hero-description-payroll-processing-germany {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #94a3b8;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.8;
}

.hero-meta-payroll-processing-germany {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-meta-item-payroll-processing-germany {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #cbd5e1;
  font-size: 0.9375rem;
}

.hero-meta-item-payroll-processing-germany i {
  color: #10b981;
  font-size: 1.125rem;
}

.posts-section-payroll-processing-germany {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

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

.posts-subtitle-payroll-processing-germany {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  margin-bottom: 0;
  line-height: 1.8;
}

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

.card-payroll-processing-germany {
  flex: 1 1 clamp(300px, 45vw, 380px);
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e2e8f0;
}

.card-payroll-processing-germany:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  border-color: #10b981;
}

.card-image-wrapper-payroll-processing-germany {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f8fafc;
}

.card-image-payroll-processing-germany {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-title-payroll-processing-germany {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  color: #0f172a;
  margin-top: clamp(1rem, 2vw, 1.5rem);
  margin-left: clamp(1rem, 3vw, 1.5rem);
  margin-right: clamp(1rem, 3vw, 1.5rem);
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.card-description-payroll-processing-germany {
  font-size: 0.9375rem;
  color: #475569;
  margin-left: clamp(1rem, 3vw, 1.5rem);
  margin-right: clamp(1rem, 3vw, 1.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  flex-grow: 1;
  line-height: 1.6;
}

.card-meta-payroll-processing-germany {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-left: clamp(1rem, 3vw, 1.5rem);
  margin-right: clamp(1rem, 3vw, 1.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  padding-bottom: clamp(1rem, 2vw, 1.5rem);
  border-bottom: 1px solid #e2e8f0;
}

.card-meta-item-payroll-processing-germany {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #64748b;
  font-weight: 500;
}

.card-meta-item-payroll-processing-germany i {
  color: #10b981;
  font-size: 0.875rem;
}

.card-link-payroll-processing-germany {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #10b981;
  color: #ffffff;
  padding: 0.75rem clamp(1rem, 3vw, 1.5rem);
  margin: 0 clamp(1rem, 3vw, 1.5rem) clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.card-link-payroll-processing-germany:hover {
  background: #059669;
  transform: translateX(4px);
}

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

.checklist-content-payroll-processing-germany {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.checklist-header-payroll-processing-germany {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.checklist-title-payroll-processing-germany {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 700;
}

.checklist-subtitle-payroll-processing-germany {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  margin-bottom: 0;
  line-height: 1.8;
}

.checklist-items-payroll-processing-germany {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
}

.checklist-item-payroll-processing-germany {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #10b981;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.checklist-item-payroll-processing-germany:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.checklist-check-payroll-processing-germany {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #d1fae5;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}

.checklist-check-payroll-processing-germany i {
  color: #10b981;
  font-size: 1rem;
  font-weight: 700;
}

.checklist-text-payroll-processing-germany {
  flex-grow: 1;
}

.checklist-item-title-payroll-processing-germany {
  font-size: 1rem;
  color: #0f172a;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.checklist-item-description-payroll-processing-germany {
  font-size: 0.9375rem;
  color: #475569;
  margin-bottom: 0;
  line-height: 1.6;
}

.info-section-payroll-processing-germany {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.info-content-payroll-processing-germany {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.info-header-payroll-processing-germany {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.info-title-payroll-processing-germany {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 700;
}

.info-subtitle-payroll-processing-germany {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #94a3b8;
  margin-bottom: 0;
  line-height: 1.8;
}

.info-boxes-payroll-processing-germany {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
}

.info-box-payroll-processing-germany {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.info-box-payroll-processing-germany:hover {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.5);
  transform: translateY(-4px);
}

.info-box-icon-payroll-processing-germany {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #10b981;
  color: #0a0f1e;
  border-radius: 12px;
  font-size: 1.5rem;
}

.info-box-title-payroll-processing-germany {
  font-size: 1.125rem;
  color: #ffffff;
  margin-bottom: 0;
  font-weight: 700;
}

.info-box-text-payroll-processing-germany {
  font-size: 0.9375rem;
  color: #cbd5e1;
  margin-bottom: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero-section-payroll-processing-germany,
  .posts-section-payroll-processing-germany,
  .checklist-section-payroll-processing-germany,
  .info-section-payroll-processing-germany {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .hero-section-payroll-processing-germany::before,
  .hero-section-payroll-processing-germany::after {
    display: none;
  }

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

  .card-payroll-processing-germany {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .checklist-items-payroll-processing-germany {
    grid-template-columns: 1fr;
  }

  .info-boxes-payroll-processing-germany {
    grid-template-columns: 1fr;
  }

  .hero-meta-payroll-processing-germany {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-meta-item-payroll-processing-germany {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .card-image-wrapper-payroll-processing-germany {
    height: 150px;
  }

  .card-title-payroll-processing-germany {
    font-size: 1rem;
    margin-top: 0.75rem;
  }

  .card-meta-payroll-processing-germany {
    gap: 0.75rem;
  }

  .checklist-item-payroll-processing-germany {
    gap: 0.75rem;
    padding: 1rem;
  }

  .checklist-check-payroll-processing-germany {
    width: 28px;
    height: 28px;
  }

  .info-box-icon-payroll-processing-germany {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .posts-grid-payroll-processing-germany {
    gap: clamp(1.5rem, 2vw, 2.5rem);
  }

  .card-payroll-processing-germany {
    flex: 1 1 calc(50% - 1rem);
    max-width: 450px;
  }

  .checklist-items-payroll-processing-germany {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-boxes-payroll-processing-germany {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

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

.main-jahressteuerbescheinigung-erklarung {
  width: 100%;
  overflow-x: hidden;
}

.hero-section-jahressteuerbescheinigung-erklarung {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.hero-section-jahressteuerbescheinigung-erklarung::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section-jahressteuerbescheinigung-erklarung::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section-jahressteuerbescheinigung-erklarung .container {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 1;
}

.breadcrumbs-jahressteuerbescheinigung-erklarung {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #94a3b8;
}

.breadcrumbs-jahressteuerbescheinigung-erklarung a {
  color: #10b981;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-jahressteuerbescheinigung-erklarung a:hover {
  color: #059669;
  text-decoration: underline;
}

.breadcrumbs-jahressteuerbescheinigung-erklarung span {
  color: #64748b;
}

.hero-content-jahressteuerbescheinigung-erklarung {
  max-width: 700px;
  animation: slideInUp 0.8s ease-out;
}

.hero-badge-jahressteuerbescheinigung-erklarung {
  display: inline-block;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.hero-badge-jahressteuerbescheinigung-erklarung span {
  color: #10b981;
}

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

.hero-text-jahressteuerbescheinigung-erklarung {
  color: #94a3b8;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  max-width: 600px;
}

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

.meta-item-jahressteuerbescheinigung-erklarung {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
  font-size: 0.9375rem;
}

.meta-item-jahressteuerbescheinigung-erklarung i {
  color: #10b981;
  font-size: 1rem;
}

.hero-image-jahressteuerbescheinigung-erklarung {
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
}

.hero-img-jahressteuerbescheinigung-erklarung {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (min-width: 768px) {
  .hero-section-jahressteuerbescheinigung-erklarung .container {
    flex-direction: row;
    align-items: center;
    gap: clamp(3rem, 5vw, 4rem);
  }

  .hero-content-jahressteuerbescheinigung-erklarung {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .hero-image-jahressteuerbescheinigung-erklarung {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

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

.intro-wrapper-jahressteuerbescheinigung-erklarung {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.intro-text-jahressteuerbescheinigung-erklarung {
  flex: 1 1 100%;
  max-width: 100%;
}

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

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

.intro-highlight-jahressteuerbescheinigung-erklarung {
  background: #f0fdf4;
  border-left: 4px solid #10b981;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: 8px;
  margin: clamp(1.5rem, 2vw, 2rem) 0;
}

.highlight-text-jahressteuerbescheinigung-erklarung {
  color: #166534;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

.highlight-text-jahressteuerbescheinigung-erklarung strong {
  color: #15803d;
  font-weight: 600;
}

.intro-image-jahressteuerbescheinigung-erklarung {
  flex: 1 1 100%;
  max-width: 100%;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.intro-img-jahressteuerbescheinigung-erklarung {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (min-width: 768px) {
  .intro-wrapper-jahressteuerbescheinigung-erklarung {
    flex-direction: row;
    align-items: center;
  }

  .intro-text-jahressteuerbescheinigung-erklarung {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .intro-image-jahressteuerbescheinigung-erklarung {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

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

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

.content-text-jahressteuerbescheinigung-erklarung {
  flex: 1 1 100%;
  max-width: 100%;
}

.content-title-jahressteuerbescheinigung-erklarung {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-paragraph-jahressteuerbescheinigung-erklarung {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.content-list-jahressteuerbescheinigung-erklarung {
  margin: clamp(1.5rem, 2vw, 2rem) 0;
  background: #ffffff;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 8px;
  border-left: 4px solid #3b82f6;
}

.list-title-jahressteuerbescheinigung-erklarung {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.content-ul-jahressteuerbescheinigung-erklarung {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-item-jahressteuerbescheinigung-erklarung {
  color: #475569;
  font-size: 0.9375rem;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  position: relative;
}

.list-item-jahressteuerbescheinigung-erklarung::before {
  content: '';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
}

.list-item-jahressteuerbescheinigung-erklarung:last-child {
  margin-bottom: 0;
}

.content-image-jahressteuerbescheinigung-erklarung {
  flex: 1 1 100%;
  max-width: 100%;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.content-img-jahressteuerbescheinigung-erklarung {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (min-width: 768px) {
  .content-wrapper-jahressteuerbescheinigung-erklarung {
    flex-direction: row;
    align-items: center;
  }

  .content-text-jahressteuerbescheinigung-erklarung {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .content-image-jahressteuerbescheinigung-erklarung {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.details-section-jahressteuerbescheinigung-erklarung {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.details-wrapper-jahressteuerbescheinigung-erklarung {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.details-image-jahressteuerbescheinigung-erklarung {
  flex: 1 1 100%;
  max-width: 100%;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.details-img-jahressteuerbescheinigung-erklarung {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.details-text-jahressteuerbescheinigung-erklarung {
  flex: 1 1 100%;
  max-width: 100%;
}

.details-title-jahressteuerbescheinigung-erklarung {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.details-paragraph-jahressteuerbescheinigung-erklarung {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.details-quote-jahressteuerbescheinigung-erklarung {
  margin: clamp(2rem, 3vw, 2.5rem) 0;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: #f8fafc;
  border-left: 4px solid #10b981;
  border-radius: 8px;
}

.quote-text-jahressteuerbescheinigung-erklarung {
  color: #1e293b;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  font-style: italic;
  margin: 0 0 1rem 0;
}

.quote-author-jahressteuerbescheinigung-erklarung {
  color: #64748b;
  font-size: 0.875rem;
  font-style: normal;
  display: block;
}

.special-box-jahressteuerbescheinigung-erklarung {
  background: #eff6ff;
  border-left: 4px solid #3b82f6;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 8px;
  margin: clamp(1.5rem, 2vw, 2rem) 0;
}

.box-title-jahressteuerbescheinigung-erklarung {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.box-text-jahressteuerbescheinigung-erklarung {
  color: #1e40af;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .details-wrapper-jahressteuerbescheinigung-erklarung {
    flex-direction: row;
    align-items: center;
  }

  .details-image-jahressteuerbescheinigung-erklarung {
    flex: 1 1 50%;
    max-width: 50%;
    order: -1;
  }

  .details-text-jahressteuerbescheinigung-erklarung {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.process-section-jahressteuerbescheinigung-erklarung {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.process-section-jahressteuerbescheinigung-erklarung::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #10b981, transparent);
  transform: translateX(-50%);
  opacity: 0.5;
}

.process-header-jahressteuerbescheinigung-erklarung {
  text-align: center;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.process-title-jahressteuerbescheinigung-erklarung {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.process-subtitle-jahressteuerbescheinigung-erklarung {
  color: #94a3b8;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  margin: 0;
}

.process-steps-jahressteuerbescheinigung-erklarung {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.step-card-jahressteuerbescheinigung-erklarung {
  background: rgba(255, 255, 255, 0.05);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 8px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  position: relative;
  padding-left: clamp(4rem, 6vw, 5rem);
}

.step-number-jahressteuerbescheinigung-erklarung {
  position: absolute;
  left: clamp(1rem, 2vw, 1.5rem);
  top: clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
}

.step-title-jahressteuerbescheinigung-erklarung {
  color: #ffffff;
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.step-text-jahressteuerbescheinigung-erklarung {
  color: #94a3b8;
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .process-section-jahressteuerbescheinigung-erklarung::before {
    display: none;
  }

  .process-steps-jahressteuerbescheinigung-erklarung {
    grid-template-columns: 1fr;
  }
}

.special-section-jahressteuerbescheinigung-erklarung {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.special-wrapper-jahressteuerbescheinigung-erklarung {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.special-text-jahressteuerbescheinigung-erklarung {
  flex: 1 1 100%;
  max-width: 100%;
}

.special-title-jahressteuerbescheinigung-erklarung {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.special-paragraph-jahressteuerbescheinigung-erklarung {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.special-image-jahressteuerbescheinigung-erklarung {
  flex: 1 1 100%;
  max-width: 100%;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.special-img-jahressteuerbescheinigung-erklarung {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (min-width: 768px) {
  .special-wrapper-jahressteuerbescheinigung-erklarung {
    flex-direction: row;
    align-items: center;
  }

  .special-text-jahressteuerbescheinigung-erklarung {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .special-image-jahressteuerbescheinigung-erklarung {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.summary-section-jahressteuerbescheinigung-erklarung {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.summary-content-jahressteuerbescheinigung-erklarung {
  max-width: 1100px;
  margin: 0 auto;
}

.summary-title-jahressteuerbescheinigung-erklarung {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.summary-boxes-jahressteuerbescheinigung-erklarung {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
}

.summary-box-jahressteuerbescheinigung-erklarung {
  background: #f8fafc;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 8px;
  border-left: 4px solid #10b981;
  text-align: center;
  transition: all 0.3s ease;
}

.summary-box-jahressteuerbescheinigung-erklarung:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.summary-number-jahressteuerbescheinigung-erklarung {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #10b981;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.summary-box-title-jahressteuerbescheinigung-erklarung {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.summary-box-text-jahressteuerbescheinigung-erklarung {
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

.summary-cta-jahressteuerbescheinigung-erklarung {
  background: #f0fdf4;
  border-left: 4px solid #10b981;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 8px;
  text-align: center;
}

.cta-text-jahressteuerbescheinigung-erklarung {
  color: #166534;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin: 0;
}

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

.related-header-jahressteuerbescheinigung-erklarung {
  text-align: center;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.related-title-jahressteuerbescheinigung-erklarung {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-subtitle-jahressteuerbescheinigung-erklarung {
  color: #94a3b8;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  margin: 0;
}

.related-cards-jahressteuerbescheinigung-erklarung {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
}

.related-card-jahressteuerbescheinigung-erklarung {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.related-card-jahressteuerbescheinigung-erklarung:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 10px 15px rgba(16, 185, 129, 0.1);
}

.related-card-image-jahressteuerbescheinigung-erklarung {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: rgba(16, 185, 129, 0.1);
}

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

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

.related-card-title-jahressteuerbescheinigung-erklarung {
  color: #ffffff;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

.related-card-text-jahressteuerbescheinigung-erklarung {
  color: #94a3b8;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

@media (max-width: 768px) {
  .related-cards-jahressteuerbescheinigung-erklarung {
    grid-template-columns: 1fr;
  }
}

.disclaimer-section-jahressteuerbescheinigung-erklarung {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(2rem, 4vw, 3rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-jahressteuerbescheinigung-erklarung {
  background: #ffffff;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
}

.disclaimer-title-jahressteuerbescheinigung-erklarung {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-jahressteuerbescheinigung-erklarung {
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

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

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

@media (max-width: 768px) {
  .hero-section-jahressteuerbescheinigung-erklarung {
    padding: clamp(2rem, 4vw, 3rem) 0;
  }

  .intro-section-jahressteuerbescheinigung-erklarung,
  .content-section-jahressteuerbescheinigung-erklarung,
  .details-section-jahressteuerbescheinigung-erklarung,
  .process-section-jahressteuerbescheinigung-erklarung,
  .special-section-jahressteuerbescheinigung-erklarung,
  .summary-section-jahressteuerbescheinigung-erklarung,
  .related-section-jahressteuerbescheinigung-erklarung {
    padding: clamp(2rem, 4vw, 3rem) 0;
  }

  .breadcrumbs-jahressteuerbescheinigung-erklarung {
    flex-wrap: wrap;
    font-size: 0.8125rem;
  }

  .meta-item-jahressteuerbescheinigung-erklarung {
    font-size: 0.875rem;
  }
}

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

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

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

.hero-section-jahresabrechnung-schritt-fuer-schritt::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section-jahresabrechnung-schritt-fuer-schritt::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.breadcrumbs-jahresabrechnung-schritt-fuer-schritt {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.breadcrumbs-jahresabrechnung-schritt-fuer-schritt a {
  color: #64748b;
  transition: color 0.3s ease;
  text-decoration: none;
}

.breadcrumbs-jahresabrechnung-schritt-fuer-schritt a:hover {
  color: #10b981;
}

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

.hero-content-jahresabrechnung-schritt-fuer-schritt {
  max-width: 700px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 1;
  animation: slideInUp 0.8s ease-out;
}

.hero-badge-jahresabrechnung-schritt-fuer-schritt {
  display: inline-block;
  background: rgba(16, 185, 129, 0.2);
  color: #d1fae5;
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid rgba(16, 185, 129, 0.4);
  letter-spacing: 0.5px;
}

.hero-title-jahresabrechnung-schritt-fuer-schritt {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-description-jahresabrechnung-schritt-fuer-schritt {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-jahresabrechnung-schritt-fuer-schritt {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

.meta-item-jahresabrechnung-schritt-fuer-schritt i {
  color: #10b981;
  font-size: 1.25rem;
}

.hero-image-jahresabrechnung-schritt-fuer-schritt {
  position: relative;
  z-index: 1;
  border-radius: clamp(8px, 2vw, 16px);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  max-height: 500px;
}

.hero-img-jahresabrechnung-schritt-fuer-schritt {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: clamp(8px, 2vw, 16px);
}

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

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

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

.intro-image-jahresabrechnung-schritt-fuer-schritt {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: clamp(8px, 2vw, 16px);
  overflow: hidden;
}

.intro-title-jahresabrechnung-schritt-fuer-schritt {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

.intro-paragraph-jahresabrechnung-schritt-fuer-schritt:last-child {
  margin-bottom: 0;
}

.intro-img-jahresabrechnung-schritt-fuer-schritt {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: clamp(8px, 2vw, 16px);
  min-height: 350px;
  max-height: 450px;
}

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

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

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

.process-header-jahresabrechnung-schritt-fuer-schritt {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.process-title-jahresabrechnung-schritt-fuer-schritt {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.process-subtitle-jahresabrechnung-schritt-fuer-schritt {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

.steps-container-jahresabrechnung-schritt-fuer-schritt {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  margin: 0 auto;
}

.step-card-jahresabrechnung-schritt-fuer-schritt {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: clamp(8px, 2vw, 12px);
  border-left: 4px solid #10b981;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-card-jahresabrechnung-schritt-fuer-schritt:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
}

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

.step-title-jahresabrechnung-schritt-fuer-schritt {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #0f172a;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
}

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

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

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

.details-text-jahresabrechnung-schritt-fuer-schritt {
  flex: 1 1 50%;
  max-width: 50%;
}

.details-image-jahresabrechnung-schritt-fuer-schritt {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: clamp(8px, 2vw, 16px);
  overflow: hidden;
}

.details-title-jahresabrechnung-schritt-fuer-schritt {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.details-paragraph-jahresabrechnung-schritt-fuer-schritt {
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.details-list-jahresabrechnung-schritt-fuer-schritt {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.detail-item-jahresabrechnung-schritt-fuer-schritt {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #f8fafc;
  border-radius: 8px;
  border-left: 3px solid #3b82f6;
}

.detail-item-title-jahresabrechnung-schritt-fuer-schritt {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.detail-item-text-jahresabrechnung-schritt-fuer-schritt {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.details-img-jahresabrechnung-schritt-fuer-schritt {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: clamp(8px, 2vw, 16px);
  min-height: 350px;
  max-height: 450px;
}

@media (max-width: 768px) {
  .details-wrapper-jahresabrechnung-schritt-fuer-schritt {
    flex-direction: column;
  }

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

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

.tools-header-jahresabrechnung-schritt-fuer-schritt {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.tools-title-jahresabrechnung-schritt-fuer-schritt {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.tools-subtitle-jahresabrechnung-schritt-fuer-schritt {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

.tools-grid-jahresabrechnung-schritt-fuer-schritt {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
}

.tool-card-jahresabrechnung-schritt-fuer-schritt {
  background: rgba(255, 255, 255, 0.08);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: clamp(8px, 2vw, 12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.tool-card-jahresabrechnung-schritt-fuer-schritt:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(16, 185, 129, 0.5);
  transform: translateY(-4px);
}

.tool-icon-jahresabrechnung-schritt-fuer-schritt {
  font-size: clamp(2.5rem, 4vw, 3rem);
  color: #10b981;
}

.tool-name-jahresabrechnung-schritt-fuer-schritt {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #ffffff;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
}

.tool-description-jahresabrechnung-schritt-fuer-schritt {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

.best-practices-section-jahresabrechnung-schritt-fuer-schritt {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.best-practices-wrapper-jahresabrechnung-schritt-fuer-schritt {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.best-practices-image-jahresabrechnung-schritt-fuer-schritt {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: clamp(8px, 2vw, 16px);
  overflow: hidden;
}

.best-practices-text-jahresabrechnung-schritt-fuer-schritt {
  flex: 1 1 50%;
  max-width: 50%;
}

.best-practices-title-jahresabrechnung-schritt-fuer-schritt {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.best-practices-paragraph-jahresabrechnung-schritt-fuer-schritt {
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.practice-list-jahresabrechnung-schritt-fuer-schritt {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.practice-item-jahresabrechnung-schritt-fuer-schritt {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.practice-number-jahresabrechnung-schritt-fuer-schritt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: #10b981;
  color: #ffffff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.practice-content-jahresabrechnung-schritt-fuer-schritt {
  flex: 1;
}

.practice-title-jahresabrechnung-schritt-fuer-schritt {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.practice-text-jahresabrechnung-schritt-fuer-schritt {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.best-practices-img-jahresabrechnung-schritt-fuer-schritt {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: clamp(8px, 2vw, 16px);
  min-height: 350px;
  max-height: 450px;
}

@media (max-width: 768px) {
  .best-practices-wrapper-jahresabrechnung-schritt-fuer-schritt {
    flex-direction: column;
  }

  .best-practices-image-jahresabrechnung-schritt-fuer-schritt,
  .best-practices-text-jahresabrechnung-schritt-fuer-schritt {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.featured-quote-jahresabrechnung-schritt-fuer-schritt {
  background: #ffffff;
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #10b981;
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  font-style: italic;
}

.quote-text-jahresabrechnung-schritt-fuer-schritt {
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  color: #0f172a;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.quote-author-jahresabrechnung-schritt-fuer-schritt {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  color: #475569;
  font-style: normal;
  font-weight: 600;
}

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

.summary-content-jahresabrechnung-schritt-fuer-schritt {
  max-width: 900px;
  margin: 0 auto;
}

.summary-title-jahresabrechnung-schritt-fuer-schritt {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #0f172a;
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.summary-box-jahresabrechnung-schritt-fuer-schritt {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
}

.summary-item-jahresabrechnung-schritt-fuer-schritt {
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: clamp(8px, 2vw, 12px);
  border-top: 3px solid #10b981;
  transition: all 0.3s ease;
}

.summary-item-jahresabrechnung-schritt-fuer-schritt:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}

.summary-item-title-jahresabrechnung-schritt-fuer-schritt {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.summary-item-text-jahresabrechnung-schritt-fuer-schritt {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

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

.disclaimer-box-jahresabrechnung-schritt-fuer-schritt {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: clamp(8px, 2vw, 12px);
  border-left: 4px solid #ef4444;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.disclaimer-title-jahresabrechnung-schritt-fuer-schritt {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  letter-spacing: -0.01em;
}

.disclaimer-text-jahresabrechnung-schritt-fuer-schritt {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

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

.related-header-jahresabrechnung-schritt-fuer-schritt {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.related-title-jahresabrechnung-schritt-fuer-schritt {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.related-subtitle-jahresabrechnung-schritt-fuer-schritt {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

.related-cards-jahresabrechnung-schritt-fuer-schritt {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 1200px;
  margin: 0 auto;
}

.related-card-jahresabrechnung-schritt-fuer-schritt {
  background: #ffffff;
  border-radius: clamp(8px, 2vw, 12px);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.related-card-jahresabrechnung-schritt-fuer-schritt:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.15);
}

.related-card-image-jahresabrechnung-schritt-fuer-schritt {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-img-jahresabrechnung-schritt-fuer-schritt {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.related-card-jahresabrechnung-schritt-fuer-schritt:hover .related-img-jahresabrechnung-schritt-fuer-schritt {
  transform: scale(1.05);
}

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

.related-card-title-jahresabrechnung-schritt-fuer-schritt {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #0f172a;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  letter-spacing: -0.01em;
}

.related-card-text-jahresabrechnung-schritt-fuer-schritt {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.related-card-link-jahresabrechnung-schritt-fuer-schritt {
  display: inline-block;
  color: #10b981;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}

.related-card-link-jahresabrechnung-schritt-fuer-schritt:hover {
  color: #059669;
  text-decoration: underline;
}

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

@media (max-width: 768px) {
  .hero-section-jahresabrechnung-schritt-fuer-schritt,
  .intro-section-jahresabrechnung-schritt-fuer-schritt,
  .process-section-jahresabrechnung-schritt-fuer-schritt,
  .details-section-jahresabrechnung-schritt-fuer-schritt,
  .tools-section-jahresabrechnung-schritt-fuer-schritt,
  .best-practices-section-jahresabrechnung-schritt-fuer-schritt,
  .quote-section-jahresabrechnung-schritt-fuer-schritt,
  .summary-section-jahresabrechnung-schritt-fuer-schritt,
  .disclaimer-section-jahresabrechnung-schritt-fuer-schritt,
  .related-section-jahresabrechnung-schritt-fuer-schritt {
    padding: clamp(2rem, 5vw, 4rem) 0;
  }

  .step-card-jahresabrechnung-schritt-fuer-schritt {
    padding: clamp(1.25rem, 2vw, 1.75rem);
  }

  .practice-item-jahresabrechnung-schritt-fuer-schritt {
    gap: clamp(0.75rem, 1.5vw, 1rem);
  }

  .practice-number-jahresabrechnung-schritt-fuer-schritt {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 0.875rem;
  }

  .featured-quote-jahresabrechnung-schritt-fuer-schritt {
    padding: clamp(1.5rem, 2vw, 2rem);
  }

  .disclaimer-box-jahresabrechnung-schritt-fuer-schritt {
    padding: clamp(1.25rem, 2vw, 1.75rem);
  }
}

@media (max-width: 480px) {
  .hero-section-jahresabrechnung-schritt-fuer-schritt {
    padding: 2rem 0;
  }

  .breadcrumbs-jahresabrechnung-schritt-fuer-schritt {
    font-size: 0.7rem;
    gap: 0.25rem;
  }

  .hero-meta-jahresabrechnung-schritt-fuer-schritt {
    gap: 1rem;
  }

  .practice-list-jahresabrechnung-schritt-fuer-schritt {
    gap: 1rem;
  }

  .related-card-image-jahresabrechnung-schritt-fuer-schritt {
    height: 150px;
  }
}

.main-jahresabrechnung-fehler-vermeiden {
  width: 100%;
  background-color: #ffffff;
}

.hero-section-jahresabrechnung-fehler-vermeiden {
  background-color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.breadcrumbs-jahresabrechnung-fehler-vermeiden a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-jahresabrechnung-fehler-vermeiden a:hover {
  color: #93c5fd;
  text-decoration: underline;
}

.breadcrumbs-jahresabrechnung-fehler-vermeiden span {
  color: #64748b;
}

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

.hero-content-jahresabrechnung-fehler-vermeiden {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-container-jahresabrechnung-fehler-vermeiden {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-badge-jahresabrechnung-fehler-vermeiden {
  display: inline-block;
  background-color: rgba(16, 185, 129, 0.1);
  color: #10b981;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

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

.hero-subtitle-jahresabrechnung-fehler-vermeiden {
  font-size: clamp(0.95rem, 1.5vw, 1.25rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  max-width: 600px;
}

.hero-meta-jahresabrechnung-fehler-vermeiden {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: #94a3b8;
}

.meta-item-jahresabrechnung-fehler-vermeiden {
  color: #94a3b8;
}

.meta-separator-jahresabrechnung-fehler-vermeiden {
  color: #475569;
}

.hero-image-jahresabrechnung-fehler-vermeiden {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-wrapper-jahresabrechnung-fehler-vermeiden {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }
  
  .hero-content-jahresabrechnung-fehler-vermeiden,
  .hero-image-container-jahresabrechnung-fehler-vermeiden {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .hero-section-jahresabrechnung-fehler-vermeiden {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }
}

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

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

.intro-wrapper-jahresabrechnung-fehler-vermeiden {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-text-jahresabrechnung-fehler-vermeiden {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-jahresabrechnung-fehler-vermeiden {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-jahresabrechnung-fehler-vermeiden {
  font-size: clamp(1.5rem, 4vw, 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-jahresabrechnung-fehler-vermeiden {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-jahresabrechnung-fehler-vermeiden img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .intro-wrapper-jahresabrechnung-fehler-vermeiden {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }
  
  .intro-text-jahresabrechnung-fehler-vermeiden,
  .intro-image-jahresabrechnung-fehler-vermeiden {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .intro-section-jahresabrechnung-fehler-vermeiden {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }
}

.error-one-section-jahresabrechnung-fehler-vermeiden,
.error-two-section-jahresabrechnung-fehler-vermeiden,
.error-three-section-jahresabrechnung-fehler-vermeiden,
.error-four-section-jahresabrechnung-fehler-vermeiden,
.error-five-section-jahresabrechnung-fehler-vermeiden {
  background-color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.error-one-section-jahresabrechnung-fehler-vermeiden .container,
.error-two-section-jahresabrechnung-fehler-vermeiden .container,
.error-three-section-jahresabrechnung-fehler-vermeiden .container,
.error-four-section-jahresabrechnung-fehler-vermeiden .container,
.error-five-section-jahresabrechnung-fehler-vermeiden .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.error-one-wrapper-jahresabrechnung-fehler-vermeiden,
.error-two-wrapper-jahresabrechnung-fehler-vermeiden,
.error-three-wrapper-jahresabrechnung-fehler-vermeiden,
.error-four-wrapper-jahresabrechnung-fehler-vermeiden,
.error-five-wrapper-jahresabrechnung-fehler-vermeiden {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.error-one-image-jahresabrechnung-fehler-vermeiden,
.error-three-image-jahresabrechnung-fehler-vermeiden,
.error-five-image-jahresabrechnung-fehler-vermeiden {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.error-two-image-jahresabrechnung-fehler-vermeiden,
.error-four-image-jahresabrechnung-fehler-vermeiden {
  flex: 1 1 50%;
  max-width: 50%;
}

.error-one-text-jahresabrechnung-fehler-vermeiden,
.error-two-text-jahresabrechnung-fehler-vermeiden,
.error-three-text-jahresabrechnung-fehler-vermeiden,
.error-four-text-jahresabrechnung-fehler-vermeiden,
.error-five-text-jahresabrechnung-fehler-vermeiden {
  flex: 1 1 50%;
  max-width: 50%;
}

.error-image-jahresabrechnung-fehler-vermeiden {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.error-title-jahresabrechnung-fehler-vermeiden {
  font-size: clamp(1.25rem, 3vw, 2rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-paragraph-jahresabrechnung-fehler-vermeiden {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.error-solution-box-jahresabrechnung-fehler-vermeiden {
  background-color: #f0fdf4;
  border-left: 4px solid #10b981;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.solution-title-jahresabrechnung-fehler-vermeiden {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.solution-list-jahresabrechnung-fehler-vermeiden {
  list-style: none;
  padding: 0;
  margin: 0;
}

.solution-item-jahresabrechnung-fehler-vermeiden {
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: #374151;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.solution-item-jahresabrechnung-fehler-vermeiden:before {
  content: '';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
}

@media (max-width: 768px) {
  .error-one-wrapper-jahresabrechnung-fehler-vermeiden,
  .error-two-wrapper-jahresabrechnung-fehler-vermeiden,
  .error-three-wrapper-jahresabrechnung-fehler-vermeiden,
  .error-four-wrapper-jahresabrechnung-fehler-vermeiden,
  .error-five-wrapper-jahresabrechnung-fehler-vermeiden {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }
  
  .error-one-image-jahresabrechnung-fehler-vermeiden,
  .error-two-image-jahresabrechnung-fehler-vermeiden,
  .error-three-image-jahresabrechnung-fehler-vermeiden,
  .error-four-image-jahresabrechnung-fehler-vermeiden,
  .error-five-image-jahresabrechnung-fehler-vermeiden {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }
  
  .error-one-text-jahresabrechnung-fehler-vermeiden,
  .error-two-text-jahresabrechnung-fehler-vermeiden,
  .error-three-text-jahresabrechnung-fehler-vermeiden,
  .error-four-text-jahresabrechnung-fehler-vermeiden,
  .error-five-text-jahresabrechnung-fehler-vermeiden {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .error-one-section-jahresabrechnung-fehler-vermeiden,
  .error-two-section-jahresabrechnung-fehler-vermeiden,
  .error-three-section-jahresabrechnung-fehler-vermeiden,
  .error-four-section-jahresabrechnung-fehler-vermeiden,
  .error-five-section-jahresabrechnung-fehler-vermeiden {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }
}

.checklist-section-jahresabrechnung-fehler-vermeiden {
  background-color: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.checklist-content-jahresabrechnung-fehler-vermeiden {
  max-width: 800px;
  margin: 0 auto;
}

.checklist-title-jahresabrechnung-fehler-vermeiden {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  text-align: center;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.checklist-intro-jahresabrechnung-fehler-vermeiden {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #374151;
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.checklist-grid-jahresabrechnung-fehler-vermeiden {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.checklist-item-jahresabrechnung-fehler-vermeiden {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
  background-color: #ffffff;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.checklist-item-jahresabrechnung-fehler-vermeiden:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.checklist-checkbox-jahresabrechnung-fehler-vermeiden {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #10b981;
  font-weight: 700;
  flex-shrink: 0;
}

.checklist-text-jahresabrechnung-fehler-vermeiden {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #374151;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .checklist-section-jahresabrechnung-fehler-vermeiden {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }
}

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

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

.conclusion-content-jahresabrechnung-fehler-vermeiden {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-jahresabrechnung-fehler-vermeiden {
  font-size: clamp(1.5rem, 4vw, 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;
}

.conclusion-paragraph-jahresabrechnung-fehler-vermeiden {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-highlight-jahresabrechnung-fehler-vermeiden {
  background-color: #eff6ff;
  border-left: 4px solid #3b82f6;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.highlight-text-jahresabrechnung-fehler-vermeiden {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #0c4a6e;
  line-height: 1.8;
  margin: 0;
}

.highlight-text-jahresabrechnung-fehler-vermeiden strong {
  font-weight: 600;
  color: #075985;
}

@media (max-width: 768px) {
  .conclusion-section-jahresabrechnung-fehler-vermeiden {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }
}

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

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

.related-content-jahresabrechnung-fehler-vermeiden {
  width: 100%;
}

.related-title-jahresabrechnung-fehler-vermeiden {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-card-jahresabrechnung-fehler-vermeiden {
  flex: 1 1 300px;
  max-width: 380px;
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.related-card-jahresabrechnung-fehler-vermeiden:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.related-image-jahresabrechnung-fehler-vermeiden {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.related-text-jahresabrechnung-fehler-vermeiden {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.related-card-title-jahresabrechnung-fehler-vermeiden {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-description-jahresabrechnung-fehler-vermeiden {
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.6;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  flex-grow: 1;
}

.related-link-jahresabrechnung-fehler-vermeiden {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #10b981;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-link-jahresabrechnung-fehler-vermeiden:hover {
  color: #059669;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .related-cards-jahresabrechnung-fehler-vermeiden {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }
  
  .related-card-jahresabrechnung-fehler-vermeiden {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .related-section-jahresabrechnung-fehler-vermeiden {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }
}

.disclaimer-section-jahresabrechnung-fehler-vermeiden {
  background-color: #f0f9ff;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e0e7ff;
}

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

.disclaimer-content-jahresabrechnung-fehler-vermeiden {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-jahresabrechnung-fehler-vermeiden {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: #0c4a6e;
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-text-jahresabrechnung-fehler-vermeiden {
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: #334155;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .disclaimer-section-jahresabrechnung-fehler-vermeiden {
    padding: clamp(1.5rem, 4vw, 2.5rem) 0;
  }
}

@media (max-width: 480px) {
  .hero-section-jahresabrechnung-fehler-vermeiden,
  .intro-section-jahresabrechnung-fehler-vermeiden,
  .error-one-section-jahresabrechnung-fehler-vermeiden,
  .error-two-section-jahresabrechnung-fehler-vermeiden,
  .error-three-section-jahresabrechnung-fehler-vermeiden,
  .error-four-section-jahresabrechnung-fehler-vermeiden,
  .error-five-section-jahresabrechnung-fehler-vermeiden,
  .checklist-section-jahresabrechnung-fehler-vermeiden,
  .conclusion-section-jahresabrechnung-fehler-vermeiden,
  .related-section-jahresabrechnung-fehler-vermeiden {
    padding: clamp(1.5rem, 5vw, 2.5rem) 0;
  }
  
  .hero-title-jahresabrechnung-fehler-vermeiden {
    font-size: 1.5rem;
  }
  
  .intro-title-jahresabrechnung-fehler-vermeiden,
  .error-title-jahresabrechnung-fehler-vermeiden {
    font-size: 1.25rem;
  }
}

.main-aufbewahrung-fristen-jahresabrechnung {
  width: 100%;
  overflow: hidden;
}

.hero-section-aufbewahrung-fristen-jahresabrechnung {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-aufbewahrung-fristen-jahresabrechnung::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section-aufbewahrung-fristen-jahresabrechnung::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section-aufbewahrung-fristen-jahresabrechnung .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.breadcrumbs-aufbewahrung-fristen-jahresabrechnung {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #94a3b8;
  flex-wrap: wrap;
}

.breadcrumbs-aufbewahrung-fristen-jahresabrechnung a {
  color: #10b981;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-aufbewahrung-fristen-jahresabrechnung a:hover {
  color: #059669;
}

.breadcrumbs-aufbewahrung-fristen-jahresabrechnung span {
  color: #64748b;
}

.hero-content-aufbewahrung-fristen-jahresabrechnung {
  max-width: 700px;
}

.hero-badge-aufbewahrung-fristen-jahresabrechnung {
  display: inline-block;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.hero-title-aufbewahrung-fristen-jahresabrechnung {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-text-aufbewahrung-fristen-jahresabrechnung {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #cbd5e1;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-meta-aufbewahrung-fristen-jahresabrechnung {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.meta-item-aufbewahrung-fristen-jahresabrechnung {
  font-size: 0.9375rem;
  color: #94a3b8;
}

.meta-divider-aufbewahrung-fristen-jahresabrechnung {
  color: #475569;
}

.hero-image-aufbewahrung-fristen-jahresabrechnung {
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
}

.hero-img-aufbewahrung-fristen-jahresabrechnung {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.intro-section-aufbewahrung-fristen-jahresabrechnung {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-aufbewahrung-fristen-jahresabrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-aufbewahrung-fristen-jahresabrechnung {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #1e293b;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.intro-description-aufbewahrung-fristen-jahresabrechnung {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.intro-image-aufbewahrung-fristen-jahresabrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-aufbewahrung-fristen-jahresabrechnung {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.content-section-aufbewahrung-fristen-jahresabrechnung {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-text-aufbewahrung-fristen-jahresabrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-aufbewahrung-fristen-jahresabrechnung {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #1e293b;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.content-description-aufbewahrung-fristen-jahresabrechnung {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.retention-box-aufbewahrung-fristen-jahresabrechnung {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #10b981;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.box-title-aufbewahrung-fristen-jahresabrechnung {
  font-size: 1.125rem;
  color: #1e293b;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.box-text-aufbewahrung-fristen-jahresabrechnung {
  font-size: 0.9375rem;
  color: #475569;
  margin-bottom: 0;
  line-height: 1.7;
}

.content-image-aufbewahrung-fristen-jahresabrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-aufbewahrung-fristen-jahresabrechnung {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.documents-section-aufbewahrung-fristen-jahresabrechnung {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.documents-wrapper-aufbewahrung-fristen-jahresabrechnung {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.documents-image-aufbewahrung-fristen-jahresabrechnung {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.documents-img-aufbewahrung-fristen-jahresabrechnung {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.documents-text-aufbewahrung-fristen-jahresabrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.documents-title-aufbewahrung-fristen-jahresabrechnung {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #1e293b;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.documents-description-aufbewahrung-fristen-jahresabrechnung {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.documents-list-aufbewahrung-fristen-jahresabrechnung {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-item-aufbewahrung-fristen-jahresabrechnung {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  border-left: 3px solid #10b981;
}

.list-label-aufbewahrung-fristen-jahresabrechnung {
  font-weight: 600;
  color: #1e293b;
  font-size: 0.9375rem;
}

.list-detail-aufbewahrung-fristen-jahresabrechnung {
  color: #64748b;
  font-size: 0.875rem;
}

.systems-section-aufbewahrung-fristen-jahresabrechnung {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.systems-section-aufbewahrung-fristen-jahresabrechnung::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.systems-content-aufbewahrung-fristen-jahresabrechnung {
  position: relative;
  z-index: 1;
}

.systems-title-aufbewahrung-fristen-jahresabrechnung {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #ffffff;
  margin-bottom: 0.75rem;
  text-align: center;
  font-weight: 700;
}

.systems-subtitle-aufbewahrung-fristen-jahresabrechnung {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #cbd5e1;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.systems-grid-aufbewahrung-fristen-jahresabrechnung {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
}

.system-card-aufbewahrung-fristen-jahresabrechnung {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.system-card-aufbewahrung-fristen-jahresabrechnung:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-4px);
}

.card-number-aufbewahrung-fristen-jahresabrechnung {
  display: inline-block;
  width: 48px;
  height: 48px;
  background: #10b981;
  color: #0a0f1e;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.card-title-aufbewahrung-fristen-jahresabrechnung {
  font-size: 1.125rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.card-text-aufbewahrung-fristen-jahresabrechnung {
  font-size: 0.9375rem;
  color: #cbd5e1;
  margin-bottom: 0;
  line-height: 1.7;
}

.checklist-section-aufbewahrung-fristen-jahresabrechnung {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.checklist-wrapper-aufbewahrung-fristen-jahresabrechnung {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.checklist-text-aufbewahrung-fristen-jahresabrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.checklist-title-aufbewahrung-fristen-jahresabrechnung {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #1e293b;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.checklist-intro-aufbewahrung-fristen-jahresabrechnung {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.checklist-items-aufbewahrung-fristen-jahresabrechnung {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.check-item-aufbewahrung-fristen-jahresabrechnung {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
}

.check-icon-aufbewahrung-fristen-jahresabrechnung {
  color: #10b981;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.check-text-aufbewahrung-fristen-jahresabrechnung {
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.checklist-image-aufbewahrung-fristen-jahresabrechnung {
  flex: 1 1 50%;
  max-width: 50%;
}

.checklist-img-aufbewahrung-fristen-jahresabrechnung {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.compliance-section-aufbewahrung-fristen-jahresabrechnung {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.compliance-content-aufbewahrung-fristen-jahresabrechnung {
  max-width: 800px;
  margin: 0 auto;
}

.compliance-title-aufbewahrung-fristen-jahresabrechnung {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #1e293b;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.compliance-text-aufbewahrung-fristen-jahresabrechnung {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.8;
  text-align: center;
}

.compliance-highlight-aufbewahrung-fristen-jahresabrechnung {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
  margin-bottom: 2rem;
}

.highlight-title-aufbewahrung-fristen-jahresabrechnung {
  font-size: 1.125rem;
  color: #1e293b;
  margin-bottom: 1rem;
  font-weight: 600;
}

.highlight-list-aufbewahrung-fristen-jahresabrechnung {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.highlight-item-aufbewahrung-fristen-jahresabrechnung {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.highlight-item-aufbewahrung-fristen-jahresabrechnung::before {
  content: '';
  color: #3b82f6;
  font-weight: 700;
  flex-shrink: 0;
}

.compliance-closing-aufbewahrung-fristen-jahresabrechnung {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #475569;
  margin-bottom: 0;
  line-height: 1.8;
  text-align: center;
}

.conclusion-section-aufbewahrung-fristen-jahresabrechnung {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-aufbewahrung-fristen-jahresabrechnung {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-aufbewahrung-fristen-jahresabrechnung {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #1e293b;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.conclusion-text-aufbewahrung-fristen-jahresabrechnung {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  text-align: center;
}

.disclaimer-section-aufbewahrung-fristen-jahresabrechnung {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-aufbewahrung-fristen-jahresabrechnung {
  max-width: 800px;
  margin: 0 auto;
  background: #fef3c7;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #f59e0b;
}

.disclaimer-title-aufbewahrung-fristen-jahresabrechnung {
  font-size: 1.125rem;
  color: #1e293b;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.disclaimer-text-aufbewahrung-fristen-jahresabrechnung {
  font-size: 0.9375rem;
  color: #6b5b2e;
  margin-bottom: 0;
  line-height: 1.7;
}

.related-section-aufbewahrung-fristen-jahresabrechnung {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-aufbewahrung-fristen-jahresabrechnung {
  max-width: 1200px;
  margin: 0 auto;
}

.related-title-aufbewahrung-fristen-jahresabrechnung {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #1e293b;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 700;
}

.related-grid-aufbewahrung-fristen-jahresabrechnung {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-items: center;
}

.related-card-aufbewahrung-fristen-jahresabrechnung {
  display: flex;
  flex-direction: column;
  max-width: 360px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: #1e293b;
}

.related-card-aufbewahrung-fristen-jahresabrechnung:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.related-image-aufbewahrung-fristen-jahresabrechnung {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #e2e8f0;
}

.related-image-aufbewahrung-fristen-jahresabrechnung img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-aufbewahrung-fristen-jahresabrechnung:hover .related-image-aufbewahrung-fristen-jahresabrechnung img {
  transform: scale(1.05);
}

.related-card-title-aufbewahrung-fristen-jahresabrechnung {
  font-size: 1.0625rem;
  color: #1e293b;
  margin: 1.5rem 1.5rem 0.75rem;
  font-weight: 600;
  line-height: 1.4;
}

.related-card-text-aufbewahrung-fristen-jahresabrechnung {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0 1.5rem 1.5rem;
  line-height: 1.6;
}

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

@media (max-width: 768px) {
  .hero-content-aufbewahrung-fristen-jahresabrechnung {
    max-width: 100%;
  }

  .intro-content-aufbewahrung-fristen-jahresabrechnung,
  .content-wrapper-aufbewahrung-fristen-jahresabrechnung,
  .documents-wrapper-aufbewahrung-fristen-jahresabrechnung,
  .checklist-wrapper-aufbewahrung-fristen-jahresabrechnung {
    flex-direction: column;
  }

  .intro-text-aufbewahrung-fristen-jahresabrechnung,
  .intro-image-aufbewahrung-fristen-jahresabrechnung,
  .content-text-aufbewahrung-fristen-jahresabrechnung,
  .content-image-aufbewahrung-fristen-jahresabrechnung,
  .documents-image-aufbewahrung-fristen-jahresabrechnung,
  .documents-text-aufbewahrung-fristen-jahresabrechnung,
  .checklist-text-aufbewahrung-fristen-jahresabrechnung,
  .checklist-image-aufbewahrung-fristen-jahresabrechnung {
    flex: 1 1 100%;
    max-width: 100%;
    order: initial;
  }

  .documents-image-aufbewahrung-fristen-jahresabrechnung {
    order: -1;
  }

  .systems-grid-aufbewahrung-fristen-jahresabrechnung {
    grid-template-columns: 1fr;
  }

  .related-grid-aufbewahrung-fristen-jahresabrechnung {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .related-card-aufbewahrung-fristen-jahresabrechnung {
    max-width: 100%;
  }
}

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

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

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

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

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

  html {
    scroll-behavior: smooth;
  }

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

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

  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-expertise-about {
    background: var(--color-bg-primary);
  }

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

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

  .hero-header-about {
    text-align: center;
    max-width: 800px;
  }

  .hero-title-about {
    color: #ffffff;
    font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    line-height: 1.2;
  }

  .hero-subtitle-about {
    color: #94a3b8;
    font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.5;
  }

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

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

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

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

  .hero-visual-about {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    margin-top: clamp(1rem, 2vw, 2rem);
    object-fit: cover;
  }

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

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

  .section-header-about {
    text-align: center;
    max-width: 700px;
    margin: 0 auto clamp(2rem, 3vw, 2.5rem);
  }

  .section-tag-about {
    display: inline-block;
    padding: clamp(0.25rem, 0.5vw, 0.5rem) clamp(0.75rem, 1.5vw, 1.25rem);
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border-radius: 20px;
    font-size: clamp(0.75rem, 1vw, 0.875rem);
    font-weight: 600;
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  }

  .section-title-about {
    color: #ffffff;
    font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }

  .section-subtitle-about {
    color: #cbd5e1;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    line-height: 1.6;
  }

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

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

  .foundation-block-about h3 {
    color: #ffffff;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  }

  .foundation-block-about p {
    color: #cbd5e1;
    font-size: clamp(0.875rem, 1.2vw, 1.05rem);
    line-height: 1.7;
  }

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

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

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

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

  .step-number-about {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #10b981;
    font-family: var(--font-heading);
    min-width: clamp(3.5rem, 8vw, 5rem);
    flex-shrink: 0;
  }

  .step-content-about {
    display: flex;
    flex-direction: column;
    gap: clamp(0.5rem, 1vw, 0.75rem);
    flex: 1;
  }

  .step-title-about {
    color: #ffffff;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 700;
  }

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

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

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

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

  .feature-card-about {
    flex: 1 1 280px;
    max-width: 380px;
    background: #111d2f;
    padding: clamp(1.5rem, 2vw, 2.5rem);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(148, 163, 184, 0.1);
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 1.5vw, 1.25rem);
    transition: all 0.3s ease;
  }

  .feature-card-about:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.3);
    background: #161f3b;
  }

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

  .card-title-about {
    color: #ffffff;
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
    font-weight: 700;
  }

  .card-text-about {
    color: #cbd5e1;
    font-size: clamp(0.85rem, 1vw, 1rem);
    line-height: 1.6;
  }

  .advantage-visual-about {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    margin: clamp(1rem, 2vw, 2rem) auto 0;
    object-fit: cover;
  }

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

  .commitment-content-about {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 3vw, 2.5rem);
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
  }

  .featured-quote-about {
    background: rgba(16, 185, 129, 0.08);
    border-left: 4px solid #10b981;
    padding: clamp(2rem, 3vw, 3rem);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 1.5vw, 1.25rem);
  }

  .quote-text-about {
    color: #ffffff;
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
    font-style: italic;
    line-height: 1.7;
  }

  .quote-author-about {
    color: #10b981;
    font-size: clamp(0.875rem, 1.2vw, 1.05rem);
    font-weight: 600;
    display: block;
    text-align: right;
  }

  .commitment-text-about {
    color: #cbd5e1;
    font-size: clamp(0.875rem, 1.2vw, 1.05rem);
    line-height: 1.7;
  }

  .cta-box-about {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: clamp(2.5rem, 4vw, 3.5rem);
    border-radius: var(--radius-lg);
    text-align: center;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 1.5vw, 1.25rem);
    margin-top: clamp(2rem, 3vw, 2.5rem);
  }

  .cta-box-title-about {
    color: #ffffff;
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 700;
  }

  .cta-box-text-about {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(0.875rem, 1.2vw, 1.05rem);
  }

  .disclaimer-section-about {
    background: var(--color-bg-primary);
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    overflow: hidden;
  }

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

  .disclaimer-header-about {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(0.75rem, 1.5vw, 1rem);
  }

  .disclaimer-icon-about {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    color: #10b981;
    flex-shrink: 0;
  }

  .disclaimer-title-about {
    color: #ffffff;
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
    font-weight: 700;
  }

  .disclaimer-text-about {
    color: #94a3b8;
    font-size: clamp(0.8rem, 0.95vw, 0.95rem);
    line-height: 1.7;
  }

  @media (max-width: 768px) {
    .hero-stats-about {
      gap: clamp(1.5rem, 3vw, 2rem);
    }

    .process-step-about {
      gap: clamp(1rem, 2vw, 1.5rem);
    }

    .feature-card-about {
      flex: 1 1 100%;
    }
  }

  @media (min-width: 768px) {
    .process-steps-about {
      gap: clamp(2.5rem, 3.5vw, 3rem);
    }

    .features-cards-about {
      gap: clamp(1.5rem, 2.5vw, 2.5rem);
    }
  }

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

.faq-page {
  width: 100%;
  background-color: var(--color-bg-primary);
}

.faq-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
}

.faq-hero-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.faq-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: var(--color-text-dark-primary);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.5px;
}

.faq-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .faq-hero {
    padding: var(--space-xl) var(--space-lg);
  }

  .faq-hero-title {
    margin-bottom: var(--space-md);
  }
}

@media (min-width: 1024px) {
  .faq-hero {
    padding: var(--space-3xl) var(--space-lg);
  }
}

.faq-content {
  background-color: var(--color-bg-primary);
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  color: var(--color-text-dark-primary);
  text-align: left;
  font-weight: 600;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-question-text {
  flex: 1;
  line-height: 1.5;
}

.faq-toggle-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.25rem;
  font-weight: 300;
  margin-left: var(--space-sm);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
  background-color: rgba(16, 185, 129, 0.2);
}

.faq-answer {
  padding: 0 var(--space-md) var(--space-md) var(--space-md);
  animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
  }
  to {
    opacity: 1;
    max-height: 500px;
    overflow: visible;
  }
}

.faq-answer-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.05rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .faq-content {
    padding: var(--space-2xl) var(--space-lg);
  }

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

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

  .faq-answer {
    padding: 0 var(--space-lg) var(--space-lg) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .faq-content {
    padding: var(--space-3xl) var(--space-lg);
  }
}

.faq-cta {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-cta-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  color: var(--color-text-dark-primary);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.5px;
}

.faq-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.1rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.faq-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background-color: var(--color-primary);
  color: var(--color-text-light-primary);
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.faq-cta-button:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
}

.faq-cta-button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .faq-cta {
    padding: var(--space-3xl) var(--space-lg);
  }

  .faq-cta-title {
    margin-bottom: var(--space-md);
  }

  .faq-cta-text {
    margin-bottom: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .faq-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

.services-page {
  width: 100%;
}

.services-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
  position: relative;
}

.services-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.services-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.services-hero-title {
  color: var(--color-text-dark-primary);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 var(--space-md) 0;
}

.services-hero-subtitle {
  color: var(--color-text-dark-secondary);
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
}

@media (min-width: 768px) {
  .services-hero {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: 4rem var(--space-xl);
  }
}

.services-content {
  background-color: var(--color-bg-secondary);
  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: 4rem var(--space-xl);
  }
}

.service-card {
  background-color: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid rgba(16, 185, 129, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.service-card-icon {
  width: 56px;
  height: 56px;
  background-color: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  flex-shrink: 0;
}

.service-card-icon i {
  color: var(--color-primary);
  font-size: 1.75rem;
}

.service-card-title {
  color: var(--color-text-light-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 var(--space-sm) 0;
}

.service-card-description {
  color: var(--color-text-light-secondary);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 var(--space-md) 0;
  flex-grow: 1;
}

.service-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.service-card-features li {
  color: var(--color-text-light-secondary);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  padding-left: 1.5rem;
  position: relative;
}

.service-card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 600;
}

.services-cta {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
  position: relative;
}

.services-cta::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.services-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.services-cta-title {
  color: var(--color-text-dark-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 var(--space-md) 0;
}

.services-cta-text {
  color: var(--color-text-dark-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.7;
  margin: 0 0 var(--space-lg) 0;
  max-width: 500px;
}

.services-cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-text-dark-primary);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
  border: 2px solid var(--color-primary);
}

.services-cta-button:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateX(4px);
}

.services-cta-image {
  display: none;
}

.services-cta-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .services-cta {
    padding: var(--space-3xl) var(--space-lg);
  }

  .services-cta-container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }

  .services-cta-image {
    display: block;
  }
}

@media (min-width: 1024px) {
  .services-cta {
    padding: 4rem var(--space-xl);
  }

  .services-cta-container {
    gap: 4rem;
  }
}

@media (max-width: 767px) {
  .service-card {
    padding: var(--space-md);
  }

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

.payroll-docs {
    background-color: var(--color-bg-secondary);
    color: var(--color-text-light-primary);
    font-family: var(--font-primary);
  }

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

  .payroll-docs .content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-3xl) 0;
  }

  .payroll-docs h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--color-text-light-primary);
    margin-bottom: var(--space-md);
    font-weight: 700;
    line-height: 1.3;
  }

  .payroll-docs .last-updated {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
    color: var(--color-text-light-muted);
    margin-bottom: var(--space-2xl);
    font-style: italic;
  }

  .payroll-docs section {
    margin-bottom: var(--space-3xl);
  }

  .payroll-docs h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--color-text-light-primary);
    margin-bottom: var(--space-md);
    margin-top: var(--space-2xl);
    font-weight: 600;
  }

  .payroll-docs p {
    font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
    color: var(--color-text-light-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
  }

  .payroll-docs ul {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-md);
  }

  .payroll-docs li {
    font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
    color: var(--color-text-light-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
    padding-left: var(--space-lg);
    position: relative;
  }

  .payroll-docs li:before {
    content: "";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
  }

  .payroll-docs .contact-section {
    background-color: var(--color-bg-tertiary);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    margin-top: var(--space-2xl);
  }

  .payroll-docs .contact-section h2 {
    margin-top: 0;
  }

  .payroll-docs .contact-section p {
    margin-bottom: var(--space-sm);
  }

  .payroll-docs .contact-section strong {
    color: var(--color-text-light-primary);
    font-weight: 600;
  }

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

    .payroll-docs .content {
      padding: var(--space-3xl) 0;
    }
  }

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

    .payroll-docs .content {
      padding: var(--space-3xl) 0;
    }
  }

* {
  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-dark-primary);
  overflow-x: hidden;
}

.thank-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.thank-section {
  width: 100%;
  padding: var(--space-lg) var(--space-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-content {
  width: 100%;
  max-width: 600px;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

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

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  animation: scaleIn 0.6s ease-out 0.2s both;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.thank-icon svg {
  animation: checkmark 0.8s ease-out 0.3s both;
}

@keyframes checkmark {
  0% {
    stroke-dasharray: 150;
    stroke-dashoffset: 150;
  }
  100% {
    stroke-dasharray: 150;
    stroke-dashoffset: 0;
  }
}

.thank-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: var(--space-md);
  letter-spacing: -0.5px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.thank-lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.thank-description {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.thank-checklist {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.checklist-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background-color: var(--color-bg-card-dark);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.2);
  transition: all 0.3s ease;
}

.checklist-item:hover {
  background-color: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.4);
  transform: translateX(4px);
}

.checklist-item svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.checklist-text {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-dark-primary);
  font-weight: 500;
}

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-lg);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text-light-primary);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
  transform: translateY(-2px);
}

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

@media (min-width: 640px) {
  .thank-section {
    padding: var(--space-xl) var(--space-md);
  }

  .thank-content {
    max-width: 650px;
  }

  .checklist-item {
    justify-content: flex-start;
    padding: var(--space-md) var(--space-lg);
  }
}

@media (min-width: 768px) {
  .thank-section {
    padding: var(--space-2xl) var(--space-lg);
  }

  .thank-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin-bottom: var(--space-lg);
  }

  .thank-lead {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    margin-bottom: var(--space-lg);
  }

  .thank-description {
    font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.1rem);
    margin-bottom: var(--space-2xl);
  }

  .thank-checklist {
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
  }

  .checklist-item {
    padding: var(--space-md) var(--space-xl);
  }

  .btn {
    padding: var(--space-md) var(--space-xl);
    font-size: clamp(1rem, 1.2vw, 1.1rem);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-xl);
  }

  .thank-content {
    max-width: 700px;
  }

  .thank-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
  }

  .thank-lead {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
  }

  .thank-description {
    font-size: clamp(1rem, 1.2vw + 0.5rem, 1.15rem);
  }
}

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

  .thank-section {
    padding: var(--space-3xl) var(--space-2xl);
  }
}

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

@media (prefers-color-scheme: light) {
  body {
    background-color: var(--color-bg-secondary);
    color: var(--color-text-light-primary);
  }

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

  .thank-lead {
    color: var(--color-primary);
  }

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

  .checklist-item {
    background-color: var(--color-bg-tertiary);
    border-color: rgba(16, 185, 129, 0.15);
  }

  .checklist-item:hover {
    background-color: var(--color-primary-light);
    border-color: var(--color-primary);
  }

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

  .btn-primary {
    color: var(--color-bg-secondary);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
  }

  .btn-primary:hover {
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
  }
}

.error-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.error-section {
  width: 100%;
  padding: var(--space-lg) var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

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

.content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.error-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  animation: fadeInUp 0.8s ease-out;
}

.error-visual {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.error-code-container {
  position: relative;
  display: inline-block;
}

.error-code {
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 800;
  font-family: var(--font-heading);
  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.02em;
  display: block;
  line-height: 1;
  margin: 0;
  padding: 0;
}

.error-decoration {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.1;
  animation: spin 8s linear infinite;
}

.error-message {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.error-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-text-dark-primary);
  margin: 0;
  padding: 0;
  letter-spacing: -0.01em;
}

.error-description {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
  margin: 0;
  padding: 0;
}

.error-details {
  background-color: var(--color-bg-card-dark);
  border-left: 3px solid var(--color-primary);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin: var(--space-sm) 0;
}

.error-subtext {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 600;
  font-family: var(--font-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  white-space: nowrap;
}

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

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.btn-large {
  padding: var(--space-md) var(--space-2xl);
  margin-top: var(--space-md);
}

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

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-2xl) var(--space-md);
  }

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

  .error-visual {
    height: 250px;
    margin-bottom: var(--space-lg);
  }

  .error-decoration {
    width: 300px;
    height: 300px;
  }

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

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl) var(--space-lg);
  }

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

  .error-visual {
    height: 280px;
  }
}

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

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

.contact-feedback-page {
  background-color: var(--color-bg-primary);
  color: var(--color-text-dark-primary);
}

.contact-feedback-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-feedback-hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.contact-feedback-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.contact-feedback-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .contact-feedback-hero {
    padding: var(--space-3xl) 0;
  }
}

@media (min-width: 1024px) {
  .contact-feedback-hero {
    padding: 4rem 0;
  }
}

.contact-feedback-main {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.contact-feedback-main-content {
  width: 100%;
}

.contact-feedback-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xl);
  align-items: flex-start;
}

.contact-feedback-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-feedback-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 1024px) {
  .contact-feedback-form-wrapper {
    flex: 1 1 50%;
  }

  .contact-feedback-info-wrapper {
    flex: 1 1 50%;
  }
}

.contact-feedback-form-header {
  margin-bottom: var(--space-lg);
}

.contact-feedback-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.contact-feedback-form-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
}

.contact-feedback-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  width: 100%;
}

.contact-feedback-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  width: 100%;
}

.contact-feedback-label {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
  display: block;
}

.contact-feedback-input,
.contact-feedback-textarea {
  font-family: var(--font-primary);
  width: 100%;
  padding: var(--space-md);
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  color: var(--color-text-dark-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.5;
  transition: all 0.3s ease;
}

.contact-feedback-input::placeholder,
.contact-feedback-textarea::placeholder {
  color: var(--color-text-dark-muted);
}

.contact-feedback-input:focus,
.contact-feedback-textarea:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.contact-feedback-textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-feedback-form-consent {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  margin-top: var(--space-sm);
}

.contact-feedback-checkbox {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--color-primary);
}

.contact-feedback-consent-label {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
  cursor: pointer;
}

.contact-feedback-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 600;
}

.contact-feedback-privacy-link:hover,
.contact-feedback-privacy-link:focus {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-feedback-submit {
  font-family: var(--font-primary);
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-lg);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: -0.01em;
  margin-top: var(--space-sm);
}

.contact-feedback-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}

.contact-feedback-submit:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.contact-feedback-submit:active {
  transform: translateY(0);
}

.contact-feedback-info-header {
  margin-bottom: var(--space-lg);
}

.contact-feedback-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.contact-feedback-info-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
}

.contact-feedback-info-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.contact-feedback-info-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-feedback-info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  font-size: 1.25rem;
}

.contact-feedback-info-content {
  flex: 1;
}

.contact-feedback-info-item-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: var(--space-xs);
}

.contact-feedback-info-item-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-dark-primary);
  line-height: 1.6;
  margin-bottom: var(--space-xs);
}

.contact-feedback-info-item-meta {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  color: var(--color-text-dark-muted);
  line-height: 1.5;
}

.contact-feedback-info-highlight {
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  overflow: hidden;
}

.contact-feedback-info-highlight-content {
  position: relative;
  z-index: 1;
}

.contact-feedback-info-highlight-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.contact-feedback-info-highlight-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
}

.contact-feedback-cta {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: var(--space-2xl);
}

.contact-feedback-cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-feedback-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.contact-feedback-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .contact-feedback-main {
    padding: var(--space-3xl) 0;
  }

  .contact-feedback-grid {
    gap: var(--space-3xl);
  }

  .contact-feedback-cta {
    padding: var(--space-3xl) 0;
  }
}

@media (min-width: 1024px) {
  .contact-feedback-main {
    padding: 4rem 0;
  }

  .contact-feedback-grid {
    gap: 4rem;
  }

  .contact-feedback-cta {
    padding: 4rem 0;
  }
}

@media (max-width: 1023px) {
  .contact-feedback-grid {
    flex-direction: column;
  }

  .contact-feedback-form-wrapper,
  .contact-feedback-info-wrapper {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-feedback-input,
  .contact-feedback-textarea,
  .contact-feedback-submit,
  .contact-feedback-privacy-link {
    transition: none;
  }
}
.header-payroll-hub-mobile-toggle.active{
  display: none;
}
.thank-content{
  margin: 0 auto;
}