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

:root {
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f8fafc;
  --color-bg-tertiary: #f1f5f9;
  --color-bg-card: #ffffff;

  --color-text-primary: #1e293b;
  --color-text-secondary: #64748b;
  --color-text-muted: #94a3b8;

  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-primary-light: #dbeafe;
  --color-secondary: #0f172a;
  --color-accent: #06b6d4;
  --color-accent-light: #cffafe;

  --color-success: #059669;
  --color-success-light: #d1fae5;
  --color-warning: #d97706;
  --color-warning-light: #fef3c7;
  --color-danger: #dc2626;
  --color-danger-light: #fee2e2;

  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Syne', sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.12);

  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);

  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;

  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--line-height-tight);
  color: var(--color-secondary);
}

h1 {
  font-size: var(--font-size-6xl);
}

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

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

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

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

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

p {
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

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

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

button,
.btn {
  font-family: var(--font-primary);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--font-size-base);
}

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

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

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

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

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.card-header {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-bg-tertiary);
}

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

.card-footer {
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-bg-tertiary);
}

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

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

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

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

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

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

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

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

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

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

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

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

.font-light {
  font-weight: 400;
}

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

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

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

.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.grid-cols-1 {
  grid-template-columns: 1fr;
}

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

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

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

.flex {
  display: flex;
}

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

.flex-row {
  flex-direction: row;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rounded-full {
  border-radius: 9999px;
}

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

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

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

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

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-100 {
  opacity: 1;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-default {
  cursor: default;
}

.overflow-hidden {
  overflow: hidden;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

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

.max-w-md {
  max-width: 28rem;
}

.max-w-lg {
  max-width: 32rem;
}

.max-w-xl {
  max-width: 36rem;
}

.max-w-2xl {
  max-width: 42rem;
}

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

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

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

.max-w-6xl {
  max-width: 72rem;
}

.max-w-7xl {
  max-width: 80rem;
}

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

.hidden {
  display: none;
}

.block {
  display: block;
}

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

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

.border-2 {
  border-width: 2px;
}

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

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

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

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

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

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

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

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

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

blockquote {
  border-left: 4px solid var(--color-primary);
  padding-left: var(--space-lg);
  margin: var(--space-lg) 0;
  color: var(--color-text-secondary);
  font-style: italic;
}

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

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

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

hr {
  border: none;
  border-top: 1px solid var(--color-bg-tertiary);
  margin: var(--space-xl) 0;
}

.list-disc {
  list-style-type: disc;
  padding-left: var(--space-lg);
}

.list-decimal {
  list-style-type: decimal;
  padding-left: var(--space-lg);
}

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

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

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

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

  h1 {
    font-size: var(--font-size-4xl);
  }

  h2 {
    font-size: var(--font-size-3xl);
  }

  h3 {
    font-size: var(--font-size-2xl);
  }

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

@media (max-width: 480px) {
  .grid-cols-3 {
    grid-template-columns: 1fr;
  }

  .grid-cols-4 {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: var(--font-size-3xl);
  }

  h2 {
    font-size: var(--font-size-2xl);
  }

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

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

  button,
  .btn {
    width: 100%;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.header-industry-forge {
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border);
  position: static;
  z-index: 100;
}

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

.header-industry-forge-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
  transition: all var(--transition-fast) ease;
}

.header-industry-forge-brand:hover {
  opacity: 0.85;
}

.header-industry-forge-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

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

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

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

.header-industry-forge-nav-link:hover {
  color: var(--color-accent);
}

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

.header-industry-forge-nav-link:hover::after {
  width: 100%;
}

.header-industry-forge-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background: var(--color-accent);
  color: var(--color-bg-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all var(--transition-fast) ease;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
}

.header-industry-forge-cta-button:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.header-industry-forge-mobile-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 5px;
  flex-shrink: 0;
  transition: all var(--transition-fast) ease;
}

.header-industry-forge-hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  transition: all var(--transition-fast) ease;
  border-radius: 1px;
}

.header-industry-forge-hamburger::before,
.header-industry-forge-hamburger::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 1px;
  transition: all var(--transition-fast) ease;
}

.header-industry-forge-hamburger::before {
  margin-bottom: 5px;
}

.header-industry-forge-hamburger::after {
  margin-top: 5px;
}

.header-industry-forge-mobile-toggle[aria-expanded="true"] .header-industry-forge-hamburger {
  background: transparent;
}

.header-industry-forge-mobile-toggle[aria-expanded="true"] .header-industry-forge-hamburger::before {
  transform: rotate(45deg) translate(8px, 8px);
}

.header-industry-forge-mobile-toggle[aria-expanded="true"] .header-industry-forge-hamburger::after {
  transform: rotate(-45deg) translate(8px, -8px);
}

.header-industry-forge-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg-primary);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: all var(--transition-base) ease;
  display: flex;
  flex-direction: column;
  padding-top: 70px;
}

.header-industry-forge-mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-industry-forge-mobile-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1rem clamp(1rem, 4vw, 2rem);
  border-bottom: 1px solid var(--color-border);
}

.header-industry-forge-mobile-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--color-text-primary);
  transition: all var(--transition-fast) ease;
}

.header-industry-forge-mobile-close:hover {
  color: var(--color-accent);
  transform: rotate(90deg);
}

.header-industry-forge-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  overflow-y: auto;
  padding: 0;
}

.header-industry-forge-mobile-link {
  padding: 1.25rem clamp(1rem, 4vw, 2rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  font-weight: 500;
  border-bottom: 1px solid var(--color-border);
  transition: all var(--transition-fast) ease;
}

.header-industry-forge-mobile-link:hover {
  background: var(--color-bg-secondary);
  color: var(--color-accent);
  padding-left: clamp(1.5rem, 5vw, 2.5rem);
}

.header-industry-forge-mobile-cta {
  padding: 1rem clamp(1rem, 4vw, 2rem);
  background: var(--color-accent);
  color: var(--color-bg-primary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  font-weight: 600;
  text-align: center;
  transition: all var(--transition-fast) ease;
  margin: 1rem clamp(1rem, 4vw, 2rem);
  border-radius: 0.5rem;
}

.header-industry-forge-mobile-cta:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

  .header-industry-forge-mobile-menu {
    display: none !important;
  }

  .header-industry-forge-desktop-nav {
    display: flex;
  }

  .header-industry-forge-cta-button {
    display: block;
  }

  .header-industry-forge-container {
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .header-industry-forge-desktop-nav {
    gap: 3rem;
  }
}

    

.industrial-hub {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: var(--font-primary);
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
}

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

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

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

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

.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(1rem, 3vw, 2rem);
}

.hero-title-index {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
}

.hero-subtitle-index {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
}

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

.btn {
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  border: none;
  border-radius: var(--radius-lg);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-base);
  display: inline-block;
  text-align: center;
}

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

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

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

.btn-secondary-index:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
}

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

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

.stat-number-index {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--color-primary);
}

.stat-label-index {
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-secondary);
}

.hero-image-index {
  flex: 1 1 45%;
  min-height: 300px;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

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

@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-stats-index {
    flex-direction: column;
  }
}

.section-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  font-weight: 600;
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
}

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

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

.how-it-works-header-index {
  text-align: center;
}

.how-it-works-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin: clamp(0.5rem, 2vw, 1rem) 0;
}

.how-it-works-subtitle-index {
  font-size: clamp(0.95rem, 2vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

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

.process-step-index {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  align-items: flex-start;
}

.step-number-index {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  flex-shrink: 0;
  line-height: 1;
}

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

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

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

@media (max-width: 768px) {
  .process-step-index {
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .step-number-index {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
  }
}

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

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

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

.testimonials-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin: clamp(0.5rem, 2vw, 1rem) 0;
}

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

.testimonial-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid var(--color-border-light);
}

.quote-icon-index {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-primary);
}

.testimonial-text-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  font-style: italic;
}

.testimonial-author-index {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: clamp(0.75rem, 1vw, 1rem);
  border-top: 1px solid var(--color-border-light);
}

.author-name-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.author-role-index {
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  color: var(--color-text-secondary);
}

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

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

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

.benefits-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin: clamp(0.5rem, 2vw, 1rem) 0;
}

.benefits-subtitle-index {
  font-size: clamp(0.95rem, 2vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

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

.benefit-card-index {
  flex: 1 1 280px;
  max-width: 360px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
  transition: all var(--transition-base);
}

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

.card-icon-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-title-index {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.card-text-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
}

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

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

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

.featured-posts-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin: clamp(0.5rem, 2vw, 1rem) 0;
}

.featured-posts-subtitle-index {
  font-size: clamp(0.95rem, 2vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.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: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

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

.post-img-index {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

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

.post-title-index {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
}

.post-text-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
}

.post-link-index {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all var(--transition-base);
  display: inline-block;
  margin-top: auto;
}

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

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

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

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

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

.faq-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin: clamp(0.5rem, 2vw, 1rem) 0;
}

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

.faq-item-index {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
}

.faq-question-index {
  width: 100%;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: var(--color-bg-card);
  border: none;
  cursor: pointer;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition-base);
  text-align: left;
}

.faq-question-index:hover {
  background: var(--color-bg-tertiary);
}

.faq-question-index i {
  transition: transform var(--transition-base);
}

.faq-question-index.active i {
  transform: rotate(180deg);
}

.faq-answer-index {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
  background: var(--color-bg-tertiary);
}

.faq-answer-index.active {
  max-height: 500px;
}

.faq-answer-index p {
  padding: clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  margin: 0;
}

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

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

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

.features-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin: clamp(0.5rem, 2vw, 1rem) 0;
}

