
    @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-overlay: rgba(15, 23, 42, 0.95);
  
  
  --color-text-primary: #ffffff;
  --color-text-secondary: #cbd5e1;
  --color-text-muted: #94a3af;
  --color-text-light: #e2e8f0;
  
  
  --color-primary: #f97316;
  --color-primary-hover: #ea580c;
  --color-primary-light: #fed7aa;
  --color-secondary: #06b6d4;
  --color-secondary-hover: #0891b2;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  
  
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  
  
  --leading-tight: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 1.75;
  
  
  --tracking-tight: -0.02em;
  --tracking-normal: 0em;
  --tracking-wide: 0.05em;
  
  
  --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: 20px;
  --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-2xl: 0 25px 50px rgba(0, 0, 0, 0.4);
  --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  
  
  --transition-fast: 150ms ease-in-out;
  --transition-base: 200ms ease-in-out;
  --transition-slow: 300ms ease-in-out;
  
  
  --z-dropdown: 1000;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--color-text-primary);
}

h1 {
  font-size: var(--text-5xl);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
}

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

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

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

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

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

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

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

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

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

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

strong {
  font-weight: 600;
  color: var(--color-text-primary);
}

em {
  font-style: italic;
}

code {
  background: var(--color-bg-tertiary);
  color: var(--color-primary-light);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-md);
  font-size: 0.9em;
  font-family: 'Courier New', monospace;
}

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

pre code {
  background: none;
  color: var(--color-text-secondary);
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.flex {
  display: flex;
}

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

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

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

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

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

.p-xs {
  padding: var(--space-xs);
}

.p-sm {
  padding: var(--space-sm);
}

.p-md {
  padding: var(--space-md);
}

.p-lg {
  padding: var(--space-lg);
}

.p-xl {
  padding: var(--space-xl);
}

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

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

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

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

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

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

.m-xs {
  margin: var(--space-xs);
}

.m-sm {
  margin: var(--space-sm);
}

.m-md {
  margin: var(--space-md);
}

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

.m-xl {
  margin: var(--space-xl);
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-sm {
  margin-top: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.my-md {
  margin-top: var(--space-md);
  margin-bottom: var(--space-md);
}

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

.my-xl {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

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

.card-sm {
  padding: var(--space-md);
}

.card-lg {
  padding: var(--space-xl);
}

.card-solid {
  background: var(--color-bg-secondary);
  border-color: var(--color-bg-tertiary);
}

button,
.button,
[type="button"],
[type="submit"],
[type="reset"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

button:hover,
.button:hover,
[type="button"]:hover,
[type="submit"]:hover,
[type="reset"]:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

button:active,
.button:active,
[type="button"]:active,
[type="submit"]:active,
[type="reset"]:active {
  transform: translateY(0);
}

.button-secondary {
  background: var(--color-secondary);
  color: #ffffff;
}

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

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

.button-outline:hover {
  background: rgba(249, 115, 22, 0.1);
}

.button-ghost {
  background: transparent;
  color: var(--color-text-primary);
  border: 1px solid var(--color-bg-tertiary);
}

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

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

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

.button-full {
  width: 100%;
}

.button-disabled,
button:disabled,
[type="button"]:disabled,
[type="submit"]:disabled,
[type="reset"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

label {
  font-weight: 600;
  color: var(--color-text-primary);
  font-size: var(--text-sm);
}

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

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

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

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

select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23cbd5e1' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-md) center;
  padding-right: var(--space-xl);
}

input[type="checkbox"],
input[type="radio"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--color-primary);
}

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

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

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

.list-unstyled {
  list-style: none;
  padding-left: 0;
}

.list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  list-style: none;
  padding-left: 0;
}

.list-inline li {
  margin-bottom: 0;
}

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  background: rgba(249, 115, 22, 0.15);
  color: var(--color-primary-light);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

.badge-primary {
  background: rgba(249, 115, 22, 0.15);
  color: var(--color-primary-light);
}

.badge-secondary {
  background: rgba(6, 182, 212, 0.15);
  color: #a5f3fc;
}

.badge-success {
  background: rgba(16, 185, 129, 0.15);
  color: #a7f3d0;
}

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

.badge-error {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
}

.alert {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-bg-tertiary);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
}

.alert-primary {
  border-left-color: var(--color-primary);
  background: rgba(249, 115, 22, 0.1);
}

.alert-secondary {
  border-left-color: var(--color-secondary);
  background: rgba(6, 182, 212, 0.1);
}

.alert-success {
  border-left-color: var(--color-success);
  background: rgba(16, 185, 129, 0.1);
}

.alert-warning {
  border-left-color: var(--color-warning);
  background: rgba(245, 158, 11, 0.1);
}

.alert-error {
  border-left-color: var(--color-error);
  background: rgba(239, 68, 68, 0.1);
}

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

.alert-message {
  color: var(--color-text-secondary);
  margin: 0;
}

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

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

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

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

tbody tr:hover {
  background: rgba(249, 115, 22, 0.05);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.img-responsive {
  width: 100%;
  height: auto;
}

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

.img-circle {
  border-radius: 50%;
}

figure {
  margin: 0 0 var(--space-lg) 0;
}

figcaption {
  margin-top: var(--space-sm);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  text-align: center;
}

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

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

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

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

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

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

header {
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-bg-tertiary);
  padding: var(--space-md) 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(15, 23, 42, 0.95);
}

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

.logo {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

.nav {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav a {
  color: var(--color-text-secondary);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.nav a:hover,
.nav a.active {
  color: var(--color-primary);
}

footer {
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-bg-tertiary);
  padding: var(--space-3xl) 0 var(--space-xl);
  margin-top: var(--space-4xl);
}

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

.footer-section h3 {
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: var(--space-sm);
}

.footer-section a {
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  border-top: 1px solid var(--color-bg-tertiary);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.footer-copyright {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.hero {
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero-text h1 {
  margin-bottom: var(--space-lg);
  line-height: 1.1;
}

.hero-text p {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xl);
}

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

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  
  .hero {
    padding: var(--space-2xl) 0;
  }
}

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

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

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(249, 115, 22, 0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 32px;
}

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

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

.testimonial {
  background: var(--color-bg-card);
  border: 1px solid rgba(203, 213, 225, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
}

.testimonial-text {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  font-size: var(--text-lg);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-primary);
}

.testimonial-info h4 {
  margin: 0;
  color: var(--color-text-primary);
}

.testimonial-info p {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

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

.pricing-card {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
}

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

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

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

.pricing-price {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.pricing-price small {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
}

.pricing-description {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  min-height: 60px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-lg) 0;
  text-align: left;
}

.pricing-features li {
  padding: var(--space-sm) 0;
  color: var(--color-text-secondary);
  margin: 0;
  position: relative;
  padding-left: var(--space-lg);
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.pricing-button {
  width: 100%;
}

.breadcrumb {
  display: flex;
  gap: var(--space-sm);
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-lg) 0;
  font-size: var(--text-sm);
}

.breadcrumb li {
  margin: 0;
  color: var(--color-text-secondary);
}

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

.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: var(--space-sm);
  color: var(--color-text-muted);
}

.pagination {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0;
}

.pagination li {
  margin: 0;
}

.pagination a,
.pagination button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-bg-tertiary);
  border-radius: var(--radius-md);
  background: var(--color-bg-secondary);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.pagination a:hover,
.pagination button:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

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

.pagination .disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-bg-tertiary);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.dropdown-toggle:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-bg-tertiary);
  border-radius: var(--radius-md);
  list-style: none;
  padding: var(--space-sm) 0;
  margin: var(--space-sm) 0 0 0;
  z-index: var(--z-dropdown);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-lg);
}

.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: var(--space-sm) var(--space-md);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.dropdown-menu a:hover {
  background: var(--color-bg-tertiary);
  color: var(--color-primary);
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-modal);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-2xl);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-lg);
}

.modal-header h2 {
  margin: 0;
}

.modal-close {
  background: transparent;
  border: none;
  color: var(--color-text-secondary);
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: auto;
  height: auto;
  transition: color var(--transition-fast);
}

.modal-close:hover {
  color: var(--color-primary);
}

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

.modal-footer {
  display: flex;
  gap: var(--space-md);
  justify-content: flex-end;
}

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted var(--color-text-muted);
  cursor: help;
}

