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

:root {
  
  --color-bg-primary: #0f172a;
  --color-bg-secondary: #1e293b;
  --color-bg-tertiary: #334155;
  --color-bg-card: rgba(30, 41, 59, 0.6);
  --color-bg-card-hover: rgba(51, 65, 85, 0.8);
  
  
  --color-text-primary: #ffffff;
  --color-text-secondary: #cbd5e1;
  --color-text-muted: #94a3af;
  
  
  --color-primary: #f97316;
  --color-primary-hover: #ea580c;
  --color-primary-light: #fed7aa;
  --color-secondary: #0ea5e9;
  --color-secondary-hover: #0284c7;
  
  
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  
  
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', 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;
  --radius-full: 9999px;
  
  
  --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.2);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.3);
  --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.06);
  
  
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  
  
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
}

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

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

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

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

h1 {
  font-size: clamp(2.5rem, 8vw, 4rem);
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: clamp(2rem, 6vw, 3rem);
  margin-bottom: var(--space-lg);
}

h3 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: var(--space-md);
}

h4 {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

h5 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

h6 {
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

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

p:last-child {
  margin-bottom: 0;
}

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

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

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

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

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

.btn:active {
  transform: scale(0.98);
}

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

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

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

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

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

.btn-ghost:hover {
  background: rgba(249, 115, 22, 0.1);
  border-color: var(--color-primary-hover);
  color: var(--color-primary-hover);
}

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

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

.card {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

.card:hover {
  background: var(--color-bg-card-hover);
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

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

input,
textarea,
select {
  width: 100%;
  padding: var(--space-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(30, 41, 59, 0.5);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

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

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  background: rgba(30, 41, 59, 0.8);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  background: rgba(249, 115, 22, 0.15);
  color: var(--color-primary-light);
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.badge-success {
  background: rgba(16, 185, 129, 0.15);
  color: #6ee7b7;
  border-color: rgba(16, 185, 129, 0.3);
}

.badge-warning {
  background: rgba(245, 158, 11, 0.15);
  color: #fcd34d;
  border-color: rgba(245, 158, 11, 0.3);
}

.flex {
  display: flex;
}

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

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

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

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

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

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

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

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

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

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

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

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

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

.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }

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

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }

.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }
.rounded-full { border-radius: var(--radius-full); }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

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

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

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

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

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

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

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

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

.section-lg {
  padding: var(--space-4xl) 0;
}

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

.gradient-text {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

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

.hover-glow:hover {
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
}

@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 slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

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

.animate-slide-up {
  animation: slideInUp var(--transition-slow) ease-out;
}

.animate-slide-down {
  animation: slideInDown var(--transition-slow) ease-out;
}

.animate-slide-left {
  animation: slideInLeft var(--transition-slow) ease-out;
}

.animate-slide-right {
  animation: slideInRight var(--transition-slow) ease-out;
}

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

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .btn {
    width: 100%;
  }
}

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

@media (prefers-color-scheme: dark) {
  body {
    background: var(--color-bg-primary);
    color: var(--color-text-primary);
  }
}

@media print {
  body {
    background: #ffffff;
    color: #000000;
  }
  
  .btn,
  .no-print {
    display: none;
  }
}
* {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.header-buchhalter-hub {
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-bg-tertiary);
  position: relative;
  z-index: 100;
}

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

.header-buchhalter-hub-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.75rem;
  flex-shrink: 0;
  transition: opacity var(--transition-fast);
}

.header-buchhalter-hub-brand:hover {
  opacity: 0.85;
}

.header-buchhalter-hub-logo-img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
}

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

.header-buchhalter-hub-desktop-nav {
  display: none;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex: 1;
  margin: 0 clamp(2rem, 5vw, 3rem);
}

.header-buchhalter-hub-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
}

.header-buchhalter-hub-nav-link:hover {
  color: var(--color-primary);
}

.header-buchhalter-hub-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-fast);
}

.header-buchhalter-hub-nav-link:hover::after {
  width: 100%;
}

.header-buchhalter-hub-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-text-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  transition: background var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}

.header-buchhalter-hub-cta-button:hover {
  background: var(--color-primary-hover);
}

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

.header-buchhalter-hub-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  transition: all var(--transition-fast);
  border-radius: 1px;
}

.header-buchhalter-hub-mobile-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.header-buchhalter-hub-mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.header-buchhalter-hub-mobile-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.header-buchhalter-hub-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--color-bg-secondary);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-base);
  z-index: 99;
  overflow-y: auto;
}

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

.header-buchhalter-hub-mobile-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-bg-tertiary);
  flex-shrink: 0;
}

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

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

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

.header-buchhalter-hub-mobile-link {
  padding: 1rem 1.5rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  transition: all var(--transition-fast);
  border-left: 3px solid transparent;
  display: block;
}

.header-buchhalter-hub-mobile-link:hover {
  background: var(--color-bg-tertiary);
  color: var(--color-primary);
  border-left-color: var(--color-primary);
  padding-left: 1.25rem;
}