.features-subtitle-index {
  font-size: clamp(0.95rem, 2vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

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

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

.features-block-title-index {
  font-size: clamp(1.375rem, 3vw + 0.5rem, 2rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.features-block-text-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
}

.features-list-index {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.features-list-item-index {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-primary);
}

.features-list-item-index i {
  color: var(--color-success);
  flex-shrink: 0;
}

.features-image-block-index {
  flex: 1 1 45%;
  min-height: 300px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.features-img-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .features-image-text-index {
    flex-direction: column;
  }

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

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

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

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

.cta-box-index {
  padding: clamp(2rem, 5vw, 3.5rem);
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: var(--radius-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.cta-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 800;
  color: #ffffff;
  line-height: var(--line-height-tight);
}

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

.cta-box-index .btn-primary-index {
  background: #ffffff;
  color: var(--color-primary);
  align-self: center;
}

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

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

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

.cookie-banner-text {
  color: #ffffff;
  margin: 0;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.95rem);
  line-height: var(--line-height-normal);
  max-width: 400px;
}

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

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

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

.cookie-btn-accept:hover {
  background: var(--color-primary-hover);
}

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

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

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

  .cookie-banner-text {
    width: 100%;
  }

  .cookie-banner-buttons {
    width: 100%;
    justify-content: center;
  }

  .cookie-btn-accept,
  .cookie-btn-decline {
    flex: 1 1 auto;
    min-width: 120px;
  }
}

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

  .btn {
    width: 100%;
  }

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

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

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

  .faq-item-index {
    flex: 1 1 100%;
  }
}

    .footer {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  margin-top: 0;
}

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

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

.footer-about {
  display: block;
}

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

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

.footer-nav {
  display: block;
}

.footer-nav h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  font-weight: 700;
}

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

.footer-nav-list li {
  display: inline-block;
}

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

.footer-nav-list a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.footer-contact {
  display: block;
}

.footer-contact h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  font-weight: 700;
}

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

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

.footer-legal {
  display: block;
}

.footer-legal h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  font-weight: 700;
}

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

.footer-legal-list li {
  display: inline-block;
}

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

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

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

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

@media (max-width: 768px) {
  .footer-content {
    gap: clamp(2rem, 5vw, 2.5rem);
  }

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

  .footer-nav-list li,
  .footer-legal-list li {
    display: block;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .footer-content {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 5vw, 3rem);
  }

  .footer-nav-list,
  .footer-legal-list {
    gap: clamp(1.5rem, 3vw, 2rem);
  }
}

@media (min-width: 1025px) {
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    align-items: start;
  }

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

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

  .footer-nav-list li,
  .footer-legal-list li {
    display: block;
  }
}
    

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

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

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

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

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

