
    @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-dark-accent: #1e293b;
  --color-bg-card-dark: rgba(255, 255, 255, 0.05);
  --color-bg-card-light: #ffffff;
  
  
  --color-text-light: #ffffff;
  --color-text-dark: #0f172a;
  --color-text-secondary-light: #94a3b8;
  --color-text-secondary-dark: #64748b;
  --color-text-muted-light: #64748b;
  --color-text-muted-dark: #9ca3af;
  
  
  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-primary-light: #3b82f6;
  --color-secondary: #059669;
  --color-secondary-hover: #047857;
  --color-accent-warm: #f59e0b;
  --color-accent-danger: #ef4444;
  
  
  --font-heading: 'Sora', sans-serif;
  --font-body: '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;
  --space-4xl: 8rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.2);
  
  
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
  
  
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;
  
  
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  --line-height-loose: 2;
}

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

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

body {
  background: var(--color-bg-secondary);
  color: var(--color-text-dark);
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  font-weight: 400;
  overflow-x: hidden;
}

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

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

.container-lg {
  max-width: 1280px;
  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: var(--line-height-tight);
  letter-spacing: -0.02em;
}

h1 {
  font-size: var(--font-size-5xl);
  font-weight: 700;
}

h2 {
  font-size: var(--font-size-4xl);
  font-weight: 700;
}

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

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

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

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

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

small {
  font-size: var(--font-size-sm);
}

.section-hero {
  background: var(--color-bg-primary);
  color: var(--color-text-light);
  padding: var(--space-4xl) var(--space-md);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.section-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(5, 150, 105, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.section-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.section-hero h1 {
  font-size: var(--font-size-6xl);
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
}

.section-hero p {
  font-size: var(--font-size-xl);
  color: var(--color-text-secondary-light);
  margin-bottom: var(--space-xl);
  line-height: var(--line-height-relaxed);
}

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

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

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

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

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

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

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

.section-dark-accent h2,
.section-dark-accent h3,
.section-dark-accent h4 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

.flex-wrap {
  flex-wrap: wrap;
}

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

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

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

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

.card-dark p {
  color: var(--color-text-secondary-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

.btn-outline-dark:hover {
  background: var(--color-text-dark);
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

.badge-primary {
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
}

.badge-secondary {
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-secondary);
}

.badge-success {
  background: rgba(5, 150, 105, 0.15);
  color: var(--color-secondary);
}

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

.badge-danger {
  background: rgba(239, 68, 68, 0.1);
  color: var(--color-accent-danger);
}

.list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.list-item::before {
  content: '';
  color: var(--color-secondary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.section-dark-accent .list-item::before {
  color: var(--color-accent-warm);
}

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

th {
  background: var(--color-primary);
  color: var(--color-text-light);
  padding: var(--space-md);
  text-align: left;
  font-weight: 600;
  border: none;
}

td {
  padding: var(--space-md);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

tr:hover {
  background: rgba(37, 99, 235, 0.05);
}

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

.section-dark-accent tr:hover {
  background: rgba(37, 99, 235, 0.1);
}

.comparison-table {
  overflow-x: auto;
}

.comparison-table table {
  min-width: 100%;
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--color-text-dark);
  background: var(--color-bg-tertiary);
}

.section-dark-accent .comparison-table td:first-child {
  color: var(--color-text-light);
  background: rgba(255, 255, 255, 0.05);
}

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

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

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

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

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-sm {
  width: 20px;
  height: 20px;
  font-size: 16px;
}

.icon-md {
  width: 32px;
  height: 32px;
  font-size: 24px;
}

.icon-lg {
  width: 48px;
  height: 48px;
  font-size: 32px;
}

.feature-box {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.feature-box-light {
  background: var(--color-bg-tertiary);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.feature-box-dark h3,
.feature-box-dark h4 {
  color: var(--color-text-light);
}

.feature-box-dark p {
  color: var(--color-text-secondary-light);
}

.pricing-card {
  background: var(--color-bg-card-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  border: 2px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition-base);
}

.pricing-card.featured {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px var(--color-primary), var(--shadow-lg);
  transform: scale(1.05);
}

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

.pricing-card h3 {
  margin-bottom: var(--space-md);
  color: var(--color-text-dark);
}

.pricing-amount {
  font-size: var(--font-size-5xl);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.pricing-period {
  color: var(--color-text-secondary-dark);
  margin-bottom: var(--space-xl);
}

.testimonial {
  background: var(--color-bg-card-light);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.testimonial-text {
  font-style: italic;
  color: var(--color-text-secondary-dark);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-relaxed);
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: var(--space-xs);
}

.testimonial-role {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted-dark);
}

.section-dark-accent .testimonial {
  background: var(--color-bg-card-dark);
  border-left-color: var(--color-accent-warm);
}

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

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

.section-dark-accent .testimonial-role {
  color: var(--color-text-muted-light);
}

.tabs {
  display: flex;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  margin-bottom: var(--space-lg);
  gap: 0;
}

.tab-button {
  background: none;
  border: none;
  padding: var(--space-md) var(--space-lg);
  cursor: pointer;
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--color-text-secondary-dark);
  border-bottom: 3px solid transparent;
  transition: all var(--transition-fast);
}

.tab-button.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.tab-button:hover {
  color: var(--color-text-dark);
}

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

.section-dark-accent .tab-button.active {
  color: var(--color-accent-warm);
  border-bottom-color: var(--color-accent-warm);
}

.accordion-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: var(--space-md);
}

.accordion-button {
  background: none;
  border: none;
  width: 100%;
  padding: var(--space-md) 0;
  text-align: left;
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--color-text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition-fast);
}

.accordion-button:hover {
  color: var(--color-primary);
}

.accordion-icon {
  transition: transform var(--transition-base);
}

.accordion-button.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
  color: var(--color-text-secondary-dark);
  padding-bottom: var(--space-md);
}

.accordion-content.active {
  max-height: 1000px;
}

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

.section-dark-accent .accordion-button:hover {
  color: var(--color-accent-warm);
}

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

.divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin: var(--space-xl) 0;
}

.section-dark-accent .divider {
  background: rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

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

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

.text-italic {
  font-style: italic;
}

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

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: var(--font-size-sm);
}

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

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

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

.p-0 { padding: 0; }
.p-xs { padding: var(--space-xs); }
.p-sm { padding: var(--space-sm); }
.p-md { padding: var(--space-md); }
.p-lg { padding: var(--space-lg); }
.p-xl { padding: var(--space-xl); }

.px-sm { padding-left: var(--space-sm); padding-right: var(--space-sm); }
.px-md { padding-left: var(--space-md); padding-right: var(--space-md); }
.px-lg { padding-left: var(--space-lg); padding-right: var(--space-lg); }

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

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

@media (max-width: 1024px) {
  h1 {
    font-size: var(--font-size-4xl);
  }
  
  h2 {
    font-size: var(--font-size-3xl);
  }
  
  h3 {
    font-size: var(--font-size-2xl);
  }
  
  .section-hero {
    padding: var(--space-3xl) var(--space-md);
    min-height: auto;
  }
  
  .section-hero h1 {
    font-size: var(--font-size-4xl);
  }
  
  .section-hero p {
    font-size: var(--font-size-lg);
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  :root {
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --font-size-5xl: 2.25rem;
    --font-size-6xl: 3rem;
  }
  
  .section-hero {
    padding: var(--space-2xl) var(--space-md);
  }
  
  .section-light,
  .section-gray,
  .section-dark-accent {
    padding: var(--space-2xl) var(--space-md);
  }
  
  .tabs {
    flex-wrap: wrap;
  }
  
  table {
    font-size: var(--font-size-sm);
  }
  
  th,
  td {
    padding: var(--space-sm);
  }
  
  .btn {
    width: 100%;
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: var(--font-size-3xl);
  }
  
  h2 {
    font-size: var(--font-size-2xl);
  }
  
  h3 {
    font-size: var(--font-size-xl);
  }
  
  p {
    font-size: var(--font-size-sm);
  }
  
  .section-hero h1 {
    font-size: var(--font-size-3xl);
  }
  
  .section-hero p {
    font-size: var(--font-size-base);
  }
  
  .pricing-amount {
    font-size: var(--font-size-3xl);
  }
  
  .grid,
  .flex {
    gap: var(--space-sm);
  }
  
  .card,
  .feature-box,
  .pricing-card {
    padding: var(--space-md);
  }
  
  .tabs {
    gap: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .tab-button {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--font-size-sm);
  }
}

@media print {
  body {
    background: var(--color-bg-secondary);
    color: var(--color-text-dark);
  }
  
  .btn,
  .no-print {
    display: none;
  }
  
  .section-dark-accent {
    background: var(--color-bg-secondary);
    color: var(--color-text-dark);
  }
}

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

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

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

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

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

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

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

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}
.accounting-hub {
  width: 100%;
  overflow: hidden;
}

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

.section-tag-index {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.hero-section-index {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 4vw, 2rem);
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-section-index::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(5, 150, 105, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content-index {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: 100%;
}

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

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

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

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

.hero-subtitle-index {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

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

.hero-buttons-index .btn {
  flex: 1 1 150px;
  min-width: 150px;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.875rem, 1vw, 1rem);
}

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

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

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

.stat-label-index {
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
}

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

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

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

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

.features-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  margin: 0;
}

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

.feature-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card-index:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
  border-color: #2563eb;
}

.card-icon-index {
  width: 48px;
  height: 48px;
  background: #dbeafe;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  font-size: 24px;
  margin: 0 auto;
}

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

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

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

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

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

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

.comparison-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  margin: 0;
}

.comparison-table-index {
  width: 100%;
  overflow-x: auto;
  border-radius: 12px;
}

.software-comparison-table-index {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  border-radius: 12px;
  overflow: hidden;
}

.software-comparison-table-index thead {
  background: #2563eb;
}

.table-header-index {
  padding: clamp(1rem, 2vw, 1.5rem);
  text-align: left;
  color: #ffffff;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.software-comparison-table-index tbody tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: background 0.2s ease;
}

.software-comparison-table-index tbody tr:hover {
  background: rgba(37, 99, 235, 0.05);
}

.table-name-index {
  font-weight: 600;
  color: #0f172a;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #f1f5f9;
}

.table-cell-index {
  padding: clamp(1rem, 2vw, 1.5rem);
  color: #475569;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

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

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

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

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

.featured-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  margin: 0;
}

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

.featured-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.featured-card-index:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.15);
}

.card-image-index {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

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

.featured-card-index .card-title-index {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #0f172a;
  font-weight: 600;
  margin: 0;
}

.featured-card-index .card-text-index {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  margin: 0;
  line-height: 1.6;
  flex: 1;
}

.card-link-index {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
  margin-top: 0.5rem;
}

.card-link-index:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

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

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

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

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

.about-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  font-weight: 700;
  margin: 0;
  margin-top: 1rem;
}

.about-description-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
}

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

.about-list-item-index {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
}

.about-list-item-index::before {
  content: '';
  color: #f59e0b;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 1.25rem;
}