.header-buchhalter-hub-mobile-cta {
  padding: 1rem 1.5rem;
  margin: 1rem;
  background: var(--color-primary);
  color: var(--color-text-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  transition: background var(--transition-fast);
  display: block;
  flex-shrink: 0;
}

.header-buchhalter-hub-mobile-cta:hover {
  background: var(--color-primary-hover);
}

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

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

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

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

@media (max-width: 767px) {
  .header-buchhalter-hub-desktop-nav {
    display: none;
  }

  .header-buchhalter-hub-cta-button {
    display: none;
  }
}

    .accounting-hub {
  width: 100%;
}

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

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

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

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

.hero-subtitle-index {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.6;
}

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

.hero-cta-group-index .btn {
  flex: 1 1 auto;
  min-width: 150px;
}

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

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

.stat-number-index {
  color: #f97316;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

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

.hero-image-block-index {
  flex: 1 1 45%;
  min-width: 0;
  display: none;
}

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

@media (min-width: 1024px) {
  .hero-image-block-index {
    display: block;
  }
  
  .hero-content-index {
    flex-direction: row;
  }
  
  .hero-cta-group-index {
    flex-direction: row;
  }
  
  .hero-cta-group-index .btn {
    flex: 0 1 auto;
  }
}

@media (max-width: 768px) {
  .hero-content-index {
    flex-direction: column;
  }
  
  .hero-text-block-index {
    flex: 1 1 100%;
  }
  
  .hero-stats-index {
    justify-content: center;
  }
}

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

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

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

.section-header-index {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.section-tag-index {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.about-text-index {
  color: #475569;
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.about-text-secondary-index {
  color: #64748b;
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.about-features-list-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item-index {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  color: #0f172a;
  font-size: 0.95rem;
}

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

.about-image-block-index {
  flex: 1 1 45%;
  min-width: 0;
  display: none;
}

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

@media (min-width: 1024px) {
  .about-image-block-index {
    display: block;
  }
}

@media (max-width: 768px) {
  .about-content-index {
    flex-direction: column;
  }
  
  .about-text-block-index {
    flex: 1 1 100%;
  }
}

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

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

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

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

.features-subtitle-index {
  color: #64748b;
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  line-height: 1.6;
}

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

.feature-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.feature-card-index:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: #f97316;
}

.card-icon-index {
  width: 50px;
  height: 50px;
  background: rgba(249, 115, 22, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f97316;
  font-size: 1.75rem;
}

.card-title-index {
  color: #0f172a;
  font-size: 1.15rem;
  margin: 0;
}

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

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

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

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

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

.posts-subtitle-index {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  line-height: 1.6;
}

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

.post-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.post-card-index:hover {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(249, 115, 22, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

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

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

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

.post-card-title-index {
  color: #ffffff;
  font-size: 1.15rem;
  margin: 0;
  line-height: 1.4;
}

.post-card-text-index {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.posts-footer-index {
  text-align: center;
  margin-top: 1rem;
}

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

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

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

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

.statistics-subtitle-index {
  color: #64748b;
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  line-height: 1.6;
}

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

.stat-card-index {
  flex: 1 1 200px;
  max-width: 280px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, rgba(14, 165, 233, 0.05) 100%);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-card-number-index {
  color: #f97316;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  margin: 0;
}

.stat-card-label-index {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.statistics-cta-index {
  text-align: center;
  margin-top: 1rem;
}

.statistics-cta-text-index {
  color: #475569;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

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

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

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

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

.process-subtitle-index {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  line-height: 1.6;
}

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

.process-step-index {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.step-number-index {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #f97316;
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
}

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

.step-title-index {
  color: #ffffff;
  font-size: 1.15rem;
  margin: 0;
}

.step-text-index {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

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

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

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

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

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

.testimonial-card-index {
  flex: 1 1 280px;
  max-width: 350px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #f97316;
  border-radius: 8px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.testimonial-card-index:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.testimonial-quote-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote-text-index {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin: 0;
}

.quote-author-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.author-name-index {
  color: #0f172a;
  font-size: 0.95rem;
  font-weight: 600;
  font-style: normal;
}

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

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

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

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

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

.faq-item-index {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  backdrop-filter: blur(10px);
}

.faq-question-index {
  color: #ffffff;
  font-size: 1.05rem;
  margin: 0;
  cursor: pointer;
}

.faq-answer-index {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

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

.cta-content-index {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cta-box-index {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.2);
}

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

.cta-text-index {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  line-height: 1.6;
  margin: 0;
}

.cta-secondary-text-index {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin: 0.5rem 0 0 0;
}

.cta-box-index .btn-primary {
  background: #ffffff;
  color: #f97316;
}

.cta-box-index .btn-primary:hover {
  background: rgba(255, 255, 255, 0.95);
}

.cta-box-index .btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.cta-box-index .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

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

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

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

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

.resources-subtitle-index {
  color: #64748b;
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  line-height: 1.6;
}

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

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

.resource-card-index:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: #f97316;
}

.resource-icon-index {
  width: 50px;
  height: 50px;
  background: rgba(249, 115, 22, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f97316;
  font-size: 1.75rem;
}

.resource-card-title-index {
  color: #0f172a;
  font-size: 1.15rem;
  margin: 0;
}

.resource-card-text-index {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.resource-link-index {
  color: #f97316;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.resource-link-index:hover {
  color: #ea580c;
}

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

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

.cookie-banner-text-index {
  color: #cbd5e1;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  margin: 0;
  line-height: 1.5;
  max-width: 400px;
}

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

.cookie-btn-accept-index {
  padding: 0.6rem 1.5rem;
  background: #f97316;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn-accept-index:hover {
  background: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.cookie-btn-decline-index {
  padding: 0.6rem 1.5rem;
  background: transparent;
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

@media (max-width: 768px) {
  .hero-section-index {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }
  
  .hero-cta-group-index {
    flex-direction: column;
  }
  
  .hero-cta-group-index .btn {
    width: 100%;
  }
  
  .hero-stats-index {
    justify-content: flex-start;
  }
  
  .process-step-index {
    flex: 1 1 100%;
  }
  
  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cookie-banner-text-index {
    text-align: center;
    max-width: 100%;
  }
  
  .cookie-banner-buttons-index {
    width: 100%;
  }
  
  .cookie-btn-accept-index,
  .cookie-btn-decline-index {
    flex: 1 1 100px;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .feature-card-index {
    flex: 1 1 calc(50% - 0.75rem);
  }
  
  .post-card-index {
    flex: 1 1 calc(50% - 0.75rem);
  }
  
  .stat-card-index {
    flex: 1 1 calc(50% - 0.75rem);
  }
  
  .testimonial-card-index {
    flex: 1 1 calc(50% - 0.75rem);
  }
  
  .resource-card-index {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

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

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

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

.footer-about {
  display: block;
}

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

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

.footer-nav {
  display: block;
}

.footer-nav h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.5px;
}

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

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

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

.footer-contact {
  display: block;
}

.footer-contact h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.5px;
}

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

.footer-legal {
  display: block;
}

.footer-legal h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.5px;
}

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

.footer-copyright {
  display: block;
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(203, 213, 225, 0.1);
}

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

@media (min-width: 768px) {
  .footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2.5rem, 6vw, 4rem);
    align-items: start;
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  .footer-copyright {
    grid-column: 1 / -1;
  }

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

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(2.5rem, 6vw, 4rem);
  }

  .footer-about {
    grid-column: 1 / 2;
  }

  .footer-nav {
    grid-column: 2 / 3;
  }

  .footer-contact {
    grid-column: 3 / 4;
  }

  .footer-legal {
    grid-column: 4 / 5;
  }

  .footer-copyright {
    grid-column: 1 / -1;
  }
}
    

.category-page-freelance-accounting {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  overflow: hidden;
}

.hero-section-freelance-accounting {
  background: var(--color-bg-primary);
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
}

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

.hero-header-freelance-accounting {
  text-align: center;
}

.hero-title-freelance-accounting {
  color: var(--color-text-primary);
  font-size: clamp(2rem, 6vw, 3.5rem);
  margin-bottom: var(--space-md);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.hero-subtitle-freelance-accounting {
  color: var(--color-primary);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  margin-bottom: var(--space-lg);
}

.hero-description-freelance-accounting {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  line-height: var(--line-height-relaxed);
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.posts-section-freelance-accounting {
  background: var(--color-bg-secondary);
  padding: clamp(3.5rem, 8vw, 7rem) 0;
  overflow: hidden;
}

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

.posts-header-freelance-accounting {
  text-align: center;
}

.posts-title-freelance-accounting {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.posts-subtitle-freelance-accounting {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  line-height: var(--line-height-relaxed);
}

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

.card-freelance-accounting {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex: 1 1 clamp(300px, 100%, 420px);
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: all var(--transition-base);
  backdrop-filter: blur(8px);
}

.card-freelance-accounting:hover {
  background: rgba(30, 41, 59, 0.9);
  border-color: rgba(249, 115, 22, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.15);
}

.card-freelance-accounting img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.card-title-freelance-accounting {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-sm);
}

.card-description-freelance-accounting {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  line-height: var(--line-height-relaxed);
  flex-grow: 1;
  margin-bottom: var(--space-sm);
}

.card-meta-freelance-accounting {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: var(--color-text-muted);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.card-reading-time-freelance-accounting,
.card-level-freelance-accounting,
.card-date-freelance-accounting {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-text-muted);
}

.card-reading-time-freelance-accounting i,
.card-level-freelance-accounting i,
.card-date-freelance-accounting i {
  color: var(--color-primary);
  width: 16px;
}

.card-link-freelance-accounting {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-primary);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all var(--transition-fast);
  text-decoration: none;
  margin-top: var(--space-sm);
}

.card-link-freelance-accounting:hover {
  color: var(--color-primary-hover);
  transform: translateX(4px);
}

.essentials-section-freelance-accounting {
  background: var(--color-bg-primary);
  padding: clamp(3.5rem, 8vw, 7rem) 0;
  overflow: hidden;
}

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

.essentials-title-freelance-accounting {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  text-align: center;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.essentials-intro-freelance-accounting {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  text-align: center;
  line-height: var(--line-height-relaxed);
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

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

.essential-item-freelance-accounting {
  flex: 1 1 clamp(250px, 100%, 380px);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(30, 41, 59, 0.5);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.essential-item-freelance-accounting:hover {
  background: rgba(30, 41, 59, 0.8);
  transform: translateX(4px);
}

.essential-item-title-freelance-accounting {
  color: var(--color-primary);
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.essential-item-text-freelance-accounting {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  line-height: var(--line-height-relaxed);
}

.resources-section-freelance-accounting {
  background: var(--color-bg-secondary);
  padding: clamp(3.5rem, 8vw, 7rem) 0;
  overflow: hidden;
}

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

.resources-title-freelance-accounting {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  text-align: center;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.resources-intro-freelance-accounting {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  text-align: center;
  line-height: var(--line-height-relaxed);
  max-width: 800px;
  margin: 0 auto var(--space-lg);
}

.faq-list-freelance-accounting {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.faq-item-freelance-accounting {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item-freelance-accounting:hover {
  background: rgba(30, 41, 59, 0.9);
  border-color: rgba(249, 115, 22, 0.4);
}

.faq-item-freelance-accounting[open] {
  background: rgba(30, 41, 59, 0.9);
  border-color: var(--color-primary);
}

.faq-question-freelance-accounting {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  cursor: pointer;
  user-select: none;
  color: var(--color-text-primary);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
}

.faq-question-text-freelance-accounting {
  flex: 1;
}

.faq-question-freelance-accounting i {
  color: var(--color-primary);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.faq-item-freelance-accounting[open] .faq-question-freelance-accounting i {
  transform: rotate(180deg);
}

.faq-answer-freelance-accounting {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  line-height: var(--line-height-relaxed);
  padding: 0 clamp(1.25rem, 2vw, 1.75rem) clamp(1.25rem, 2vw, 1.75rem);
  border-top: 1px solid rgba(249, 115, 22, 0.2);
}

@media (max-width: 768px) {
  .hero-section-freelance-accounting {
    padding: 2.5rem 0;
  }

  .posts-section-freelance-accounting {
    padding: 2.5rem 0;
  }

  .essentials-section-freelance-accounting {
    padding: 2.5rem 0;
  }

  .resources-section-freelance-accounting {
    padding: 2.5rem 0;
  }

  .card-freelance-accounting {
    flex: 1 1 100%;
  }

  .posts-grid-freelance-accounting {
    flex-direction: column;
    align-items: center;
  }

  .essential-item-freelance-accounting {
    flex: 1 1 100%;
  }

  .essentials-list-freelance-accounting {
    flex-direction: column;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .card-freelance-accounting {
    flex: 1 1 calc(50% - 1rem);
  }

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

  .essential-item-freelance-accounting {
    flex: 1 1 calc(50% - 1rem);
  }

  .essentials-list-freelance-accounting {
    gap: clamp(1.5rem, 2vw, 2rem);
  }
}

@media (min-width: 1025px) {
  .card-freelance-accounting {
    flex: 1 1 calc(50% - 1rem);
  }

  .essential-item-freelance-accounting {
    flex: 1 1 calc(50% - 1rem);
  }
}

.main-rechnungen-schreiben-anleitung {
  width: 100%;
  overflow: hidden;
}

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

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

.hero-text-block-rechnungen-schreiben-anleitung {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-rechnungen-schreiben-anleitung {
  flex: 1 1 50%;
  max-width: 50%;
}

.breadcrumbs-rechnungen-schreiben-anleitung {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.9rem);
}

.breadcrumbs-rechnungen-schreiben-anleitung a {
  color: #0ea5e9;
  transition: color var(--transition-fast);
}

.breadcrumbs-rechnungen-schreiben-anleitung a:hover {
  color: #06b6d4;
  text-decoration: underline;
}

.breadcrumbs-rechnungen-schreiben-anleitung span {
  color: #64748b;
}

.hero-title-rechnungen-schreiben-anleitung {
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
}

.hero-subtitle-rechnungen-schreiben-anleitung {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.15rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-rechnungen-schreiben-anleitung {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex-wrap: wrap;
}

.meta-item-rechnungen-schreiben-anleitung {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(249, 115, 22, 0.15);
  color: #fed7aa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.hero-image-rechnungen-schreiben-anleitung {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

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

  .hero-text-block-rechnungen-schreiben-anleitung,
  .hero-image-block-rechnungen-schreiben-anleitung {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-title-rechnungen-schreiben-anleitung {
    font-size: 1.75rem;
  }
}

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

.intro-content-rechnungen-schreiben-anleitung {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.intro-text-rechnungen-schreiben-anleitung {
  flex: 1 1 65%;
  max-width: 65%;
}

.intro-highlight-rechnungen-schreiben-anleitung {
  flex: 1 1 35%;
  max-width: 35%;
}

.intro-title-rechnungen-schreiben-anleitung {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-paragraph-rechnungen-schreiben-anleitung {
  color: #374151;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.highlight-box-rechnungen-schreiben-anleitung {
  background: #f0f9ff;
  border-left: 4px solid #0ea5e9;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
}

.highlight-title-rechnungen-schreiben-anleitung {
  color: #0f172a;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.highlight-text-rechnungen-schreiben-anleitung {
  color: #1e40af;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .intro-content-rechnungen-schreiben-anleitung {
    flex-direction: column;
  }

  .intro-text-rechnungen-schreiben-anleitung,
  .intro-highlight-rechnungen-schreiben-anleitung {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.steps-section-rechnungen-schreiben-anleitung {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.steps-header-rechnungen-schreiben-anleitung {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.steps-title-rechnungen-schreiben-anleitung {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: 1rem;
}

.steps-subtitle-rechnungen-schreiben-anleitung {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
}

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

.step-card-rechnungen-schreiben-anleitung {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 250px;
  max-width: 350px;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: all var(--transition-base);
}

.step-card-rechnungen-schreiben-anleitung:hover {
  background: rgba(51, 65, 85, 0.8);
  border-color: rgba(249, 115, 22, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.step-number-rechnungen-schreiben-anleitung {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #f97316;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.step-title-rechnungen-schreiben-anleitung {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.step-text-rechnungen-schreiben-anleitung {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .step-card-rechnungen-schreiben-anleitung {
    flex: 1 1 calc(50% - 1rem);
  }
}

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

.content-one-rechnungen-schreiben-anleitung {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-text-one-rechnungen-schreiben-anleitung {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-one-rechnungen-schreiben-anleitung {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-one-rechnungen-schreiben-anleitung {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-paragraph-one-rechnungen-schreiben-anleitung {
  color: #374151;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.tip-box-one-rechnungen-schreiben-anleitung {
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  margin-top: 1.5rem;
}

.tip-text-one-rechnungen-schreiben-anleitung {
  color: #92400e;
  font-size: 0.95rem;
  line-height: 1.6;
}

.content-image-rechnungen-schreiben-anleitung {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

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

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

.content-two-rechnungen-schreiben-anleitung {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-image-two-rechnungen-schreiben-anleitung {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-text-two-rechnungen-schreiben-anleitung {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-two-rechnungen-schreiben-anleitung {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-paragraph-two-rechnungen-schreiben-anleitung {
  color: #374151;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.content-list-two-rechnungen-schreiben-anleitung {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.list-item-two-rechnungen-schreiben-anleitung {
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.6;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  position: relative;
}

.list-item-two-rechnungen-schreiben-anleitung::before {
  content: "";
  position: absolute;
  left: 0;
  color: #f97316;
  font-weight: bold;
}

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

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

.tools-section-rechnungen-schreiben-anleitung {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tools-header-rechnungen-schreiben-anleitung {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.tools-title-rechnungen-schreiben-anleitung {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: 1rem;
}

.tools-subtitle-rechnungen-schreiben-anleitung {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
}

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

.tool-card-rechnungen-schreiben-anleitung {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 250px;
  max-width: 350px;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: all var(--transition-base);
}

.tool-card-rechnungen-schreiben-anleitung:hover {
  background: rgba(51, 65, 85, 0.8);
  border-color: rgba(249, 115, 22, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.tool-name-rechnungen-schreiben-anleitung {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.tool-description-rechnungen-schreiben-anleitung {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .tool-card-rechnungen-schreiben-anleitung {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .tool-card-rechnungen-schreiben-anleitung {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.quote-wrapper-rechnungen-schreiben-anleitung {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.featured-quote-rechnungen-schreiben-anleitung {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #f97316;
  background: rgba(249, 115, 22, 0.05);
  border-radius: var(--radius-lg);
}

.quote-text-rechnungen-schreiben-anleitung {
  color: #ffffff;
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  line-height: 1.8;
  font-style: italic;
  margin: 0;
}

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

.conclusion-content-rechnungen-schreiben-anleitung {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-rechnungen-schreiben-anleitung {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  text-align: center;
}

.conclusion-text-rechnungen-schreiben-anleitung {
  color: #374151;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: left;
}

.conclusion-checklist-rechnungen-schreiben-anleitung {
  background: #f0f9ff;
  border-left: 4px solid #0ea5e9;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  margin: 2rem 0;
}

.checklist-item-rechnungen-schreiben-anleitung {
  color: #0f172a;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.checklist-item-rechnungen-schreiben-anleitung:last-child {
  margin-bottom: 0;
}

.conclusion-cta-rechnungen-schreiben-anleitung {
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  margin-top: 2rem;
}

.cta-text-rechnungen-schreiben-anleitung {
  color: #92400e;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.disclaimer-section-rechnungen-schreiben-anleitung {
  background: #0f172a;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.disclaimer-content-rechnungen-schreiben-anleitung {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2rem);
}

.disclaimer-title-rechnungen-schreiben-anleitung {
  color: #f97316;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.disclaimer-text-rechnungen-schreiben-anleitung {
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

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

.related-header-rechnungen-schreiben-anleitung {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-title-rechnungen-schreiben-anleitung {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: 0.75rem;
}

.related-subtitle-rechnungen-schreiben-anleitung {
  color: #64748b;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
}

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

.related-card-rechnungen-schreiben-anleitung {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.related-card-rechnungen-schreiben-anleitung:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.related-image-rechnungen-schreiben-anleitung {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-rechnungen-schreiben-anleitung {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.related-card-rechnungen-schreiben-anleitung:hover .related-card-image-rechnungen-schreiben-anleitung {
  transform: scale(1.05);
}

.related-text-rechnungen-schreiben-anleitung {
  padding: clamp(1.25rem, 2vw, 1.75rem);
}

.related-card-title-rechnungen-schreiben-anleitung {
  color: #0f172a;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.related-card-description-rechnungen-schreiben-anleitung {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

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

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

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

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

.main-steuererklarung-freiberufler-grundlagen {
  background: #ffffff;
  color: #1e293b;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

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

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

.breadcrumbs-steuererklarung-freiberufler-grundlagen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: #64748b;
}

.breadcrumbs-steuererklarung-freiberufler-grundlagen a {
  color: #0ea5e9;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-steuererklarung-freiberufler-grundlagen a:hover {
  color: #0284c7;
  text-decoration: underline;
}

.breadcrumbs-steuererklarung-freiberufler-grundlagen span {
  color: #94a3b8;
}

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

.hero-text-wrapper-steuererklarung-freiberufler-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-subtitle-steuererklarung-freiberufler-grundlagen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-meta-steuererklarung-freiberufler-grundlagen {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.meta-item-steuererklarung-freiberufler-grundlagen {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #64748b;
  font-size: 0.95rem;
}

.meta-item-steuererklarung-freiberufler-grundlagen i {
  color: #0ea5e9;
  font-size: 1.1rem;
}

.hero-image-wrapper-steuererklarung-freiberufler-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-steuererklarung-freiberufler-grundlagen {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

@media (max-width: 768px) {
  .hero-content-steuererklarung-freiberufler-grundlagen {
    flex-direction: column;
  }
  
  .hero-text-wrapper-steuererklarung-freiberufler-grundlagen,
  .hero-image-wrapper-steuererklarung-freiberufler-grundlagen {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .hero-meta-steuererklarung-freiberufler-grundlagen {
    gap: 1.5rem;
    flex-direction: column;
  }
}

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

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

.intro-text-steuererklarung-freiberufler-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-paragraph-steuererklarung-freiberufler-grundlagen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-image-steuererklarung-freiberufler-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-item-steuererklarung-freiberufler-grundlagen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  display: block;
}

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

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

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

.content-text-steuererklarung-freiberufler-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-steuererklarung-freiberufler-grundlagen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-paragraph-steuererklarung-freiberufler-grundlagen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-image-steuererklarung-freiberufler-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-item-steuererklarung-freiberufler-grundlagen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  display: block;
}

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

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

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

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

.content-image-item-two-steuererklarung-freiberufler-grundlagen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  display: block;
}

.content-text-two-steuererklarung-freiberufler-grundlagen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-two-steuererklarung-freiberufler-grundlagen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-paragraph-two-steuererklarung-freiberufler-grundlagen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .content-wrapper-two-steuererklarung-freiberufler-grundlagen {
    flex-direction: column;
  }
  
  .content-image-two-steuererklarung-freiberufler-grundlagen,
  .content-text-two-steuererklarung-freiberufler-grundlagen {
    flex: 1 1 100%;
    max-width: 100%;
    order: initial;
  }
}

.highlight-section-steuererklarung-freiberufler-grundlagen {
  background: #f1f5f9;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.highlight-content-steuererklarung-freiberufler-grundlagen {
  display: flex;
  justify-content: center;
}

.highlight-box-steuererklarung-freiberufler-grundlagen {
  background: #ffffff;
  border-left: 5px solid #0ea5e9;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  max-width: 900px;
  width: 100%;
}

.highlight-title-steuererklarung-freiberufler-grundlagen {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.highlight-list-steuererklarung-freiberufler-grundlagen {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlight-item-steuererklarung-freiberufler-grundlagen {
  color: #475569;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.highlight-item-steuererklarung-freiberufler-grundlagen:before {
  content: "";
  position: absolute;
  left: 0;
  color: #0ea5e9;
  font-weight: 700;
  font-size: 1.2rem;
}

.highlight-item-steuererklarung-freiberufler-grundlagen:last-child {
  margin-bottom: 0;
}

.steps-section-steuererklarung-freiberufler-grundlagen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.steps-content-steuererklarung-freiberufler-grundlagen {
  display: flex;
  flex-direction: column;
}

.steps-title-steuererklarung-freiberufler-grundlagen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 3rem;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.steps-wrapper-steuererklarung-freiberufler-grundlagen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.step-card-steuererklarung-freiberufler-grundlagen {
  flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1.25rem));
  max-width: 350px;
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.step-card-steuererklarung-freiberufler-grundlagen:hover {
  border-color: #0ea5e9;
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.1);
  transform: translateY(-4px);
}

.step-number-steuererklarung-freiberufler-grundlagen {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0ea5e9;
  line-height: 1;
}

.step-body-steuererklarung-freiberufler-grundlagen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-title-steuererklarung-freiberufler-grundlagen {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  font-weight: 700;
  color: #0f172a;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.step-text-steuererklarung-freiberufler-grundlagen {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: #475569;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.quote-section-steuererklarung-freiberufler-grundlagen {
  background: linear-gradient(135deg, #e2e8f0 0%, #f1f5f9 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.quote-content-steuererklarung-freiberufler-grundlagen {
  display: flex;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.featured-quote-steuererklarung-freiberufler-grundlagen {
  background: #ffffff;
  border-left: 5px solid #0ea5e9;
  padding: clamp(2rem, 3vw, 3rem);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.quote-text-steuererklarung-freiberufler-grundlagen {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.5rem);
  color: #0f172a;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.quote-author-steuererklarung-freiberufler-grundlagen {
  display: block;
  color: #64748b;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  font-style: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.conclusion-content-steuererklarung-freiberufler-grundlagen {
  display: flex;
  flex-direction: column;
  max-width: 900px;
  margin: 0 auto;
}

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

.conclusion-text-steuererklarung-freiberufler-grundlagen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-section-steuererklarung-freiberufler-grundlagen {
  margin-top: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1.25rem) clamp(1.5rem, 2vw, 2.5rem);
  background: #0ea5e9;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  user-select: none;
}

.btn-primary {
  background: #0ea5e9;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.btn-primary:hover {
  background: #0284c7;
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.4);
  transform: translateY(-2px);
}

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

@media (max-width: 768px) {
  .btn-lg {
    width: 100%;
  }
}

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

.related-content-steuererklarung-freiberufler-grundlagen {
  display: flex;
  flex-direction: column;
}

.related-title-steuererklarung-freiberufler-grundlagen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 3rem;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-cards-wrapper-steuererklarung-freiberufler-grundlagen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-steuererklarung-freiberufler-grundlagen {
  flex: 1 1 calc(33.333% - clamp(1rem, 2vw, 1.667rem));
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-steuererklarung-freiberufler-grundlagen:hover {
  border-color: #0ea5e9;
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.15);
  transform: translateY(-4px);
}

.related-image-steuererklarung-freiberufler-grundlagen {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f1f5f9;
}

.related-card-image-steuererklarung-freiberufler-grundlagen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-title-steuererklarung-freiberufler-grundlagen {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-text-steuererklarung-freiberufler-grundlagen {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: #475569;
  line-height: 1.6;
  flex: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-link-steuererklarung-freiberufler-grundlagen {
  color: #0ea5e9;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  width: fit-content;
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
}

.related-card-link-steuererklarung-freiberufler-grundlagen:hover {
  color: #0284c7;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-card-steuererklarung-freiberufler-grundlagen {
    flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1.25rem));
  }
}

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

.disclaimer-section-steuererklarung-freiberufler-grundlagen {
  background: #f1f5f9;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-content-steuererklarung-freiberufler-grundlagen {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-left: 5px solid #f59e0b;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-steuererklarung-freiberufler-grundlagen {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-text-steuererklarung-freiberufler-grundlagen {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: #475569;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .hero-section-steuererklarung-freiberufler-grundlagen,
  .intro-section-steuererklarung-freiberufler-grundlagen,
  .content-section-one-steuererklarung-freiberufler-grundlagen,
  .content-section-two-steuererklarung-freiberufler-grundlagen,
  .highlight-section-steuererklarung-freiberufler-grundlagen,
  .steps-section-steuererklarung-freiberufler-grundlagen,
  .quote-section-steuererklarung-freiberufler-grundlagen,
  .conclusion-section-steuererklarung-freiberufler-grundlagen,
  .related-section-steuererklarung-freiberufler-grundlagen,
  .disclaimer-section-steuererklarung-freiberufler-grundlagen {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-steuererklarung-freiberufler-grundlagen {
    font-size: 0.8rem;
  }
  
  .hero-meta-steuererklarung-freiberufler-grundlagen {
    gap: 1rem;
    font-size: 0.85rem;
  }
  
  .highlight-item-steuererklarung-freiberufler-grundlagen {
    padding-left: 1.5rem;
  }
}

.main-buchhaltungs-software-freiberufler {
  width: 100%;
  background: #ffffff;
}

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

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

.hero-text-wrapper-buchhaltungs-software-freiberufler {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-buchhaltungs-software-freiberufler {
  color: #0f172a;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
}

.hero-subtitle-buchhaltungs-software-freiberufler {
  color: #475569;
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-buchhaltungs-software-freiberufler {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.meta-item-buchhaltungs-software-freiberufler {
  color: #64748b;
  font-size: 0.95rem;
  font-weight: 500;
}

.meta-divider-buchhaltungs-software-freiberufler {
  color: #cbd5e1;
  font-size: 0.85rem;
}

.hero-image-wrapper-buchhaltungs-software-freiberufler {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-buchhaltungs-software-freiberufler {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: block;
}

.breadcrumbs-buchhaltungs-software-freiberufler {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  flex-wrap: wrap;
}

.breadcrumbs-buchhaltungs-software-freiberufler a {
  color: #2563eb;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.breadcrumbs-buchhaltungs-software-freiberufler a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.breadcrumbs-buchhaltungs-software-freiberufler span {
  color: #cbd5e1;
  font-size: 0.9rem;
}

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

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

.intro-text-buchhaltungs-software-freiberufler {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-buchhaltungs-software-freiberufler {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
}

.intro-paragraph-buchhaltungs-software-freiberufler {
  color: #475569;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-paragraph-buchhaltungs-software-freiberufler:last-child {
  margin-bottom: 0;
}

.intro-image-buchhaltungs-software-freiberufler {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-image-buchhaltungs-software-freiberufler {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: block;
}

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

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

.comparison-title-buchhaltungs-software-freiberufler {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  letter-spacing: -0.02em;
}

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

.comparison-card-buchhaltungs-software-freiberufler {
  flex: 1 1 calc(50% - 1rem);
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-card-buchhaltungs-software-freiberufler:hover {
  border-color: #2563eb;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
  transform: translateY(-4px);
}

.card-number-buchhaltungs-software-freiberufler {
  color: #2563eb;
  font-size: 2.5rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.card-title-buchhaltungs-software-freiberufler {
  color: #0f172a;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.card-text-buchhaltungs-software-freiberufler {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.card-list-buchhaltungs-software-freiberufler {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card-list-buchhaltungs-software-freiberufler li {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.5;
  padding-left: 1.5rem;
  position: relative;
  margin: 0;
}

.card-list-buchhaltungs-software-freiberufler li:before {
  content: "";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.card-verdict-buchhaltungs-software-freiberufler {
  color: #334155;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

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

.features-content-buchhaltungs-software-freiberufler {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.features-text-buchhaltungs-software-freiberufler {
  flex: 1 1 50%;
  max-width: 50%;
}

.features-title-buchhaltungs-software-freiberufler {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
}

.features-intro-buchhaltungs-software-freiberufler {
  color: #475569;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.features-list-buchhaltungs-software-freiberufler {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.feature-item-buchhaltungs-software-freiberufler {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  align-items: flex-start;
}

.feature-icon-buchhaltungs-software-freiberufler {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #f0f4f8;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  font-size: 1.5rem;
}

.feature-text-buchhaltungs-software-freiberufler {
  flex: 1;
}

.feature-name-buchhaltungs-software-freiberufler {
  color: #0f172a;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-description-buchhaltungs-software-freiberufler {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.features-image-buchhaltungs-software-freiberufler {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-image-buchhaltungs-software-freiberufler {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: block;
}

.decision-section-buchhaltungs-software-freiberufler {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.decision-title-buchhaltungs-software-freiberufler {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  letter-spacing: -0.02em;
}

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

.decision-text-buchhaltungs-software-freiberufler {
  flex: 1 1 50%;
  max-width: 50%;
}

.decision-subtitle-buchhaltungs-software-freiberufler {
  color: #0f172a;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.decision-paragraph-buchhaltungs-software-freiberufler {
  color: #475569;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.decision-paragraph-buchhaltungs-software-freiberufler:last-of-type {
  margin-bottom: 0;
}

.decision-highlight-buchhaltungs-software-freiberufler {
  background: #e0f2fe;
  border-left: 4px solid #2563eb;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 6px;
  margin: clamp(1.5rem, 3vw, 2rem) 0;
}

.highlight-text-buchhaltungs-software-freiberufler {
  color: #0f172a;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

.decision-image-buchhaltungs-software-freiberufler {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.decision-image-buchhaltungs-software-freiberufler {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: block;
}

.tips-section-buchhaltungs-software-freiberufler {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.tips-title-buchhaltungs-software-freiberufler {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  letter-spacing: -0.02em;
}

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

.tip-card-buchhaltungs-software-freiberufler {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 280px;
  max-width: 340px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tip-card-buchhaltungs-software-freiberufler:hover {
  border-color: #2563eb;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
  transform: translateY(-4px);
}

.tip-number-buchhaltungs-software-freiberufler {
  color: #2563eb;
  font-size: 2rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.tip-heading-buchhaltungs-software-freiberufler {
  color: #0f172a;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.tip-text-buchhaltungs-software-freiberufler {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

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

.conclusion-content-buchhaltungs-software-freiberufler {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-buchhaltungs-software-freiberufler {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.conclusion-paragraph-buchhaltungs-software-freiberufler {
  color: #475569;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.75;
}

.conclusion-quote-buchhaltungs-software-freiberufler {
  background: #ffffff;
  border-left: 4px solid #2563eb;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 6px;
  margin: clamp(1rem, 2vw, 1.5rem) 0;
}

.quote-text-buchhaltungs-software-freiberufler {
  color: #0f172a;
  font-size: clamp(1rem, 1.2vw + 0.5rem, 1.25rem);
  font-style: italic;
  line-height: 1.7;
  margin: 0;
}

.conclusion-final-buchhaltungs-software-freiberufler {
  color: #475569;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.75;
}

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

.disclaimer-content-buchhaltungs-software-freiberufler {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.disclaimer-box-buchhaltungs-software-freiberufler {
  background: #fef3c7;
  border: 1px solid #fcd34d;
  border-radius: 10px;
  padding: clamp(1.5rem, 3vw, 2rem);
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-buchhaltungs-software-freiberufler {
  color: #78350f;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.disclaimer-text-buchhaltungs-software-freiberufler {
  color: #664d03;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

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

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

.related-title-buchhaltungs-software-freiberufler {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  letter-spacing: -0.02em;
}

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

.related-card-buchhaltungs-software-freiberufler {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-buchhaltungs-software-freiberufler:hover {
  border-color: #2563eb;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
  transform: translateY(-4px);
}

.related-image-wrapper-buchhaltungs-software-freiberufler {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-image-buchhaltungs-software-freiberufler {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-text-buchhaltungs-software-freiberufler {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.related-card-title-buchhaltungs-software-freiberufler {
  color: #0f172a;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.5rem 0;
}

.related-card-description-buchhaltungs-software-freiberufler {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 1rem 0;
  flex: 1;
}

.related-link-buchhaltungs-software-freiberufler {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  margin-top: auto;
}

.related-link-buchhaltungs-software-freiberufler:hover {
  color: #1d4ed8;
  transform: translateX(4px);
}

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

@media (max-width: 768px) {
  .hero-content-buchhaltungs-software-freiberufler,
  .intro-content-buchhaltungs-software-freiberufler,
  .features-content-buchhaltungs-software-freiberufler,
  .decision-wrapper-buchhaltungs-software-freiberufler {
    flex-direction: column;
  }

  .hero-text-wrapper-buchhaltungs-software-freiberufler,
  .hero-image-wrapper-buchhaltungs-software-freiberufler,
  .intro-text-buchhaltungs-software-freiberufler,
  .intro-image-buchhaltungs-software-freiberufler,
  .features-text-buchhaltungs-software-freiberufler,
  .features-image-buchhaltungs-software-freiberufler,
  .decision-text-buchhaltungs-software-freiberufler,
  .decision-image-buchhaltungs-software-freiberufler {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .comparison-card-buchhaltungs-software-freiberufler,
  .tip-card-buchhaltungs-software-freiberufler,
  .related-card-buchhaltungs-software-freiberufler {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .tips-grid-buchhaltungs-software-freiberufler {
    flex-direction: column;
  }
}

@media (max-width: 1024px) {
  .comparison-card-buchhaltungs-software-freiberufler {
    flex: 1 1 calc(50% - 1rem);
  }

  .tip-card-buchhaltungs-software-freiberufler {
    flex: 1 1 calc(50% - 1rem);
  }

  .related-card-buchhaltungs-software-freiberufler {
    flex: 1 1 calc(50% - 1rem);
  }
}

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

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

.main-gewinn-verlust-rechnung-selbststaendige {
  width: 100%;
  overflow-x: hidden;
}

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

.hero-section-gewinn-verlust-rechnung-selbststaendige .container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

@media (max-width: 768px) {
  .hero-section-gewinn-verlust-rechnung-selbststaendige .container {
    padding: 0 var(--space-md);
  }
}

.breadcrumbs-gewinn-verlust-rechnung-selbststaendige {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  font-size: 0.875rem;
}

.breadcrumbs-gewinn-verlust-rechnung-selbststaendige a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumbs-gewinn-verlust-rechnung-selbststaendige a:hover {
  color: var(--color-primary-hover);
}

.breadcrumbs-gewinn-verlust-rechnung-selbststaendige span {
  color: var(--color-text-muted);
}

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

.hero-text-wrapper-gewinn-verlust-rechnung-selbststaendige {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-wrapper-gewinn-verlust-rechnung-selbststaendige {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-gewinn-verlust-rechnung-selbststaendige {
  color: var(--color-text-primary);
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-lg);
}

.hero-subtitle-gewinn-verlust-rechnung-selbststaendige {
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-lg);
}

.hero-meta-gewinn-verlust-rechnung-selbststaendige {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.meta-item-gewinn-verlust-rechnung-selbststaendige {
  color: var(--color-text-muted);
}

.meta-divider-gewinn-verlust-rechnung-selbststaendige {
  color: var(--color-text-muted);
}

.hero-image-gewinn-verlust-rechnung-selbststaendige {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

@media (max-width: 768px) {
  .hero-content-gewinn-verlust-rechnung-selbststaendige {
    flex-direction: column;
  }

  .hero-text-wrapper-gewinn-verlust-rechnung-selbststaendige,
  .hero-image-wrapper-gewinn-verlust-rechnung-selbststaendige {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .breadcrumbs-gewinn-verlust-rechnung-selbststaendige {
    flex-wrap: wrap;
  }
}

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

.intro-section-gewinn-verlust-rechnung-selbststaendige .container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

@media (max-width: 768px) {
  .intro-section-gewinn-verlust-rechnung-selbststaendige .container {
    padding: 0 var(--space-md);
  }
}

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

.intro-text-gewinn-verlust-rechnung-selbststaendige {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-gewinn-verlust-rechnung-selbststaendige {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-gewinn-verlust-rechnung-selbststaendige {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-lg);
}

.intro-paragraph-gewinn-verlust-rechnung-selbststaendige {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.125rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.intro-img-gewinn-verlust-rechnung-selbststaendige {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

@media (max-width: 768px) {
  .intro-content-gewinn-verlust-rechnung-selbststaendige {
    flex-direction: column;
  }

  .intro-text-gewinn-verlust-rechnung-selbststaendige,
  .intro-image-gewinn-verlust-rechnung-selbststaendige {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.structure-section-gewinn-verlust-rechnung-selbststaendige {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.structure-section-gewinn-verlust-rechnung-selbststaendige .container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

@media (max-width: 768px) {
  .structure-section-gewinn-verlust-rechnung-selbststaendige .container {
    padding: 0 var(--space-md);
  }
}

.structure-content-gewinn-verlust-rechnung-selbststaendige {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.structure-text-gewinn-verlust-rechnung-selbststaendige {
  flex: 1 1 50%;
  max-width: 50%;
}

.structure-image-gewinn-verlust-rechnung-selbststaendige {
  flex: 1 1 50%;
  max-width: 50%;
}

.structure-title-gewinn-verlust-rechnung-selbststaendige {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-lg);
}

.structure-paragraph-gewinn-verlust-rechnung-selbststaendige {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.125rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.structure-highlight-gewinn-verlust-rechnung-selbststaendige {
  background: rgba(249, 115, 22, 0.1);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--space-lg);
}

.highlight-title-gewinn-verlust-rechnung-selbststaendige {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
}

.highlight-list-gewinn-verlust-rechnung-selbststaendige {
  list-style: none;
  margin: 0;
  padding: 0;
}

.highlight-item-gewinn-verlust-rechnung-selbststaendige {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
  padding-left: var(--space-lg);
  position: relative;
}

.highlight-item-gewinn-verlust-rechnung-selbststaendige:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.structure-img-gewinn-verlust-rechnung-selbststaendige {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

@media (max-width: 768px) {
  .structure-content-gewinn-verlust-rechnung-selbststaendige {
    flex-direction: column;
  }

  .structure-text-gewinn-verlust-rechnung-selbststaendige,
  .structure-image-gewinn-verlust-rechnung-selbststaendige {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.einnahmen-section-gewinn-verlust-rechnung-selbststaendige {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.einnahmen-section-gewinn-verlust-rechnung-selbststaendige .container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

@media (max-width: 768px) {
  .einnahmen-section-gewinn-verlust-rechnung-selbststaendige .container {
    padding: 0 var(--space-md);
  }
}

.einnahmen-content-gewinn-verlust-rechnung-selbststaendige {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.einnahmen-image-gewinn-verlust-rechnung-selbststaendige {
  flex: 1 1 50%;
  max-width: 50%;
}

.einnahmen-text-gewinn-verlust-rechnung-selbststaendige {
  flex: 1 1 50%;
  max-width: 50%;
}

.einnahmen-title-gewinn-verlust-rechnung-selbststaendige {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-lg);
}

.einnahmen-paragraph-gewinn-verlust-rechnung-selbststaendige {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.125rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.einnahmen-img-gewinn-verlust-rechnung-selbststaendige {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

@media (max-width: 768px) {
  .einnahmen-content-gewinn-verlust-rechnung-selbststaendige {
    flex-direction: column-reverse;
  }

  .einnahmen-image-gewinn-verlust-rechnung-selbststaendige,
  .einnahmen-text-gewinn-verlust-rechnung-selbststaendige {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.ausgaben-section-gewinn-verlust-rechnung-selbststaendige {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.ausgaben-section-gewinn-verlust-rechnung-selbststaendige .container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

@media (max-width: 768px) {
  .ausgaben-section-gewinn-verlust-rechnung-selbststaendige .container {
    padding: 0 var(--space-md);
  }
}

.ausgaben-content-gewinn-verlust-rechnung-selbststaendige {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.ausgaben-text-gewinn-verlust-rechnung-selbststaendige {
  flex: 1 1 50%;
  max-width: 50%;
}

.ausgaben-image-gewinn-verlust-rechnung-selbststaendige {
  flex: 1 1 50%;
  max-width: 50%;
}

.ausgaben-title-gewinn-verlust-rechnung-selbststaendige {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-lg);
}

.ausgaben-paragraph-gewinn-verlust-rechnung-selbststaendige {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.125rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.ausgaben-highlight-gewinn-verlust-rechnung-selbststaendige {
  background: rgba(249, 115, 22, 0.1);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--space-lg);
}

.ausgaben-highlight-title-gewinn-verlust-rechnung-selbststaendige {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
}

.ausgaben-highlight-list-gewinn-verlust-rechnung-selbststaendige {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ausgaben-highlight-item-gewinn-verlust-rechnung-selbststaendige {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
  padding-left: var(--space-lg);
  position: relative;
}

.ausgaben-highlight-item-gewinn-verlust-rechnung-selbststaendige:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.ausgaben-img-gewinn-verlust-rechnung-selbststaendige {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

@media (max-width: 768px) {
  .ausgaben-content-gewinn-verlust-rechnung-selbststaendige {
    flex-direction: column;
  }

  .ausgaben-text-gewinn-verlust-rechnung-selbststaendige,
  .ausgaben-image-gewinn-verlust-rechnung-selbststaendige {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.analyse-section-gewinn-verlust-rechnung-selbststaendige {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.analyse-section-gewinn-verlust-rechnung-selbststaendige .container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

@media (max-width: 768px) {
  .analyse-section-gewinn-verlust-rechnung-selbststaendige .container {
    padding: 0 var(--space-md);
  }
}

.analyse-content-gewinn-verlust-rechnung-selbststaendige {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
}

.analyse-title-gewinn-verlust-rechnung-selbststaendige {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  line-height: var(--line-height-tight);
  text-align: center;
  margin-bottom: var(--space-md);
}

.analyse-intro-gewinn-verlust-rechnung-selbststaendige {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.125rem);
  line-height: var(--line-height-relaxed);
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-lg);
}

.analyse-cards-gewinn-verlust-rechnung-selbststaendige {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.analyse-card-gewinn-verlust-rechnung-selbststaendige {
  flex: 1 1 280px;
  max-width: 300px;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.analyse-card-gewinn-verlust-rechnung-selbststaendige:hover {
  background: rgba(30, 41, 59, 0.8);
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-title-gewinn-verlust-rechnung-selbststaendige {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  line-height: var(--line-height-tight);
}

.card-text-gewinn-verlust-rechnung-selbststaendige {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: var(--line-height-relaxed);
}

.praktisch-section-gewinn-verlust-rechnung-selbststaendige {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.praktisch-section-gewinn-verlust-rechnung-selbststaendige .container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

@media (max-width: 768px) {
  .praktisch-section-gewinn-verlust-rechnung-selbststaendige .container {
    padding: 0 var(--space-md);
  }
}

.praktisch-content-gewinn-verlust-rechnung-selbststaendige {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.praktisch-text-gewinn-verlust-rechnung-selbststaendige {
  flex: 1 1 50%;
  max-width: 50%;
}

.praktisch-image-gewinn-verlust-rechnung-selbststaendige {
  flex: 1 1 50%;
  max-width: 50%;
}

.praktisch-title-gewinn-verlust-rechnung-selbststaendige {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-lg);
}

.praktisch-paragraph-gewinn-verlust-rechnung-selbststaendige {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.125rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-lg);
}

.praktisch-steps-gewinn-verlust-rechnung-selbststaendige {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.step-item-gewinn-verlust-rechnung-selbststaendige {
  display: flex;
  flex-direction: row;
  gap: var(--space-lg);
  align-items: flex-start;
}

.step-number-gewinn-verlust-rechnung-selbststaendige {
  color: var(--color-primary);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  min-width: 80px;
}

.step-text-gewinn-verlust-rechnung-selbststaendige {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.step-title-gewinn-verlust-rechnung-selbststaendige {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  line-height: var(--line-height-tight);
}

.step-desc-gewinn-verlust-rechnung-selbststaendige {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: var(--line-height-relaxed);
}

.praktisch-img-gewinn-verlust-rechnung-selbststaendige {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

@media (max-width: 768px) {
  .praktisch-content-gewinn-verlust-rechnung-selbststaendige {
    flex-direction: column;
  }

  .praktisch-text-gewinn-verlust-rechnung-selbststaendige,
  .praktisch-image-gewinn-verlust-rechnung-selbststaendige {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-item-gewinn-verlust-rechnung-selbststaendige {
    flex-direction: column;
    gap: var(--space-md);
  }

  .step-number-gewinn-verlust-rechnung-selbststaendige {
    min-width: auto;
  }
}

.fazit-section-gewinn-verlust-rechnung-selbststaendige {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.fazit-section-gewinn-verlust-rechnung-selbststaendige .container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

@media (max-width: 768px) {
  .fazit-section-gewinn-verlust-rechnung-selbststaendige .container {
    padding: 0 var(--space-md);
  }
}

.fazit-content-gewinn-verlust-rechnung-selbststaendige {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 900px;
  margin: 0 auto;
}

.fazit-title-gewinn-verlust-rechnung-selbststaendige {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  line-height: var(--line-height-tight);
  text-align: center;
}

.fazit-text-gewinn-verlust-rechnung-selbststaendige {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.125rem);
  line-height: var(--line-height-relaxed);
  text-align: center;
}

.fazit-quote-gewinn-verlust-rechnung-selbststaendige {
  background: rgba(249, 115, 22, 0.1);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--space-md);
}

.quote-text-gewinn-verlust-rechnung-selbststaendige {
  color: var(--color-text-secondary);
  font-size: 1.125rem;
  line-height: var(--line-height-relaxed);
  font-style: italic;
  text-align: center;
  margin: 0;
}

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

.related-section-gewinn-verlust-rechnung-selbststaendige .container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

@media (max-width: 768px) {
  .related-section-gewinn-verlust-rechnung-selbststaendige .container {
    padding: 0 var(--space-md);
  }
}

.related-content-gewinn-verlust-rechnung-selbststaendige {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
}

.related-title-gewinn-verlust-rechnung-selbststaendige {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  line-height: var(--line-height-tight);
  text-align: center;
}

.related-subtitle-gewinn-verlust-rechnung-selbststaendige {
  color: var(--color-text-secondary);
  font-size: 1rem;
  text-align: center;
}

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

.related-card-gewinn-verlust-rechnung-selbststaendige {
  flex: 1 1 320px;
  max-width: 380px;
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.related-card-gewinn-verlust-rechnung-selbststaendige:hover {
  background: var(--color-bg-card-hover);
  border-color: rgba(249, 115, 22, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.related-card-image-gewinn-verlust-rechnung-selbststaendige {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-gewinn-verlust-rechnung-selbststaendige img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.related-card-gewinn-verlust-rechnung-selbststaendige:hover .related-card-image-gewinn-verlust-rechnung-selbststaendige img {
  transform: scale(1.05);
}

.related-card-content-gewinn-verlust-rechnung-selbststaendige {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex-grow: 1;
}

.related-card-title-gewinn-verlust-rechnung-selbststaendige {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  line-height: var(--line-height-tight);
  margin: 0;
}

.related-card-text-gewinn-verlust-rechnung-selbststaendige {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: var(--line-height-relaxed);
  margin: 0;
  flex-grow: 1;
}

.related-card-link-gewinn-verlust-rechnung-selbststaendige {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
  align-self: flex-start;
}

.related-card-link-gewinn-verlust-rechnung-selbststaendige:hover {
  color: var(--color-primary-hover);
}

.disclaimer-section-gewinn-verlust-rechnung-selbststaendige {
  background: rgba(249, 115, 22, 0.05);
  border-top: 1px solid rgba(249, 115, 22, 0.2);
  border-bottom: 1px solid rgba(249, 115, 22, 0.2);
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-section-gewinn-verlust-rechnung-selbststaendige .container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

@media (max-width: 768px) {
  .disclaimer-section-gewinn-verlust-rechnung-selbststaendige .container {
    padding: 0 var(--space-md);
  }
}

.disclaimer-content-gewinn-verlust-rechnung-selbststaendige {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-gewinn-verlust-rechnung-selbststaendige {
  color: var(--color-text-primary);
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}

.disclaimer-text-gewinn-verlust-rechnung-selbststaendige {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.disclaimer-text-gewinn-verlust-rechnung-selbststaendige:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .hero-content-gewinn-verlust-rechnung-selbststaendige,
  .intro-content-gewinn-verlust-rechnung-selbststaendige,
  .structure-content-gewinn-verlust-rechnung-selbststaendige,
  .einnahmen-content-gewinn-verlust-rechnung-selbststaendige,
  .ausgaben-content-gewinn-verlust-rechnung-selbststaendige,
  .praktisch-content-gewinn-verlust-rechnung-selbststaendige {
    gap: clamp(1.5rem, 3vw, 3rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .analyse-card-gewinn-verlust-rechnung-selbststaendige:hover,
  .related-card-gewinn-verlust-rechnung-selbststaendige:hover,
  .related-card-image-gewinn-verlust-rechnung-selbststaendige img {
    transform: none;
  }

  .analyse-card-gewinn-verlust-rechnung-selbststaendige,
  .related-card-gewinn-verlust-rechnung-selbststaendige,
  .related-card-image-gewinn-verlust-rechnung-selbststaendige img,
  .breadcrumbs-gewinn-verlust-rechnung-selbststaendige a {
    transition: none;
  }
}

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

.accounting-expertise-about {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
}

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

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

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

.hero-title-about {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: var(--line-height-tight);
  margin: 0;
}

.hero-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  line-height: var(--line-height-normal);
  max-width: 700px;
  margin: 0;
}

.hero-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  margin: 1rem auto 0;
}

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

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

.stat-number-about {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label-about {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #94a3af;
}

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

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

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

.section-tag-about {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(249, 115, 22, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.foundation-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #1e293b;
  line-height: var(--line-height-tight);
  margin: 0;
}

.foundation-description-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: var(--line-height-normal);
  max-width: 750px;
  margin: 1rem auto 0;
}

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

.foundation-block-about {
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.block-title-about {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 0.75rem 0;
}

.block-text-about {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: var(--line-height-normal);
  margin: 0;
}

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

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

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

.services-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  line-height: var(--line-height-tight);
  margin: 0;
}

.services-intro-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: var(--line-height-normal);
  max-width: 750px;
  margin: 1rem auto 0;
}

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

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

.step-number-about {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
}

.step-content-about {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-about {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.step-text-about {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: var(--line-height-normal);
  margin: 0;
}

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

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

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

.expertise-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #1e293b;
  line-height: var(--line-height-tight);
  margin: 0;
}

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

.expertise-cards-about {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

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

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

.card-icon-about {
  font-size: 2.5rem;
  color: var(--color-primary);
}

.card-title-about {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.card-text-about {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: var(--line-height-normal);
  margin: 0;
  flex-grow: 1;
}

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

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

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

.approach-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  line-height: var(--line-height-tight);
  margin: 0;
}

.approach-intro-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: var(--line-height-normal);
  max-width: 750px;
  margin: 1rem auto 0;
}

.featured-quote-about {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(30, 41, 59, 0.5);
  border-radius: var(--radius-lg);
  margin: clamp(1.5rem, 3vw, 2.5rem) auto;
  max-width: 800px;
}

.quote-text-about {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #ffffff;
  line-height: var(--line-height-relaxed);
  font-style: italic;
  margin: 0 0 1rem 0;
}

.quote-author-about {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #94a3af;
  display: block;
}

.approach-visual-about {
  width: 100%;
  max-width: 850px;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  margin: clamp(1rem, 2vw, 2rem) auto 0;
}

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

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.disclaimer-title-about {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.disclaimer-icon-about {
  font-size: 1.25rem;
  color: var(--color-primary);
}

.disclaimer-text-about {
  font-size: clamp(0.85rem, 0.95vw, 1rem);
  color: #64748b;
  line-height: var(--line-height-relaxed);
  margin: 0;
}

@media (min-width: 768px) {
  .hero-stats-about {
    gap: clamp(2rem, 8vw, 6rem);
  }

  .process-step-about {
    gap: clamp(2rem, 4vw, 3rem);
  }

  .disclaimer-content-about {
    text-align: left;
  }

  .disclaimer-title-about {
    justify-content: flex-start;
  }
}

@media (min-width: 1024px) {
  .hero-section-about {
    padding: 7rem 0;
  }

  .foundation-section-about {
    padding: 7rem 0;
  }

  .services-section-about {
    padding: 7rem 0;
  }

  .expertise-section-about {
    padding: 7rem 0;
  }

  .approach-section-about {
    padding: 7rem 0;
  }

  .expertise-cards-about {
    gap: clamp(1.5rem, 4vw, 3rem);
  }

  .expertise-card-about {
    flex: 1 1 320px;
    max-width: 420px;
  }
}

.portfolio-page {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

.portfolio-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
  border-bottom: 1px solid var(--color-bg-tertiary);
}

.portfolio-hero-container {
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin: 0 0 var(--space-md) 0;
  letter-spacing: -0.02em;
}

.portfolio-hero-subtitle {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  margin: 0;
  max-width: 600px;
}

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

.portfolio-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  display: grid;
  grid-template-columns: 1fr;
  min-height: auto;
}

.portfolio-card:hover {
  background-color: var(--color-bg-card-hover);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}

.portfolio-card-image {
  width: 100%;
  height: 200px;
  background-color: var(--color-bg-tertiary);
  overflow: hidden;
  position: relative;
}

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

.portfolio-card-content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
}

.portfolio-card-tag {
  display: inline-block;
  background-color: rgba(249, 115, 22, 0.15);
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
  width: fit-content;
}

.portfolio-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin: 0 0 var(--space-md) 0;
  letter-spacing: -0.01em;
}

.portfolio-card-description {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0 0 var(--space-md) 0;
  flex-grow: 1;
}

.portfolio-card-detail {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-bg-tertiary);
}

.portfolio-cta {
  background-color: var(--color-bg-secondary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
  border-top: 1px solid var(--color-bg-tertiary);
}

.portfolio-cta-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin: 0 0 var(--space-lg) 0;
  letter-spacing: -0.01em;
}

.portfolio-cta-text {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0 0 var(--space-2xl) 0;
}

.portfolio-cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-text-primary);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
  cursor: pointer;
  font-family: var(--font-primary);
  letter-spacing: 0.02em;
}

.portfolio-cta-button:hover {
  background-color: var(--color-primary-hover);
  border-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-hero {
    padding: var(--space-3xl) var(--space-lg);
  }

  .portfolio-projects {
    padding: var(--space-4xl) var(--space-lg);
  }

  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3xl);
  }

  .portfolio-card {
    grid-template-columns: 1fr;
  }

  .portfolio-card-image {
    height: 250px;
  }

  .portfolio-cta {
    padding: var(--space-4xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-hero {
    padding: var(--space-4xl) var(--space-lg);
  }

  .portfolio-projects {
    padding: var(--space-4xl) var(--space-lg);
  }

  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3xl);
  }

  .portfolio-card {
    grid-template-columns: 1fr 1fr;
  }

  .portfolio-card:nth-child(even) {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
  }

  .portfolio-card:nth-child(even) > * {
    direction: ltr;
  }

  .portfolio-card-image {
    height: 100%;
    min-height: 300px;
  }

  .portfolio-card-content {
    padding: var(--space-xl);
  }

  .portfolio-cta {
    padding: var(--space-4xl) var(--space-lg);
  }

  .portfolio-cta-container {
    max-width: 800px;
  }
}

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

  .portfolio-card-image {
    height: 350px;
  }
}

.faq-page {
  width: 100%;
  overflow-x: hidden;
}

.faq-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.faq-hero-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-hero-title {
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-md);
  letter-spacing: -0.5px;
}

.faq-hero-subtitle {
  font-family: var(--font-primary);
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: var(--line-height-normal);
  font-weight: 400;
}

@media (min-width: 768px) {
  .faq-hero {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .faq-hero {
    padding: var(--space-4xl) var(--space-lg);
  }
}

.faq-content {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.faq-content-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  background-color: var(--color-bg-card-hover);
  border-color: var(--color-primary);
}

.faq-item-button {
  width: 100%;
  padding: var(--space-lg) var(--space-md);
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  text-align: left;
  font-family: var(--font-primary);
  transition: all var(--transition-fast);
}

.faq-item-question {
  color: var(--color-text-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  font-weight: 600;
  line-height: var(--line-height-normal);
  flex: 1;
}

.faq-item-icon {
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.faq-item-button:hover .faq-item-icon {
  color: var(--color-primary-hover);
}

.faq-item.active .faq-item-icon {
  transform: rotate(45deg);
}

.faq-item-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-item.active .faq-item-answer {
  max-height: 500px;
}

.faq-item-answer p {
  padding: 0 var(--space-md) var(--space-lg);
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: var(--line-height-relaxed);
  font-weight: 400;
}

@media (min-width: 768px) {
  .faq-content {
    padding: var(--space-3xl) var(--space-lg);
  }

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

  .faq-item-button {
    padding: var(--space-xl) var(--space-lg);
  }

  .faq-item-answer p {
    padding: 0 var(--space-lg) var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .faq-content {
    padding: var(--space-4xl) var(--space-lg);
  }
}

.faq-cta {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.faq-cta-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-cta-title {
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-md);
  letter-spacing: -0.5px;
}

.faq-cta-subtitle {
  font-family: var(--font-primary);
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: var(--line-height-normal);
  margin-bottom: var(--space-xl);
  font-weight: 400;
}

.faq-cta-button {
  display: inline-block;
  padding: var(--space-md) var(--space-2xl);
  background-color: var(--color-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
  border: 2px solid var(--color-primary);
  cursor: pointer;
}

.faq-cta-button:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .faq-cta {
    padding: var(--space-3xl) var(--space-lg);
  }

  .faq-cta-title {
    margin-bottom: var(--space-lg);
  }

  .faq-cta-subtitle {
    margin-bottom: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .faq-cta {
    padding: var(--space-4xl) var(--space-lg);
  }
}

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

.legal-docs {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  min-height: 100vh;
}

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

.legal-docs .content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-docs h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.legal-docs .updated-date {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  font-style: italic;
}

.legal-docs .intro-section {
  margin-bottom: var(--space-3xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-bg-tertiary);
}

.legal-docs .intro-section p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.legal-docs h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.legal-docs section {
  margin-bottom: var(--space-3xl);
}

.legal-docs section p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.legal-docs ul {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.legal-docs li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-sm);
}

.legal-docs .contact-section {
  background-color: var(--color-bg-secondary);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-2xl);
}

.legal-docs .contact-section h2 {
  color: var(--color-primary);
  margin-top: 0;
  margin-bottom: var(--space-lg);
}

.legal-docs .contact-section p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-sm);
}

.legal-docs .contact-section strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

.legal-docs .final-note {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-muted);
  margin-top: var(--space-3xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-bg-tertiary);
}

@media (min-width: 768px) {
  .legal-docs .container {
    padding: var(--space-xl);
  }

  .legal-docs h1 {
    margin-bottom: var(--space-lg);
  }

  .legal-docs h2 {
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-lg);
  }

  .legal-docs section {
    margin-bottom: var(--space-2xl);
  }
}

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

.thank-you-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-section {
  width: 100%;
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
}

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

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

.thank-wrapper {
  text-align: center;
  animation: fadeInScale 0.6s ease-out;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.thank-icon {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-xl);
  animation: slideDown 0.8s ease-out;
}

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

.thank-icon svg {
  width: 100px;
  height: 100px;
  filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.2));
}

.thank-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: var(--line-height-tight);
}

.thank-lead {
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--color-success);
  margin-bottom: var(--space-lg);
  font-weight: 600;
  line-height: var(--line-height-normal);
}

.thank-message {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-relaxed);
  letter-spacing: 0.3px;
}

.thank-next {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
  line-height: var(--line-height-relaxed);
  letter-spacing: 0.3px;
}

.btn-return {
  display: inline-block;
  padding: var(--space-md) var(--space-2xl);
  background-color: var(--color-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
  box-shadow: var(--shadow-md);
  letter-spacing: 0.5px;
}

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

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

@media (min-width: 640px) {
  .thank-section {
    padding: var(--space-2xl) var(--space-md);
  }

  .thank-icon svg {
    width: 120px;
    height: 120px;
  }

  .thank-wrapper {
    padding: var(--space-lg) 0;
  }
}

@media (min-width: 768px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-md);
  }

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

  .thank-icon {
    margin-bottom: var(--space-2xl);
  }

  .btn-return {
    padding: var(--space-md) var(--space-xl);
    margin-top: var(--space-md);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--space-4xl) var(--space-md);
    min-height: 100vh;
  }

  .thank-wrapper {
    padding: var(--space-2xl) 0;
  }

  .thank-icon {
    margin-bottom: var(--space-2xl);
  }

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

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

html {
  scroll-behavior: smooth;
}

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

.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-primary);
}

.error-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  overflow: hidden;
  position: relative;
}

.error-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.error-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

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

.error-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-lg);
}

.error-code-container {
  position: relative;
  margin-bottom: var(--space-md);
}

.error-code {
  display: block;
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-heading);
  line-height: 1;
  letter-spacing: -0.02em;
}

.error-decoration {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), transparent);
  margin: var(--space-md) auto 0;
  border-radius: var(--radius-full);
  animation: slideIn 0.8s ease-out;
}

.error-heading {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: var(--line-height-tight);
}

.error-message {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 600px;
  margin: 0 auto;
}

.error-subtext {
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  max-width: 600px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  font-family: var(--font-primary);
}

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

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

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

.error-suggestions {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-bg-tertiary);
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.suggestions-label {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.suggestions-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

.suggestions-list li {
  padding: var(--space-xs) var(--space-md);
  background-color: var(--color-bg-tertiary);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}

.suggestions-list li:hover {
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  border-color: var(--color-primary);
}

@keyframes slideIn {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 80px;
    opacity: 1;
  }
}

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

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-2xl) var(--space-lg);
  }
  
  .error-wrapper {
    gap: var(--space-xl);
  }
  
  .error-suggestions {
    margin-top: var(--space-2xl);
    padding: var(--space-xl);
  }
  
  .suggestions-list {
    gap: var(--space-md);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl) var(--space-lg);
    min-height: 100vh;
  }
  
  .error-wrapper {
    gap: var(--space-2xl);
  }
  
  .error-code-container {
    margin-bottom: var(--space-lg);
  }
  
  .error-decoration {
    width: 120px;
    height: 5px;
  }
  
  .error-suggestions {
    margin-top: var(--space-3xl);
  }
}

@media (max-width: 480px) {
  .error-section::before {
    width: 300px;
    height: 300px;
    right: -20%;
    top: -40%;
  }
  
  .error-section::after {
    width: 250px;
    height: 250px;
    left: -15%;
    bottom: -20%;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .suggestions-list {
    flex-direction: column;
    align-items: center;
  }
  
  .suggestions-list li {
    width: 100%;
  }
}

.contact-lets-talk {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  overflow: hidden;
}

.contact-lets-talk-hero {
  background: var(--color-bg-primary);
  padding: 3rem var(--space-md);
  overflow: hidden;
}

.contact-lets-talk-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.contact-lets-talk-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.contact-lets-talk-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

@media (min-width: 768px) {
  .contact-lets-talk-hero {
    padding: 5rem var(--space-md);
  }

  .contact-lets-talk-hero-title {
    margin-bottom: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .contact-lets-talk-hero {
    padding: 6rem var(--space-md);
  }
}

.contact-lets-talk-main {
  background: var(--color-bg-secondary);
  padding: 3rem var(--space-md);
  overflow: hidden;
}

.contact-lets-talk-main-content {
  width: 100%;
}

.contact-lets-talk-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  width: 100%;
}

.contact-lets-talk-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-lets-talk-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-lg) 0;
}

.contact-lets-talk-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  width: 100%;
}

.contact-lets-talk-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.contact-lets-talk-label {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-weight: 600;
  color: var(--color-text-secondary);
}

.contact-lets-talk-input,
.contact-lets-talk-textarea {
  width: 100%;
  padding: var(--space-md);
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  transition: all var(--transition-base);
}

.contact-lets-talk-input::placeholder,
.contact-lets-talk-textarea::placeholder {
  color: var(--color-text-muted);
}

.contact-lets-talk-input:focus,
.contact-lets-talk-textarea:focus {
  outline: none;
  background: var(--color-bg-card-hover);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.contact-lets-talk-textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-lets-talk-form-consent {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.contact-lets-talk-form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--color-primary);
}

.contact-lets-talk-consent-label {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  cursor: pointer;
}

.contact-lets-talk-link {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-lets-talk-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-lets-talk-submit {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.contact-lets-talk-submit:active {
  transform: translateY(0);
}

.contact-lets-talk-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-lets-talk-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-lg) 0;
}

.contact-lets-talk-info-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.contact-lets-talk-info-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.contact-lets-talk-info-item:hover {
  background: var(--color-bg-card-hover);
  border-color: rgba(249, 115, 22, 0.3);
}

.contact-lets-talk-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(249, 115, 22, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.contact-lets-talk-info-content {
  flex: 1;
}

.contact-lets-talk-info-heading {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-xs) 0;
}

.contact-lets-talk-info-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-normal);
}

.contact-lets-talk-info-subtext {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  color: var(--color-text-muted);
  margin: var(--space-xs) 0 0 0;
}

.contact-lets-talk-expertise {
  padding: var(--space-lg);
  background: rgba(249, 115, 22, 0.05);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: var(--radius-lg);
}

.contact-lets-talk-expertise-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
}

.contact-lets-talk-expertise-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-lets-talk-expertise-item {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  padding-left: var(--space-md);
  position: relative;
}

.contact-lets-talk-expertise-item::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

@media (min-width: 768px) {
  .contact-lets-talk-main {
    padding: 5rem var(--space-md);
  }

  .contact-lets-talk-grid {
    gap: 4rem;
  }

  .contact-lets-talk-form-wrapper {
    flex: 1 1 400px;
  }

  .contact-lets-talk-info-wrapper {
    flex: 1 1 400px;
  }
}

@media (min-width: 1024px) {
  .contact-lets-talk-main {
    padding: 6rem var(--space-md);
  }

  .contact-lets-talk-grid {
    gap: 5rem;
  }
}

.contact-lets-talk-cta {
  background: var(--color-bg-primary);
  padding: 4rem var(--space-md);
  overflow: hidden;
}

.contact-lets-talk-cta-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact-lets-talk-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-tight);
}

.contact-lets-talk-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0 0 var(--space-xl) 0;
}

.contact-lets-talk-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  justify-content: center;
  align-items: center;
}

.contact-lets-talk-cta-button {
  display: inline-block;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
}

.contact-lets-talk-cta-button-primary {
  background: var(--color-primary);
  color: #000000;
}

.contact-lets-talk-cta-button-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.contact-lets-talk-cta-button-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.contact-lets-talk-cta-button-secondary:hover {
  background: var(--color-primary);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .contact-lets-talk-cta {
    padding: 5rem var(--space-md);
  }

  .contact-lets-talk-cta-buttons {
    flex-direction: row;
    gap: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .contact-lets-talk-cta {
    padding: 6rem var(--space-md);
  }
}

@media (max-width: 767px) {
  .contact-lets-talk-form-wrapper,
  .contact-lets-talk-info-wrapper {
    flex: 1 1 100%;
  }

  .contact-lets-talk-grid {
    gap: 2rem;
  }
}