.tooltip-text {
  visibility: hidden;
  background: var(--color-bg-tertiary);
  color: var(--color-text-primary);
  text-align: center;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  position: absolute;
  z-index: var(--z-tooltip);
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity var(--transition-fast);
  font-size: var(--text-sm);
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

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

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

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

@keyframes slideInLeft {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

.animate-spin {
  animation: spin 1s linear infinite;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

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

.hidden-mobile {
  display: none;
}

.hidden-tablet {
  display: block;
}

.hidden-desktop {
  display: block;
}

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

@media (min-width: 1024px) {
  .hidden-tablet {
    display: block;
  }
  
  .hidden-desktop {
    display: none;
  }
}

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

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

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

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

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

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

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

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

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

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

.text-normal {
  font-weight: 400;
}

.text-light {
  font-weight: 300;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-capitalize {
  text-transform: capitalize;
}

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

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.block {
  display: block;
}

.inline {
  display: inline;
}

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

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

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.min-h-screen {
  min-height: 100vh;
}

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

.opacity-0 {
  opacity: 0;
}

.opacity-25 {
  opacity: 0.25;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-100 {
  opacity: 1;
}

.overflow-auto {
  overflow: auto;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-visible {
  overflow: visible;
}

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

.overflow-y-auto {
  overflow-y: auto;
}

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

.shadow-2xl {
  box-shadow: var(--shadow-2xl);
}

.shadow-inner {
  box-shadow: var(--shadow-inner);
}

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

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

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

.border-l {
  border-left: 1px solid var(--color-bg-tertiary);
}

.border-r {
  border-right: 1px solid var(--color-bg-tertiary);
}

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

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

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

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

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

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

html {
  scroll-behavior: smooth;
}

@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  
  a,
  a:visited {
    text-decoration: underline;
  }
  
  a[href]::after {
    content: " (" attr(href) ")";
  }
  
  img {
    max-width: 100% !important;
  }
  
  @page {
    margin: 0.5cm;
  }
  
  h1,
  h2,
  h3 {
    page-break-after: avoid;
  }
  
  p {
    orphans: 3;
    widows: 3;
  }
}
.header-compliance-nexus {
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-bg-secondary);
  position: static;
  width: 100%;
  z-index: 999;
}

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

.header-compliance-nexus-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  gap: 0.75rem;
  flex-shrink: 0;
  transition: opacity var(--transition-base);
}

.header-compliance-nexus-brand:hover {
  opacity: 0.85;
}

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

.header-compliance-nexus-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: var(--tracking-tight);
}

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

.header-compliance-nexus-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-base);
  white-space: nowrap;
}

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

.header-compliance-nexus-cta-button {
  display: none;
  padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1.25rem, 2vw, 1.75rem);
  background: var(--color-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-base);
  white-space: nowrap;
  flex-shrink: 0;
}

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

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

.header-compliance-nexus-hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 1px;
  transition: all var(--transition-base);
}

.header-compliance-nexus-mobile-toggle:hover .header-compliance-nexus-hamburger {
  background: var(--color-primary);
}

.header-compliance-nexus-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-overlay);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  padding: clamp(1rem, 4vw, 2rem);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-slow);
  z-index: 1000;
  overflow-y: auto;
}

.header-compliance-nexus-mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  position: relative;
  z-index: 999;
}

.header-compliance-nexus-mobile-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-bg-secondary);
  margin-bottom: 1.5rem;
}

.header-compliance-nexus-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-base);
}

.header-compliance-nexus-mobile-close:hover {
  color: var(--color-primary);
}

.header-compliance-nexus-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.header-compliance-nexus-mobile-link {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  font-weight: 500;
  padding: 0.75rem 0;
  transition: color var(--transition-base);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.header-compliance-nexus-mobile-link:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.header-compliance-nexus-mobile-cta {
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.25rem, 3vw, 1.75rem);
  background: var(--color-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  text-decoration: none;
  text-align: center;
  transition: all var(--transition-base);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-bg-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.header-compliance-nexus-mobile-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .header-compliance-nexus-container {
    height: clamp(4rem, 8vw, 5rem);
  }

  .header-compliance-nexus-desktop-nav {
    display: flex;
  }

  .header-compliance-nexus-cta-button {
    display: block;
  }

  .header-compliance-nexus-mobile-toggle {
    display: none;
  }

  .header-compliance-nexus-mobile-menu {
    display: none;
  }
}

@media (min-width: 1024px) {
  .header-compliance-nexus-container {
    height: clamp(4.5rem, 8vw, 5.5rem);
  }

  .header-compliance-nexus-logo-text {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  }

  .header-compliance-nexus-nav-link {
    font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  }

  .header-compliance-nexus-cta-button {
    font-size: clamp(0.95rem, 1.2vw, 1.125rem);
    padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 2.5vw, 2rem);
  }
}

@media (max-width: 767px) {
  .header-compliance-nexus-mobile-menu {
    padding: clamp(1rem, 3vw, 1.5rem);
  }

  .header-compliance-nexus-mobile-header {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }

  .header-compliance-nexus-mobile-links {
    gap: 0.75rem;
  }

  .header-compliance-nexus-mobile-link {
    padding: 0.5rem 0;
  }
}

    .payroll-hub {
  width: 100%;
  overflow-x: hidden;
}

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

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

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

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

.hero-section-index::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

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

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