.hero-title-industrieproduktion {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  font-weight: 700;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-industrieproduktion {
  font-size: clamp(1rem, 2.5vw + 0.5rem, 1.5rem);
  color: var(--color-text-secondary);
  margin: clamp(0.5rem, 1vw, 1rem) 0 0 0;
  font-weight: 500;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-description-industrieproduktion {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 700px;
  margin: 0 auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

.posts-title-industrieproduktion {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  font-weight: 700;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.posts-subtitle-industrieproduktion {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  margin: clamp(0.5rem, 1vw, 1rem) 0 0 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.card-industrieproduktion {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex: 1 1 300px;
  max-width: 420px;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  overflow: hidden;
}

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

.card-image-industrieproduktion {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.card-title-industrieproduktion {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.5rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  font-weight: 700;
  margin: 0;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-description-industrieproduktion {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-relaxed);
  flex-grow: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-meta-industrieproduktion {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(0.8rem, 0.9vw + 0.4rem, 0.95rem);
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border-light);
  padding-top: clamp(0.75rem, 1.5vw, 1rem);
}

.card-reading-time-industrieproduktion,
.card-level-industrieproduktion,
.card-date-industrieproduktion {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-muted);
}

.card-reading-time-industrieproduktion i,
.card-level-industrieproduktion i,
.card-date-industrieproduktion i {
  color: var(--color-accent);
  font-size: 0.9em;
}

.card-link-industrieproduktion {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-base);
  align-self: flex-start;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-link-industrieproduktion:hover {
  color: var(--color-accent-light);
  text-decoration: underline;
}

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

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

.insights-header-industrieproduktion {
  text-align: center;
}

.insights-title-industrieproduktion {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  font-weight: 700;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.insight-card-industrieproduktion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1 1 220px;
  max-width: 280px;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  text-align: center;
  border-left: 4px solid var(--color-accent);
}

.insight-number-industrieproduktion {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
  font-family: var(--font-heading);
  color: var(--color-accent);
  font-weight: 700;
  margin: 0;
}

.insight-label-industrieproduktion {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.understanding-header-industrieproduktion {
  text-align: center;
}

.understanding-title-industrieproduktion {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  font-weight: 700;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.understanding-subtitle-industrieproduktion {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  margin: clamp(0.5rem, 1vw, 1rem) 0 0 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.understanding-blocks-industrieproduktion {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.understanding-block-industrieproduktion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1 1 280px;
  max-width: 400px;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--color-accent);
}

.block-heading-industrieproduktion {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  font-weight: 700;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.block-text-industrieproduktion {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .hero-section-industrieproduktion {
    padding: clamp(5rem, 10vw, 7rem) 0;
  }

  .posts-section-industrieproduktion {
    padding: clamp(5rem, 10vw, 7rem) 0;
  }

  .insights-section-industrieproduktion {
    padding: clamp(5rem, 10vw, 7rem) 0;
  }

  .understanding-section-industrieproduktion {
    padding: clamp(5rem, 10vw, 7rem) 0;
  }

  .card-industrieproduktion {
    flex: 1 1 340px;
  }

  .posts-grid-industrieproduktion {
    gap: clamp(1.75rem, 3.5vw, 2.75rem);
  }
}

@media (min-width: 1024px) {
  .hero-section-industrieproduktion {
    padding: clamp(6rem, 12vw, 8rem) 0;
  }

  .posts-section-industrieproduktion {
    padding: clamp(6rem, 12vw, 8rem) 0;
  }

  .insights-section-industrieproduktion {
    padding: clamp(6rem, 12vw, 8rem) 0;
  }

  .understanding-section-industrieproduktion {
    padding: clamp(6rem, 12vw, 8rem) 0;
  }

  .card-industrieproduktion {
    flex: 1 1 360px;
  }

  .insight-card-industrieproduktion {
    flex: 1 1 240px;
  }

  .understanding-block-industrieproduktion {
    flex: 1 1 300px;
  }
}

::-webkit-scrollbar {
width: 10px;
height: 10px;
}

::-webkit-scrollbar-track {
background: var(--color-bg-primary);
}

::-webkit-scrollbar-thumb {
background: var(--color-border);
border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
background: var(--color-text-secondary);
}

html {
scroll-behavior: smooth;
}

body {
margin: 0;
padding: 0;
background: var(--color-bg-primary);
}

.main-auftragseingang-prognosen {
width: 100%;
overflow-x: hidden;
}

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

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

.hero-section-auftragseingang-prognosen {
background: var(--color-bg-primary);
padding: clamp(2rem, 6vw, 4rem) 0;
overflow: hidden;
}

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

.hero-text-auftragseingang-prognosen {
flex: 1 1 50%;
max-width: 50%;
}

.hero-title-auftragseingang-prognosen {
font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
color: var(--color-text-primary);
font-weight: 800;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
line-height: var(--line-height-tight);
}

.hero-subtitle-auftragseingang-prognosen {
font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
color: var(--color-text-secondary);
margin-bottom: clamp(1.5rem, 3vw, 2rem);
line-height: var(--line-height-relaxed);
}

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

.meta-item-auftragseingang-prognosen {
display: flex;
flex-direction: row;
align-items: center;
gap: 0.5rem;
font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
color: var(--color-text-secondary);
}

.meta-item-auftragseingang-prognosen i {
color: var(--color-accent);
}

.hero-image-auftragseingang-prognosen {
flex: 1 1 50%;
max-width: 50%;
}

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

.breadcrumbs-auftragseingang-prognosen {
display: flex;
flex-direction: row;
align-items: center;
gap: 0.5rem;
margin-bottom: clamp(2rem, 4vw, 3rem);
font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
}

.breadcrumbs-auftragseingang-prognosen a {
color: var(--color-accent);
text-decoration: none;
transition: all 0.3s ease;
}

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

.breadcrumbs-auftragseingang-prognosen span {
color: var(--color-text-secondary);
}

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

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

.intro-text-auftragseingang-prognosen {
flex: 1 1 50%;
max-width: 50%;
}

.intro-title-auftragseingang-prognosen {
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
color: var(--color-text-primary);
font-weight: 700;
margin-bottom: clamp(1.5rem, 3vw, 2rem);
line-height: var(--line-height-tight);
}

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

.intro-image-auftragseingang-prognosen {
flex: 1 1 50%;
max-width: 50%;
}

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

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

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

.trends-header-auftragseingang-prognosen {
text-align: center;
}

.trends-title-auftragseingang-prognosen {
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
color: var(--color-text-primary);
font-weight: 700;
margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.trends-subtitle-auftragseingang-prognosen {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
color: var(--color-text-secondary);
}

.trends-grid-auftragseingang-prognosen {
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: clamp(1.5rem, 3vw, 2.5rem);
justify-content: center;
}

.trend-card-auftragseingang-prognosen {
flex: 1 1 300px;
max-width: 380px;
background: var(--color-bg-card);
padding: clamp(1.5rem, 3vw, 2.5rem);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-sm);
display: flex;
flex-direction: column;
gap: 1rem;
transition: all 0.3s ease;
}

.trend-card-auftragseingang-prognosen:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-md);
}

.card-icon-auftragseingang-prognosen {
font-size: clamp(2rem, 4vw, 2.5rem);
color: var(--color-accent);
}

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

.card-text-auftragseingang-prognosen {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
color: var(--color-text-secondary);
line-height: var(--line-height-relaxed);
margin: 0;
}

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

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

.analysis-text-auftragseingang-prognosen {
flex: 1 1 50%;
max-width: 50%;
}

.analysis-title-auftragseingang-prognosen {
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
color: var(--color-text-primary);
font-weight: 700;
margin-bottom: clamp(1.5rem, 3vw, 2rem);
line-height: var(--line-height-tight);
}

.analysis-paragraph-auftragseingang-prognosen {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
color: var(--color-text-secondary);
margin-bottom: clamp(1rem, 2vw, 1.5rem);
line-height: var(--line-height-relaxed);
}

.highlight-box-auftragseingang-prognosen {
background: rgba(var(--color-accent-rgb), 0.08);
border-left: 4px solid var(--color-accent);
padding: clamp(1rem, 2vw, 1.5rem);
margin-top: clamp(1.5rem, 3vw, 2rem);
border-radius: var(--radius-md);
}

.highlight-text-auftragseingang-prognosen {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
color: var(--color-text-primary);
line-height: var(--line-height-relaxed);
margin: 0;
}

.highlight-text-auftragseingang-prognosen strong {
color: var(--color-accent);
font-weight: 600;
}

.analysis-image-auftragseingang-prognosen {
flex: 1 1 50%;
max-width: 50%;
}

.analysis-img-auftragseingang-prognosen {
width: 100%;
height: auto;
max-height: 400px;
object-fit: cover;
border-radius: var(--radius-lg);
display: block;
}

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

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

.strategy-image-auftragseingang-prognosen {
flex: 1 1 50%;
max-width: 50%;
order: -1;
}

.strategy-img-auftragseingang-prognosen {
width: 100%;
height: auto;
max-height: 400px;
object-fit: cover;
border-radius: var(--radius-lg);
display: block;
}

.strategy-text-auftragseingang-prognosen {
flex: 1 1 50%;
max-width: 50%;
}

.strategy-title-auftragseingang-prognosen {
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
color: var(--color-text-primary);
font-weight: 700;
margin-bottom: clamp(1.5rem, 3vw, 2rem);
line-height: var(--line-height-tight);
}

.strategy-paragraph-auftragseingang-prognosen {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
color: var(--color-text-secondary);
margin-bottom: clamp(1rem, 2vw, 1.5rem);
line-height: var(--line-height-relaxed);
}

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

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

.outlook-title-auftragseingang-prognosen {
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
color: var(--color-text-primary);
font-weight: 700;
text-align: center;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
line-height: var(--line-height-tight);
}

.outlook-paragraph-auftragseingang-prognosen {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
color: var(--color-text-secondary);
text-align: center;
margin-bottom: clamp(2rem, 4vw, 3rem);
line-height: var(--line-height-relaxed);
}

.outlook-columns-auftragseingang-prognosen {
display: flex;
flex-direction: row;
gap: clamp(2rem, 4vw, 3rem);
margin-bottom: clamp(2rem, 4vw, 3rem);
}

.outlook-column-auftragseingang-prognosen {
flex: 1 1 50%;
background: var(--color-bg-primary);
padding: clamp(1.5rem, 3vw, 2.5rem);
border-radius: var(--radius-lg);
}

.column-title-auftragseingang-prognosen {
font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
color: var(--color-text-primary);
font-weight: 600;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.outlook-list-auftragseingang-prognosen {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: clamp(0.75rem, 1.5vw, 1rem);
}

.list-item-auftragseingang-prognosen {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
color: var(--color-text-secondary);
padding-left: 1.5rem;
position: relative;
line-height: var(--line-height-relaxed);
}

.list-item-auftragseingang-prognosen::before {
content: "";
position: absolute;
left: 0;
color: var(--color-accent);
font-weight: bold;
}

.outlook-cta-auftragseingang-prognosen {
background: var(--color-bg-primary);
padding: clamp(1.5rem, 3vw, 2.5rem);
border-radius: var(--radius-lg);
text-align: center;
}

.outlook-cta-text-auftragseingang-prognosen {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
color: var(--color-text-secondary);
line-height: var(--line-height-relaxed);
margin: 0;
}

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

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

.conclusion-title-auftragseingang-prognosen {
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
color: var(--color-text-primary);
font-weight: 700;
text-align: center;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
line-height: var(--line-height-tight);
}

.conclusion-paragraph-auftragseingang-prognosen {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
color: var(--color-text-secondary);
text-align: center;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
line-height: var(--line-height-relaxed);
}

.conclusion-image-auftragseingang-prognosen {
margin-top: clamp(2rem, 4vw, 3rem);
max-width: 600px;
margin-left: auto;
margin-right: auto;
}

.conclusion-img-auftragseingang-prognosen {
width: 100%;
height: auto;
max-height: 400px;
object-fit: cover;
border-radius: var(--radius-lg);
display: block;
}

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

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

.disclaimer-box-auftragseingang-prognosen {
background: var(--color-bg-primary);
padding: clamp(1.5rem, 3vw, 2.5rem);
border-radius: var(--radius-lg);
border-left: 4px solid var(--color-accent);
}

.disclaimer-title-auftragseingang-prognosen {
font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
color: var(--color-text-primary);
font-weight: 600;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.disclaimer-text-auftragseingang-prognosen {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
color: var(--color-text-secondary);
line-height: var(--line-height-relaxed);
margin: 0;
}

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

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

.related-title-auftragseingang-prognosen {
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
color: var(--color-text-primary);
font-weight: 700;
text-align: center;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

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

.related-card-auftragseingang-prognosen {
flex: 1 1 320px;
max-width: 400px;
background: var(--color-bg-card);
border-radius: var(--radius-lg);
overflow: hidden;
box-shadow: var(--shadow-sm);
display: flex;
flex-direction: column;
transition: all 0.3s ease;
}

.related-card-auftragseingang-prognosen:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-md);
}

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

.related-card-image-auftragseingang-prognosen img {
width: 100%;
height: 100%;
object-fit: cover;
}

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

.related-card-title-auftragseingang-prognosen {
font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
color: var(--color-text-primary);
font-weight: 600;
margin: 0;
line-height: var(--line-height-tight);
}

.related-card-text-auftragseingang-prognosen {
font-size: clamp(0.8rem, 1vw + 0.4rem, 0.95rem);
color: var(--color-text-secondary);
line-height: var(--line-height-normal);
margin: 0;
}

.related-link-auftragseingang-prognosen {
color: var(--color-accent);
text-decoration: none;
font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
font-weight: 600;
transition: all 0.3s ease;
align-self: flex-start;
}

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

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

.hero-text-auftragseingang-prognosen {
flex: 1 1 100%;
max-width: 100%;
}

.hero-image-auftragseingang-prognosen {
flex: 1 1 100%;
max-width: 100%;
}

.intro-content-auftragseingang-prognosen {
flex-direction: column;
}

.intro-text-auftragseingang-prognosen {
flex: 1 1 100%;
max-width: 100%;
}

.intro-image-auftragseingang-prognosen {
flex: 1 1 100%;
max-width: 100%;
}

.analysis-content-auftragseingang-prognosen {
flex-direction: column;
}

.analysis-text-auftragseingang-prognosen {
flex: 1 1 100%;
max-width: 100%;
}

.analysis-image-auftragseingang-prognosen {
flex: 1 1 100%;
max-width: 100%;
}

.strategy-content-auftragseingang-prognosen {
flex-direction: column;
}

.strategy-image-auftragseingang-prognosen {
flex: 1 1 100%;
max-width: 100%;
order: 0;
}

.strategy-text-auftragseingang-prognosen {
flex: 1 1 100%;
max-width: 100%;
}

.outlook-columns-auftragseingang-prognosen {
flex-direction: column;
}

.outlook-column-auftragseingang-prognosen {
flex: 1 1 100%;
}

.breadcrumbs-auftragseingang-prognosen {
font-size: 0.75rem;
}

.trends-grid-auftragseingang-prognosen {
flex-direction: column;
}

.trend-card-auftragseingang-prognosen {
flex: 1 1 100%;
max-width: 100%;
}
}

@media (min-width: 769px) and (max-width: 1024px) {
.hero-content-auftragseingang-prognosen {
flex-direction: column;
}

.hero-text-auftragseingang-prognosen {
flex: 1 1 100%;
max-width: 100%;
}

.hero-image-auftragseingang-prognosen {
flex: 1 1 100%;
max-width: 100%;
}

.trends-grid-auftragseingang-prognosen {
flex-direction: row;
}

.trend-card-auftragseingang-prognosen {
flex: 1 1 calc(50% - 1rem);
max-width: 100%;
}
}

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

.main-mittelstand-leistungsindikatoren {
  width: 100%;
  overflow: hidden;
}

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

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

.breadcrumbs-mittelstand-leistungsindikatoren {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
}

.breadcrumbs-mittelstand-leistungsindikatoren a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.breadcrumbs-mittelstand-leistungsindikatoren span {
  color: var(--color-text-muted);
}

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

.hero-text-mittelstand-leistungsindikatoren {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-mittelstand-leistungsindikatoren {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-mittelstand-leistungsindikatoren {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.hero-subtitle-mittelstand-leistungsindikatoren {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-mittelstand-leistungsindikatoren {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
}

.meta-item-mittelstand-leistungsindikatoren {
  color: var(--color-text-secondary);
}

.meta-separator-mittelstand-leistungsindikatoren {
  color: var(--color-text-muted);
}

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

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

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

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

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

.intro-text-mittelstand-leistungsindikatoren {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-mittelstand-leistungsindikatoren {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-mittelstand-leistungsindikatoren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

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

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

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

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

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

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

.content-text-mittelstand-leistungsindikatoren {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-mittelstand-leistungsindikatoren {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-mittelstand-leistungsindikatoren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.content-paragraph-mittelstand-leistungsindikatoren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-img-mittelstand-leistungsindikatoren {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .content-wrapper-mittelstand-leistungsindikatoren {
    flex-direction: column;
  }

  .content-text-mittelstand-leistungsindikatoren,
  .content-image-mittelstand-leistungsindikatoren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

@media (max-width: 768px) {
  .content-wrapper-reverse-mittelstand-leistungsindikatoren {
    flex-direction: column-reverse;
  }

  .content-wrapper-reverse-mittelstand-leistungsindikatoren .content-image-mittelstand-leistungsindikatoren {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-wrapper-reverse-mittelstand-leistungsindikatoren .content-text-mittelstand-leistungsindikatoren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.highlights-title-mittelstand-leistungsindikatoren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  text-align: center;
}

.highlights-grid-mittelstand-leistungsindikatoren {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.highlight-card-mittelstand-leistungsindikatoren {
  flex: 1 1 280px;
  max-width: 350px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

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

.highlight-icon-mittelstand-leistungsindikatoren {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-primary);
}

.highlight-card-title-mittelstand-leistungsindikatoren {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
}

.highlight-card-text-mittelstand-leistungsindikatoren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

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

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

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

.chemical-text-mittelstand-leistungsindikatoren {
  flex: 1 1 50%;
  max-width: 50%;
}

.chemical-image-mittelstand-leistungsindikatoren {
  flex: 1 1 50%;
  max-width: 50%;
}

.chemical-title-mittelstand-leistungsindikatoren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.chemical-paragraph-mittelstand-leistungsindikatoren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.chemical-img-mittelstand-leistungsindikatoren {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .chemical-content-mittelstand-leistungsindikatoren {
    flex-direction: column-reverse;
  }

  .chemical-text-mittelstand-leistungsindikatoren,
  .chemical-image-mittelstand-leistungsindikatoren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.insights-title-mittelstand-leistungsindikatoren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  text-align: center;
}

.insights-steps-mittelstand-leistungsindikatoren {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.step-item-mittelstand-leistungsindikatoren {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
}

.step-number-mittelstand-leistungsindikatoren {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  flex-shrink: 0;
  min-width: clamp(3rem, 6vw, 5rem);
}

.step-content-mittelstand-leistungsindikatoren {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.step-title-mittelstand-leistungsindikatoren {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
}

.step-text-mittelstand-leistungsindikatoren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

@media (max-width: 768px) {
  .step-item-mittelstand-leistungsindikatoren {
    gap: 1rem;
  }

  .step-number-mittelstand-leistungsindikatoren {
    min-width: 2.5rem;
  }
}

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

.quote-content-mittelstand-leistungsindikatoren {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.featured-quote-mittelstand-leistungsindikatoren {
  padding: clamp(2rem, 4vw, 3.5rem);
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote-text-mittelstand-leistungsindikatoren {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-primary);
  font-style: italic;
  line-height: var(--line-height-relaxed);
}

.quote-author-mittelstand-leistungsindikatoren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  font-style: normal;
}

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

.conclusion-content-mittelstand-leistungsindikatoren {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-mittelstand-leistungsindikatoren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
}

.conclusion-paragraph-mittelstand-leistungsindikatoren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

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

.disclaimer-content-mittelstand-leistungsindikatoren {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-warning);
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-mittelstand-leistungsindikatoren {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.disclaimer-text-mittelstand-leistungsindikatoren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

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

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

.related-title-mittelstand-leistungsindikatoren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  text-align: center;
}

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

.related-card-mittelstand-leistungsindikatoren {
  flex: 1 1 320px;
  max-width: 380px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: all 0.3s ease;
}

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

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

.related-img-mittelstand-leistungsindikatoren {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-title-mittelstand-leistungsindikatoren {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
}

.related-card-description-mittelstand-leistungsindikatoren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.related-link-mittelstand-leistungsindikatoren {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.related-link-mittelstand-leistungsindikatoren:hover {
  color: var(--color-primary-hover);
}

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

  .step-item-mittelstand-leistungsindikatoren {
    flex-direction: column;
  }

  .step-number-mittelstand-leistungsindikatoren {
    margin-bottom: 0.5rem;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .highlight-card-mittelstand-leistungsindikatoren {
    flex: 1 1 45%;
  }

  .related-card-mittelstand-leistungsindikatoren {
    flex: 1 1 45%;
  }
}

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

html, body {
font-family: var(--font-primary);
line-height: 1.6;
}

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

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

.btn {
display: inline-block;
padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
background: var(--color-accent);
color: var(--color-text-light);
text-decoration: none;
border-radius: var(--radius-lg);
font-weight: 600;
font-size: clamp(0.875rem, 1vw, 1rem);
transition: var(--transition-base);
border: none;
cursor: pointer;
display: inline-block;
}

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

.hero-section-automobilindustrie-elektromobilität {
background: var(--color-bg-primary);
padding: clamp(3rem, 6vw, 5rem) 0;
overflow: hidden;
border-bottom: 1px solid var(--color-border);
}

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

.hero-text-wrapper-automobilindustrie-elektromobilität {
flex: 1 1 50%;
max-width: 50%;
}

.hero-title-automobilindustrie-elektromobilität {
font-family: var(--font-heading);
font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
font-weight: 800;
color: var(--color-text-primary);
margin-bottom: clamp(1rem, 2vw, 1.5rem);
line-height: 1.2;
}

.hero-subtitle-automobilindustrie-elektromobilität {
font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.125rem);
color: var(--color-text-secondary);
margin-bottom: clamp(1.5rem, 3vw, 2rem);
line-height: 1.7;
}

.hero-meta-automobilindustrie-elektromobilität {
display: flex;
flex-wrap: wrap;
gap: clamp(1rem, 2vw, 1.5rem);
}

.meta-item-automobilindustrie-elektromobilität {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: clamp(0.8rem, 1vw, 0.95rem);
color: var(--color-text-secondary);
}

.meta-item-automobilindustrie-elektromobilität i {
color: var(--color-accent);
}

.hero-image-wrapper-automobilindustrie-elektromobilität {
flex: 1 1 50%;
max-width: 50%;
}

.hero-image-automobilindustrie-elektromobilität {
width: 100%;
height: auto;
object-fit: cover;
border-radius: var(--radius-xl);
display: block;
box-shadow: var(--shadow-lg);
}

.breadcrumbs-automobilindustrie-elektromobilität {
display: flex;
align-items: center;
gap: 0.5rem;
margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
font-size: clamp(0.8rem, 1vw, 0.9rem);
}

.breadcrumbs-automobilindustrie-elektromobilität a {
color: var(--color-accent);
text-decoration: none;
transition: var(--transition-base);
}

.breadcrumbs-automobilindustrie-elektromobilität a:hover {
color: var(--color-accent-hover);
text-decoration: underline;
}

.breadcrumbs-automobilindustrie-elektromobilität span {
color: var(--color-text-secondary);
}

.intro-section-automobilindustrie-elektromobilität {
background: var(--color-bg-secondary);
padding: clamp(3rem, 6vw, 5rem) 0;
overflow: hidden;
}

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

.intro-text-wrapper-automobilindustrie-elektromobilität {
flex: 1 1 50%;
max-width: 50%;
}

.intro-title-automobilindustrie-elektromobilität {
font-family: var(--font-heading);
font-size: clamp(1.5rem, 3.5vw, 2.75rem);
font-weight: 700;
color: var(--color-text-primary);
margin-bottom: clamp(1rem, 2vw, 1.5rem);
line-height: 1.2;
}

.intro-text-automobilindustrie-elektromobilität {
font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
color: var(--color-text-secondary);
margin-bottom: clamp(1rem, 2vw, 1.5rem);
line-height: 1.8;
}

.intro-text-automobilindustrie-elektromobilität:last-of-type {
margin-bottom: 0;
}

.intro-image-wrapper-automobilindustrie-elektromobilität {
flex: 1 1 50%;
max-width: 50%;
}

.intro-image-automobilindustrie-elektromobilität {
width: 100%;
height: auto;
object-fit: cover;
border-radius: var(--radius-xl);
display: block;
box-shadow: var(--shadow-md);
}

.transformation-section-automobilindustrie-elektromobilität {
background: var(--color-bg-primary);
padding: clamp(3rem, 6vw, 5rem) 0;
overflow: hidden;
border-top: 1px solid var(--color-border);
border-bottom: 1px solid var(--color-border);
}

.transformation-content-automobilindustrie-elektromobilität {
display: flex;
flex-direction: row;
gap: clamp(2rem, 4vw, 4rem);
align-items: center;
}

.transformation-text-wrapper-automobilindustrie-elektromobilität {
flex: 1 1 50%;
max-width: 50%;
}

.transformation-title-automobilindustrie-elektromobilität {
font-family: var(--font-heading);
font-size: clamp(1.5rem, 3.5vw, 2.75rem);
font-weight: 700;
color: var(--color-text-primary);
margin-bottom: clamp(1rem, 2vw, 1.5rem);
line-height: 1.2;
}

.transformation-text-automobilindustrie-elektromobilität {
font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
color: var(--color-text-secondary);
margin-bottom: clamp(1rem, 2vw, 1.5rem);
line-height: 1.8;
}

.transformation-text-automobilindustrie-elektromobilität:last-of-type {
margin-bottom: 0;
}

.transformation-image-wrapper-automobilindustrie-elektromobilität {
flex: 1 1 50%;
max-width: 50%;
}

.transformation-image-automobilindustrie-elektromobilität {
width: 100%;
height: auto;
object-fit: cover;
border-radius: var(--radius-xl);
display: block;
box-shadow: var(--shadow-md);
}

.standorte-section-automobilindustrie-elektromobilität {
background: var(--color-bg-secondary);
padding: clamp(3rem, 6vw, 5rem) 0;
overflow: hidden;
}

.standorte-content-automobilindustrie-elektromobilität {
display: flex;
flex-direction: column;
gap: clamp(2rem, 3vw, 3rem);
}

.standorte-title-automobilindustrie-elektromobilität {
font-family: var(--font-heading);
font-size: clamp(1.5rem, 3.5vw, 2.75rem);
font-weight: 700;
color: var(--color-text-primary);
line-height: 1.2;
text-align: center;
margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.standorte-text-wrapper-automobilindustrie-elektromobilität {
display: flex;
flex-direction: row;
gap: clamp(2rem, 4vw, 4rem);
align-items: center;
}

.standorte-text-automobilindustrie-elektromobilität {
flex: 1 1 50%;
max-width: 50%;
font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
color: var(--color-text-secondary);
line-height: 1.8;
}

.standorte-text-automobilindustrie-elektromobilität:not(:last-of-type) {
margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.standorte-image-wrapper-automobilindustrie-elektromobilität {
flex: 1 1 50%;
max-width: 50%;
}

.standorte-image-automobilindustrie-elektromobilität {
width: 100%;
height: auto;
object-fit: cover;
border-radius: var(--radius-xl);
display: block;
box-shadow: var(--shadow-md);
}

.arbeitskräfte-section-automobilindustrie-elektromobilität {
background: var(--color-bg-primary);
padding: clamp(3rem, 6vw, 5rem) 0;
overflow: hidden;
border-top: 1px solid var(--color-border);
border-bottom: 1px solid var(--color-border);
}

.arbeitskräfte-content-automobilindustrie-elektromobilität {
display: flex;
flex-direction: row;
gap: clamp(2rem, 4vw, 4rem);
align-items: center;
}

.arbeitskräfte-text-wrapper-automobilindustrie-elektromobilität {
flex: 1 1 50%;
max-width: 50%;
}

.arbeitskräfte-title-automobilindustrie-elektromobilität {
font-family: var(--font-heading);
font-size: clamp(1.5rem, 3.5vw, 2.75rem);
font-weight: 700;
color: var(--color-text-primary);
margin-bottom: clamp(1rem, 2vw, 1.5rem);
line-height: 1.2;
}

.arbeitskräfte-text-automobilindustrie-elektromobilität {
font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
color: var(--color-text-secondary);
margin-bottom: clamp(1rem, 2vw, 1.5rem);
line-height: 1.8;
}

.arbeitskräfte-text-automobilindustrie-elektromobilität:last-of-type {
margin-bottom: 0;
}

.arbeitskräfte-image-wrapper-automobilindustrie-elektromobilität {
flex: 1 1 50%;
max-width: 50%;
}

.arbeitskräfte-image-automobilindustrie-elektromobilität {
width: 100%;
height: auto;
object-fit: cover;
border-radius: var(--radius-xl);
display: block;
box-shadow: var(--shadow-md);
}

.prognose-section-automobilindustrie-elektromobilität {
background: var(--color-bg-secondary);
padding: clamp(3rem, 6vw, 5rem) 0;
overflow: hidden;
}

.prognose-content-automobilindustrie-elektromobilität {
display: flex;
flex-direction: column;
gap: clamp(2rem, 3vw, 3rem);
}

.prognose-title-automobilindustrie-elektromobilität {
font-family: var(--font-heading);
font-size: clamp(1.5rem, 3.5vw, 2.75rem);
font-weight: 700;
color: var(--color-text-primary);
text-align: center;
line-height: 1.2;
margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.prognose-stats-automobilindustrie-elektromobilität {
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: clamp(1.5rem, 3vw, 2.5rem);
justify-content: center;
margin-bottom: clamp(2rem, 3vw, 3rem);
}

.stat-card-automobilindustrie-elektromobilität {
flex: 1 1 calc(33.333% - 1rem);
min-width: 220px;
max-width: 320px;
background: var(--color-bg-primary);
padding: clamp(1.5rem, 2vw, 2rem);
border-radius: var(--radius-lg);
text-align: center;
box-shadow: var(--shadow-md);
}

.stat-number-automobilindustrie-elektromobilität {
font-family: var(--font-heading);
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 800;
color: var(--color-accent);
margin-bottom: 0.5rem;
}

.stat-label-automobilindustrie-elektromobilität {
font-size: clamp(0.9rem, 1.1vw, 1.05rem);
font-weight: 600;
color: var(--color-text-primary);
margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
display: block;
}

.stat-text-automobilindustrie-elektromobilität {
font-size: clamp(0.8rem, 0.95vw, 0.95rem);
color: var(--color-text-secondary);
line-height: 1.6;
}

.prognose-text-wrapper-automobilindustrie-elektromobilität {
display: flex;
flex-direction: column;
gap: clamp(1rem, 2vw, 1.5rem);
}

.prognose-text-automobilindustrie-elektromobilität {
font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
color: var(--color-text-secondary);
line-height: 1.8;
max-width: 900px;
margin: 0 auto;
}

.fazit-section-automobilindustrie-elektromobilität {
background: var(--color-bg-primary);
padding: clamp(3rem, 6vw, 5rem) 0;
overflow: hidden;
border-top: 1px solid var(--color-border);
border-bottom: 1px solid var(--color-border);
}

.fazit-content-automobilindustrie-elektromobilität {
display: flex;
flex-direction: column;
gap: clamp(1.5rem, 2vw, 2rem);
max-width: 900px;
margin: 0 auto;
}

.fazit-title-automobilindustrie-elektromobilität {
font-family: var(--font-heading);
font-size: clamp(1.5rem, 3.5vw, 2.75rem);
font-weight: 700;
color: var(--color-text-primary);
line-height: 1.2;
text-align: center;
}

.fazit-text-automobilindustrie-elektromobilität {
font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
color: var(--color-text-secondary);
line-height: 1.8;
}

.fazit-cta-automobilindustrie-elektromobilität {
display: flex;
justify-content: center;
margin-top: clamp(1.5rem, 2vw, 2rem);
}

.btn-primary-automobilindustrie-elektromobilität {
background: var(--color-accent);
color: var(--color-text-light);
}

.btn-primary-automobilindustrie-elektromobilität:hover {
background: var(--color-accent-hover);
}

.related-section-automobilindustrie-elektromobilität {
background: var(--color-bg-secondary);
padding: clamp(3rem, 6vw, 5rem) 0;
overflow: hidden;
}

.related-content-automobilindustrie-elektromobilität {
display: flex;
flex-direction: column;
gap: clamp(2rem, 3vw, 3rem);
}

.related-title-automobilindustrie-elektromobilität {
font-family: var(--font-heading);
font-size: clamp(1.5rem, 3.5vw, 2.75rem);
font-weight: 700;
color: var(--color-text-primary);
text-align: center;
line-height: 1.2;
}

.related-cards-automobilindustrie-elektromobilität {
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: clamp(1.5rem, 3vw, 2.5rem);
justify-content: center;
}

.related-card-automobilindustrie-elektromobilität {
flex: 1 1 calc(33.333% - 1rem);
min-width: 280px;
max-width: 380px;
background: var(--color-bg-card);
border-radius: var(--radius-lg);
overflow: hidden;
box-shadow: var(--shadow-md);
transition: var(--transition-base);
display: flex;
flex-direction: column;
}

.related-card-automobilindustrie-elektromobilität:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-lg);
}

.related-card-image-automobilindustrie-elektromobilität {
width: 100%;
height: 200px;
overflow: hidden;
}

.related-card-img-automobilindustrie-elektromobilität {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

.related-card-text-automobilindustrie-elektromobilität {
padding: clamp(1.25rem, 2vw, 1.75rem);
display: flex;
flex-direction: column;
gap: clamp(0.75rem, 1.5vw, 1rem);
flex-grow: 1;
}

.related-card-title-automobilindustrie-elektromobilität {
font-family: var(--font-heading);
font-size: clamp(1rem, 1.5vw, 1.25rem);
font-weight: 700;
color: var(--color-text-primary);
line-height: 1.3;
}

.related-card-desc-automobilindustrie-elektromobilität {
font-size: clamp(0.8rem, 0.95vw, 0.95rem);
color: var(--color-text-secondary);
line-height: 1.6;
flex-grow: 1;
}

.related-card-link-automobilindustrie-elektromobilität {
color: var(--color-accent);
text-decoration: none;
font-weight: 600;
font-size: clamp(0.8rem, 0.95vw, 0.95rem);
transition: var(--transition-base);
}

.related-card-link-automobilindustrie-elektromobilität:hover {
color: var(--color-accent-hover);
text-decoration: underline;
}

.disclaimer-section-automobilindustrie-elektromobilität {
background: var(--color-bg-primary);
padding: clamp(3rem, 6vw, 5rem) 0;
overflow: hidden;
border-top: 1px solid var(--color-border);
}

.disclaimer-content-automobilindustrie-elektromobilität {
max-width: 900px;
margin: 0 auto;
padding: clamp(1.5rem, 2vw, 2rem);
background: var(--color-bg-secondary);
border-radius: var(--radius-lg);
border-left: 4px solid var(--color-accent);
}

.disclaimer-title-automobilindustrie-elektromobilität {
font-family: var(--font-heading);
font-size: clamp(1.1rem, 2vw, 1.35rem);
font-weight: 700;
color: var(--color-text-primary);
margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.disclaimer-text-automobilindustrie-elektromobilität {
font-size: clamp(0.85rem, 0.95vw, 0.95rem);
color: var(--color-text-secondary);
line-height: 1.7;
}

@media (max-width: 768px) {
.hero-content-automobilindustrie-elektromobilität {
flex-direction: column;
}

.hero-text-wrapper-automobilindustrie-elektromobilität,
.hero-image-wrapper-automobilindustrie-elektromobilität {
flex: 1 1 100%;
max-width: 100%;
}

.intro-content-automobilindustrie-elektromobilität {
flex-direction: column;
}

.intro-text-wrapper-automobilindustrie-elektromobilität,
.intro-image-wrapper-automobilindustrie-elektromobilität {
flex: 1 1 100%;
max-width: 100%;
}

.transformation-content-automobilindustrie-elektromobilität {
flex-direction: column;
}

.transformation-text-wrapper-automobilindustrie-elektromobilität,
.transformation-image-wrapper-automobilindustrie-elektromobilität {
flex: 1 1 100%;
max-width: 100%;
}

.standorte-text-wrapper-automobilindustrie-elektromobilität {
flex-direction: column;
}

.standorte-text-automobilindustrie-elektromobilität,
.standorte-image-wrapper-automobilindustrie-elektromobilität {
flex: 1 1 100%;
max-width: 100%;
}

.arbeitskräfte-content-automobilindustrie-elektromobilität {
flex-direction: column;
}

.arbeitskräfte-text-wrapper-automobilindustrie-elektromobilität,
.arbeitskräfte-image-wrapper-automobilindustrie-elektromobilität {
flex: 1 1 100%;
max-width: 100%;
}

.stat-card-automobilindustrie-elektromobilität {
flex: 1 1 100%;
min-width: 100%;
max-width: 100%;
}

.related-card-automobilindustrie-elektromobilität {
flex: 1 1 100%;
min-width: 100%;
max-width: 100%;
}
}

@media (min-width: 768px) and (max-width: 1024px) {
.stat-card-automobilindustrie-elektromobilität {
flex: 1 1 calc(50% - 0.75rem);
min-width: 200px;
}

.related-card-automobilindustrie-elektromobilität {
flex: 1 1 calc(50% - 0.75rem);
min-width: 250px;
}
}

@media (min-width: 1025px) {
.hero-section-automobilindustrie-elektromobilität {
padding: clamp(4rem, 8vw, 6rem) 0;
}

.intro-section-automobilindustrie-elektromobilität,
.transformation-section-automobilindustrie-elektromobilität,
.standorte-section-automobilindustrie-elektromobilität,
.arbeitskräfte-section-automobilindustrie-elektromobilität,
.prognose-section-automobilindustrie-elektromobilität,
.fazit-section-automobilindustrie-elektromobilität,
.related-section-automobilindustrie-elektromobilität,
.disclaimer-section-automobilindustrie-elektromobilität {
padding: clamp(4rem, 8vw, 6rem) 0;
}
}

.main-chemiebranche-wirtschaftliche-bedeutung {
font-family: var(--font-primary);
color: var(--color-text-primary);
background: var(--color-bg-primary);
overflow-x: hidden;
}

.main-chemiebranche-wirtschaftliche-bedeutung h1,
.main-chemiebranche-wirtschaftliche-bedeutung h2,
.main-chemiebranche-wirtschaftliche-bedeutung h3,
.main-chemiebranche-wirtschaftliche-bedeutung h4,
.main-chemiebranche-wirtschaftliche-bedeutung h5,
.main-chemiebranche-wirtschaftliche-bedeutung h6 {
word-wrap: break-word;
overflow-wrap: break-word;
}

.main-chemiebranche-wirtschaftliche-bedeutung p {
word-wrap: break-word;
overflow-wrap: break-word;
line-height: var(--line-height-relaxed);
}

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

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

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

.hero-text-chemiebranche-wirtschaftliche-bedeutung {
flex: 1 1 50%;
max-width: 50%;
}

.hero-image-chemiebranche-wirtschaftliche-bedeutung {
flex: 1 1 50%;
max-width: 50%;
}

.hero-title-chemiebranche-wirtschaftliche-bedeutung {
font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
font-weight: 800;
color: var(--color-text-primary);
margin-bottom: clamp(1rem, 2vw, 1.5rem);
line-height: var(--line-height-tight);
}

.hero-description-chemiebranche-wirtschaftliche-bedeutung {
font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.25rem);
color: var(--color-text-secondary);
margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
line-height: var(--line-height-relaxed);
}

.hero-meta-chemiebranche-wirtschaftliche-bedeutung {
display: flex;
flex-direction: row;
gap: 0.75rem;
flex-wrap: wrap;
}

.meta-item-chemiebranche-wirtschaftliche-bedeutung {
font-size: clamp(0.8rem, 1vw + 0.5rem, 0.95rem);
color: var(--color-text-secondary);
}

.meta-divider-chemiebranche-wirtschaftliche-bedeutung {
color: var(--color-text-secondary);
}

.hero-image-chemiebranche-wirtschaftliche-bedeutung img {
width: 100%;
height: auto;
object-fit: cover;
border-radius: var(--radius-lg);
display: block;
}

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

.hero-text-chemiebranche-wirtschaftliche-bedeutung,
.hero-image-chemiebranche-wirtschaftliche-bedeutung {
flex: 1 1 100%;
max-width: 100%;
}
}

.breadcrumbs-chemiebranche-wirtschaftliche-bedeutung {
display: flex;
flex-direction: row;
gap: 0.5rem;
flex-wrap: wrap;
margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
font-size: clamp(0.8rem, 1vw + 0.5rem, 0.95rem);
}

.breadcrumbs-chemiebranche-wirtschaftliche-bedeutung a {
color: var(--color-accent);
text-decoration: none;
transition: all 0.3s ease;
}

.breadcrumbs-chemiebranche-wirtschaftliche-bedeutung a:hover {
color: var(--color-accent-hover);
text-decoration: underline;
}

.breadcrumbs-chemiebranche-wirtschaftliche-bedeutung span {
color: var(--color-text-secondary);
}

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

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

.intro-text-chemiebranche-wirtschaftliche-bedeutung {
flex: 1 1 50%;
max-width: 50%;
}

.intro-image-chemiebranche-wirtschaftliche-bedeutung {
flex: 1 1 50%;
max-width: 50%;
}

.intro-title-chemiebranche-wirtschaftliche-bedeutung {
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
font-weight: 800;
color: var(--color-text-primary);
margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-paragraph-chemiebranche-wirtschaftliche-bedeutung {
font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.1rem);
color: var(--color-text-secondary);
margin-bottom: clamp(1rem, 2vw, 1.5rem);
line-height: var(--line-height-relaxed);
}

.intro-image-chemiebranche-wirtschaftliche-bedeutung img {
width: 100%;
height: auto;
object-fit: cover;
border-radius: var(--radius-lg);
display: block;
}

@media (max-width: 768px) {
.intro-content-chemiebranche-wirtschaftliche-bedeutung {
flex-direction: column;
}

.intro-text-chemiebranche-wirtschaftliche-bedeutung,
.intro-image-chemiebranche-wirtschaftliche-bedeutung {
flex: 1 1 100%;
max-width: 100%;
}
}

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

.market-content-chemiebranche-wirtschaftliche-bedeutung {
display: flex;
flex-direction: row;
gap: clamp(2rem, 4vw, 4rem);
align-items: center;
}

.market-text-chemiebranche-wirtschaftliche-bedeutung {
flex: 1 1 50%;
max-width: 50%;
}

.market-image-chemiebranche-wirtschaftliche-bedeutung {
flex: 1 1 50%;
max-width: 50%;
}

.market-title-chemiebranche-wirtschaftliche-bedeutung {
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
font-weight: 800;
color: var(--color-text-primary);
margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.market-paragraph-chemiebranche-wirtschaftliche-bedeutung {
font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.1rem);
color: var(--color-text-secondary);
margin-bottom: clamp(1rem, 2vw, 1.5rem);
line-height: var(--line-height-relaxed);
}

.market-stats-chemiebranche-wirtschaftliche-bedeutung {
display: flex;
flex-direction: row;
gap: clamp(1.5rem, 3vw, 2rem);
flex-wrap: wrap;
margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.stat-block-chemiebranche-wirtschaftliche-bedeutung {
display: flex;
flex-direction: column;
gap: 0.5rem;
flex: 1 1 150px;
min-width: 140px;
}

.stat-number-chemiebranche-wirtschaftliche-bedeutung {
font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
font-weight: 900;
color: var(--color-accent);
}

.stat-label-chemiebranche-wirtschaftliche-bedeutung {
font-size: clamp(0.8rem, 1vw + 0.5rem, 0.95rem);
color: var(--color-text-secondary);
font-weight: 600;
}

.market-image-chemiebranche-wirtschaftliche-bedeutung img {
width: 100%;
height: auto;
object-fit: cover;
border-radius: var(--radius-lg);
display: block;
}

@media (max-width: 768px) {
.market-content-chemiebranche-wirtschaftliche-bedeutung {
flex-direction: column;
}

.market-text-chemiebranche-wirtschaftliche-bedeutung,
.market-image-chemiebranche-wirtschaftliche-bedeutung {
flex: 1 1 100%;
max-width: 100%;
}
}

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

.challenges-content-chemiebranche-wirtschaftliche-bedeutung {
display: flex;
flex-direction: row;
gap: clamp(2rem, 4vw, 4rem);
align-items: center;
}

.challenges-image-chemiebranche-wirtschaftliche-bedeutung {
flex: 1 1 50%;
max-width: 50%;
}

.challenges-text-chemiebranche-wirtschaftliche-bedeutung {
flex: 1 1 50%;
max-width: 50%;
}

.challenges-title-chemiebranche-wirtschaftliche-bedeutung {
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
font-weight: 800;
color: var(--color-text-primary);
margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.challenges-paragraph-chemiebranche-wirtschaftliche-bedeutung {
font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.1rem);
color: var(--color-text-secondary);
margin-bottom: clamp(1rem, 2vw, 1.5rem);
line-height: var(--line-height-relaxed);
}

.challenges-image-chemiebranche-wirtschaftliche-bedeutung img {
width: 100%;
height: auto;
object-fit: cover;
border-radius: var(--radius-lg);
display: block;
}

@media (max-width: 768px) {
.challenges-content-chemiebranche-wirtschaftliche-bedeutung {
flex-direction: column-reverse;
}

.challenges-image-chemiebranche-wirtschaftliche-bedeutung,
.challenges-text-chemiebranche-wirtschaftliche-bedeutung {
flex: 1 1 100%;
max-width: 100%;
}
}

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

.perspectives-content-chemiebranche-wirtschaftliche-bedeutung {
display: flex;
flex-direction: row;
gap: clamp(2rem, 4vw, 4rem);
align-items: center;
}

.perspectives-text-chemiebranche-wirtschaftliche-bedeutung {
flex: 1 1 50%;
max-width: 50%;
}

.perspectives-image-chemiebranche-wirtschaftliche-bedeutung {
flex: 1 1 50%;
max-width: 50%;
}

.perspectives-title-chemiebranche-wirtschaftliche-bedeutung {
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
font-weight: 800;
color: var(--color-text-primary);
margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.perspectives-paragraph-chemiebranche-wirtschaftliche-bedeutung {
font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.1rem);
color: var(--color-text-secondary);
margin-bottom: clamp(1rem, 2vw, 1.5rem);
line-height: var(--line-height-relaxed);
}

.perspectives-image-chemiebranche-wirtschaftliche-bedeutung img {
width: 100%;
height: auto;
object-fit: cover;
border-radius: var(--radius-lg);
display: block;
}

@media (max-width: 768px) {
.perspectives-content-chemiebranche-wirtschaftliche-bedeutung {
flex-direction: column;
}

.perspectives-text-chemiebranche-wirtschaftliche-bedeutung,
.perspectives-image-chemiebranche-wirtschaftliche-bedeutung {
flex: 1 1 100%;
max-width: 100%;
}
}

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

.conclusion-content-chemiebranche-wirtschaftliche-bedeutung {
display: flex;
flex-direction: column;
gap: clamp(1.5rem, 3vw, 2.5rem);
max-width: 900px;
margin: 0 auto;
}

.conclusion-title-chemiebranche-wirtschaftliche-bedeutung {
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
font-weight: 800;
color: var(--color-text-primary);
}

.conclusion-paragraph-chemiebranche-wirtschaftliche-bedeutung {
font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.1rem);
color: var(--color-text-secondary);
line-height: var(--line-height-relaxed);
}

.conclusion-highlight-chemiebranche-wirtschaftliche-bedeutung {
background: var(--color-bg-primary);
padding: clamp(1.5rem, 3vw, 2.5rem);
border-left: 4px solid var(--color-accent);
border-radius: var(--radius-md);
}

.highlight-text-chemiebranche-wirtschaftliche-bedeutung {
font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.15rem);
color: var(--color-text-primary);
font-weight: 600;
line-height: var(--line-height-relaxed);
}

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

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

.related-title-chemiebranche-wirtschaftliche-bedeutung {
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
font-weight: 800;
color: var(--color-text-primary);
text-align: center;
}

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

.related-card-chemiebranche-wirtschaftliche-bedeutung {
flex: 1 1 280px;
max-width: 380px;
background: var(--color-bg-card);
border-radius: var(--radius-lg);
overflow: hidden;
box-shadow: var(--shadow-md);
display: flex;
flex-direction: column;
transition: all 0.3s ease;
}

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

.related-image-chemiebranche-wirtschaftliche-bedeutung {
width: 100%;
height: 220px;
overflow: hidden;
}

.related-image-chemiebranche-wirtschaftliche-bedeutung img {
width: 100%;
height: 100%;
object-fit: cover;
}

.related-text-chemiebranche-wirtschaftliche-bedeutung {
padding: clamp(1rem, 2vw, 1.5rem);
display: flex;
flex-direction: column;
gap: clamp(0.75rem, 1.5vw, 1rem);
flex: 1;
}

.related-card-title-chemiebranche-wirtschaftliche-bedeutung {
font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
font-weight: 700;
color: var(--color-text-primary);
line-height: var(--line-height-tight);
}

.related-card-description-chemiebranche-wirtschaftliche-bedeutung {
font-size: clamp(0.85rem, 1vw + 0.5rem, 0.95rem);
color: var(--color-text-secondary);
line-height: var(--line-height-normal);
flex: 1;
}

.related-link-chemiebranche-wirtschaftliche-bedeutung {
font-size: clamp(0.8rem, 1vw + 0.5rem, 0.95rem);
color: var(--color-accent);
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
}

.related-link-chemiebranche-wirtschaftliche-bedeutung:hover {
color: var(--color-accent-hover);
text-decoration: underline;
}

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

.disclaimer-content-chemiebranche-wirtschaftliche-bedeutung {
max-width: 900px;
margin: 0 auto;
background: var(--color-bg-card);
padding: clamp(1.5rem, 3vw, 2.5rem);
border-radius: var(--radius-lg);
border-left: 4px solid var(--color-warning);
}

.disclaimer-title-chemiebranche-wirtschaftliche-bedeutung {
font-size: clamp(1.1rem, 2vw + 0.5rem, 1.35rem);
font-weight: 700;
color: var(--color-text-primary);
margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.disclaimer-text-chemiebranche-wirtschaftliche-bedeutung {
font-size: clamp(0.85rem, 1vw + 0.5rem, 0.95rem);
color: var(--color-text-secondary);
line-height: var(--line-height-relaxed);
}

@media (max-width: 1024px) {
.hero-content-chemiebranche-wirtschaftliche-bedeutung,
.intro-content-chemiebranche-wirtschaftliche-bedeutung,
.market-content-chemiebranche-wirtschaftliche-bedeutung,
.challenges-content-chemiebranche-wirtschaftliche-bedeutung,
.perspectives-content-chemiebranche-wirtschaftliche-bedeutung {
flex-direction: column;
}

.hero-text-chemiebranche-wirtschaftliche-bedeutung,
.hero-image-chemiebranche-wirtschaftliche-bedeutung,
.intro-text-chemiebranche-wirtschaftliche-bedeutung,
.intro-image-chemiebranche-wirtschaftliche-bedeutung,
.market-text-chemiebranche-wirtschaftliche-bedeutung,
.market-image-chemiebranche-wirtschaftliche-bedeutung,
.challenges-text-chemiebranche-wirtschaftliche-bedeutung,
.challenges-image-chemiebranche-wirtschaftliche-bedeutung,
.perspectives-text-chemiebranche-wirtschaftliche-bedeutung,
.perspectives-image-chemiebranche-wirtschaftliche-bedeutung {
flex: 1 1 100%;
max-width: 100%;
}
}

@media (max-width: 768px) {
.related-cards-chemiebranche-wirtschaftliche-bedeutung {
flex-direction: column;
align-items: stretch;
}

.related-card-chemiebranche-wirtschaftliche-bedeutung {
flex: 1 1 100%;
max-width: 100%;
}

.stat-block-chemiebranche-wirtschaftliche-bedeutung {
flex: 1 1 calc(50% - 0.75rem);
}
}

@media (max-width: 480px) {
.market-stats-chemiebranche-wirtschaftliche-bedeutung {
flex-direction: column;
}

.stat-block-chemiebranche-wirtschaftliche-bedeutung {
flex: 1 1 100%;
}

.hero-meta-chemiebranche-wirtschaftliche-bedeutung {
flex-direction: column;
gap: 0.5rem;
}

.meta-divider-chemiebranche-wirtschaftliche-bedeutung {
display: none;
}
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  overflow-x: hidden;
}

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

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

.industrial-mittelstand-about {
  background: var(--color-bg-primary);
  overflow-x: hidden;
}

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

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

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

.hero-title-about {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: var(--line-height-tight);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

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

.hero-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

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

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

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

.story-tag-about {
  display: inline-block;
  padding: 0.35rem 1.25rem;
  background: rgba(var(--color-primary-rgb, 66, 135, 245), 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.story-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin-bottom: 1.25rem;
}

.story-text-about {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 700px;
  margin: 0 auto;
}

.story-text-about p {
  margin-bottom: 1.25rem;
  color: var(--color-text-secondary);
}

.story-text-about p:last-child {
  margin-bottom: 0;
}

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

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

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

.expertise-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: var(--line-height-tight);
  margin-bottom: 1rem;
}

.expertise-intro-about {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

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

.expertise-card-about {
  flex: 1 1 280px;
  max-width: 360px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base) ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.card-icon-about {
  font-size: 2.5rem;
  color: var(--color-primary);
  display: flex;
  align-items: center;
}

.card-title-about {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.card-text-about {
  font-size: clamp(0.875rem, 1vw + 0.3rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.approach-section-about {
  background: var(--color-bg-secondary);
  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;
  max-width: 700px;
  margin: 0 auto;
}

.approach-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin-bottom: 1rem;
}

.approach-intro-about {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.approach-steps-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
  margin-top: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.step-number-about {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-primary);
  min-width: 60px;
  flex-shrink: 0;
}

.step-body-about {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-about {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.step-text-about {
  font-size: clamp(0.875rem, 1vw + 0.3rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

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

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

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

.values-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: var(--line-height-tight);
  margin-bottom: 1rem;
}

.values-intro-about {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.values-list-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
  margin-top: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.value-item-about {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.value-check-about {
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.value-text-about {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

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

.quote-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 700px;
  margin: 0 auto;
}

.featured-quote-about {
  padding: clamp(2rem, 3vw, 3rem);
  border-left: 5px solid var(--color-primary);
  background: rgba(var(--color-primary-rgb, 66, 135, 245), 0.05);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.quote-text-about {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--color-text-primary);
  font-style: italic;
  line-height: var(--line-height-relaxed);
}

.quote-author-about {
  font-size: clamp(0.875rem, 1vw + 0.3rem, 1rem);
  color: var(--color-primary);
  font-weight: 600;
  font-style: normal;
}

.disclaimer-section-about {
  background: var(--color-bg-primary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-top: 1px solid var(--color-border);
  overflow: hidden;
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.disclaimer-header-about {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-icon-about {
  font-size: 1.25rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.disclaimer-title-about {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.disclaimer-text-about {
  font-size: clamp(0.8rem, 1vw + 0.3rem, 0.95rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

@media (min-width: 768px) {
  .hero-content-about {
    gap: clamp(2.5rem, 5vw, 4rem);
  }

  .expertise-cards-about {
    gap: clamp(2rem, 4vw, 3rem);
  }

  .expertise-card-about {
    flex: 1 1 320px;
  }

  .step-item-about {
    gap: clamp(2rem, 4vw, 3rem);
  }

  .values-list-about {
    gap: clamp(1.75rem, 3vw, 2.25rem);
  }
}

@media (min-width: 1024px) {
  .hero-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .story-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .expertise-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .approach-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .values-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .quote-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .disclaimer-section-about {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }
}

.portfolio-page {
  width: 100%;
  background-color: var(--color-bg-primary);
}

.portfolio-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.portfolio-hero__container {
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 5vw + 0.5rem, 3rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin: 0 0 var(--space-md) 0;
}

.portfolio-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 2vw + 0.25rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  margin: 0;
  max-width: 600px;
}

.portfolio-projects {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.portfolio-projects__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

.portfolio-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

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

.portfolio-card:hover .portfolio-card__image img {
  transform: scale(1.04);
}

.portfolio-card__content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex-grow: 1;
}

.portfolio-card__tag {
  font-family: var(--font-primary);
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  align-self: flex-start;
}

.portfolio-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin: 0;
}

.portfolio-card__description {
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
  flex-grow: 1;
}

.portfolio-card__detail {
  font-family: var(--font-primary);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin-top: auto;
}

.portfolio-cta {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

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

.portfolio-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin: 0 0 var(--space-md) 0;
}

.portfolio-cta__text {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0 0 var(--space-lg) 0;
}

.portfolio-cta__button {
  display: inline-block;
  padding: var(--space-sm) var(--space-xl);
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: background-color var(--transition-base), transform var(--transition-fast);
  border: none;
  cursor: pointer;
}

.portfolio-cta__button:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-1px);
}

.portfolio-cta__button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .portfolio-hero {
    padding: var(--space-3xl) var(--space-lg);
  }

  .portfolio-projects {
    padding: var(--space-3xl) var(--space-lg);
  }

  .portfolio-projects__container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .portfolio-card__image {
    height: 280px;
  }

  .portfolio-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-hero {
    padding: 4rem var(--space-lg);
  }

  .portfolio-projects {
    padding: 4rem var(--space-lg);
  }

  .portfolio-projects__container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3xl);
  }

  .portfolio-card__image {
    height: 300px;
  }

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

  .portfolio-cta {
    padding: 4rem var(--space-lg);
  }
}

@media (min-width: 1440px) {
  .portfolio-hero {
    padding: 5rem var(--space-lg);
  }

  .portfolio-projects {
    padding: 5rem var(--space-lg);
  }

  .portfolio-card__image {
    height: 320px;
  }

  .portfolio-cta {
    padding: 5rem var(--space-lg);
  }
}

.services-page {
  width: 100%;
  background-color: var(--color-bg-primary);
  font-family: var(--font-primary);
}

.services-hero {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-hero-container {
  max-width: 900px;
  width: 100%;
  text-align: center;
}

.services-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-tight);
}

.services-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-normal);
}

.services-content {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.services-grid {
  display: flex;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  flex-direction: column;
}

.service-card {
  background-color: var(--color-bg-card);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-primary-light);
}

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

.service-card-icon {
  width: 60px;
  height: 60px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.75rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.service-card-description {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-lg) 0;
  line-height: var(--line-height-relaxed);
  flex-grow: 1;
}

.service-card-link {
  display: inline-block;
  padding: var(--space-sm) var(--space-md);
  background-color: var(--color-primary);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
  font-weight: 600;
  transition: background-color var(--transition-base);
  width: fit-content;
  margin-top: auto;
}

.service-card-link:hover {
  background-color: var(--color-primary-hover);
}

.services-cta {
  background-color: var(--color-bg-secondary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
  text-align: center;
}

.services-cta-container {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.services-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.services-cta-text {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-xl) 0;
  line-height: var(--line-height-normal);
}

.services-cta-button {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background-color: var(--color-accent);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  font-weight: 600;
  transition: background-color var(--transition-base);
  cursor: pointer;
}

.services-cta-button:hover {
  background-color: var(--color-accent-light);
}

.services-gallery {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
}

.services-gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 3/2;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-base);
}

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

@media (min-width: 768px) {
  .services-hero {
    padding: var(--space-3xl) var(--space-lg);
    min-height: 250px;
  }

  .services-content {
    padding: var(--space-3xl) var(--space-lg);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

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

  .services-cta {
    padding: var(--space-3xl) var(--space-lg);
  }

  .services-gallery {
    padding: var(--space-3xl) var(--space-lg);
  }

  .services-gallery-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: 5rem var(--space-xl);
    min-height: 280px;
  }

  .services-content {
    padding: 5rem var(--space-xl);
  }

  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
  }

  .services-cta {
    padding: 5rem var(--space-xl);
  }

  .services-gallery {
    padding: 5rem var(--space-xl);
  }

  .services-gallery-container {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }

  .gallery-item:nth-child(5) {
    grid-column: 1;
  }
}

@media (min-width: 1440px) {
  .services-container,
  .services-cta-container,
  .services-gallery-container {
    max-width: 1400px;
  }

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

  .services-gallery-container {
    grid-template-columns: repeat(5, 1fr);
  }
}

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

.legal-docs .legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-md);
}

.legal-docs h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.legal-docs .last-updated {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2xl);
  font-style: italic;
}

.legal-docs h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-primary);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.legal-docs p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.legal-docs ul {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.legal-docs li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-sm);
}

.legal-docs .section {
  margin-bottom: var(--space-2xl);
}

.legal-docs .contact-section {
  background-color: var(--color-bg-secondary);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-top: var(--space-2xl);
}

.legal-docs .contact-section h2 {
  color: var(--color-text-primary);
  margin-top: 0;
}

.legal-docs .contact-section p {
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.legal-docs .contact-section strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

@media (min-width: 768px) {
  .legal-docs .legal-content {
    padding: var(--space-3xl) var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .legal-docs .legal-content {
    padding: var(--space-3xl) 0;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
}

.thank-you-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.thank-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-md);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

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

.content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.thank-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-lg);
  padding: var(--space-xl) var(--space-md);
}

.success-icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-success);
  margin-bottom: var(--space-md);
  animation: icon-scale 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.thank-wrapper h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 0;
  line-height: var(--line-height-tight);
}

.lead-text {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-primary);
  font-weight: 600;
  margin: 0;
  line-height: var(--line-height-normal);
}

.message-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-md);
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
}

.message-block p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.message-block p:first-child {
  margin-top: 0;
}

.btn-return {
  display: inline-block;
  padding: 0.875rem 2.5rem;
  background-color: var(--color-primary);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  font-weight: 600;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
  margin-top: var(--space-md);
}

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

.btn-return:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

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

@keyframes icon-scale {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (min-width: 640px) {
  .thank-wrapper {
    padding: var(--space-2xl) var(--space-xl);
    gap: var(--space-xl);
  }

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

  .success-icon {
    width: 140px;
    height: 140px;
    margin-bottom: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--space-2xl) var(--space-xl);
  }

  .thank-wrapper {
    padding: var(--space-3xl) var(--space-2xl);
    gap: var(--space-2xl);
  }

  .message-block {
    padding: var(--space-2xl);
  }

  .success-icon {
    width: 160px;
    height: 160px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .success-icon {
    animation: none;
  }

  .btn-return {
    transition: none;
  }

  .btn-return:hover {
    transform: none;
  }
}

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

.error-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.error-section {
  width: 100%;
  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%;
}

.error-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  align-items: center;
  text-align: center;
}

.error-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: var(--space-lg);
}

.error-code-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.error-decoration {
  position: absolute;
  width: clamp(200px, 60vw, 500px);
  height: clamp(200px, 60vw, 500px);
  background-color: var(--color-primary-light);
  border-radius: 50%;
  opacity: 0.15;
  z-index: 1;
  animation: pulse-decoration 6s ease-in-out infinite;
}

@keyframes pulse-decoration {
  0%, 100% {
    transform: scale(1);
    opacity: 0.15;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.08;
  }
}

.error-message {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  width: 100%;
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  letter-spacing: -0.01em;
}

.error-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 600px;
  margin: 0 auto;
}

.error-context {
  background-color: var(--color-bg-secondary);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-lg) var(--space-lg);
  border-radius: var(--radius-md);
  margin: var(--space-md) 0;
}

.context-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  text-align: center;
  letter-spacing: 0.3px;
}

.btn-primary {
  background-color: var(--color-primary);
  color: white;
  margin-top: var(--space-md);
}

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

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

@media (min-width: 640px) {
  .error-page {
    padding: var(--space-lg);
  }
  
  .error-wrapper {
    gap: var(--space-3xl);
  }
  
  .error-context {
    padding: var(--space-xl) var(--space-2xl);
  }
}

@media (min-width: 768px) {
  .error-page {
    padding: var(--space-2xl);
  }
  
  .container {
    padding: 0 var(--space-lg);
  }
  
  .error-wrapper {
    gap: var(--space-3xl);
  }
  
  .error-message {
    gap: var(--space-xl);
  }
  
  .btn {
    padding: var(--space-md) var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .error-page {
    padding: var(--space-2xl);
  }
  
  .container {
    padding: 0 var(--space-xl);
  }
  
  .error-code-container {
    margin-bottom: var(--space-2xl);
  }
}

@media (min-width: 1440px) {
  .container {
    padding: 0 var(--space-2xl);
  }
}

.contact-connect-page {
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.contact-connect-hero {
  background-color: var(--color-bg-secondary);
  padding: 3rem 1rem;
  overflow: hidden;
}

.contact-connect-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-connect-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: var(--line-height-tight);
}

.contact-connect-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

@media (min-width: 768px) {
  .contact-connect-hero {
    padding: 4rem 2rem;
  }
}

@media (min-width: 1024px) {
  .contact-connect-hero {
    padding: 5rem 2rem;
  }
}

.contact-connect-main {
  background-color: var(--color-bg-primary);
  padding: 2rem 1rem;
  overflow: hidden;
}

.contact-connect-main-content {
  width: 100%;
}

.contact-connect-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.contact-connect-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-connect-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 1024px) {
  .contact-connect-grid {
    gap: 3rem;
  }

  .contact-connect-form-wrapper {
    flex: 1 1 45%;
  }

  .contact-connect-info-wrapper {
    flex: 1 1 45%;
  }
}

.contact-connect-form-header {
  margin-bottom: 2rem;
}

.contact-connect-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.contact-connect-form-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  margin: 0;
}

.contact-connect-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-connect-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.contact-connect-input,
.contact-connect-textarea {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  padding: 0.875rem 1rem;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  width: 100%;
  transition: all var(--transition-base);
}

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

.contact-connect-input:focus,
.contact-connect-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: var(--color-bg-tertiary);
  box-shadow: 0 0 0 3px rgba(var(--color-primary), 0.1);
}

.contact-connect-textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-connect-form-consent {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem;
  background-color: var(--color-bg-tertiary);
  border-radius: var(--radius-md);
}

.contact-connect-checkbox {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--color-primary);
}

.contact-connect-consent-label {
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  cursor: pointer;
}

.contact-connect-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

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

.contact-connect-submit {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  font-weight: 700;
  padding: 1.125rem 2rem;
  background-color: var(--color-primary);
  color: var(--color-text-primary);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  width: 100%;
  transition: all var(--transition-base);
  margin-top: 0.5rem;
}

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

.contact-connect-submit:active {
  transform: translateY(0);
}

.contact-connect-info-header {
  margin-bottom: 2rem;
}

.contact-connect-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.contact-connect-info-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  margin: 0;
}

.contact-connect-info-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.contact-connect-info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact-connect-info-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.contact-connect-info-content {
  flex: 1;
}

.contact-connect-info-item-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.25rem;
}

.contact-connect-info-item-text {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  color: var(--color-text-primary);
  line-height: var(--line-height-normal);
  margin: 0.5rem 0 0 0;
}

.contact-connect-info-item-meta {
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin: 0.5rem 0 0 0;
}

.contact-connect-info-cta {
  padding: 1.5rem;
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.contact-connect-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.contact-connect-cta-text {
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  margin: 0;
}

@media (min-width: 768px) {
  .contact-connect-main {
    padding: 3rem 2rem;
  }
}

@media (min-width: 1024px) {
  .contact-connect-main {
    padding: 4rem 2rem;
  }
}

.contact-connect-additional {
  background-color: var(--color-bg-secondary);
  padding: 3rem 1rem;
  overflow: hidden;
}

.contact-connect-additional-content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.contact-connect-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 2.5rem;
  text-align: center;
}

.contact-connect-faq-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .contact-connect-faq-items {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.contact-connect-faq-item {
  padding: 1.5rem;
  background-color: var(--color-bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

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

.contact-connect-faq-question {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.contact-connect-faq-answer {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

@media (min-width: 768px) {
  .contact-connect-additional {
    padding: 4rem 2rem;
  }
}

@media (min-width: 1024px) {
  .contact-connect-additional {
    padding: 5rem 2rem;
  }
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1440px) {
  .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
  }
}