.about-image-block-index {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

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

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

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

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

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

.benefits-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  margin: 0;
}

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

.benefit-item-index {
  flex: 1 1 280px;
  max-width: 380px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

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

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

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

.faq-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

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

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

.faq-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  margin: 0;
}

.faq-items-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item-index {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item-index:hover {
  border-color: #2563eb;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.accordion-button-index {
  width: 100%;
  padding: clamp(1.25rem, 2vw, 1.5rem);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  font-weight: 600;
  color: #0f172a;
  transition: color 0.2s ease;
}

.accordion-button-index:hover {
  color: #2563eb;
}

.accordion-title-index {
  flex: 1;
}

.accordion-icon-index {
  flex-shrink: 0;
  color: #2563eb;
  transition: transform 0.3s ease;
}

.accordion-button-index.active .accordion-icon-index {
  transform: rotate(180deg);
}

.accordion-content-index {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-button-index.active + .accordion-content-index {
  max-height: 1000px;
}

.accordion-text-index {
  padding: 0 clamp(1.25rem, 2vw, 1.5rem) clamp(1.25rem, 2vw, 1.5rem);
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

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

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

.cta-box-index {
  background: linear-gradient(135deg, #2563eb 0%, #059669 100%);
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
  max-width: 700px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  box-shadow: 0 20px 25px rgba(37, 99, 235, 0.2);
}

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

.cta-text-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.6;
}

.btn-large-index {
  width: auto;
  align-self: center;
  padding: clamp(0.875rem, 1.5vw, 1rem) clamp(2rem, 4vw, 3rem) !important;
  font-size: clamp(0.875rem, 1vw, 1.125rem) !important;
}

.cta-footnote-index {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-style: italic;
}

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

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

.cookie-text-index {
  color: #ffffff;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  margin: 0;
  flex: 1 1 100%;
  text-align: center;
}

.cookie-buttons-index {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  flex: 1 1 auto;
}

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.cookie-btn-accept-index {
  background: #2563eb;
  color: #ffffff;
}

.cookie-btn-accept-index:hover {
  background: #1d4ed8;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

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

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

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

  .hero-buttons-index .btn {
    flex: 1 1 calc(50% - 0.375rem);
  }

  .about-content-index {
    flex-direction: column;
  }

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

  .software-comparison-table-index {
    font-size: 0.875rem;
  }

  .table-header-index,
  .table-cell-index,
  .table-name-index {
    padding: 0.75rem;
  }
}

@media (max-width: 768px) {
  .hero-section-index {
    padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 3vw, 1.5rem);
    min-height: auto;
  }

  .hero-title-index {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }

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

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

  .hero-stats-index {
    flex-direction: row;
    gap: 1rem;
    justify-content: space-around;
  }

  .stat-item-index {
    flex: 1;
    min-width: 100px;
  }

  .features-cards-index,
  .benefits-grid-index {
    flex-direction: column;
  }

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

  .featured-cards-index {
    flex-direction: column;
  }

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

  .accordion-button-index {
    padding: 1rem;
    font-size: 1rem;
  }

  .accordion-text-index {
    padding: 0 1rem 1rem;
  }

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

  .cookie-banner-index {
    padding: 1rem;
  }

  .cookie-text-index {
    flex: 1 1 100%;
    margin-bottom: 0.5rem;
  }

  .cookie-buttons-index {
    flex: 1 1 100%;
    gap: 0.75rem;
  }

  .cookie-btn-accept-index,
  .cookie-btn-decline-index {
    flex: 1;
    min-width: 100px;
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 480px) {
  .hero-section-index {
    padding: 2rem 1rem;
  }

  .hero-title-index {
    font-size: 1.75rem;
  }

  .hero-subtitle-index {
    font-size: 1rem;
  }

  .features-title-index,
  .comparison-title-index,
  .featured-title-index,
  .benefits-title-index,
  .faq-title-index {
    font-size: 1.5rem;
  }

  .features-subtitle-index,
  .comparison-subtitle-index,
  .featured-subtitle-index,
  .faq-subtitle-index {
    font-size: 0.875rem;
  }

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

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

  .stat-label-index {
    font-size: 0.75rem;
  }

  .card-icon-index {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .benefit-number-index {
    font-size: 2rem;
  }

  .feature-card-index,
  .benefit-item-index,
  .featured-card-index {
    padding: 1rem;
  }

  .accordion-button-index {
    padding: 0.75rem;
    font-size: 0.875rem;
  }

  .accordion-text-index {
    padding: 0 0.75rem 0.75rem;
    font-size: 0.875rem;
  }

  .cta-title-index {
    font-size: 1.5rem;
  }

  .cta-text-index {
    font-size: 0.875rem;
  }

  .btn-large-index {
    width: 100%;
  }

  .cookie-banner-index {
    gap: 0.75rem;
  }

  .cookie-text-index {
    font-size: 0.75rem;
  }

  .cookie-btn-accept-index,
  .cookie-btn-decline-index {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    min-width: auto;
  }
}

    .footer {
  background: var(--color-bg-dark-accent);
  color: var(--color-text-secondary-light);
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 5vw, 3rem) 0;
  overflow: hidden;
  margin-top: 0;
}

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

.footer-content {
  display: block;
}

.footer-about {
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
  max-width: 90%;
}

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

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

.footer-sections {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 6vw, 4rem);
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.footer-nav,
.footer-contact {
  flex: 1 1 250px;
  min-width: 200px;
}

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

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, 1vw, 0.875rem);
}

.footer-links li {
  display: block;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary-light);
  text-decoration: none;
  transition: color var(--transition-fast);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

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

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

.footer-legal-links li {
  display: block;
}

.footer-legal-links a {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary-light);
  text-decoration: none;
  transition: color var(--transition-fast);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.footer-copyright p {
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 0.9vw, 0.9rem);
  color: var(--color-text-secondary-light);
  margin: 0;
  line-height: var(--line-height-normal);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

  .footer-nav,
  .footer-contact {
    flex: 1 1 100%;
  }

  .footer-about {
    max-width: 100%;
  }

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

@media (max-width: 480px) {
  .footer {
    padding: clamp(2rem, 6vw, 3rem) 0 clamp(1.5rem, 4vw, 2rem) 0;
  }

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

  .footer-sections {
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
  }

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

  .footer-copyright {
    padding-top: clamp(1rem, 3vw, 1.5rem);
  }
}
    

.category-page-accounting-software-comparison {
  overflow: hidden;
}

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

.hero-section-accounting-software-comparison::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(5, 150, 105, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content-accounting-software-comparison {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-title-accounting-software-comparison {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-subtitle-accounting-software-comparison {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #94a3b8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.6;
}

.hero-description-accounting-software-comparison {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  margin-bottom: 0;
  line-height: 1.75;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.posts-title-accounting-software-comparison {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.posts-subtitle-accounting-software-comparison {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  color: #64748b;
  margin-bottom: 0;
  line-height: 1.6;
}

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

.card-accounting-software-comparison {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  flex: 1 1 clamp(280px, 90vw, 380px);
  max-width: 420px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.card-accounting-software-comparison:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.card-image-accounting-software-comparison {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.card-title-accounting-software-comparison {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.card-description-accounting-software-comparison {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1rem);
  color: #64748b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.6;
}

.card-meta-accounting-software-comparison {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  color: #94a3b8;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  padding-bottom: clamp(0.75rem, 1.5vw, 1rem);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

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

.card-reading-time-accounting-software-comparison i,
.card-level-accounting-software-comparison i,
.card-date-accounting-software-comparison i {
  color: #2563eb;
  font-size: 0.875rem;
}

.card-link-accounting-software-comparison {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #2563eb;
  color: #ffffff;
  padding: clamp(0.625rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.25rem);
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 0.975rem);
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
  border: 2px solid #2563eb;
}

.card-link-accounting-software-comparison:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  transform: translateX(2px);
}

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

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

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

.comparison-title-accounting-software-comparison {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.comparison-text-accounting-software-comparison {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  color: #64748b;
  margin-bottom: 0;
  line-height: 1.6;
}

.comparison-checklist-accounting-software-comparison {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.checklist-item-accounting-software-comparison {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border-left: 4px solid #2563eb;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.checklist-icon-accounting-software-comparison {
  flex-shrink: 0;
  color: #059669;
  font-size: clamp(1.5rem, 2vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
}

.checklist-text-accounting-software-comparison {
  flex: 1;
}

.checklist-heading-accounting-software-comparison {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  letter-spacing: -0.01em;
}

.checklist-description-accounting-software-comparison {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1rem);
  color: #64748b;
  margin-bottom: 0;
  line-height: 1.6;
}

.features-section-accounting-software-comparison {
  background: #1e293b;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.features-title-accounting-software-comparison {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  margin-bottom: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.features-text-accounting-software-comparison {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.features-paragraph-accounting-software-comparison {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  margin-bottom: 0;
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .hero-title-accounting-software-comparison {
    font-size: 2.5rem;
  }

  .hero-subtitle-accounting-software-comparison {
    font-size: 1.25rem;
  }

  .posts-title-accounting-software-comparison {
    font-size: 2rem;
  }

  .card-accounting-software-comparison {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .comparison-title-accounting-software-comparison {
    font-size: 2rem;
  }

  .features-title-accounting-software-comparison {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-section-accounting-software-comparison {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .hero-title-accounting-software-comparison {
    font-size: 1.75rem;
  }

  .hero-subtitle-accounting-software-comparison {
    font-size: 1rem;
  }

  .hero-description-accounting-software-comparison {
    font-size: 0.9rem;
  }

  .posts-section-accounting-software-comparison {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .posts-title-accounting-software-comparison {
    font-size: 1.5rem;
  }

  .posts-grid-accounting-software-comparison {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .card-accounting-software-comparison {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .comparison-section-accounting-software-comparison {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .comparison-title-accounting-software-comparison {
    font-size: 1.5rem;
  }

  .checklist-item-accounting-software-comparison {
    gap: 1rem;
    padding: 1.25rem;
  }

  .checklist-icon-accounting-software-comparison {
    font-size: 1.5rem;
  }

  .features-section-accounting-software-comparison {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .features-title-accounting-software-comparison {
    font-size: 1.5rem;
  }

  .card-meta-accounting-software-comparison {
    gap: 0.75rem;
    font-size: 0.75rem;
  }
}

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

  .hero-subtitle-accounting-software-comparison {
    font-size: 0.95rem;
  }

  .hero-description-accounting-software-comparison {
    font-size: 0.875rem;
  }

  .posts-title-accounting-software-comparison {
    font-size: 1.25rem;
  }

  .card-title-accounting-software-comparison {
    font-size: 1rem;
  }

  .card-description-accounting-software-comparison {
    font-size: 0.8rem;
  }

  .card-link-accounting-software-comparison {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .comparison-title-accounting-software-comparison {
    font-size: 1.25rem;
  }

  .checklist-item-accounting-software-comparison {
    gap: 0.75rem;
    padding: 1rem;
  }

  .checklist-icon-accounting-software-comparison {
    font-size: 1.25rem;
  }

  .checklist-heading-accounting-software-comparison {
    font-size: 1rem;
  }

  .features-title-accounting-software-comparison {
    font-size: 1.25rem;
  }

  .features-paragraph-accounting-software-comparison {
    font-size: 0.875rem;
  }

  .card-meta-accounting-software-comparison {
    gap: 0.5rem;
    font-size: 0.7rem;
  }
}

.main-buchhaltungssoftware-freelancer {
  width: 100%;
  overflow-x: hidden;
}

.hero-section-buchhaltungssoftware-freelancer {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a1f3a 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.hero-section-buchhaltungssoftware-freelancer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(5, 150, 105, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content-buchhaltungssoftware-freelancer {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 900px;
  margin: 0 auto;
}

.breadcrumbs-buchhaltungssoftware-freelancer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  color: #94a3b8;
  flex-wrap: wrap;
}

.breadcrumbs-buchhaltungssoftware-freelancer a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 150ms ease-in-out;
}

.breadcrumbs-buchhaltungssoftware-freelancer a:hover {
  color: #60a5fa;
}

.breadcrumbs-buchhaltungssoftware-freelancer span {
  color: #64748b;
}

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

.hero-subtitle-buchhaltungssoftware-freelancer {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

.hero-meta-buchhaltungssoftware-freelancer {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #94a3b8;
}

.meta-item-buchhaltungssoftware-freelancer {
  display: flex;
  align-items: center;
}

.meta-separator-buchhaltungssoftware-freelancer {
  color: #64748b;
}

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

.hero-image-buchhaltungssoftware-freelancer {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

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

.intro-text-block-buchhaltungssoftware-freelancer {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-block-buchhaltungssoftware-freelancer {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-paragraph-buchhaltungssoftware-freelancer {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-buchhaltungssoftware-freelancer {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  display: block;
  object-fit: cover;
  max-height: 400px;
}

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

  .intro-text-block-buchhaltungssoftware-freelancer,
  .intro-image-block-buchhaltungssoftware-freelancer {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.features-header-buchhaltungssoftware-freelancer {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

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

.features-subtitle-buchhaltungssoftware-freelancer {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.15rem);
  color: #64748b;
  line-height: 1.6;
}

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

.feature-card-buchhaltungssoftware-freelancer {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 250ms ease-in-out;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card-buchhaltungssoftware-freelancer:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon-buchhaltungssoftware-freelancer {
  width: 48px;
  height: 48px;
  background: #eff6ff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  font-size: 24px;
}

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

.feature-card-text-buchhaltungssoftware-freelancer {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .features-grid-buchhaltungssoftware-freelancer {
    flex-direction: column;
  }

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

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

.comparison-header-buchhaltungssoftware-freelancer {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

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

.comparison-subtitle-buchhaltungssoftware-freelancer {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.15rem);
  color: #64748b;
  line-height: 1.6;
}

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

.comparison-text-block-buchhaltungssoftware-freelancer {
  flex: 1 1 50%;
  max-width: 50%;
}

.comparison-image-block-buchhaltungssoftware-freelancer {
  flex: 1 1 50%;
  max-width: 50%;
}

.comparison-subheading-buchhaltungssoftware-freelancer {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 600;
  color: #0f172a;
  margin-top: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

.comparison-paragraph-buchhaltungssoftware-freelancer {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.comparison-image-buchhaltungssoftware-freelancer {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  display: block;
  object-fit: cover;
  max-height: 400px;
}

@media (max-width: 768px) {
  .comparison-content-buchhaltungssoftware-freelancer {
    flex-direction: column;
  }

  .comparison-text-block-buchhaltungssoftware-freelancer,
  .comparison-image-block-buchhaltungssoftware-freelancer {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.steps-header-buchhaltungssoftware-freelancer {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

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

.steps-subtitle-buchhaltungssoftware-freelancer {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.15rem);
  color: #64748b;
  line-height: 1.6;
}

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

.step-item-buchhaltungssoftware-freelancer {
  background: #ffffff;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all 250ms ease-in-out;
}

.step-item-buchhaltungssoftware-freelancer:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.step-number-buchhaltungssoftware-freelancer {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #2563eb;
  flex-shrink: 0;
  min-width: 60px;
  text-align: center;
}

.step-content-buchhaltungssoftware-freelancer {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

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

.step-text-buchhaltungssoftware-freelancer {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .step-item-buchhaltungssoftware-freelancer {
    flex-direction: column;
    align-items: flex-start;
  }

  .step-number-buchhaltungssoftware-freelancer {
    font-size: 2.5rem;
  }
}

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

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

.insights-text-block-buchhaltungssoftware-freelancer {
  flex: 1 1 50%;
  max-width: 50%;
}

.insights-image-block-buchhaltungssoftware-freelancer {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.insights-paragraph-buchhaltungssoftware-freelancer {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.insights-quote-buchhaltungssoftware-freelancer {
  border-left: 4px solid #2563eb;
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  margin: clamp(1.5rem, 3vw, 2rem) 0;
}

.quote-text-buchhaltungssoftware-freelancer {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.15rem);
  color: #374151;
  font-style: italic;
  line-height: 1.7;
  margin: 0 0 1rem 0;
}

.quote-author-buchhaltungssoftware-freelancer {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #64748b;
  font-weight: 600;
  display: block;
}

.insights-image-buchhaltungssoftware-freelancer {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  display: block;
  object-fit: cover;
  max-height: 400px;
}

@media (max-width: 768px) {
  .insights-content-buchhaltungssoftware-freelancer {
    flex-direction: column;
  }

  .insights-text-block-buchhaltungssoftware-freelancer,
  .insights-image-block-buchhaltungssoftware-freelancer {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.conclusion-content-buchhaltungssoftware-freelancer {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-buchhaltungssoftware-freelancer {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.conclusion-text-buchhaltungssoftware-freelancer {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.conclusion-checklist-buchhaltungssoftware-freelancer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.checklist-item-buchhaltungssoftware-freelancer {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}

.checklist-icon-buchhaltungssoftware-freelancer {
  color: #059669;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.checklist-text-buchhaltungssoftware-freelancer {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

.conclusion-final-text-buchhaltungssoftware-freelancer {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #374151;
  line-height: 1.7;
  margin: 0;
}

.disclaimer-section-buchhaltungssoftware-freelancer {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.disclaimer-content-buchhaltungssoftware-freelancer {
  background: #eff6ff;
  border-left: 4px solid #2563eb;
  border-radius: 8px;
  padding: clamp(1.5rem, 3vw, 2rem);
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-buchhaltungssoftware-freelancer {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-buchhaltungssoftware-freelancer {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

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

.related-header-buchhaltungssoftware-freelancer {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

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

.related-subtitle-buchhaltungssoftware-freelancer {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.15rem);
  color: #64748b;
  line-height: 1.6;
}

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

.related-card-buchhaltungssoftware-freelancer {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all 250ms ease-in-out;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

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

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

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

.related-card-title-buchhaltungssoftware-freelancer {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  color: #0f172a;
  margin: 0;
  line-height: 1.4;
}

.related-card-text-buchhaltungssoftware-freelancer {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .related-cards-buchhaltungssoftware-freelancer {
    flex-direction: column;
  }

  .related-card-buchhaltungssoftware-freelancer {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

  .intro-section-buchhaltungssoftware-freelancer,
  .features-section-buchhaltungssoftware-freelancer,
  .comparison-section-buchhaltungssoftware-freelancer,
  .steps-section-buchhaltungssoftware-freelancer,
  .insights-section-buchhaltungssoftware-freelancer,
  .conclusion-section-buchhaltungssoftware-freelancer,
  .disclaimer-section-buchhaltungssoftware-freelancer,
  .related-section-buchhaltungssoftware-freelancer {
    padding: 2rem 0;
  }

  .hero-title-buchhaltungssoftware-freelancer {
    font-size: 1.75rem;
  }

  .features-title-buchhaltungssoftware-freelancer,
  .comparison-title-buchhaltungssoftware-freelancer,
  .steps-title-buchhaltungssoftware-freelancer,
  .insights-title-buchhaltungssoftware-freelancer,
  .conclusion-title-buchhaltungssoftware-freelancer,
  .related-title-buchhaltungssoftware-freelancer {
    font-size: 1.5rem;
  }

  .step-number-buchhaltungssoftware-freelancer {
    font-size: 2rem;
  }
}

.main-buchhaltung-excel-software-vergleich {
  width: 100%;
  overflow: hidden;
}

.hero-section-buchhaltung-excel-software-vergleich {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a1f3a 100%);
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-buchhaltung-excel-software-vergleich::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(5, 150, 105, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-section-buchhaltung-excel-software-vergleich .container {
  position: relative;
  z-index: 2;
}

.breadcrumbs-buchhaltung-excel-software-vergleich {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.breadcrumbs-buchhaltung-excel-software-vergleich a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-buchhaltung-excel-software-vergleich a:hover {
  color: #ffffff;
}

.breadcrumbs-buchhaltung-excel-software-vergleich span {
  color: #64748b;
}

.hero-content-buchhaltung-excel-software-vergleich {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 800px;
}

.hero-title-buchhaltung-excel-software-vergleich {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-subtitle-buchhaltung-excel-software-vergleich {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-meta-buchhaltung-excel-software-vergleich {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.meta-item-buchhaltung-excel-software-vergleich {
  font-size: 0.875rem;
  color: #94a3b8;
}

.meta-separator-buchhaltung-excel-software-vergleich {
  color: #64748b;
}

.hero-image-buchhaltung-excel-software-vergleich {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-img-buchhaltung-excel-software-vergleich {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.intro-section-buchhaltung-excel-software-vergleich {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-buchhaltung-excel-software-vergleich {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-highlight-buchhaltung-excel-software-vergleich {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-buchhaltung-excel-software-vergleich {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-paragraph-buchhaltung-excel-software-vergleich {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.highlight-card-buchhaltung-excel-software-vergleich {
  background: #f8fafc;
  border-left: 4px solid #2563eb;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.highlight-title-buchhaltung-excel-software-vergleich {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.highlight-list-buchhaltung-excel-software-vergleich {
  list-style: none;
  padding: 0;
}

.highlight-item-buchhaltung-excel-software-vergleich {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

.highlight-item-buchhaltung-excel-software-vergleich::before {
  content: '';
  color: #059669;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.comparison-section-buchhaltung-excel-software-vergleich {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.comparison-content-buchhaltung-excel-software-vergleich {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.comparison-header-buchhaltung-excel-software-vergleich {
  text-align: center;
}

.comparison-title-buchhaltung-excel-software-vergleich {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.comparison-subtitle-buchhaltung-excel-software-vergleich {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.comparison-table-wrapper-buchhaltung-excel-software-vergleich {
  overflow-x: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.comparison-table-buchhaltung-excel-software-vergleich {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
}

.table-header-buchhaltung-excel-software-vergleich {
  background: #2563eb;
  color: #ffffff;
  padding: 1.25rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
}

.table-feature-buchhaltung-excel-software-vergleich {
  background: #e8eef7;
  padding: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  width: 25%;
  min-width: 150px;
}

.table-cell-buchhaltung-excel-software-vergleich {
  padding: 1.25rem;
  color: #475569;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.comparison-table-buchhaltung-excel-software-vergleich tbody tr:hover {
  background: #f8fafc;
}

.details-section-buchhaltung-excel-software-vergleich {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.details-wrapper-buchhaltung-excel-software-vergleich {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.details-text-buchhaltung-excel-software-vergleich {
  flex: 1 1 50%;
  max-width: 50%;
}

.details-image-buchhaltung-excel-software-vergleich {
  flex: 1 1 50%;
  max-width: 50%;
}

.details-title-buchhaltung-excel-software-vergleich {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.details-paragraph-buchhaltung-excel-software-vergleich {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.details-img-buchhaltung-excel-software-vergleich {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  display: block;
}

.features-section-buchhaltung-excel-software-vergleich {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.features-content-buchhaltung-excel-software-vergleich {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.features-header-buchhaltung-excel-software-vergleich {
  text-align: center;
}

.features-title-buchhaltung-excel-software-vergleich {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.features-subtitle-buchhaltung-excel-software-vergleich {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.feature-card-buchhaltung-excel-software-vergleich {
  flex: 1 1 280px;
  max-width: 360px;
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-card-buchhaltung-excel-software-vergleich:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: #2563eb;
}

.card-icon-buchhaltung-excel-software-vergleich {
  font-size: 2.5rem;
  color: #2563eb;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-title-buchhaltung-excel-software-vergleich {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.card-text-buchhaltung-excel-software-vergleich {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.decision-section-buchhaltung-excel-software-vergleich {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.decision-wrapper-buchhaltung-excel-software-vergleich {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.decision-image-buchhaltung-excel-software-vergleich {
  flex: 1 1 50%;
  max-width: 50%;
}

.decision-text-buchhaltung-excel-software-vergleich {
  flex: 1 1 50%;
  max-width: 50%;
}

.decision-title-buchhaltung-excel-software-vergleich {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.decision-paragraph-buchhaltung-excel-software-vergleich {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.decision-img-buchhaltung-excel-software-vergleich {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  display: block;
}

.decision-list-buchhaltung-excel-software-vergleich {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.list-item-buchhaltung-excel-software-vergleich {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 4px solid #059669;
}

.list-marker-buchhaltung-excel-software-vergleich {
  color: #1e293b;
  font-size: 0.95rem;
  display: block;
}

.list-text-buchhaltung-excel-software-vergleich {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
}

.quote-section-buchhaltung-excel-software-vergleich {
  background: #1e293b;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.quote-content-buchhaltung-excel-software-vergleich {
  display: flex;
  justify-content: center;
  align-items: center;
}

.featured-quote-buchhaltung-excel-software-vergleich {
  padding: 3rem;
  border-left: 4px solid #2563eb;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 8px;
  max-width: 700px;
  text-align: center;
}

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

.quote-author-buchhaltung-excel-software-vergleich {
  font-size: 0.95rem;
  color: #cbd5e1;
  display: block;
  font-style: normal;
}

.practical-section-buchhaltung-excel-software-vergleich {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.practical-text-buchhaltung-excel-software-vergleich {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-image-buchhaltung-excel-software-vergleich {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-title-buchhaltung-excel-software-vergleich {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.practical-paragraph-buchhaltung-excel-software-vergleich {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.practical-steps-buchhaltung-excel-software-vergleich {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-buchhaltung-excel-software-vergleich {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
}

.step-buchhaltung-excel-software-vergleich::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background: #2563eb;
  border-radius: 50%;
}

.practical-img-buchhaltung-excel-software-vergleich {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  display: block;
}

.conclusion-section-buchhaltung-excel-software-vergleich {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-buchhaltung-excel-software-vergleich {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-buchhaltung-excel-software-vergleich {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-align: center;
}

.conclusion-paragraph-buchhaltung-excel-software-vergleich {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.7;
  text-align: left;
}

.cta-box-buchhaltung-excel-software-vergleich {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
  color: #ffffff;
  margin-top: 3rem;
}

.cta-title-buchhaltung-excel-software-vergleich {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-text-buchhaltung-excel-software-vergleich {
  font-size: 1rem;
  color: #e0e7ff;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-button-buchhaltung-excel-software-vergleich {
  display: inline-block;
  background: #ffffff;
  color: #2563eb;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.cta-button-buchhaltung-excel-software-vergleich:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.disclaimer-section-buchhaltung-excel-software-vergleich {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(2rem, 6vw, 4rem) 0;
  border-top: 1px solid #e2e8f0;
  overflow: hidden;
}

.disclaimer-content-buchhaltung-excel-software-vergleich {
  display: flex;
  justify-content: center;
}

.disclaimer-box-buchhaltung-excel-software-vergleich {
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: 2rem;
  border-radius: 8px;
  max-width: 700px;
}

.disclaimer-title-buchhaltung-excel-software-vergleich {
  font-size: 1.1rem;
  font-weight: 700;
  color: #92400e;
  margin-bottom: 1rem;
}

.disclaimer-text-buchhaltung-excel-software-vergleich {
  font-size: 0.95rem;
  color: #b45309;
  line-height: 1.6;
  margin: 0;
}

.related-section-buchhaltung-excel-software-vergleich {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.related-content-buchhaltung-excel-software-vergleich {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.related-title-buchhaltung-excel-software-vergleich {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  line-height: 1.2;
}

.related-cards-buchhaltung-excel-software-vergleich {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-buchhaltung-excel-software-vergleich {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-buchhaltung-excel-software-vergleich:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.related-image-buchhaltung-excel-software-vergleich {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-img-buchhaltung-excel-software-vergleich {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-title-buchhaltung-excel-software-vergleich {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  padding: 1.5rem 1.5rem 0.75rem 1.5rem;
  margin: 0;
}

.related-card-text-buchhaltung-excel-software-vergleich {
  font-size: 0.9rem;
  color: #64748b;
  padding: 0 1.5rem;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1rem;
}

.related-card-link-buchhaltung-excel-software-vergleich {
  display: inline-block;
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.related-card-link-buchhaltung-excel-software-vergleich:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .intro-content-buchhaltung-excel-software-vergleich,
  .details-wrapper-buchhaltung-excel-software-vergleich,
  .decision-wrapper-buchhaltung-excel-software-vergleich,
  .practical-content-buchhaltung-excel-software-vergleich {
    flex-direction: column;
  }

  .intro-text-buchhaltung-excel-software-vergleich,
  .intro-highlight-buchhaltung-excel-software-vergleich,
  .details-text-buchhaltung-excel-software-vergleich,
  .details-image-buchhaltung-excel-software-vergleich,
  .decision-image-buchhaltung-excel-software-vergleich,
  .decision-text-buchhaltung-excel-software-vergleich,
  .practical-text-buchhaltung-excel-software-vergleich,
  .practical-image-buchhaltung-excel-software-vergleich {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .featured-quote-buchhaltung-excel-software-vergleich {
    padding: 2rem;
  }

  .cta-box-buchhaltung-excel-software-vergleich {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-section-buchhaltung-excel-software-vergleich {
    padding: 2rem 0;
  }

  .intro-section-buchhaltung-excel-software-vergleich,
  .comparison-section-buchhaltung-excel-software-vergleich,
  .details-section-buchhaltung-excel-software-vergleich,
  .features-section-buchhaltung-excel-software-vergleich,
  .decision-section-buchhaltung-excel-software-vergleich,
  .quote-section-buchhaltung-excel-software-vergleich,
  .practical-section-buchhaltung-excel-software-vergleich,
  .conclusion-section-buchhaltung-excel-software-vergleich,
  .disclaimer-section-buchhaltung-excel-software-vergleich,
  .related-section-buchhaltung-excel-software-vergleich {
    padding: 2.5rem 0;
  }

  .hero-title-buchhaltung-excel-software-vergleich {
    font-size: 1.75rem;
  }

  .breadcrumbs-buchhaltung-excel-software-vergleich {
    font-size: 0.75rem;
  }

  .comparison-table-buchhaltung-excel-software-vergleich {
    font-size: 0.85rem;
  }

  .table-header-buchhaltung-excel-software-vergleich,
  .table-feature-buchhaltung-excel-software-vergleich,
  .table-cell-buchhaltung-excel-software-vergleich {
    padding: 1rem;
  }

  .feature-card-buchhaltung-excel-software-vergleich {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-card-buchhaltung-excel-software-vergleich {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .disclaimer-box-buchhaltung-excel-software-vergleich {
    padding: 1.5rem;
  }

  .cta-box-buchhaltung-excel-software-vergleich {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title-buchhaltung-excel-software-vergleich {
    font-size: 1.5rem;
  }

  .hero-subtitle-buchhaltung-excel-software-vergleich {
    font-size: 1rem;
  }

  .comparison-title-buchhaltung-excel-software-vergleich,
  .details-title-buchhaltung-excel-software-vergleich,
  .features-title-buchhaltung-excel-software-vergleich,
  .decision-title-buchhaltung-excel-software-vergleich,
  .practical-title-buchhaltung-excel-software-vergleich,
  .conclusion-title-buchhaltung-excel-software-vergleich,
  .related-title-buchhaltung-excel-software-vergleich {
    font-size: 1.5rem;
  }

  .hero-meta-buchhaltung-excel-software-vergleich {
    gap: 0.5rem;
  }

  .meta-item-buchhaltung-excel-software-vergleich {
    font-size: 0.75rem;
  }

  .feature-card-buchhaltung-excel-software-vergleich {
    padding: 1.5rem;
  }

  .card-icon-buchhaltung-excel-software-vergleich {
    font-size: 2rem;
    width: 50px;
    height: 50px;
  }

  .featured-quote-buchhaltung-excel-software-vergleich {
    padding: 1.5rem;
  }

  .quote-text-buchhaltung-excel-software-vergleich {
    font-size: 1rem;
  }

  .list-item-buchhaltung-excel-software-vergleich {
    padding: 1rem;
  }

  .related-card-title-buchhaltung-excel-software-vergleich {
    font-size: 1rem;
  }
}

.main-sicherheit-datenschutz-buchhaltungssoftware {
  width: 100%;
  overflow-x: hidden;
}

.hero-section-sicherheit-datenschutz-buchhaltungssoftware {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a1f3a 100%);
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.hero-section-sicherheit-datenschutz-buchhaltungssoftware::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(5, 150, 105, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.breadcrumbs-sicherheit-datenschutz-buchhaltungssoftware a {
  color: #64b5f6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-sicherheit-datenschutz-buchhaltungssoftware a:hover {
  color: #90caf9;
  text-decoration: underline;
}

.breadcrumbs-sicherheit-datenschutz-buchhaltungssoftware span {
  color: #64b5f6;
}

.breadcrumbs-sicherheit-datenschutz-buchhaltungssoftware > span:last-child {
  color: #e0e0e0;
}

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

.hero-text-wrapper-sicherheit-datenschutz-buchhaltungssoftware {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-subtitle-sicherheit-datenschutz-buchhaltungssoftware {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.3rem);
  color: #b0bec5;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-meta-sicherheit-datenschutz-buchhaltungssoftware {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.meta-item-sicherheit-datenschutz-buchhaltungssoftware {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: #90caf9;
}

.meta-item-sicherheit-datenschutz-buchhaltungssoftware i {
  color: #2196f3;
  font-size: 1rem;
}

.hero-image-sicherheit-datenschutz-buchhaltungssoftware {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-sicherheit-datenschutz-buchhaltungssoftware {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  display: block;
}

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

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

  .hero-title-sicherheit-datenschutz-buchhaltungssoftware {
    font-size: 2rem;
  }

  .hero-subtitle-sicherheit-datenschutz-buchhaltungssoftware {
    font-size: 1rem;
  }
}

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

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

.intro-text-sicherheit-datenschutz-buchhaltungssoftware {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.intro-image-sicherheit-datenschutz-buchhaltungssoftware {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-sicherheit-datenschutz-buchhaltungssoftware {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: block;
  object-fit: cover;
}

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

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

  .intro-heading-sicherheit-datenschutz-buchhaltungssoftware {
    font-size: 1.75rem;
  }
}

.standards-section-sicherheit-datenschutz-buchhaltungssoftware {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.standards-image-sicherheit-datenschutz-buchhaltungssoftware {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.standards-img-sicherheit-datenschutz-buchhaltungssoftware {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: block;
  object-fit: cover;
}

.standards-text-sicherheit-datenschutz-buchhaltungssoftware {
  flex: 1 1 50%;
  max-width: 50%;
}

.standards-heading-sicherheit-datenschutz-buchhaltungssoftware {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.standards-paragraph-sicherheit-datenschutz-buchhaltungssoftware {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.standards-list-sicherheit-datenschutz-buchhaltungssoftware {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.standard-item-sicherheit-datenschutz-buchhaltungssoftware {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #2563eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.standard-title-sicherheit-datenschutz-buchhaltungssoftware {
  font-size: 1.125rem;
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.standard-desc-sicherheit-datenschutz-buchhaltungssoftware {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .standards-content-sicherheit-datenschutz-buchhaltungssoftware {
    flex-direction: column;
  }

  .standards-image-sicherheit-datenschutz-buchhaltungssoftware,
  .standards-text-sicherheit-datenschutz-buchhaltungssoftware {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }

  .standards-heading-sicherheit-datenschutz-buchhaltungssoftware {
    font-size: 1.75rem;
  }
}

.dsgvo-section-sicherheit-datenschutz-buchhaltungssoftware {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.dsgvo-text-sicherheit-datenschutz-buchhaltungssoftware {
  flex: 1 1 50%;
  max-width: 50%;
}

.dsgvo-heading-sicherheit-datenschutz-buchhaltungssoftware {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.dsgvo-paragraph-sicherheit-datenschutz-buchhaltungssoftware {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.dsgvo-list-sicherheit-datenschutz-buchhaltungssoftware {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.dsgvo-list-item-sicherheit-datenschutz-buchhaltungssoftware {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: #475569;
  line-height: 1.6;
}

.dsgvo-list-item-sicherheit-datenschutz-buchhaltungssoftware::before {
  content: '';
  color: #059669;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1.25rem;
  margin-top: 2px;
}

.dsgvo-image-sicherheit-datenschutz-buchhaltungssoftware {
  flex: 1 1 50%;
  max-width: 50%;
}

.dsgvo-img-sicherheit-datenschutz-buchhaltungssoftware {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .dsgvo-content-sicherheit-datenschutz-buchhaltungssoftware {
    flex-direction: column;
  }

  .dsgvo-text-sicherheit-datenschutz-buchhaltungssoftware,
  .dsgvo-image-sicherheit-datenschutz-buchhaltungssoftware {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .dsgvo-heading-sicherheit-datenschutz-buchhaltungssoftware {
    font-size: 1.75rem;
  }
}

.protection-section-sicherheit-datenschutz-buchhaltungssoftware {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.protection-image-sicherheit-datenschutz-buchhaltungssoftware {
  flex: 1 1 50%;
  max-width: 50%;
}

.protection-img-sicherheit-datenschutz-buchhaltungssoftware {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: block;
  object-fit: cover;
}

.protection-text-sicherheit-datenschutz-buchhaltungssoftware {
  flex: 1 1 50%;
  max-width: 50%;
}

.protection-heading-sicherheit-datenschutz-buchhaltungssoftware {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.protection-paragraph-sicherheit-datenschutz-buchhaltungssoftware {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.protection-checks-sicherheit-datenschutz-buchhaltungssoftware {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.check-item-sicherheit-datenschutz-buchhaltungssoftware {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.check-number-sicherheit-datenschutz-buchhaltungssoftware {
  font-size: 1.75rem;
  font-weight: 800;
  color: #2563eb;
  min-width: 50px;
  text-align: center;
  line-height: 1;
}

.check-content-sicherheit-datenschutz-buchhaltungssoftware {
  flex: 1;
}

.check-title-sicherheit-datenschutz-buchhaltungssoftware {
  font-size: 1.05rem;
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.check-text-sicherheit-datenschutz-buchhaltungssoftware {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .protection-content-sicherheit-datenschutz-buchhaltungssoftware {
    flex-direction: column;
  }

  .protection-image-sicherheit-datenschutz-buchhaltungssoftware,
  .protection-text-sicherheit-datenschutz-buchhaltungssoftware {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .protection-heading-sicherheit-datenschutz-buchhaltungssoftware {
    font-size: 1.75rem;
  }

  .check-item-sicherheit-datenschutz-buchhaltungssoftware {
    gap: 1rem;
  }

  .check-number-sicherheit-datenschutz-buchhaltungssoftware {
    font-size: 1.5rem;
    min-width: 40px;
  }
}

.tips-section-sicherheit-datenschutz-buchhaltungssoftware {
  background: linear-gradient(135deg, #1e293b 0%, #2d3e50 100%);
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tips-content-sicherheit-datenschutz-buchhaltungssoftware {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.tips-intro-sicherheit-datenschutz-buchhaltungssoftware {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  text-align: center;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.tips-cards-sicherheit-datenschutz-buchhaltungssoftware {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.tip-card-sicherheit-datenschutz-buchhaltungssoftware {
  flex: 1 1 calc(50% - 1rem);
  max-width: 320px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.tip-card-sicherheit-datenschutz-buchhaltungssoftware:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(37, 99, 235, 0.5);
  transform: translateY(-4px);
}

.tip-icon-sicherheit-datenschutz-buchhaltungssoftware {
  font-size: 2.5rem;
  color: #60a5fa;
  margin-bottom: 1rem;
}

.tip-title-sicherheit-datenschutz-buchhaltungssoftware {
  font-size: 1.15rem;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.tip-text-sicherheit-datenschutz-buchhaltungssoftware {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .tips-cards-sicherheit-datenschutz-buchhaltungssoftware {
    flex-direction: column;
  }

  .tip-card-sicherheit-datenschutz-buchhaltungssoftware {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .tips-heading-sicherheit-datenschutz-buchhaltungssoftware {
    font-size: 1.75rem;
  }
}

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

.conclusion-content-sicherheit-datenschutz-buchhaltungssoftware {
  max-width: 900px;
  margin: 0 auto;
}

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

.conclusion-box-sicherheit-datenschutz-buchhaltungssoftware {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
}

.conclusion-text-sicherheit-datenschutz-buchhaltungssoftware {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.conclusion-text-sicherheit-datenschutz-buchhaltungssoftware:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .conclusion-heading-sicherheit-datenschutz-buchhaltungssoftware {
    font-size: 1.75rem;
  }

  .conclusion-box-sicherheit-datenschutz-buchhaltungssoftware {
    padding: 1.5rem;
  }
}

.disclaimer-section-sicherheit-datenschutz-buchhaltungssoftware {
  background: #f0f9ff;
  color: #0f172a;
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e0e7ff;
}

.disclaimer-content-sicherheit-datenschutz-buchhaltungssoftware {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #f59e0b;
}

.disclaimer-heading-sicherheit-datenschutz-buchhaltungssoftware {
  font-size: 1.1rem;
  color: #92400e;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.disclaimer-text-sicherheit-datenschutz-buchhaltungssoftware {
  font-size: 0.9rem;
  color: #78350f;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .disclaimer-content-sicherheit-datenschutz-buchhaltungssoftware {
    padding: 1rem;
  }

  .disclaimer-heading-sicherheit-datenschutz-buchhaltungssoftware {
    font-size: 1rem;
  }

  .disclaimer-text-sicherheit-datenschutz-buchhaltungssoftware {
    font-size: 0.85rem;
  }
}

.related-section-sicherheit-datenschutz-buchhaltungssoftware {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-sicherheit-datenschutz-buchhaltungssoftware {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

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

.related-card-sicherheit-datenschutz-buchhaltungssoftware {
  flex: 1 1 calc(33.333% - 1.5rem);
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.related-card-sicherheit-datenschutz-buchhaltungssoftware:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.related-image-sicherheit-datenschutz-buchhaltungssoftware {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #e0e7ff;
}

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

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

.related-text-sicherheit-datenschutz-buchhaltungssoftware {
  padding: 1.5rem;
}

.related-title-sicherheit-datenschutz-buchhaltungssoftware {
  font-size: 1.1rem;
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.related-desc-sicherheit-datenschutz-buchhaltungssoftware {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.related-link-sicherheit-datenschutz-buchhaltungssoftware {
  display: inline-block;
  font-size: 0.95rem;
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-link-sicherheit-datenschutz-buchhaltungssoftware:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-card-sicherheit-datenschutz-buchhaltungssoftware {
    flex: 1 1 calc(50% - 1.5rem);
  }
}

@media (max-width: 768px) {
  .related-heading-sicherheit-datenschutz-buchhaltungssoftware {
    font-size: 1.75rem;
  }

  .related-card-sicherheit-datenschutz-buchhaltungssoftware {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-cards-sicherheit-datenschutz-buchhaltungssoftware {
    flex-direction: column;
  }
}

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

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

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

.main-datev-lexoffice-sevdesk-vergleich {
  width: 100%;
  overflow-x: hidden;
}

.hero-section-datev-lexoffice-sevdesk-vergleich {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a1f3a 100%);
  color: #ffffff;
  padding: clamp(2rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.breadcrumbs-datev-lexoffice-sevdesk-vergleich {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1rem, 3vw, 2rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-datev-lexoffice-sevdesk-vergleich a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-datev-lexoffice-sevdesk-vergleich a:hover {
  color: #f59e0b;
}

.breadcrumbs-datev-lexoffice-sevdesk-vergleich span {
  color: #64748b;
}

.hero-content-datev-lexoffice-sevdesk-vergleich {
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.hero-title-datev-lexoffice-sevdesk-vergleich {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 2vw, 1.5rem);
}

.hero-subtitle-datev-lexoffice-sevdesk-vergleich {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  max-width: 700px;
}

.hero-meta-datev-lexoffice-sevdesk-vergleich {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #94a3b8;
}

.meta-divider-datev-lexoffice-sevdesk-vergleich {
  color: #64748b;
}

.hero-image-datev-lexoffice-sevdesk-vergleich {
  margin-top: clamp(2rem, 4vw, 3rem);
  border-radius: clamp(8px, 1.5vw, 16px);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-img-datev-lexoffice-sevdesk-vergleich {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

.intro-section-datev-lexoffice-sevdesk-vergleich {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.intro-content-datev-lexoffice-sevdesk-vergleich {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.intro-text-datev-lexoffice-sevdesk-vergleich {
  flex: 1 1 55%;
  max-width: 55%;
}

.intro-title-datev-lexoffice-sevdesk-vergleich {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.intro-paragraph-datev-lexoffice-sevdesk-vergleich {
  font-size: clamp(0.875rem, 1.2vw, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-highlight-datev-lexoffice-sevdesk-vergleich {
  flex: 1 1 45%;
  max-width: 45%;
}

.highlight-card-datev-lexoffice-sevdesk-vergleich {
  background: #f8fafc;
  border-left: 4px solid #2563eb;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
}

.highlight-title-datev-lexoffice-sevdesk-vergleich {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.highlight-list-datev-lexoffice-sevdesk-vergleich {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlight-item-datev-lexoffice-sevdesk-vergleich {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #334155;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.highlight-item-datev-lexoffice-sevdesk-vergleich::before {
  content: '';
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: 700;
}

.content-section-one-datev-lexoffice-sevdesk-vergleich,
.content-section-two-datev-lexoffice-sevdesk-vergleich,
.content-section-three-datev-lexoffice-sevdesk-vergleich {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.content-section-one-datev-lexoffice-sevdesk-vergleich .container,
.content-section-two-datev-lexoffice-sevdesk-vergleich .container,
.content-section-three-datev-lexoffice-sevdesk-vergleich .container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block;
}

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

.content-text-datev-lexoffice-sevdesk-vergleich {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-datev-lexoffice-sevdesk-vergleich {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-datev-lexoffice-sevdesk-vergleich {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.content-paragraph-datev-lexoffice-sevdesk-vergleich {
  font-size: clamp(0.875rem, 1.2vw, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

.content-img-datev-lexoffice-sevdesk-vergleich {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison-section-datev-lexoffice-sevdesk-vergleich {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.comparison-title-datev-lexoffice-sevdesk-vergleich {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.comparison-table-datev-lexoffice-sevdesk-vergleich {
  overflow-x: auto;
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.comparison-data-datev-lexoffice-sevdesk-vergleich {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
}

.table-header-datev-lexoffice-sevdesk-vergleich {
  background: #2563eb;
  color: #ffffff;
  padding: clamp(1rem, 2vw, 1.25rem);
  text-align: left;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  border: none;
}

.table-label-datev-lexoffice-sevdesk-vergleich {
  background: #f8fafc;
  font-weight: 600;
  color: #0f172a;
  padding: clamp(0.875rem, 1.5vw, 1.125rem);
  border-bottom: 1px solid #e2e8f0;
}

.table-cell-datev-lexoffice-sevdesk-vergleich {
  padding: clamp(0.875rem, 1.5vw, 1.125rem);
  color: #475569;
  border-bottom: 1px solid #e2e8f0;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.comparison-data-datev-lexoffice-sevdesk-vergleich tbody tr:hover {
  background: #f1f5f9;
}

.features-section-datev-lexoffice-sevdesk-vergleich {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.features-title-datev-lexoffice-sevdesk-vergleich {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

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

.feature-card-datev-lexoffice-sevdesk-vergleich {
  flex: 1 1 calc(33.333% - clamp(1rem, 2vw, 1.5rem));
  max-width: 350px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card-datev-lexoffice-sevdesk-vergleich:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.feature-icon-datev-lexoffice-sevdesk-vergleich {
  width: 60px;
  height: 60px;
  background: #eff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto clamp(1rem, 2vw, 1.25rem);
  font-size: 28px;
  color: #2563eb;
}

.feature-name-datev-lexoffice-sevdesk-vergleich {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
}

.feature-text-datev-lexoffice-sevdesk-vergleich {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.6;
}

.quote-section-datev-lexoffice-sevdesk-vergleich {
  background: #1e293b;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.featured-quote-datev-lexoffice-sevdesk-vergleich {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #f59e0b;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
}

.quote-text-datev-lexoffice-sevdesk-vergleich {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  color: #e2e8f0;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.quote-author-datev-lexoffice-sevdesk-vergleich {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  font-style: normal;
}

.decision-section-datev-lexoffice-sevdesk-vergleich {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.decision-title-datev-lexoffice-sevdesk-vergleich {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.decision-grid-datev-lexoffice-sevdesk-vergleich {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.decision-card-datev-lexoffice-sevdesk-vergleich {
  flex: 1 1 calc(33.333% - clamp(1rem, 2vw, 1.5rem));
  max-width: 350px;
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.decision-name-datev-lexoffice-sevdesk-vergleich {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: clamp(1rem, 1.5vw, 1.25rem);
}

.decision-list-datev-lexoffice-sevdesk-vergleich {
  list-style: none;
  padding: 0;
  margin: 0;
}

.decision-item-datev-lexoffice-sevdesk-vergleich {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.decision-item-datev-lexoffice-sevdesk-vergleich::before {
  content: '';
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: 700;
}

.conclusion-section-datev-lexoffice-sevdesk-vergleich {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.conclusion-content-datev-lexoffice-sevdesk-vergleich {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-datev-lexoffice-sevdesk-vergleich {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.conclusion-text-datev-lexoffice-sevdesk-vergleich {
  font-size: clamp(0.875rem, 1.2vw, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.disclaimer-section-datev-lexoffice-sevdesk-vergleich {
  background: #1e293b;
  color: #ffffff;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  overflow: hidden;
}

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

.disclaimer-content-datev-lexoffice-sevdesk-vergleich {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  border-left: 4px solid #f59e0b;
}

.disclaimer-title-datev-lexoffice-sevdesk-vergleich {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #fbbf24;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.disclaimer-text-datev-lexoffice-sevdesk-vergleich {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.related-section-datev-lexoffice-sevdesk-vergleich {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.related-title-datev-lexoffice-sevdesk-vergleich {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

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

.related-card-datev-lexoffice-sevdesk-vergleich {
  flex: 1 1 calc(33.333% - clamp(1rem, 2vw, 1.5rem));
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: #0f172a;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-datev-lexoffice-sevdesk-vergleich:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.related-image-datev-lexoffice-sevdesk-vergleich {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-image-datev-lexoffice-sevdesk-vergleich img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-text-datev-lexoffice-sevdesk-vergleich {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.related-name-datev-lexoffice-sevdesk-vergleich {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  line-height: 1.3;
}

.related-description-datev-lexoffice-sevdesk-vergleich {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .intro-content-datev-lexoffice-sevdesk-vergleich {
    flex-direction: column;
  }

  .intro-text-datev-lexoffice-sevdesk-vergleich {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-highlight-datev-lexoffice-sevdesk-vergleich {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-wrapper-datev-lexoffice-sevdesk-vergleich {
    flex-direction: column;
  }

  .content-text-datev-lexoffice-sevdesk-vergleich {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-image-datev-lexoffice-sevdesk-vergleich {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .feature-card-datev-lexoffice-sevdesk-vergleich {
    flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1rem));
  }

  .decision-card-datev-lexoffice-sevdesk-vergleich {
    flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1rem));
  }

  .related-card-datev-lexoffice-sevdesk-vergleich {
    flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1rem));
  }
}

@media (max-width: 768px) {
  .breadcrumbs-datev-lexoffice-sevdesk-vergleich {
    font-size: 0.75rem;
  }

  .feature-card-datev-lexoffice-sevdesk-vergleich {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .decision-card-datev-lexoffice-sevdesk-vergleich {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-card-datev-lexoffice-sevdesk-vergleich {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .comparison-table-datev-lexoffice-sevdesk-vergleich {
    font-size: 0.875rem;
  }

  .table-header-datev-lexoffice-sevdesk-vergleich {
    padding: 0.75rem;
    font-size: 0.8rem;
  }

  .table-label-datev-lexoffice-sevdesk-vergleich,
  .table-cell-datev-lexoffice-sevdesk-vergleich {
    padding: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero-title-datev-lexoffice-sevdesk-vergleich {
    font-size: 1.75rem;
  }

  .hero-subtitle-datev-lexoffice-sevdesk-vergleich {
    font-size: 1rem;
  }

  .hero-meta-datev-lexoffice-sevdesk-vergleich {
    flex-direction: column;
    gap: 0.5rem;
  }

  .intro-title-datev-lexoffice-sevdesk-vergleich {
    font-size: 1.5rem;
  }

  .content-title-datev-lexoffice-sevdesk-vergleich {
    font-size: 1.25rem;
  }

  .features-title-datev-lexoffice-sevdesk-vergleich,
  .comparison-title-datev-lexoffice-sevdesk-vergleich,
  .decision-title-datev-lexoffice-sevdesk-vergleich,
  .conclusion-title-datev-lexoffice-sevdesk-vergleich,
  .related-title-datev-lexoffice-sevdesk-vergleich {
    font-size: 1.5rem;
  }

  .quote-text-datev-lexoffice-sevdesk-vergleich {
    font-size: 1rem;
  }

  .feature-icon-datev-lexoffice-sevdesk-vergleich {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}

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

html, body {
  width: 100%;
  overflow-x: hidden;
}

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

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

.accounting-software-journey-about {
  width: 100%;
  overflow: hidden;
}

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

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

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

.hero-title-accounting-about {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-light);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-tight);
}

.hero-subtitle-accounting-about {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-normal);
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
}

.hero-visual-accounting-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  margin: 0 auto;
}

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

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

.stat-number-accounting-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary-light);
}

.stat-label-accounting-about {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary-light);
  text-align: center;
}

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

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

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

.section-tag-accounting-about {
  display: inline-block;
  padding: 0.35rem clamp(0.75rem, 2vw, 1rem);
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.section-title-accounting-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
  line-height: var(--line-height-tight);
}

.section-subtitle-accounting-about {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-height-normal);
  max-width: 700px;
  margin: 0 auto;
}

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

.expertise-card-accounting-about {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.expertise-card-title-accounting-about {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
}

.expertise-card-text-accounting-about {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-height-normal);
}

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

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

.comparison-header-accounting-about {
  text-align: center;
}

.comparison-title-accounting-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-text-light);
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
  line-height: var(--line-height-tight);
}

.comparison-subtitle-accounting-about {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-normal);
  max-width: 700px;
  margin: 0 auto;
}

.comparison-visual-accounting-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  margin: clamp(1.5rem, 3vw, 2.5rem) auto 0;
}

.comparison-text-accounting-about {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-relaxed);
  max-width: 800px;
  margin: 0 auto;
}

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

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

.selection-header-accounting-about {
  text-align: center;
}

.selection-title-accounting-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
  line-height: var(--line-height-tight);
}

.selection-subtitle-accounting-about {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-height-normal);
  max-width: 700px;
  margin: 0 auto;
}

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

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

.step-number-accounting-about {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  flex-shrink: 0;
  min-width: clamp(3rem, 6vw, 5rem);
  line-height: 1;
}

.step-content-accounting-about {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.step-title-accounting-about {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text-dark);
}

.step-text-accounting-about {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-height-normal);
}

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

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

.approach-header-accounting-about {
  text-align: center;
}

.approach-title-accounting-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
  line-height: var(--line-height-tight);
}

.approach-subtitle-accounting-about {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-height-normal);
  max-width: 700px;
  margin: 0 auto;
}

.approach-visual-accounting-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  margin: clamp(1.5rem, 3vw, 2.5rem) auto 0;
}

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

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

.features-header-accounting-about {
  text-align: center;
}

.features-title-accounting-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-text-light);
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
  line-height: var(--line-height-tight);
}

.features-subtitle-accounting-about {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-normal);
  max-width: 700px;
  margin: 0 auto;
}

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

.feature-card-accounting-about {
  flex: 1 1 clamp(250px, 30vw, 320px);
  max-width: 380px;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-base);
}

.feature-card-accounting-about:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(37, 99, 235, 0.3);
}

.feature-icon-accounting-about {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--color-primary-light);
}

.feature-title-accounting-about {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-light);
}

.feature-text-accounting-about {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-normal);
}

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

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

.featured-quote-accounting-about {
  max-width: 800px;
  padding: clamp(2rem, 3vw, 3rem);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(5, 150, 105, 0.05));
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  text-align: center;
}

.quote-text-accounting-about {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-style: italic;
  color: var(--color-text-dark);
  line-height: var(--line-height-relaxed);
  margin-bottom: 1rem;
}

.quote-author-accounting-about {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary-dark);
  font-style: normal;
  font-weight: 600;
}

.disclaimer-section-accounting-about {
  background: var(--color-bg-dark-accent);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.disclaimer-header-accounting-about {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: flex-start;
}

.disclaimer-icon-accounting-about {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--color-primary-light);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.disclaimer-title-accounting-about {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text-light);
}

.disclaimer-text-accounting-about {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-relaxed);
  margin-left: clamp(2rem, 4vw, 2.5rem);
}

@media (max-width: 768px) {
  .process-step-accounting-about {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-accounting-about {
    font-size: 2rem;
  }

  .features-grid-accounting-about {
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero-stats-accounting-about {
    gap: 1rem;
  }

  .stat-item-accounting-about {
    flex: 1 1 clamp(100px, 45%, 150px);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .features-grid-accounting-about {
    gap: 1.5rem;
  }

  .feature-card-accounting-about {
    flex: 1 1 clamp(250px, 45%, 320px);
  }
}

@media (min-width: 1025px) {
  .expertise-grid-accounting-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .process-steps-accounting-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .features-grid-accounting-about {
    justify-content: space-between;
  }

  .feature-card-accounting-about {
    flex: 1 1 clamp(280px, 30%, 350px);
  }
}

.services-page {
  background-color: var(--color-bg-primary);
  color: var(--color-text-light);
}

.services-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.services-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: var(--color-text-light);
  font-weight: 700;
  margin: 0 0 var(--space-sm) 0;
  line-height: var(--line-height-tight);
}

.services-hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 2vw + 0.25rem, 1.25rem);
  color: var(--color-text-secondary-light);
  font-weight: 400;
  margin: 0;
  line-height: var(--line-height-normal);
}

.services-content {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.service-card {
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-lg);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  background-color: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-4px);
}

.service-card-icon {
  font-size: 2.5rem;
  color: var(--color-primary-light);
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-md);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-light);
  font-weight: 600;
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-tight);
}

.service-card-description {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: var(--color-text-secondary-light);
  margin: 0 0 var(--space-lg) 0;
  line-height: var(--line-height-relaxed);
  flex-grow: 1;
}

.service-card-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.service-card-features li {
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary-light);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.feature-icon {
  color: var(--color-secondary);
  font-weight: 700;
  flex-shrink: 0;
}

.services-cta {
  background-color: var(--color-bg-dark-accent);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
}

.services-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2xl);
}

.services-cta-content {
  flex: 1;
}

.services-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-light);
  font-weight: 700;
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-tight);
}

.services-cta-text {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1.125rem);
  color: var(--color-text-secondary-light);
  margin: 0;
  line-height: var(--line-height-normal);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services-cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  border: none;
}

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

.services-cta-button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .services-hero {
    padding: var(--space-3xl) var(--space-lg);
  }

  .services-content {
    padding: var(--space-4xl) var(--space-lg);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .service-card {
    padding: var(--space-2xl);
  }

  .services-cta {
    padding: var(--space-4xl) var(--space-lg);
  }

  .services-cta-container {
    flex-direction: row;
    text-align: left;
    gap: var(--space-3xl);
  }

  .services-cta-content {
    flex: 1;
  }

  .services-cta-button {
    flex-shrink: 0;
  }
}

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

  .services-content {
    padding: var(--space-4xl) 0;
  }

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

  .service-card {
    padding: var(--space-2xl) var(--space-lg);
  }

  .services-cta {
    padding: var(--space-4xl) 0;
  }
}

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

.portfolio-page {
  background-color: var(--color-bg-primary);
  color: var(--color-text-light);
}

.portfolio-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
  border-bottom: 1px solid var(--color-bg-dark-accent);
}

.portfolio-hero__container {
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(var(--font-size-3xl), 5vw + 0.5rem, var(--font-size-5xl));
  color: var(--color-text-light);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-tight);
  font-weight: 700;
}

.portfolio-hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(var(--font-size-lg), 2vw + 0.5rem, var(--font-size-xl));
  color: var(--color-text-secondary-light);
  margin: 0;
  line-height: var(--line-height-normal);
  font-weight: 400;
}

@media (min-width: 768px) {
  .portfolio-hero {
    padding: var(--space-4xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-hero {
    padding: var(--space-4xl) var(--space-xl);
  }
}

.portfolio-projects {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
}

.portfolio-projects__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 768px) {
  .portfolio-projects {
    padding: var(--space-4xl) var(--space-lg);
  }

  .portfolio-projects__container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .portfolio-projects {
    padding: var(--space-4xl) var(--space-xl);
  }

  .portfolio-projects__container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }
}

.portfolio-card {
  background-color: var(--color-bg-card-dark);
  border: 1px solid var(--color-bg-dark-accent);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.portfolio-card:hover {
  border-color: var(--color-primary);
  background-color: rgba(37, 99, 235, 0.03);
  transform: translateY(-4px);
}

.portfolio-card__image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: var(--color-bg-dark-accent);
}

.portfolio-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.portfolio-card:hover .portfolio-card__image img {
  transform: scale(1.05);
}

.portfolio-card__content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-card__tag {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-size: var(--font-size-xs);
  font-weight: 600;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-card__title {
  font-family: var(--font-heading);
  font-size: clamp(var(--font-size-lg), 2vw + 0.25rem, var(--font-size-2xl));
  color: var(--color-text-light);
  margin: 0 0 var(--space-sm) 0;
  line-height: var(--line-height-tight);
  font-weight: 700;
}

.portfolio-card__description {
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary-light);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-relaxed);
  flex-grow: 1;
}

.portfolio-card__detail {
  font-family: var(--font-body);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted-light);
  display: block;
  font-weight: 500;
}

.portfolio-cta {
  background-color: var(--color-bg-dark-accent);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-cta__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(var(--font-size-2xl), 4vw + 0.5rem, var(--font-size-3xl));
  color: var(--color-text-light);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-tight);
  font-weight: 700;
}

.portfolio-cta__text {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  color: var(--color-text-secondary-light);
  margin: 0 0 var(--space-2xl) 0;
  line-height: var(--line-height-normal);
}

.portfolio-cta__button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  font-weight: 600;
  padding: var(--space-sm) var(--space-2xl);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  display: inline-block;
  text-align: center;
}

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

.portfolio-cta__button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .portfolio-cta {
    padding: var(--space-4xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-cta {
    padding: var(--space-4xl) var(--space-xl);
  }
}

@media (max-width: 767px) {
  .portfolio-card {
    border-radius: var(--radius-md);
  }

  .portfolio-card__image {
    height: 180px;
  }

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

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

.legal-docs {
  background-color: var(--color-bg-secondary);
  color: var(--color-text-dark);
  font-family: var(--font-body);
}

.legal-docs .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.legal-docs .legal-docs-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-2xl) 0;
}

.legal-docs h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-dark);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.legal-docs .update-date {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-secondary-dark);
  margin-bottom: var(--space-2xl);
  display: block;
}

.legal-docs h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-dark);
  line-height: var(--line-height-tight);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.legal-docs p {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-dark);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.legal-docs ul {
  list-style: disc;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.legal-docs li {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-dark);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-sm);
}

.legal-docs .intro-paragraph {
  font-size: clamp(0.95rem, 1vw + 0.55rem, 1.15rem);
  color: var(--color-text-dark);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-lg);
}

.legal-docs .section {
  margin-bottom: var(--space-3xl);
}

.legal-docs .contact-section {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--space-3xl);
}

.legal-docs .contact-section h2 {
  margin-top: 0;
  color: var(--color-text-dark);
}

.legal-docs .contact-section p {
  color: var(--color-text-dark);
  margin-bottom: var(--space-sm);
}

.legal-docs .contact-section strong {
  color: var(--color-text-dark);
  font-weight: 600;
}

@media (min-width: 768px) {
  .legal-docs .legal-docs-content {
    padding: var(--space-3xl) 0;
  }
}

@media (min-width: 1024px) {
  .legal-docs .legal-docs-content {
    padding: var(--space-4xl) 0;
  }
}

:root {
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f8fafc;
  --color-bg-dark-accent: #1e293b;
  --color-bg-card-dark: rgba(255, 255, 255, 0.05);
  --color-bg-card-light: #ffffff;
  --color-text-light: #ffffff;
  --color-text-dark: #0f172a;
  --color-text-secondary-light: #94a3b8;
  --color-text-secondary-dark: #64748b;
  --color-text-muted-light: #64748b;
  --color-text-muted-dark: #9ca3af;
  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-primary-light: #3b82f6;
  --color-secondary: #059669;
  --color-secondary-hover: #047857;
  --color-accent-warm: #f59e0b;
  --color-accent-danger: #ef4444;
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.2);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  --line-height-loose: 2;
}

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

html {
  scroll-behavior: smooth;
}

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

.thank-you-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
}

.thank-you-section {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl) var(--space-sm);
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 100vh;
}

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

.content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.thank-you-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-lg);
  animation: fadeInUp 0.8s ease-out;
}

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

.success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  color: var(--color-secondary);
  animation: scaleIn 0.6s ease-out 0.2s both;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.success-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 12px rgba(5, 150, 105, 0.2));
}

.thank-you-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: var(--line-height-tight);
  letter-spacing: -0.5px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.thank-you-lead {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-secondary-dark);
  font-weight: 600;
  line-height: var(--line-height-normal);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.thank-you-description {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-height-relaxed);
  animation: fadeInUp 0.8s ease-out 0.3s both;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.thank-you-next-steps {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--color-text-muted-dark);
  line-height: var(--line-height-relaxed);
  animation: fadeInUp 0.8s ease-out 0.4s both;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
}

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  animation: fadeInUp 0.8s ease-out 0.5s both;
  white-space: nowrap;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  letter-spacing: 0.3px;
  box-shadow: var(--shadow-md);
}

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

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

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

@media (min-width: 640px) {
  .thank-you-section {
    padding: var(--space-3xl) var(--space-lg);
  }

  .thank-you-wrapper {
    gap: var(--space-2xl);
  }

  .success-icon {
    width: 160px;
    height: 160px;
  }
}

@media (min-width: 1024px) {
  .thank-you-section {
    padding: var(--space-4xl) var(--space-2xl);
  }

  .thank-you-wrapper {
    gap: var(--space-2xl);
  }

  .success-icon {
    width: 180px;
    height: 180px;
  }

  .thank-you-title {
    font-size: 3rem;
  }

  .btn:hover {
    transform: translateY(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .thank-you-wrapper,
  .success-icon,
  .thank-you-title,
  .thank-you-lead,
  .thank-you-description,
  .thank-you-next-steps,
  .btn {
    animation: none;
  }

  .btn:hover {
    transform: none;
  }

  .btn:active {
    transform: none;
  }
}

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

html, body {
  width: 100%;
  height: 100%;
  background-color: var(--color-bg-primary);
  color: var(--color-text-dark);
  font-family: var(--font-body);
}

.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.error-section {
  width: 100%;
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

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

.content {
  width: 100%;
  max-width: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.error-visual {
  position: relative;
  width: 100%;
  height: 280px;
  margin-bottom: var(--space-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent-warm));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(37, 99, 235, 0.3);
  line-height: 1;
  animation: float 3s ease-in-out infinite;
}

.error-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0) 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
  z-index: 1;
}

.error-message {
  width: 100%;
  animation: slideUp 0.8s ease-out 0.2s both;
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
  line-height: var(--line-height-tight);
}

.error-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-primary-light);
  margin-bottom: var(--space-lg);
  font-weight: 600;
  line-height: var(--line-height-normal);
}

.error-description {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-light);
  margin-bottom: var(--space-2xl);
  line-height: var(--line-height-relaxed);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--color-primary);
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-primary);
  transition: all var(--transition-base);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary-hover);
  transition: left var(--transition-base);
  z-index: -1;
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
}

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

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

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

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.4;
  }
}

@media (min-width: 640px) {
  .error-section {
    padding: var(--space-2xl);
  }

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

  .error-visual {
    height: 320px;
    margin-bottom: var(--space-3xl);
  }

  .error-decoration {
    width: 400px;
    height: 400px;
  }
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-3xl) var(--space-2xl);
  }

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

  .error-visual {
    height: 350px;
    margin-bottom: var(--space-3xl);
  }

  .error-code {
    text-shadow: 0 0 40px rgba(37, 99, 235, 0.4);
  }

  .error-message {
    animation: slideUp 0.8s ease-out 0.3s both;
  }

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

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

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-4xl) var(--space-2xl);
  }

  .container {
    padding: 0;
  }

  .error-visual {
    height: 380px;
    margin-bottom: var(--space-3xl);
  }

  .error-decoration {
    width: 450px;
    height: 450px;
  }

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

  .btn-primary:hover {
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.5);
  }
}

@media (min-width: 1440px) {
  .error-section {
    min-height: 100vh;
  }
}

.contact-inquiries-page {
  background-color: var(--color-bg-primary);
  color: var(--color-text-light);
}

.contact-inquiries-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.contact-inquiries-hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-inquiries-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-text-light);
  line-height: var(--line-height-tight);
  letter-spacing: -0.02em;
}

.contact-inquiries-hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-relaxed);
  max-width: 600px;
}

@media (min-width: 768px) {
  .contact-inquiries-hero {
    padding: var(--space-4xl) 0;
  }
}

@media (min-width: 1024px) {
  .contact-inquiries-hero {
    padding: 6rem 0;
  }
}

.contact-inquiries-main {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.contact-inquiries-main-content {
  width: 100%;
}

.contact-inquiries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

@media (min-width: 768px) {
  .contact-inquiries-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
  }
}

@media (min-width: 1024px) {
  .contact-inquiries-main {
    padding: 6rem 0;
  }

  .contact-inquiries-grid {
    gap: 5rem;
  }
}

.contact-inquiries-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-inquiries-form-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-inquiries-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  color: var(--color-text-light);
  line-height: var(--line-height-tight);
}

.contact-inquiries-form-description {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-relaxed);
}

.contact-inquiries-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  width: 100%;
}

.contact-inquiries-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.contact-inquiries-label {
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text-light);
  letter-spacing: 0.3px;
}

.contact-inquiries-input,
.contact-inquiries-textarea {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-text-light);
  transition: all var(--transition-base);
  outline: none;
}

.contact-inquiries-input::placeholder,
.contact-inquiries-textarea::placeholder {
  color: var(--color-text-secondary-light);
}

.contact-inquiries-input:focus,
.contact-inquiries-textarea:focus {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-inquiries-input:hover:not(:focus),
.contact-inquiries-textarea:hover:not(:focus) {
  border-color: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.06);
}

.contact-inquiries-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: var(--line-height-normal);
}

.contact-inquiries-form-consent {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
}

.contact-inquiries-checkbox {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--color-primary);
}

.contact-inquiries-consent-label {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 0.95vw, 0.95rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-normal);
  cursor: pointer;
}

.contact-inquiries-consent-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.contact-inquiries-consent-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-inquiries-submit {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  font-weight: 700;
  width: 100%;
  padding: 1rem var(--space-lg);
  background-color: var(--color-primary);
  color: var(--color-text-dark);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.95rem;
}

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

.contact-inquiries-submit:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

.contact-inquiries-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.contact-inquiries-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-inquiries-info-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-inquiries-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  color: var(--color-text-light);
  line-height: var(--line-height-tight);
}

.contact-inquiries-info-description {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-relaxed);
}

.contact-inquiries-info-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-inquiries-info-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-lg);
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.contact-inquiries-info-item:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
}

.contact-inquiries-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(5, 150, 105, 0.1));
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.contact-inquiries-info-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.contact-inquiries-info-item-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-text-light);
  margin: 0;
}

.contact-inquiries-info-value {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-inquiries-info-value:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-inquiries-info-hours {
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary-light);
  margin: 0;
  line-height: var(--line-height-normal);
}

.contact-inquiries-info-box {
  padding: var(--space-lg);
  background-color: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: var(--radius-lg);
  margin-top: var(--space-md);
}

.contact-inquiries-info-box-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-text-light);
  margin: 0 0 var(--space-md) 0;
}

.contact-inquiries-info-box-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-inquiries-info-box-list li {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-normal);
  padding-left: var(--space-lg);
  position: relative;
}

.contact-inquiries-info-box-list li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: 700;
}

@media (min-width: 768px) {
  .contact-inquiries-info-item {
    padding: var(--space-lg);
  }
}

@media (max-width: 767px) {
  .contact-inquiries-grid {
    grid-template-columns: 1fr;
  }

  .contact-inquiries-form-wrapper,
  .contact-inquiries-info-wrapper {
    width: 100%;
  }
}

.header-buchhalt-hub {
  background: var(--color-bg-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all var(--transition-base);
}

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

.header-buchhalt-hub-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.header-buchhalt-hub-brand:hover {
  opacity: 0.8;
}

.header-buchhalt-hub-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.header-buchhalt-hub-logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-light);
  letter-spacing: -0.02em;
}

.header-buchhalt-hub-desktop-nav {
  display: none;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.header-buchhalt-hub-nav-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-secondary-light);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
}

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

.header-buchhalt-hub-nav-link:hover {
  color: var(--color-text-light);
}

.header-buchhalt-hub-nav-link:hover::after {
  width: 100%;
}

.header-buchhalt-hub-cta-button {
  display: none;
  padding: 0.625rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  border: 2px solid var(--color-primary);
}

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

.header-buchhalt-hub-mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1001;
}

.header-buchhalt-hub-hamburger {
  position: relative;
  width: 24px;
  height: 2px;
  background: var(--color-text-light);
  transition: all var(--transition-base);
}

.header-buchhalt-hub-hamburger::before,
.header-buchhalt-hub-hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--color-text-light);
  transition: all var(--transition-base);
}

.header-buchhalt-hub-hamburger::before {
  top: -7px;
}

.header-buchhalt-hub-hamburger::after {
  top: 7px;
}

.header-buchhalt-hub-mobile-toggle[aria-expanded="true"] .header-buchhalt-hub-hamburger {
  background: transparent;
}

.header-buchhalt-hub-mobile-toggle[aria-expanded="true"] .header-buchhalt-hub-hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.header-buchhalt-hub-mobile-toggle[aria-expanded="true"] .header-buchhalt-hub-hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

.header-buchhalt-hub-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: var(--color-bg-dark-accent);
  box-shadow: var(--shadow-2xl);
  transition: right var(--transition-base);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.header-buchhalt-hub-mobile-menu.active {
  right: 0;
}

.header-buchhalt-hub-mobile-header {
  display: flex;
  justify-content: flex-end;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-buchhalt-hub-mobile-close {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: var(--color-text-light);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast);
}

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

.header-buchhalt-hub-mobile-links {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  gap: 0.5rem;
}

.header-buchhalt-hub-mobile-link {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-text-light);
  text-decoration: none;
  padding: 1rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.header-buchhalt-hub-mobile-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-primary);
}

.header-buchhalt-hub-mobile-cta {
  margin: 0 1.5rem 2rem;
  padding: 1rem;
  background: var(--color-primary);
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition-fast);
  border: 2px solid var(--color-primary);
}

.header-buchhalt-hub-mobile-cta:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
}

@media (min-width: 768px) {
  .header-buchhalt-hub-desktop-nav {
    display: flex;
  }

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

  .header-buchhalt-hub-mobile-toggle {
    display: none;
  }

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

@media (min-width: 1024px) {
  .header-buchhalt-hub-container {
    height: 88px;
  }

  .header-buchhalt-hub-logo-img {
    width: 44px;
    height: 44px;
  }

  .header-buchhalt-hub-logo-text {
    font-size: 1.375rem;
  }

  .header-buchhalt-hub-nav-link {
    font-size: 1rem;
  }

  .header-buchhalt-hub-cta-button {
    padding: 0.75rem 1.75rem;
    font-size: 1rem;
  }
}
.header-buchhalt-hub-mobile-toggle[aria-expanded="true"]{
  display: none;
}  