.hero-title-index {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: #ffffff;
  line-height: 1.1;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.hero-subtitle-index {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.625;
  margin: 0;
}

.hero-buttons-index {
  display: flex;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  flex-wrap: wrap;
  align-items: center;
}

.hero-buttons-index .btn {
  padding: clamp(0.75rem, 1vw, 1rem) clamp(1.5rem, 2vw, 2rem);
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

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

.btn-primary:hover {
  background: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: transparent;
  color: #f97316;
  border: 2px solid #f97316;
}

.btn-secondary:hover {
  background: rgba(249, 115, 22, 0.1);
}

.btn-outline-index {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: clamp(0.75rem, 1vw, 1rem) clamp(1.5rem, 2vw, 2rem);
  font-size: clamp(0.875rem, 1vw, 1rem);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-index:hover {
  background: #ffffff;
  color: #0f172a;
}

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

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

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

.stat-label-index {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #94a3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

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

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

  .hero-image-index {
    flex: 1 1 100%;
    min-height: 250px;
  }

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

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

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

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

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

.section-tag-index {
  display: inline-block;
  padding: 0.375rem clamp(0.75rem, 1vw, 1rem);
  background: rgba(249, 115, 22, 0.15);
  color: #f97316;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.features-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin: 0 0 clamp(0.75rem, 1vw, 1rem) 0;
  line-height: 1.2;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

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

.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;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.feature-icon-index {
  width: 50px;
  height: 50px;
  background: rgba(249, 115, 22, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #f97316;
}

.feature-title-index {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #0f172a;
  margin: 0;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

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

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

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

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

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

.featured-posts-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin: 0 0 clamp(0.75rem, 1vw, 1rem) 0;
  line-height: 1.2;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

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

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

.featured-post-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.featured-post-card-index:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border-color: #f97316;
}

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

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

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

.featured-post-title-index {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #0f172a;
  margin: 0;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  line-height: 1.4;
}

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

.featured-post-link-index {
  color: #f97316;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: auto;
}

.featured-post-link-index:hover {
  color: #ea580c;
  text-decoration: underline;
}

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

@media (max-width: 640px) {
  .featured-post-card-index {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

.how-it-works-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  margin: 0 0 clamp(0.75rem, 1vw, 1rem) 0;
  line-height: 1.2;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.how-it-works-subtitle-index {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  margin: 0;
  line-height: 1.625;
}

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

.how-it-works-step-index {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
}

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

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

.step-title-index {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #ffffff;
  margin: 0;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

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

@media (max-width: 640px) {
  .how-it-works-step-index {
    gap: 1rem;
  }

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

.faq-section-index {
  background: #ffffff;
  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;
  max-width: 700px;
  margin: 0 auto;
}

.faq-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin: 0 0 clamp(0.75rem, 1vw, 1rem) 0;
  line-height: 1.2;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

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

.faq-items-index {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
  max-width: 800px;
  margin: 0 auto;
}

.faq-item-index {
  padding: clamp(1.5rem, 2vw, 2rem);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  border-left: 4px solid #f97316;
}

.faq-question-index {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #0f172a;
  margin: 0 0 0.75rem 0;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

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

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

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

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

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

.benefit-item-index {
  flex: 1 1 250px;
  max-width: 350px;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  display: flex;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.benefit-item-index:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.benefit-icon-index {
  width: 50px;
  height: 50px;
  background: rgba(249, 115, 22, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #f97316;
  flex-shrink: 0;
}

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

.benefit-title-index {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #0f172a;
  margin: 0;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

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

.testimonials-section-index {
  background: #0f172a;
  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;
  max-width: 700px;
  margin: 0 auto;
}

.testimonials-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  margin: 0 0 clamp(0.75rem, 1vw, 1rem) 0;
  line-height: 1.2;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.testimonials-subtitle-index {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  margin: 0;
  line-height: 1.625;
}

.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: 380px;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(203, 213, 225, 0.1);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.testimonial-card-index:hover {
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

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

.testimonial-author-index {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.testimonial-avatar-index {
  width: 45px;
  height: 45px;
  background: rgba(249, 115, 22, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #f97316;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.testimonial-info-index {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-name-index {
  font-size: clamp(0.95rem, 1vw, 1rem);
  color: #ffffff;
  margin: 0;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.testimonial-role-index {
  font-size: clamp(0.8rem, 0.9vw, 0.875rem);
  color: #94a3af;
  margin: 0;
}

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

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

.cta-content-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.cta-box-index {
  flex: 1 1 300px;
  padding: clamp(2rem, 3vw, 3rem);
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
  box-shadow: 0 20px 25px rgba(249, 115, 22, 0.2);
}

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

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

.cta-box-index .btn {
  background: #ffffff;
  color: #f97316;
  font-weight: 600;
  padding: clamp(0.75rem, 1vw, 1rem) clamp(1.5rem, 2vw, 2rem);
}

.cta-box-index .btn:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

.cta-info-index {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

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

.cta-info-title-index {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #0f172a;
  margin: 0;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

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

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

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

  .cta-info-index {
    flex: 1 1 100%;
  }
}

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

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

.cookie-banner-text-index {
  color: #e2e8f0;
  font-size: clamp(0.875rem, 1vw, 1rem);
  margin: 0;
  flex: 1 1 auto;
  min-width: 200px;
  text-align: center;
}

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

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: 0.625rem clamp(1rem, 1.5vw, 1.5rem);
  border: none;
  border-radius: 6px;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

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

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

.cookie-btn-decline-index {
  background: transparent;
  color: #e2e8f0;
  border: 1px solid rgba(226, 232, 240, 0.3);
}

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

@media (max-width: 640px) {
  .cookie-banner-index {
    flex-direction: column;
    padding: 1rem;
  }

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

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

  .cookie-btn-accept-index,
  .cookie-btn-decline-index {
    flex: 1 1 calc(50% - 0.375rem);
  }
}

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

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

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

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

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

.footer-about {
  display: block;
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
  border-bottom: 1px solid rgba(148, 163, 175, 0.2);
}

.footer-about-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
}

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

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

.footer-nav-section,
.footer-contact-section,
.footer-legal-section {
  display: block;
  flex: 1 1 200px;
  min-width: 150px;
}

.footer-section-title {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  text-transform: none;
  letter-spacing: var(--tracking-normal);
}

.footer-nav,
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-base);
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: var(--leading-normal);
}

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

.footer-contact {
  display: block;
}

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

.footer-contact-label {
  color: var(--color-text-primary);
  font-weight: 600;
  display: inline;
  margin-right: 0.5rem;
}

.footer-copyright {
  display: block;
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(148, 163, 175, 0.2);
  text-align: center;
}

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

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

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

  .footer-nav,
  .footer-legal {
    gap: 0.5rem;
  }

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

@media (max-width: 480px) {
  .footer-about-title {
    font-size: 1.125rem;
  }

  .footer-section-title {
    font-size: 1rem;
  }

  .footer-content {
    gap: clamp(1.5rem, 4vw, 2rem);
  }
}
    

.category-page-payroll-compliance-germany {
  background: #0f172a;
  color: #ffffff;
  font-family: var(--font-primary);
}

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

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

.hero-text-payroll {
  flex: 1 1 45%;
  min-width: 300px;
}

.hero-text-payroll h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 2rem);
  line-height: 1.2;
}

.hero-text-payroll p {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  margin-bottom: 0;
  line-height: 1.6;
}

.hero-visual-payroll {
  flex: 1 1 45%;
  min-width: 300px;
}

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

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

  .hero-text-payroll,
  .hero-visual-payroll {
    flex: 1 1 100%;
  }

  .hero-section-payroll {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }
}

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

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

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

.posts-header-payroll h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.posts-header-payroll p {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.15rem);
  color: #475569;
  margin-bottom: 0;
}

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

.card-payroll {
  flex: 1 1 280px;
  max-width: 380px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.card-payroll:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  border-color: #f97316;
}

.card-payroll img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.card-payroll h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: #0f172a;
  margin: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem) 0.5rem;
  line-height: 1.3;
}

.card-payroll p {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: #64748b;
  margin: 0 clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem);
  line-height: 1.5;
}

.card-meta-payroll {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.8rem, 2vw, 1.2rem);
  margin: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem);
  padding-top: clamp(0.8rem, 2vw, 1.2rem);
  border-top: 1px solid #e2e8f0;
  font-size: 0.85rem;
}

.card-meta-payroll span {
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-meta-payroll i {
  color: #f97316;
  font-size: 0.9rem;
}

.card-payroll a {
  display: inline-block;
  margin: 0 clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem);
  padding: 0.7rem 1.5rem;
  background: #f97316;
  color: #ffffff;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s ease;
  text-decoration: none;
}

.card-payroll a:hover {
  background: #ea580c;
  transform: translateX(2px);
}

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

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

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

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

.highlights-header-payroll {
  text-align: center;
}

.highlights-header-payroll h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.highlights-header-payroll p {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.15rem);
  color: #cbd5e1;
  margin-bottom: 0;
}

.highlights-list-payroll {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.highlight-item-payroll {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(203, 213, 225, 0.1);
  border-radius: 10px;
  padding: clamp(1.5rem, 3vw, 2rem);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.highlight-item-payroll:hover {
  border-color: rgba(249, 115, 22, 0.3);
  background: rgba(30, 41, 59, 0.8);
}

.highlight-item-payroll h4 {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  line-height: 1.3;
}

.highlight-item-payroll p {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: #cbd5e1;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .highlights-list-payroll {
    grid-template-columns: 1fr;
  }

  .highlights-section-payroll {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }
}

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

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

.requirements-header-payroll {
  text-align: center;
}

.requirements-header-payroll h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.requirements-header-payroll p {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.15rem);
  color: #cbd5e1;
  margin-bottom: 0;
}

.requirements-text-payroll {
  max-width: 900px;
  margin: 0 auto;
}

.requirements-text-payroll p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.15rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.requirements-text-payroll p:last-child {
  margin-bottom: 0;
}

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

  .requirements-text-payroll {
    padding: 0 clamp(1rem, 2vw, 1.5rem);
  }
}

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

@media (max-width: 640px) {
  .container {
    padding: 0 clamp(0.75rem, 2vw, 1.5rem);
  }
}

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: #f97316;
  transition: color 0.2s ease;
}

a:hover {
  color: #ea580c;
}

.main-lohnabrechnung-verstehen {
  width: 100%;
  background: #0f172a;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

.main-lohnabrechnung-verstehen * {
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.main-lohnabrechnung-verstehen h1,
.main-lohnabrechnung-verstehen h2,
.main-lohnabrechnung-verstehen h3,
.main-lohnabrechnung-verstehen h4,
.main-lohnabrechnung-verstehen h5,
.main-lohnabrechnung-verstehen h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0;
}

.main-lohnabrechnung-verstehen p {
  margin: 0 0 1.5rem 0;
  line-height: 1.6;
}

.main-lohnabrechnung-verstehen a {
  color: #f97316;
  text-decoration: none;
  transition: color 0.2s ease;
}

.main-lohnabrechnung-verstehen a:hover {
  color: #ea580c;
}

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

.breadcrumbs-lohnabrechnung-verstehen {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.breadcrumbs-lohnabrechnung-verstehen a,
.breadcrumbs-lohnabrechnung-verstehen span {
  color: #94a3b8;
}

.breadcrumbs-lohnabrechnung-verstehen a {
  color: #f97316;
}

.breadcrumbs-lohnabrechnung-verstehen a:hover {
  color: #ea580c;
}

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

.hero-section-lohnabrechnung-verstehen::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-section-lohnabrechnung-verstehen::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

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

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

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

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

.hero-meta-lohnabrechnung-verstehen {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex-wrap: wrap;
  margin-bottom: 0;
}

.meta-item-lohnabrechnung-verstehen {
  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: 600;
}

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

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

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

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

  .hero-section-lohnabrechnung-verstehen {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }
}

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

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

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

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

.intro-paragraph-lohnabrechnung-verstehen {
  color: #374151;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.intro-paragraph-lohnabrechnung-verstehen:last-child {
  margin-bottom: 0;
}

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

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

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

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

  .intro-section-lohnabrechnung-verstehen {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }
}

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

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

.components-text-lohnabrechnung-verstehen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.components-paragraph-lohnabrechnung-verstehen {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.components-paragraph-lohnabrechnung-verstehen:last-child {
  margin-bottom: 0;
}

.components-image-lohnabrechnung-verstehen {
  flex: 1 1 50%;
  max-width: 50%;
}

.components-image-lohnabrechnung-verstehen img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .components-content-lohnabrechnung-verstehen {
    flex-direction: column;
  }

  .components-text-lohnabrechnung-verstehen,
  .components-image-lohnabrechnung-verstehen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .components-section-lohnabrechnung-verstehen {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }
}

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

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

.taxes-image-lohnabrechnung-verstehen {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.taxes-image-lohnabrechnung-verstehen img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.taxes-text-lohnabrechnung-verstehen {
  flex: 1 1 50%;
  max-width: 50%;
}

.taxes-title-lohnabrechnung-verstehen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.taxes-paragraph-lohnabrechnung-verstehen {
  color: #374151;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.taxes-paragraph-lohnabrechnung-verstehen:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .taxes-content-lohnabrechnung-verstehen {
    flex-direction: column;
  }

  .taxes-image-lohnabrechnung-verstehen {
    order: 0;
  }

  .taxes-image-lohnabrechnung-verstehen,
  .taxes-text-lohnabrechnung-verstehen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .taxes-section-lohnabrechnung-verstehen {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }
}

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

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

.insurance-text-lohnabrechnung-verstehen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.insurance-paragraph-lohnabrechnung-verstehen {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.insurance-paragraph-lohnabrechnung-verstehen:last-child {
  margin-bottom: 0;
}

.insurance-image-lohnabrechnung-verstehen {
  flex: 1 1 50%;
  max-width: 50%;
}

.insurance-image-lohnabrechnung-verstehen img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .insurance-content-lohnabrechnung-verstehen {
    flex-direction: column;
  }

  .insurance-text-lohnabrechnung-verstehen,
  .insurance-image-lohnabrechnung-verstehen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .insurance-section-lohnabrechnung-verstehen {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }
}

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

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

.netto-image-lohnabrechnung-verstehen {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.netto-image-lohnabrechnung-verstehen img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.netto-text-lohnabrechnung-verstehen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.netto-paragraph-lohnabrechnung-verstehen {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.netto-paragraph-lohnabrechnung-verstehen:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .netto-content-lohnabrechnung-verstehen {
    flex-direction: column;
  }

  .netto-image-lohnabrechnung-verstehen {
    order: 0;
  }

  .netto-image-lohnabrechnung-verstehen,
  .netto-text-lohnabrechnung-verstehen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .netto-section-lohnabrechnung-verstehen {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }
}

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

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

.summary-title-lohnabrechnung-verstehen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.summary-cards-lohnabrechnung-verstehen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  margin-bottom: clamp(2rem, 3vw, 3rem);
}

.summary-card-lohnabrechnung-verstehen {
  flex: 1 1 calc(50% - 1rem);
  max-width: 400px;
  background: #f8fafc;
  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;
}

.summary-card-lohnabrechnung-verstehen:hover {
  border-color: #f97316;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

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

.card-text-lohnabrechnung-verstehen {
  color: #374151;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  margin: 0;
}

.summary-highlight-lohnabrechnung-verstehen {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%);
  border-left: 4px solid #f97316;
  border-radius: 8px;
  padding: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.highlight-text-lohnabrechnung-verstehen {
  color: #0f172a;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .summary-card-lohnabrechnung-verstehen {
    flex: 1 1 100%;
  }

  .summary-section-lohnabrechnung-verstehen {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }
}

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

.disclaimer-content-lohnabrechnung-verstehen {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-left: 4px solid #f97316;
  border-radius: 8px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.disclaimer-title-lohnabrechnung-verstehen {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: #fed7aa;
  margin-bottom: 1rem;
}

.disclaimer-text-lohnabrechnung-verstehen {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .disclaimer-section-lohnabrechnung-verstehen {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }
}

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

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

.related-title-lohnabrechnung-verstehen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

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

.related-card-lohnabrechnung-verstehen {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 380px;
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-lohnabrechnung-verstehen:hover {
  border-color: #f97316;
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.2);
  transform: translateY(-6px);
}

.related-link-lohnabrechnung-verstehen {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.related-image-lohnabrechnung-verstehen {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.related-info-lohnabrechnung-verstehen {
  padding: clamp(1.5rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

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

.related-card-desc-lohnabrechnung-verstehen {
  color: #cbd5e1;
  font-size: clamp(0.825rem, 1vw + 0.5rem, 1rem);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

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

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

  .related-section-lohnabrechnung-verstehen {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }
}

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

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

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

.hero-text-arbeitsrecht-arbeitgeber {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.hero-meta-arbeitsrecht-arbeitgeber {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.5rem, 1vw, 1rem);
  align-items: center;
  margin-bottom: 0;
}

.meta-item-arbeitsrecht-arbeitgeber {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #94a3af;
}

.meta-divider-arbeitsrecht-arbeitgeber {
  color: #475569;
}

.hero-image-arbeitsrecht-arbeitgeber {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-arbeitsrecht-arbeitgeber {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
}

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

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

  .hero-section-arbeitsrecht-arbeitgeber {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }
}

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

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

.intro-text-arbeitsrecht-arbeitgeber {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-description-arbeitsrecht-arbeitgeber {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.intro-description-arbeitsrecht-arbeitgeber:last-of-type {
  margin-bottom: 0;
}

.intro-image-arbeitsrecht-arbeitgeber {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

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

.fundamentals-section-arbeitsrecht-arbeitgeber {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.fundamentals-content-arbeitsrecht-arbeitgeber {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.fundamentals-text-arbeitsrecht-arbeitgeber {
  flex: 1 1 50%;
  max-width: 50%;
}

.fundamentals-title-arbeitsrecht-arbeitgeber {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.fundamentals-description-arbeitsrecht-arbeitgeber {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.7;
}

.fundamentals-list-arbeitsrecht-arbeitgeber {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.fundamental-item-arbeitsrecht-arbeitgeber {
  background: #ffffff;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: 12px;
  border-left: 4px solid #f97316;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.item-title-arbeitsrecht-arbeitgeber {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.item-text-arbeitsrecht-arbeitgeber {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #4b5563;
  margin: 0;
  line-height: 1.6;
}

.fundamentals-image-arbeitsrecht-arbeitgeber {
  flex: 1 1 50%;
  max-width: 50%;
}

.fundamentals-img-arbeitsrecht-arbeitgeber {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .fundamentals-content-arbeitsrecht-arbeitgeber {
    flex-direction: column;
  }

  .fundamentals-text-arbeitsrecht-arbeitgeber,
  .fundamentals-image-arbeitsrecht-arbeitgeber {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .fundamentals-content-arbeitsrecht-arbeitgeber {
    align-items: center;
  }
}

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

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

.contract-image-arbeitsrecht-arbeitgeber {
  flex: 1 1 50%;
  max-width: 50%;
}

.contract-img-arbeitsrecht-arbeitgeber {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.contract-text-arbeitsrecht-arbeitgeber {
  flex: 1 1 50%;
  max-width: 50%;
}

.contract-title-arbeitsrecht-arbeitgeber {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.contract-description-arbeitsrecht-arbeitgeber {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.contract-description-arbeitsrecht-arbeitgeber:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .contract-content-arbeitsrecht-arbeitgeber {
    flex-direction: column;
  }

  .contract-image-arbeitsrecht-arbeitgeber,
  .contract-text-arbeitsrecht-arbeitgeber {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.termination-section-arbeitsrecht-arbeitgeber {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.termination-content-arbeitsrecht-arbeitgeber {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.termination-text-arbeitsrecht-arbeitgeber {
  flex: 1 1 50%;
  max-width: 50%;
}

.termination-title-arbeitsrecht-arbeitgeber {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.termination-description-arbeitsrecht-arbeitgeber {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.7;
}

.termination-rules-arbeitsrecht-arbeitgeber {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.rule-box-arbeitsrecht-arbeitgeber {
  background: #ffffff;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: 12px;
  border-left: 4px solid #ef4444;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.rule-title-arbeitsrecht-arbeitgeber {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.rule-text-arbeitsrecht-arbeitgeber {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #4b5563;
  margin: 0;
  line-height: 1.6;
}

.termination-image-arbeitsrecht-arbeitgeber {
  flex: 1 1 50%;
  max-width: 50%;
}

.termination-img-arbeitsrecht-arbeitgeber {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .termination-content-arbeitsrecht-arbeitgeber {
    flex-direction: column;
  }

  .termination-text-arbeitsrecht-arbeitgeber,
  .termination-image-arbeitsrecht-arbeitgeber {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .termination-content-arbeitsrecht-arbeitgeber {
    align-items: center;
  }
}

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

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

.compliance-image-arbeitsrecht-arbeitgeber {
  flex: 1 1 50%;
  max-width: 50%;
}

.compliance-img-arbeitsrecht-arbeitgeber {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.compliance-text-arbeitsrecht-arbeitgeber {
  flex: 1 1 50%;
  max-width: 50%;
}

.compliance-title-arbeitsrecht-arbeitgeber {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.compliance-description-arbeitsrecht-arbeitgeber {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.compliance-description-arbeitsrecht-arbeitgeber:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .compliance-content-arbeitsrecht-arbeitgeber {
    flex-direction: column;
  }

  .compliance-image-arbeitsrecht-arbeitgeber,
  .compliance-text-arbeitsrecht-arbeitgeber {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.summary-section-arbeitsrecht-arbeitgeber {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.summary-content-arbeitsrecht-arbeitgeber {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.summary-title-arbeitsrecht-arbeitgeber {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.summary-boxes-arbeitsrecht-arbeitgeber {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.summary-box-arbeitsrecht-arbeitgeber {
  flex: 1 1 calc(50% - 0.75rem);
  min-width: 250px;
  max-width: 350px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border-top: 4px solid #059669;
}

.box-title-arbeitsrecht-arbeitgeber {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.box-text-arbeitsrecht-arbeitgeber {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #4b5563;
  margin: 0;
  line-height: 1.6;
}

.summary-note-arbeitsrecht-arbeitgeber {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  text-align: center;
  margin: clamp(1.5rem, 2vw, 2rem) 0 0 0;
  line-height: 1.7;
  padding-top: clamp(1.5rem, 2vw, 2rem);
  border-top: 1px solid #e5e7eb;
}

@media (max-width: 768px) {
  .summary-box-arbeitsrecht-arbeitgeber {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.disclaimer-content-arbeitsrecht-arbeitgeber {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-arbeitsrecht-arbeitgeber {
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  padding-bottom: clamp(1rem, 2vw, 1.5rem);
  border-bottom: 2px solid #f97316;
}

.disclaimer-text-arbeitsrecht-arbeitgeber {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  background: #fef3c7;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  margin: 0;
}

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

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

.related-title-arbeitsrecht-arbeitgeber {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  margin: 0;
}

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

.related-card-arbeitsrecht-arbeitgeber {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.card-image-arbeitsrecht-arbeitgeber {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f3f4f6;
}

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

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

.card-title-arbeitsrecht-arbeitgeber {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  line-height: 1.4;
}

.card-description-arbeitsrecht-arbeitgeber {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #4b5563;
  margin: 0;
  line-height: 1.6;
  flex: 1;
}

.card-link-arbeitsrecht-arbeitgeber {
  display: inline-block;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #f97316;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.card-link-arbeitsrecht-arbeitgeber:hover {
  color: #ea580c;
  text-decoration: underline;
}

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

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

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

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

.breadcrumbs-arbeitsrecht-arbeitgeber a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-arbeitsrecht-arbeitgeber a:hover {
  color: #f97316;
}

.breadcrumbs-arbeitsrecht-arbeitgeber span {
  color: #64748b;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.hero-section-fristen-meldepflichten {
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.breadcrumbs-fristen-meldepflichten {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(1.5rem, 3vw, 2.5rem) 0;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.9375rem);
}

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

.breadcrumbs-fristen-meldepflichten a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumbs-fristen-meldepflichten span {
  color: var(--color-text-muted);
}

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

.hero-text-fristen-meldepflichten {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-fristen-meldepflichten {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  line-height: 1.1;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-lead-fristen-meldepflichten {
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-meta-fristen-meldepflichten {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(30, 41, 59, 0.6);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(203, 213, 225, 0.1);
}

.meta-item-fristen-meldepflichten {
  color: var(--color-text-secondary);
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.9375rem);
}

.meta-divider-fristen-meldepflichten {
  color: var(--color-text-muted);
  font-weight: 300;
}

.hero-image-fristen-meldepflichten {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

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

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

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

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

.intro-title-fristen-meldepflichten {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-fristen-meldepflichten {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

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

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

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

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

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

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

.timeline-text-fristen-meldepflichten {
  flex: 1 1 50%;
  max-width: 50%;
}

.timeline-title-fristen-meldepflichten {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.timeline-paragraph-fristen-meldepflichten {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.timeline-items-fristen-meldepflichten {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.timeline-item-fristen-meldepflichten {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.timeline-number-fristen-meldepflichten {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-primary);
  flex-shrink: 0;
  min-width: 60px;
  font-family: var(--font-heading);
}

.timeline-info-fristen-meldepflichten {
  flex: 1;
}

.timeline-item-title-fristen-meldepflichten {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  margin-bottom: 0.5rem;
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.timeline-item-text-fristen-meldepflichten {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  margin: 0;
}

.timeline-image-fristen-meldepflichten {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

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

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

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

.quarterly-text-fristen-meldepflichten {
  flex: 1 1 50%;
  max-width: 50%;
}

.quarterly-title-fristen-meldepflichten {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.quarterly-paragraph-fristen-meldepflichten {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.quarterly-highlight-fristen-meldepflichten {
  background: rgba(249, 115, 22, 0.15);
  border-left: 4px solid var(--color-primary);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-md);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.quarterly-highlight-text-fristen-meldepflichten {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  margin: 0;
}

.quarterly-image-fristen-meldepflichten {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

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

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

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

.annual-text-fristen-meldepflichten {
  flex: 1 1 50%;
  max-width: 50%;
}

.annual-title-fristen-meldepflichten {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.annual-paragraph-fristen-meldepflichten {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.annual-checklist-fristen-meldepflichten {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1.5vw, 1.25rem);
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.checklist-item-fristen-meldepflichten {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.checklist-check-fristen-meldepflichten {
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  min-width: 30px;
}

.checklist-text-fristen-meldepflichten {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  margin: 0;
}

.annual-image-fristen-meldepflichten {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

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

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

.tips-content-fristen-meldepflichten {
  display: flex;
  flex-direction: column;
}

.tips-title-fristen-meldepflichten {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.tips-card-fristen-meldepflichten {
  flex: 1 1 280px;
  max-width: 320px;
  background: var(--color-bg-card);
  border: 1px solid rgba(203, 213, 225, 0.1);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1.5vw, 1.25rem);
  transition: all var(--transition-base);
}

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

.tips-icon-fristen-meldepflichten {
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1;
}

.tips-card-title-fristen-meldepflichten {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  margin: 0;
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tips-card-text-fristen-meldepflichten {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .tips-grid-fristen-meldepflichten {
    flex-direction: column;
    align-items: stretch;
  }
  
  .tips-card-fristen-meldepflichten {
    max-width: 100%;
  }
}

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

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

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

.conclusion-text-fristen-meldepflichten {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-title-fristen-meldepflichten {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  font-family: var(--font-heading);
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-quote-fristen-meldepflichten {
  background: rgba(249, 115, 22, 0.15);
  border-left: 4px solid var(--color-primary);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: var(--radius-md);
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.quote-text-fristen-meldepflichten {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  font-style: italic;
  margin: 0;
}

.conclusion-paragraph-fristen-meldepflichten {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 1.5vw, 1.25rem);
}

.conclusion-list-fristen-meldepflichten {
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(1.5rem, 2vw, 2rem) 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1vw, 1rem);
}

.list-item-fristen-meldepflichten {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  padding-left: clamp(1.5rem, 2vw, 2rem);
  position: relative;
}

.list-item-fristen-meldepflichten::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.conclusion-final-fristen-meldepflichten {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin: 0;
}

.conclusion-image-fristen-meldepflichten {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

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

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

.related-content-fristen-meldepflichten {
  display: flex;
  flex-direction: column;
}

.related-title-fristen-meldepflichten {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-card-fristen-meldepflichten {
  flex: 1 1 300px;
  max-width: 360px;
  background: var(--color-bg-card);
  border: 1px solid rgba(203, 213, 225, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1.5vw, 1.25rem);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  transition: all var(--transition-base);
}

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

.related-image-fristen-meldepflichten {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

.related-card-title-fristen-meldepflichten {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  margin: 0;
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-text-fristen-meldepflichten {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  margin: 0;
}

.related-link-fristen-meldepflichten {
  color: var(--color-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
  align-self: flex-start;
}

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

@media (max-width: 768px) {
  .related-grid-fristen-meldepflichten {
    flex-direction: column;
    align-items: stretch;
  }
  
  .related-card-fristen-meldepflichten {
    max-width: 100%;
  }
}

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

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

.disclaimer-content-fristen-meldepflichten {
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1.5vw, 1.25rem);
}

.disclaimer-title-fristen-meldepflichten {
  color: var(--color-primary-light);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  margin: 0;
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-text-fristen-meldepflichten {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .disclaimer-content-fristen-meldepflichten {
    padding: clamp(1.25rem, 3vw, 1.75rem);
  }
}

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

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

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

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

.breadcrumbs-sozialversicherungsbeitraege a {
  color: #f97316;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.breadcrumbs-sozialversicherungsbeitraege span {
  color: #94a3af;
}

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

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

.hero-text-sozialversicherungsbeitraege h1 {
  color: #ffffff;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

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

.meta-item-sozialversicherungsbeitraege {
  color: #94a3af;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

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

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

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

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

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

  .hero-section-sozialversicherungsbeitraege {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }
}

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

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

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

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

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

.intro-text-sozialversicherungsbeitraege p {
  color: #374151;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.625;
}

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

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

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

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

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

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

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

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

.krankenversicherung-text-sozialversicherungsbeitraege h2 {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.krankenversicherung-text-sozialversicherungsbeitraege p {
  color: #374151;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.625;
}

.highlight-box-sozialversicherungsbeitraege {
  background: #fef3c7;
  border-left: 4px solid #f97316;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.highlight-box-sozialversicherungsbeitraege strong {
  color: #0f172a;
  display: block;
  margin-bottom: 0.5rem;
}

.highlight-box-sozialversicherungsbeitraege {
  color: #374151;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

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

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

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

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

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

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

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

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

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

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

.rentenversicherung-text-sozialversicherungsbeitraege h2 {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.rentenversicherung-text-sozialversicherungsbeitraege p {
  color: #374151;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.625;
}

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

  .rentenversicherung-image-sozialversicherungsbeitraege {
    order: 0;
  }

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

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

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

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

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

.arbeitslosenversicherung-text-sozialversicherungsbeitraege h2 {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.arbeitslosenversicherung-text-sozialversicherungsbeitraege p {
  color: #374151;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.625;
}

.checklist-box-sozialversicherungsbeitraege {
  background: #dbeafe;
  border-left: 4px solid #06b6d4;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.checklist-box-sozialversicherungsbeitraege h4 {
  color: #0f172a;
  margin-bottom: 0.75rem;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.checklist-list-sozialversicherungsbeitraege {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist-list-sozialversicherungsbeitraege li {
  color: #374151;
  font-size: clamp(0.875rem, 1vw, 1rem);
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  position: relative;
}

.checklist-list-sozialversicherungsbeitraege li::before {
  content: "";
  position: absolute;
  left: 0;
  color: #06b6d4;
  font-weight: 700;
}

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

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

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

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

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

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

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

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

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

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

.pflegeversicherung-text-sozialversicherungsbeitraege h2 {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.pflegeversicherung-text-sozialversicherungsbeitraege p {
  color: #374151;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.625;
}

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

  .pflegeversicherung-image-sozialversicherungsbeitraege {
    order: 0;
  }

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

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

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

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

.berechnung-content-sozialversicherungsbeitraege h2 {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  text-align: center;
}

.intro-text-sozialversicherungsbeitraege {
  color: #374151;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  text-align: center;
  line-height: 1.625;
}

.calculation-steps-sozialversicherungsbeitraege {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: clamp(2rem, 3vw, 3rem);
}

.step-item-sozialversicherungsbeitraege {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
}

.step-number-sozialversicherungsbeitraege {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #f97316;
  min-width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content-sozialversicherungsbeitraege {
  flex: 1;
}

.step-content-sozialversicherungsbeitraege h4 {
  color: #0f172a;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.step-content-sozialversicherungsbeitraege p {
  color: #374151;
  font-size: clamp(0.875rem, 1vw, 1rem);
  margin: 0;
  line-height: 1.625;
}

.summary-box-sozialversicherungsbeitraege {
  background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
  border-left: 4px solid #f97316;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  text-align: center;
}

.summary-box-sozialversicherungsbeitraege h4 {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.summary-box-sozialversicherungsbeitraege p {
  color: #374151;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.summary-box-sozialversicherungsbeitraege p:last-child {
  margin-bottom: 0;
}

.summary-box-sozialversicherungsbeitraege strong {
  color: #0f172a;
  font-weight: 700;
}

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

  .step-number-sozialversicherungsbeitraege {
    min-width: auto;
    margin-bottom: 0;
  }
}

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

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

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

.tipps-content-sozialversicherungsbeitraege h2 {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  text-align: center;
}

.tipps-content-sozialversicherungsbeitraege > p {
  color: #374151;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  text-align: center;
  margin-bottom: clamp(2rem, 3vw, 3rem);
}

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

.tipp-card-sozialversicherungsbeitraege {
  flex: 1 1 calc(50% - 1rem);
  min-width: 250px;
  max-width: 380px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: all 0.3s ease;
}

.tipp-card-sozialversicherungsbeitraege:hover {
  border-color: #f97316;
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.1);
  transform: translateY(-4px);
}

.tipp-icon-sozialversicherungsbeitraege {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  display: block;
}

.tipp-card-sozialversicherungsbeitraege h4 {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.tipp-card-sozialversicherungsbeitraege p {
  color: #374151;
  font-size: clamp(0.875rem, 1vw, 1rem);
  margin: 0;
  line-height: 1.625;
}

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

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

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

.fazit-content-sozialversicherungsbeitraege {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.fazit-content-sozialversicherungsbeitraege h2 {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

.fazit-content-sozialversicherungsbeitraege p {
  color: #374151;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.75;
}

.fazit-content-sozialversicherungsbeitraege p:last-child {
  margin-bottom: 0;
}

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

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

.disclaimer-content-sozialversicherungsbeitraege {
  background: #fef3c7;
  border: 1px solid #fcd34d;
  border-left: 4px solid #f97316;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-content-sozialversicherungsbeitraege h3 {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.disclaimer-content-sozialversicherungsbeitraege p {
  color: #374151;
  font-size: clamp(0.875rem, 1vw, 1rem);
  margin: 0;
  line-height: 1.625;
}

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

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

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

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

.related-intro-sozialversicherungsbeitraege {
  color: #374151;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  text-align: center;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

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

.related-card-sozialversicherungsbeitraege {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 420px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-sozialversicherungsbeitraege:hover {
  border-color: #f97316;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

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

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

.related-text-sozialversicherungsbeitraege {
  padding: clamp(1.5rem, 2vw, 2rem);
}

.related-text-sozialversicherungsbeitraege h4 {
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.related-text-sozialversicherungsbeitraege h4 a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-text-sozialversicherungsbeitraege h4 a:hover {
  color: #f97316;
}

.related-text-sozialversicherungsbeitraege h4 {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.related-text-sozialversicherungsbeitraege p {
  color: #374151;
  font-size: clamp(0.875rem, 1vw, 1rem);
  margin: 0;
  line-height: 1.6;
}

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

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

@media (max-width: 640px) {
  .breadcrumbs-sozialversicherungsbeitraege {
    font-size: 0.75rem;
  }

  .hero-meta-sozialversicherungsbeitraege {
    font-size: 0.75rem;
  }

  .step-item-sozialversicherungsbeitraege {
    padding: 1rem;
  }

  .tipp-card-sozialversicherungsbeitraege {
    padding: 1.25rem;
  }
}

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

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

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

.payroll-compliance-about {
  width: 100%;
  background: var(--color-bg-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: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

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

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

.hero-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.stat-item-about {
  text-align: center;
}

.stat-number-about {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #f97316;
  margin-bottom: 0.5rem;
}

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

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

.section-header-about {
  text-align: center;
  margin-bottom: 1rem;
}

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

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

.expertise-intro-about {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.expertise-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.expertise-card-about:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

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

.card-title-about {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

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

.approach-section-about {
  background: #ffffff;
  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.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #0f172a;
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}

.approach-description-about {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
}

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

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

.step-number-about {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #f97316;
  min-width: 80px;
  text-align: right;
  flex-shrink: 0;
}

.step-content-about {
  flex: 1;
  padding-top: 0.5rem;
}

.step-title-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.step-text-about {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

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

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

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

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

.compliance-intro-about {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.compliance-split-about {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.compliance-text-about {
  flex: 1 1 45%;
  min-width: 300px;
}

.compliance-text-about h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.compliance-text-about p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.compliance-visual-about {
  flex: 1 1 45%;
  min-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.featured-quote-about {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #f97316;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.06);
  margin: 2rem auto;
  max-width: 700px;
}

.quote-text-about {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #0f172a;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.quote-author-about {
  font-size: 0.95rem;
  color: #64748b;
  font-style: normal;
  font-weight: 600;
}

.disclaimer-section-about {
  background: #f9fafb;
  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;
}

.disclaimer-icon-about {
  font-size: 1.5rem;
  color: #f97316;
  margin-bottom: 0.5rem;
}

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

.disclaimer-text-about {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .compliance-split-about {
    flex-direction: column;
  }

  .compliance-text-about,
  .compliance-visual-about {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .process-step-about {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-about {
    text-align: left;
    min-width: auto;
  }

  .expertise-card-about {
    flex: 1 1 100%;
  }

  .hero-stats-about {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title-about {
    font-size: 1.75rem;
  }

  .expertise-title-about,
  .approach-title-about,
  .compliance-title-about {
    font-size: 1.5rem;
  }

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

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

.portfolio-page {
  width: 100%;
  background-color: var(--color-bg-primary);
}

.portfolio-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
}

.portfolio-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 280px;
}

.portfolio-hero-content {
  width: 100%;
}

.portfolio-hero-title {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 700;
  margin: 0 0 var(--space-sm) 0;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}

.portfolio-hero-subtitle {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  margin: 0;
  line-height: var(--leading-normal);
  letter-spacing: var(--tracking-normal);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .portfolio-hero {
    padding: var(--space-3xl) var(--space-lg);
  }

  .portfolio-hero-container {
    min-height: 320px;
  }
}

@media (min-width: 1024px) {
  .portfolio-hero {
    padding: var(--space-4xl) var(--space-xl);
  }

  .portfolio-hero-container {
    min-height: 360px;
  }
}

.portfolio-projects {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
}

.portfolio-projects-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.portfolio-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-md);
}

.portfolio-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  background-color: rgba(30, 41, 59, 0.8);
}

.portfolio-card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background-color: var(--color-bg-secondary);
}

.portfolio-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.portfolio-card:hover .portfolio-card-image img {
  transform: scale(1.05);
}

.portfolio-card-content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-card-tag {
  display: inline-block;
  background-color: rgba(249, 115, 22, 0.15);
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  width: fit-content;
}

.portfolio-card-title {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  margin: 0 0 var(--space-sm) 0;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}

.portfolio-card-description {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  margin: 0;
  line-height: var(--leading-relaxed);
  letter-spacing: var(--tracking-normal);
}

@media (min-width: 768px) {
  .portfolio-projects {
    padding: var(--space-3xl) var(--space-lg);
  }

  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  .portfolio-card-image {
    height: 280px;
  }
}

@media (min-width: 1024px) {
  .portfolio-projects {
    padding: var(--space-4xl) var(--space-xl);
  }

  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .portfolio-card-image {
    height: 300px;
  }
}

.portfolio-cta {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
}

.portfolio-cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.portfolio-cta-title {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  margin: 0 0 var(--space-md) 0;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}

.portfolio-cta-text {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  margin: 0 0 var(--space-lg) 0;
  line-height: var(--leading-relaxed);
  letter-spacing: var(--tracking-normal);
  max-width: 600px;
}

.portfolio-cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-base);
  letter-spacing: var(--tracking-normal);
  border: 2px solid var(--color-primary);
  cursor: pointer;
}

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

@media (min-width: 768px) {
  .portfolio-cta {
    padding: var(--space-3xl) var(--space-lg);
  }

  .portfolio-cta-button {
    padding: var(--space-md) var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .portfolio-cta {
    padding: var(--space-4xl) var(--space-xl);
  }
}

.services-page {
  width: 100%;
  background-color: var(--color-bg-primary);
}

.services-hero {
  padding: var(--space-lg) var(--space-sm);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.services-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.services-hero__content {
  order: 2;
}

.services-hero__image {
  order: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 9;
}

.services-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-3xl), 8vw, var(--text-4xl));
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
}

.services-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(var(--text-lg), 3vw, var(--text-xl));
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

@media (min-width: 768px) {
  .services-hero {
    padding: var(--space-xl) var(--space-md);
  }

  .services-hero__container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .services-hero__content {
    order: 1;
  }

  .services-hero__image {
    order: 2;
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: var(--space-2xl) var(--space-lg);
  }

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

.services-cards-section {
  padding: var(--space-xl) var(--space-sm);
  background-color: var(--color-bg-secondary);
  overflow: hidden;
}

.services-cards-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.services-card {
  background-color: var(--color-bg-card);
  border: 1px solid rgba(100, 116, 139, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.services-card:hover {
  border-color: var(--color-primary);
  background-color: rgba(30, 41, 59, 0.8);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.services-card__icon {
  font-size: var(--text-3xl);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  height: fit-content;
}

.services-card__title {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-lg), 3vw, var(--text-2xl));
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  font-weight: 700;
  line-height: var(--leading-tight);
}

.services-card__description {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.services-card__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(100, 116, 139, 0.2);
}

.services-card__detail-item {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.services-card__detail-item i {
  color: var(--color-success);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .services-cards-section {
    padding: var(--space-2xl) var(--space-md);
  }

  .services-cards-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  .services-card {
    padding: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .services-cards-section {
    padding: var(--space-3xl) var(--space-lg);
  }

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

  .services-card {
    padding: var(--space-xl);
  }
}

.services-cta {
  padding: var(--space-xl) var(--space-sm);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.services-cta__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: flex-start;
  text-align: left;
}

.services-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-2xl), 5vw, var(--text-3xl));
  color: var(--color-text-primary);
  margin: 0;
  font-weight: 700;
  line-height: var(--leading-tight);
}

.services-cta__text {
  font-family: var(--font-primary);
  font-size: clamp(var(--text-sm), 2vw, var(--text-base));
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  max-width: 600px;
}

.services-cta__button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid var(--color-primary);
  letter-spacing: var(--tracking-wide);
}

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

@media (min-width: 768px) {
  .services-cta {
    padding: var(--space-2xl) var(--space-md);
  }

  .services-cta__container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .services-cta {
    padding: var(--space-3xl) var(--space-lg);
  }

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

:root {
  --color-bg-primary: #0f172a;
  --color-bg-secondary: #1e293b;
  --color-bg-tertiary: #334155;
  --color-bg-card: rgba(30, 41, 59, 0.6);
  --color-bg-overlay: rgba(15, 23, 42, 0.95);
  --color-text-primary: #ffffff;
  --color-text-secondary: #cbd5e1;
  --color-text-muted: #94a3af;
  --color-text-light: #e2e8f0;
  --color-primary: #f97316;
  --color-primary-hover: #ea580c;
  --color-primary-light: #fed7aa;
  --color-secondary: #06b6d4;
  --color-secondary-hover: #0891b2;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --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-2xl: 0 25px 50px rgba(0, 0, 0, 0.4);
  --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --radius-full: 9999px;
  --leading-tight: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 1.75;
  --tracking-tight: -0.02em;
  --tracking-normal: 0em;
  --tracking-wide: 0.05em;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  --transition-fast: 150ms ease-in-out;
  --transition-base: 200ms ease-in-out;
  --transition-slow: 300ms ease-in-out;
  --z-dropdown: 1000;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

.legal-docs {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

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

.legal-docs .content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-2xl) 0;
}

.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-sm);
  line-height: var(--leading-tight);
}

.legal-docs .updated-date {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
}

.legal-docs h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  line-height: var(--leading-normal);
}

.legal-docs p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.legal-docs ul {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0;
}

.legal-docs li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  padding-left: var(--space-lg);
  position: relative;
  margin-bottom: var(--space-sm);
}

.legal-docs li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.legal-docs .contact-section {
  background-color: var(--color-bg-secondary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--space-3xl);
  border-left: 4px solid var(--color-primary);
}

.legal-docs .contact-section h2 {
  margin-top: 0;
  color: var(--color-text-primary);
}

.legal-docs .contact-section p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}

.legal-docs .contact-section strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

@media (min-width: 768px) {
  .legal-docs .container {
    padding: 0 var(--space-lg);
  }

  .legal-docs .content {
    padding: var(--space-3xl) 0;
  }

  .legal-docs .contact-section {
    padding: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .legal-docs .container {
    padding: 0 var(--space-xl);
  }

  .legal-docs .content {
    padding: var(--space-4xl) 0;
  }
}

.thank-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) 0;
}

.thank-section {
  width: 100%;
  padding: var(--space-lg) 0;
  overflow: hidden;
}

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

.content {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.thank-wrapper {
  text-align: center;
  animation: fadeInScale 0.6s ease-out;
}

.thank-icon {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.thank-icon svg {
  color: var(--color-primary);
  width: clamp(60px, 10vw, 100px);
  height: clamp(60px, 10vw, 100px);
  animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thank-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  letter-spacing: var(--tracking-tight);
}

.thank-lead {
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--space-md);
  letter-spacing: var(--tracking-wide);
}

.thank-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.4rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.thank-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.3rem, 1rem);
  color: var(--color-text-secondary);
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  background-color: rgba(15, 23, 42, 0.5);
  transition: all var(--transition-base);
}

.benefit-item:hover {
  background-color: rgba(249, 115, 22, 0.1);
  transform: translateX(4px);
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

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

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  letter-spacing: var(--tracking-wide);
  margin-bottom: var(--space-lg);
}

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

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

.btn-primary:active {
  transform: translateY(0);
}

.thank-footer {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 0.9vw + 0.3rem, 0.95rem);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
  margin-top: var(--space-lg);
  font-style: italic;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (min-width: 640px) {
  .thank-section {
    padding: var(--space-2xl) 0;
  }

  .benefit-item {
    padding: var(--space-md);
  }
}

@media (min-width: 768px) {
  .thank-page {
    padding: var(--space-lg) 0;
  }

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

  .container {
    padding: 0 var(--space-lg);
  }

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

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--space-4xl) 0;
  }

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

  .benefit-item {
    padding: var(--space-md) var(--space-lg);
  }
}

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

html, body {
  width: 100%;
  height: 100%;
}

.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: var(--color-bg-primary);
  position: relative;
  overflow: hidden;
}

.error-page::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(249, 115, 22, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.error-section {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: var(--space-lg);
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

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

.error-visual {
  margin-bottom: var(--space-3xl);
  position: relative;
}

.error-code-wrapper {
  position: relative;
  display: inline-block;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: var(--tracking-tight);
  position: relative;
  z-index: 2;
  text-shadow: 0 4px 20px rgba(249, 115, 22, 0.2);
}

.error-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(200px, 60vw, 400px);
  height: clamp(200px, 60vw, 400px);
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
  animation: pulse-ring 3s ease-in-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.05;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.1;
  }
}

.error-message {
  margin-bottom: var(--space-2xl);
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  letter-spacing: var(--tracking-tight);
}

.error-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-md);
}

.error-context {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-xl);
}

.error-actions {
  margin-bottom: var(--space-2xl);
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  letter-spacing: var(--tracking-normal);
  text-transform: uppercase;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.error-suggestions {
  background-color: var(--color-bg-card);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  margin-top: var(--space-xl);
}

.suggestions-label {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  font-weight: 600;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

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

.suggestions-list li {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.bullet {
  color: var(--color-primary);
  font-weight: 700;
}

@media (min-width: 640px) {
  .error-section {
    padding: var(--space-2xl);
  }

  .error-code {
    font-size: clamp(4.5rem, 12vw, 7rem);
  }

  .error-visual {
    margin-bottom: var(--space-3xl);
  }

  .error-suggestions {
    padding: var(--space-xl) var(--space-lg);
  }
}

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

  .error-code {
    font-size: clamp(5rem, 14vw, 8rem);
  }

  .error-title {
    font-size: clamp(2rem, 5.5vw, 2.75rem);
  }

  .error-description {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
  }

  .error-context {
    font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  }

  .btn {
    padding: var(--space-md) var(--space-2xl);
    font-size: clamp(1rem, 1.3vw, 1.1rem);
  }

  .suggestions-label {
    font-size: clamp(0.9rem, 1.1vw, 1rem);
  }

  .suggestions-list li {
    font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl) var(--space-lg);
  }

  .error-code {
    font-size: clamp(5.5rem, 12vw, 8.5rem);
  }

  .error-visual {
    margin-bottom: var(--space-3xl);
  }

  .error-message {
    margin-bottom: var(--space-3xl);
  }

  .error-suggestions {
    padding: var(--space-2xl) var(--space-2xl);
  }
}

@media (min-width: 1440px) {
  .error-section {
    padding: var(--space-4xl) var(--space-lg);
  }

  .error-code {
    font-size: 8.5rem;
  }
}

.contact-help-page {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.contact-help-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
  position: relative;
}

.contact-help-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 500px;
  height: 500px;
  background-color: var(--color-primary);
  border-radius: 50%;
  opacity: 0.08;
  z-index: 0;
}

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

.contact-help-hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.contact-help-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  line-height: var(--leading-tight);
}

.contact-help-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  font-weight: 400;
}

@media (min-width: 768px) {
  .contact-help-hero {
    padding: var(--space-3xl) 0;
  }
}

@media (min-width: 1024px) {
  .contact-help-hero {
    padding: var(--space-4xl) 0;
  }
}

.contact-help-main {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.contact-help-main-content {
  width: 100%;
}

.contact-help-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xl);
  align-items: flex-start;
}

.contact-help-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-help-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .contact-help-grid {
    gap: var(--space-3xl);
  }

  .contact-help-form-wrapper {
    flex: 1 1 45%;
  }

  .contact-help-info-wrapper {
    flex: 1 1 45%;
  }
}

@media (min-width: 1024px) {
  .contact-help-form-wrapper {
    flex: 1 1 40%;
  }

  .contact-help-info-wrapper {
    flex: 1 1 40%;
  }
}

.contact-help-form-header {
  margin-bottom: var(--space-lg);
}

.contact-help-form-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  line-height: var(--leading-tight);
}

.contact-help-form-description {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

.contact-help-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-help-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.contact-help-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-light);
  display: block;
}

.contact-help-input,
.contact-help-textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  background-color: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  color: var(--color-text-primary);
  font-size: var(--text-base);
  font-family: var(--font-primary);
  transition: all var(--transition-base);
  line-height: var(--leading-normal);
}

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

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

.contact-help-input:hover:not(:focus),
.contact-help-textarea:hover:not(:focus) {
  border-color: rgba(255, 255, 255, 0.2);
}

.contact-help-textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-help-form-privacy {
  margin-top: var(--space-sm);
}

.contact-help-privacy-text {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
}

.contact-help-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

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

.contact-help-submit {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
  font-weight: 700;
  font-family: var(--font-primary);
  cursor: pointer;
  transition: all var(--transition-base);
  margin-top: var(--space-md);
  letter-spacing: var(--tracking-wide);
}

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

.contact-help-submit:active {
  transform: translateY(0);
}

.contact-help-info-header {
  margin-bottom: var(--space-lg);
}

.contact-help-info-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  line-height: var(--leading-tight);
}

.contact-help-info-description {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

.contact-help-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.contact-help-info-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md);
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-base);
}

.contact-help-info-item:hover {
  border-color: var(--color-primary);
  background-color: rgba(30, 41, 59, 0.8);
}

.contact-help-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: rgba(249, 115, 22, 0.15);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-help-info-content {
  flex: 1;
}

.contact-help-info-item-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
}

.contact-help-info-item-text {
  font-size: var(--text-base);
  color: var(--color-text-light);
  margin-bottom: var(--space-xs);
  line-height: var(--leading-normal);
}

.contact-help-info-item-text:last-child {
  margin-bottom: 0;
}

.contact-help-info-item-meta {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.contact-help-info-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .contact-help-info-highlights {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-help-highlight-box {
  padding: var(--space-lg);
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  transition: all var(--transition-base);
}

.contact-help-highlight-box:hover {
  transform: translateX(4px);
  background-color: rgba(30, 41, 59, 0.8);
}

.contact-help-highlight-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.contact-help-highlight-text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

.contact-help-cta {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
  position: relative;
}

.contact-help-cta::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background-color: var(--color-primary);
  border-radius: 50%;
  opacity: 0.06;
  z-index: 0;
}

.contact-help-cta .container {
  position: relative;
  z-index: 1;
}

.contact-help-cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-help-cta-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: var(--leading-tight);
}

.contact-help-cta-text {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-lg);
}

.contact-help-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .contact-help-cta-buttons {
    flex-direction: row;
  }
}

.contact-help-cta-button {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
  font-weight: 700;
  font-family: var(--font-primary);
  text-decoration: none;
  transition: all var(--transition-base);
  display: inline-block;
  letter-spacing: var(--tracking-wide);
  min-width: 200px;
  text-align: center;
}

.contact-help-cta-button-primary {
  background-color: var(--color-primary);
  color: #000000;
}

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

.contact-help-cta-button-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.contact-help-cta-button-secondary:hover {
  background-color: var(--color-primary);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .contact-help-main {
    padding: var(--space-3xl) 0;
  }

  .contact-help-cta {
    padding: var(--space-3xl) 0;
  }
}

@media (min-width: 1024px) {
  .contact-help-main {
    padding: var(--space-4xl) 0;
  }

  .contact-help-cta {
    padding: var(--space-4xl) 0;
  }
}

@media (max-width: 767px) {
  .contact-help-form-wrapper {
    order: 1;
  }

  .contact-help-info-wrapper {
    order: 2;
  }
}
html,body{
  overflow-x: hidden;
}
.header-compliance-nexus-mobile-toggle[aria-expanded="true"]{
  display: none;
}  