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

:root {
  
  
  
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f8fafc;
  --color-bg-accent: #1e293b;
  --color-bg-card-dark: rgba(255, 255, 255, 0.05);
  --color-bg-card-light: #ffffff;
  
  
  --color-text-light: #ffffff;
  --color-text-dark: #1e293b;
  --color-text-secondary-dark: #94a3b8;
  --color-text-secondary-light: #64748b;
  --color-text-muted: #9ca3af;
  
  
  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-secondary: #059669;
  --color-secondary-hover: #047857;
  --color-warning: #dc2626;
  --color-info: #0891b2;
  
  
  --font-primary: 'Lato', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  
  
  --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);
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
  margin-top: var(--space-lg);
  color: var(--color-text-dark);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: var(--space-sm);
  margin-top: var(--space-md);
  color: var(--color-text-dark);
}

h4 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  color: var(--color-text-dark);
}

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

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

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

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

.section-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
  opacity: 0.1;
  border-radius: var(--radius-full);
  z-index: 0;
}

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

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

.hero-content h1 {
  color: var(--color-text-light);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.hero-content p {
  color: var(--color-text-secondary-dark);
  font-size: 1.125rem;
  margin-bottom: var(--space-lg);
}

.hero-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.keyword-tag {
  background: var(--color-bg-card-dark);
  color: var(--color-primary);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  border: 1px solid var(--color-primary);
  transition: all var(--transition-fast);
}

.keyword-tag:hover {
  background: var(--color-primary);
  color: var(--color-text-light);
}

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

  .section-hero::before {
    width: 300px;
    height: 300px;
    right: -5%;
    top: 0;
  }
}

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

.section-content h2 {
  color: var(--color-text-dark);
}

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

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

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

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

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

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

.section-accent a {
  color: var(--color-info);
}

.section-accent a:hover {
  color: #06b6d4;
}

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

.section-light-alt h2 {
  color: var(--color-text-dark);
}

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

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

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

.card h3 {
  color: var(--color-text-dark);
  margin-top: 0;
}

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

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

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

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

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

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

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  font-family: var(--font-primary);
}

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

.btn-primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

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

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

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

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

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

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

.btn-group {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin: var(--space-lg) 0;
}

@media (max-width: 768px) {
  .btn-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

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

li {
  margin-bottom: var(--space-sm);
  line-height: 1.75;
}

.list-icon {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

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

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

.section-accent blockquote {
  border-left-color: var(--color-info);
  color: var(--color-text-secondary-dark);
}

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

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

th {
  padding: var(--space-md);
  text-align: left;
  font-weight: 600;
}

td {
  padding: var(--space-md);
  border-bottom: 1px solid #e2e8f0;
}

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

.section-accent table {
  background: var(--color-bg-card-dark);
}

.section-accent thead {
  background: var(--color-info);
}

.section-accent td {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  color: var(--color-text-light);
}

.section-accent tbody tr:hover {
  background: rgba(255, 255, 255, 0.05);
}

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

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

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

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

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

.badge-light {
  background: var(--color-bg-tertiary);
  color: var(--color-text-dark);
}

.callout {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(37, 99, 235, 0.02) 100%);
  color: var(--color-text-dark);
  margin: var(--space-lg) 0;
}

.callout h4 {
  color: var(--color-primary);
  margin-top: 0;
}

.callout-warning {
  border-left-color: var(--color-warning);
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(220, 38, 38, 0.02) 100%);
}

.callout-warning h4 {
  color: var(--color-warning);
}

.callout-success {
  border-left-color: var(--color-secondary);
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.05) 0%, rgba(5, 150, 105, 0.02) 100%);
}

.callout-success h4 {
  color: var(--color-secondary);
}

footer {
  background: var(--color-bg-primary);
  color: var(--color-text-light);
  padding: var(--space-3xl) var(--space-lg);

  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer h3 {
  color: var(--color-text-light);
}

footer p {
  color: var(--color-text-secondary-dark);
}

footer a {
  color: var(--color-info);
}

footer a:hover {
  color: #06b6d4;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

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

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

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

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

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

.hidden {
  display: none;
}

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

@media (max-width: 768px) {
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .section-hero,
  .section-content,
  .section-accent,
  .section-light-alt {
    padding: var(--space-2xl) var(--space-md);
  }

  blockquote {
    padding-left: var(--space-md);
    font-size: 1rem;
  }

  table {
    font-size: 0.875rem;
  }

  th, td {
    padding: var(--space-sm);
  }
}

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

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .section-hero,
  .section-content,
  .section-accent,
  .section-light-alt {
    padding: var(--space-xl) var(--space-sm);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

@media print {
  .no-print {
    display: none;
  }

  a {
    text-decoration: underline;
  }

  body {
    background: white;
    color: black;
  }

  .section-hero,
  .section-accent {
    background: white;
    color: black;
    border: 1px solid #ccc;
  }

  .section-hero h1,
  .section-accent h2 {
    color: black;
  }
}
.header-liquidity-portal {
  background: var(--color-bg-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: static;
  top: 0;
  z-index: 1000;
  width: 100%;
}

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

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

.header-liquidity-portal-brand:hover {
  transform: translateY(-2px);
}

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

.header-liquidity-portal-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text-light);
  letter-spacing: -0.5px;
}

.header-liquidity-portal-desktop-nav {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 0;
  flex-grow: 1;
  justify-content: center;
}

.header-liquidity-portal-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 500;
  color: var(--color-text-secondary-dark);
  text-decoration: none;
  padding: 0.75rem 1.25rem;
  transition: all var(--transition-base);
  border-radius: var(--radius-sm);
}

.header-liquidity-portal-nav-link:hover {
  color: var(--color-text-light);
  background: rgba(37, 99, 235, 0.1);
}

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

.header-liquidity-portal-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.header-liquidity-portal-mobile-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  gap: 0.4rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.header-liquidity-portal-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-light);
  border-radius: 1px;
  transition: all var(--transition-base);
}

.header-liquidity-portal-mobile-toggle:hover span {
  background: var(--color-primary);
}

.header-liquidity-portal-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #0a0f1e 0%, #1a2a4a 100%);
  backdrop-filter: blur(10px);
  padding-top: clamp(4rem, 8vh, 5rem);
  padding-bottom: 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-base);
  z-index: 999;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

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

.header-liquidity-portal-mobile-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  padding: 0 clamp(1rem, 4vw, 2rem);
  margin-bottom: 2rem;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: clamp(4rem, 8vh, 5rem);
  background: var(--color-bg-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.header-liquidity-portal-mobile-close:hover {
  color: var(--color-primary);
}

.header-liquidity-portal-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 2rem clamp(1rem, 4vw, 2rem);
  flex-grow: 1;
}

.header-liquidity-portal-mobile-link {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 500;
  color: var(--color-text-light);
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-base);
  display: block;
}

.header-liquidity-portal-mobile-link:hover {
  color: var(--color-primary);
  padding-left: 0.5rem;
}

.header-liquidity-portal-mobile-cta {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-text-light);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  text-align: center;
  margin: 1rem clamp(1rem, 4vw, 2rem) 0;
  display: block;
}

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

@media (min-width: 768px) {
  .header-liquidity-portal-desktop-nav {
    display: flex;
  }

  .header-liquidity-portal-cta-button {
    display: block;
  }

  .header-liquidity-portal-mobile-toggle {
    display: none;
  }

  .header-liquidity-portal-mobile-menu {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .header-liquidity-portal-nav-link {
    padding: 0.75rem 1rem;
  }
}

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

    .cashflow-hub {
  width: 100%;
}

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

.hero-section-index {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a1f35 100%);
  color: #ffffff;
  padding: clamp(4rem, 8vw, 7rem) var(--space-lg);
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero-section-index::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #2563eb 0%, transparent 70%);
  opacity: 0.08;
  border-radius: 50%;
  z-index: 0;
}

.hero-section-index::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #059669 0%, transparent 70%);
  opacity: 0.05;
  border-radius: 50%;
  z-index: 0;
}

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

.hero-content-index {
  max-width: 750px;
}

.hero-title-index {
  font-size: clamp(2.25rem, 5vw + 1rem, 3.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--space-md);
  line-height: 1.1;
}

.hero-subtitle-index {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #cbd5e1;
  margin-bottom: var(--space-lg);
  line-height: 1.6;
  font-weight: 400;
}

.hero-keywords-index {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.keyword-badge-index {
  display: inline-block;
  background: rgba(37, 99, 235, 0.15);
  color: #60a5fa;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  border: 1px solid rgba(37, 99, 235, 0.3);
  font-weight: 500;
  transition: all var(--transition-fast);
}

.keyword-badge-index:hover {
  background: rgba(37, 99, 235, 0.25);
  border-color: rgba(37, 99, 235, 0.5);
}

.hero-stats-index {
  display: flex;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.stat-item-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

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

.stat-label-index {
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.btn-primary-index {
  display: inline-block;
  background: #2563eb;
  color: #ffffff;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
  border: 2px solid #2563eb;
  font-size: 1rem;
  cursor: pointer;
}

.btn-primary-index:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
  text-decoration: none;
}

.btn-secondary-index {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-size: 1rem;
  cursor: pointer;
}

.btn-secondary-index:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

@media (max-width: 768px) {
  .hero-section-index {
    min-height: 400px;
    padding: clamp(3rem, 6vw, 5rem) var(--space-md);
  }

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

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

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

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

  .btn-primary-index,
  .btn-secondary-index {
    width: 100%;
    text-align: center;
  }
}

.featured-section-index {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) var(--space-lg);
  overflow: hidden;
}

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

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

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

.featured-title-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.featured-subtitle-index {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.featured-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.card-image-index {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #f1f5f9;
}

.card-img-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

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

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

.card-title-index {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #1e293b;
  font-weight: 700;
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.3;
}

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

.card-link-index {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
  align-self: flex-start;
}

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

.featured-cta-index {
  text-align: center;
  margin-top: var(--space-lg);
}

.btn-outline-index {
  display: inline-block;
  background: transparent;
  color: #2563eb;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
  border: 2px solid #2563eb;
  font-size: 1rem;
  cursor: pointer;
}

.btn-outline-index:hover {
  background: #2563eb;
  color: #ffffff;
  text-decoration: none;
}

@media (max-width: 768px) {
  .featured-section-index {
    padding: clamp(2.5rem, 6vw, 4rem) var(--space-md);
  }

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

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

.about-section-index {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 6rem) var(--space-lg);
  overflow: hidden;
}

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

.about-text-index {
  flex: 1 1 45%;
  min-width: 280px;
}

.about-title-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.about-intro-index {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #64748b;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.about-key-points-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.point-item-index {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.point-icon-index {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #dcfce7;
  color: #059669;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.point-text-index {
  flex: 1;
}

.point-title-index {
  font-size: 1.05rem;
  color: #1e293b;
  font-weight: 600;
  margin: 0 0 var(--space-xs) 0;
}

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

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

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

@media (max-width: 768px) {
  .about-section-index {
    padding: clamp(2.5rem, 6vw, 4rem) var(--space-md);
  }

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

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

  .about-img-index {
    max-height: 300px;
  }
}

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

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

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

.features-title-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.features-subtitle-index {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.feature-card-index {
  flex: 1 1 280px;
  max-width: 360px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  text-align: center;
  border: 1px solid #f1f5f9;
}

.feature-card-index:hover {
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
  border-color: #e2e8f0;
}

.feature-icon-index {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
  border-radius: var(--radius-lg);
  color: #2563eb;
  font-size: 1.75rem;
  margin: 0 auto var(--space-md) auto;
  transition: all var(--transition-fast);
}

.feature-card-index:hover .feature-icon-index {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  transform: scale(1.1);
}

.feature-card-title-index {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #1e293b;
  font-weight: 700;
  margin: 0 0 var(--space-sm) 0;
}

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

@media (max-width: 768px) {
  .features-section-index {
    padding: clamp(2.5rem, 6vw, 4rem) var(--space-md);
  }

  .features-grid-index {
    flex-direction: column;
    align-items: center;
  }

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

.benefits-section-index {
  background: #1e293b;
  padding: clamp(4rem, 8vw, 6rem) var(--space-lg);
  overflow: hidden;
  color: #ffffff;
}

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

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

.benefits-title-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #ffffff;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.benefits-intro-index {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.comparison-block-index {
  flex: 1 1 300px;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
}

.comparison-title-index {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #ffffff;
  font-weight: 700;
  margin: 0 0 var(--space-md) 0;
}

.comparison-text-index {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #cbd5e1;
  margin: 0 0 var(--space-md) 0;
  line-height: 1.7;
}

.comparison-example-index {
  font-size: clamp(0.825rem, 1.3vw, 0.95rem);
  color: #94a3b8;
  margin: 0;
  padding: var(--space-sm);
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid #2563eb;
  border-radius: var(--radius-sm);
  line-height: 1.6;
}

.comparison-block-index:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .benefits-section-index {
    padding: clamp(2.5rem, 6vw, 4rem) var(--space-md);
  }

  .benefits-comparison-index {
    flex-direction: column;
    align-items: center;
  }

  .comparison-block-index {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.how-it-works-section-index {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 6rem) var(--space-lg);
  overflow: hidden;
}

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

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

.how-it-works-title-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.how-it-works-subtitle-index {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.step-item-index {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all var(--transition-base);
}

.step-item-index:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  transform: translateX(4px);
}

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

.step-content-index {
  flex: 1;
}

.step-title-index {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #1e293b;
  font-weight: 700;
  margin: 0 0 var(--space-sm) 0;
}

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

@media (max-width: 768px) {
  .how-it-works-section-index {
    padding: clamp(2.5rem, 6vw, 4rem) var(--space-md);
  }

  .step-item-index {
    flex-direction: column;
    gap: var(--space-md);
  }

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

.faq-section-index {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) var(--space-lg);
  overflow: hidden;
}

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

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

.faq-title-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.faq-subtitle-index {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.faq-items-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.faq-item-index {
  padding: clamp(1.5rem, 2vw, 2rem);
  background: #f8fafc;
  border-radius: var(--radius-lg);
  border-left: 4px solid #2563eb;
  transition: all var(--transition-base);
}

.faq-item-index:hover {
  background: #f1f5f9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question-index {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #1e293b;
  font-weight: 700;
  margin: 0 0 var(--space-sm) 0;
  cursor: pointer;
  user-select: none;
}

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

@media (max-width: 768px) {
  .faq-section-index {
    padding: clamp(2.5rem, 6vw, 4rem) var(--space-md);
  }

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

  .faq-item-index {
    padding: clamp(1rem, 2vw, 1.5rem);
  }
}

.cta-section-index {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a1f35 100%);
  padding: clamp(4rem, 8vw, 6rem) var(--space-lg);
  overflow: hidden;
  color: #ffffff;
}

.cta-content-index {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.cta-box-index {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
  max-width: 600px;
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
}

.cta-box-index:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.15);
}

.cta-title-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #ffffff;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.cta-text-index {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #cbd5e1;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.cta-button-index {
  display: inline-block;
  background: #2563eb;
  color: #ffffff;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
  border: 2px solid #2563eb;
  font-size: 1rem;
  cursor: pointer;
}

.cta-button-index:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
  text-decoration: none;
}

@media (max-width: 768px) {
  .cta-section-index {
    padding: clamp(2.5rem, 6vw, 4rem) var(--space-md);
  }

  .cta-content-index {
    min-height: 200px;
  }

  .cta-box-index {
    padding: clamp(1.5rem, 3vw, 2rem);
  }
}

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

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

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

.cookie-buttons-index {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.cookie-accept-index,
.cookie-decline-index {
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  font-family: var(--font-primary);
}

.cookie-accept-index {
  background: #2563eb;
  color: #ffffff;
  border: 1px solid #2563eb;
}

.cookie-accept-index:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
}

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

.cookie-decline-index:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .cookie-banner-index {
    flex-direction: column;
    padding: clamp(0.75rem, 2vw, 1.25rem);
    gap: var(--space-sm);
  }

  .cookie-text-index {
    min-width: auto;
    width: 100%;
    text-align: center;
    order: 1;
  }

  .cookie-buttons-index {
    width: 100%;
    order: 2;
    justify-content: center;
  }

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

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

  .hero-section-index,
  .featured-section-index,
  .about-section-index,
  .features-section-index,
  .benefits-section-index,
  .how-it-works-section-index,
  .faq-section-index,
  .cta-section-index {
    padding: clamp(2rem, 5vw, 3rem) var(--space-sm);
  }

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

  .featured-title-index,
  .about-title-index,
  .features-title-index,
  .benefits-title-index,
  .how-it-works-title-index,
  .faq-title-index,
  .cta-title-index {
    font-size: 1.5rem;
  }

  .keyword-badge-index {
    font-size: 0.75rem;
    padding: 0.35rem 0.6rem;
  }

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

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

  .btn-primary-index,
  .btn-secondary-index,
  .btn-outline-index {
    width: 100%;
  }

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

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

  .step-item-index {
    padding: 1rem;
  }

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

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

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

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

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

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

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

.footer-nav h4,
.footer-contact h4,
.footer-legal h4 {
  color: var(--color-text-light);
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.3px;
}

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

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

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

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

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(1rem, 3vw, 2rem);
}

.footer-copyright p {
  color: var(--color-text-secondary-dark);
  font-family: var(--font-primary);
  font-size: clamp(0.8125rem, 0.9vw, 0.875rem);
  line-height: 1.6;
  margin: 0;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .footer-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: flex-start;
  }

  .footer-about {
    flex: 0 1 auto;
    min-width: 300px;
  }

  .footer-nav {
    flex: 0 1 auto;
    min-width: 180px;
  }

  .footer-contact {
    flex: 0 1 auto;
    min-width: 280px;
  }

  .footer-legal {
    flex: 0 1 auto;
    min-width: 180px;
  }

  .footer-copyright {
    flex: 1 1 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: clamp(1.5rem, 3vw, 2.5rem);
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    gap: clamp(3rem, 5vw, 5rem);
  }

  .footer-about {
    min-width: 320px;
  }

  .footer-nav,
  .footer-legal {
    min-width: 200px;
  }

  .footer-contact {
    min-width: 300px;
  }
}
    

.category-page-cashflow-fundamentals {
  background: var(--color-bg-secondary);
}

.hero-section-cashflow-fundamentals {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a2744 100%);
  color: var(--color-text-light);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-cashflow-fundamentals::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #2563eb 0%, transparent 70%);
  opacity: 0.08;
  border-radius: 50%;
}

.hero-section-cashflow-fundamentals::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #059669 0%, transparent 70%);
  opacity: 0.06;
  border-radius: 50%;
}

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

.hero-content-cashflow-fundamentals {
  max-width: 700px;
}

.hero-title-cashflow-fundamentals {
  color: var(--color-text-light);
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-subtitle-cashflow-fundamentals {
  color: #cbd5e1;
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.8;
  font-weight: 400;
}

.hero-keywords-cashflow-fundamentals {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.5rem, 2vw, 1rem);
}

.keyword-tag-cashflow-fundamentals {
  background: rgba(37, 99, 235, 0.12);
  color: #60a5fa;
  padding: clamp(0.4rem, 1vw, 0.6rem) clamp(0.8rem, 2vw, 1.2rem);
  border-radius: 20px;
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  border: 1px solid #2563eb;
  transition: all 0.3s ease;
  font-weight: 500;
}

.keyword-tag-cashflow-fundamentals:hover {
  background: #2563eb;
  color: var(--color-text-light);
  transform: translateY(-2px);
}

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

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

.posts-header-cashflow-fundamentals {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.posts-title-cashflow-fundamentals {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 700;
}

.posts-subtitle-cashflow-fundamentals {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.7;
}

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

.card-cashflow-fundamentals {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  flex: 1 1 clamp(280px, 100%, 380px);
  max-width: 380px;
}

.card-cashflow-fundamentals:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  transform: translateY(-6px);
}

.card-image-cashflow-fundamentals {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.card-title-cashflow-fundamentals {
  color: #1e293b;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  margin: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem) 0.5rem;
  font-weight: 700;
  line-height: 1.35;
}

.card-description-cashflow-fundamentals {
  color: #64748b;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  margin: 0 clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem);
  line-height: 1.6;
  flex-grow: 1;
}

.card-meta-cashflow-fundamentals {
  display: flex;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  margin: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem) 0;
  flex-wrap: wrap;
  border-top: 1px solid #e2e8f0;
  padding-top: clamp(0.75rem, 1.5vw, 1rem);
}

.card-meta-item-cashflow-fundamentals {
  color: #94a3b8;
  font-size: clamp(0.8rem, 1.2vw, 0.9rem);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.card-meta-item-cashflow-fundamentals i {
  color: #2563eb;
  font-size: 0.9em;
}

.card-link-cashflow-fundamentals {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  margin: 0 clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem);
  padding: clamp(0.5rem, 1vw, 0.75rem) 0;
  border-top: 1px solid #e2e8f0;
  padding-top: clamp(0.75rem, 1.5vw, 1rem);
  display: inline-block;
  transition: all 0.3s ease;
}

.card-link-cashflow-fundamentals:hover {
  color: #1d4ed8;
  transform: translateX(4px);
}

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

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

.insights-header-cashflow-fundamentals {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.insights-title-cashflow-fundamentals {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0;
  font-weight: 700;
}

.insights-text-cashflow-fundamentals {
  max-width: 750px;
  margin: 0 auto;
}

.insights-paragraph-cashflow-fundamentals {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.85;
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
}

.insights-paragraph-cashflow-fundamentals:last-child {
  margin-bottom: 0;
}

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

.checklist-content-cashflow-fundamentals {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 750px;
  margin: 0 auto;
}

.checklist-header-cashflow-fundamentals {
  text-align: center;
}

.checklist-title-cashflow-fundamentals {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.checklist-subtitle-cashflow-fundamentals {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
}

.checklist-items-cashflow-fundamentals {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.checklist-item-cashflow-fundamentals {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.checklist-check-cashflow-fundamentals {
  color: #059669;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.checklist-text-cashflow-fundamentals {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.7;
}

.checklist-text-cashflow-fundamentals strong {
  color: #1e293b;
  font-weight: 600;
}

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

  .hero-section-cashflow-fundamentals::before {
    width: 350px;
    height: 350px;
    right: -5%;
    top: -20%;
  }

  .hero-section-cashflow-fundamentals::after {
    width: 250px;
    height: 250px;
    left: -10%;
  }

  .posts-section-cashflow-fundamentals,
  .insights-section-cashflow-fundamentals,
  .checklist-section-cashflow-fundamentals {
    padding: 2.5rem 0;
  }

  .card-cashflow-fundamentals {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .posts-grid-cashflow-fundamentals {
    gap: 1.25rem;
  }

  .keyword-tag-cashflow-fundamentals {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }
}

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

  .hero-section-cashflow-fundamentals::before {
    width: 250px;
    height: 250px;
    right: -15%;
  }

  .hero-section-cashflow-fundamentals::after {
    width: 200px;
    height: 200px;
  }

  .hero-keywords-cashflow-fundamentals {
    gap: 0.5rem;
  }

  .keyword-tag-cashflow-fundamentals {
    padding: 0.35rem 0.7rem;
    font-size: 0.8rem;
  }

  .posts-grid-cashflow-fundamentals {
    gap: 1rem;
  }

  .card-cashflow-fundamentals {
    flex: 1 1 100%;
  }

  .card-image-cashflow-fundamentals {
    height: 180px;
  }

  .posts-section-cashflow-fundamentals,
  .insights-section-cashflow-fundamentals,
  .checklist-section-cashflow-fundamentals {
    padding: 1.75rem 0;
  }

  .checklist-items-cashflow-fundamentals {
    gap: 1rem;
  }

  .checklist-item-cashflow-fundamentals {
    gap: 0.75rem;
  }
}

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

.card-cashflow-fundamentals {
  animation: fadeInUp 0.6s ease-out;
}

.card-cashflow-fundamentals:nth-child(1) {
  animation-delay: 0.1s;
}

.card-cashflow-fundamentals:nth-child(2) {
  animation-delay: 0.2s;
}

.card-cashflow-fundamentals:nth-child(3) {
  animation-delay: 0.3s;
}

.card-cashflow-fundamentals:nth-child(4) {
  animation-delay: 0.4s;
}

.main-cashflow-kategorien-erklaert {
  width: 100%;
  overflow: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

p {
  line-height: 1.75;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

a {
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

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

.hero-section-cashflow-kategorien-erklaert::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #2563eb 0%, transparent 70%);
  opacity: 0.08;
  border-radius: 9999px;
  z-index: 0;
}

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

.breadcrumbs-cashflow-kategorien-erklaert {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-cashflow-kategorien-erklaert a {
  color: #06b6d4;
  text-decoration: none;
}

.breadcrumbs-cashflow-kategorien-erklaert a:hover {
  color: #0891b2;
  text-decoration: underline;
}

.breadcrumbs-cashflow-kategorien-erklaert span {
  color: #64748b;
}

.hero-content-cashflow-kategorien-erklaert {
  max-width: 700px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.hero-title-cashflow-kategorien-erklaert {
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

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

.hero-meta-cashflow-kategorien-erklaert {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.meta-item-cashflow-kategorien-erklaert {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.meta-separator-cashflow-kategorien-erklaert {
  color: #475569;
}

.hero-image-wrapper-cashflow-kategorien-erklaert {
  width: 100%;
  max-height: 500px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
}

.hero-image-cashflow-kategorien-erklaert {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

.intro-text-cashflow-kategorien-erklaert {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-heading-cashflow-kategorien-erklaert {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-paragraph-cashflow-kategorien-erklaert {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.8;
}

.intro-image-cashflow-kategorien-erklaert {
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-img-cashflow-kategorien-erklaert {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.operative-section-cashflow-kategorien-erklaert {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.operative-content-cashflow-kategorien-erklaert {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.operative-text-cashflow-kategorien-erklaert {
  flex: 1 1 50%;
  max-width: 50%;
}

.operative-heading-cashflow-kategorien-erklaert {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.operative-paragraph-cashflow-kategorien-erklaert {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.8;
}

.operative-highlight-cashflow-kategorien-erklaert {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0.04) 100%);
  border-left: 4px solid #2563eb;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.highlight-text-cashflow-kategorien-erklaert {
  color: #1e293b;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: 1.7;
  margin: 0;
}

.operative-image-cashflow-kategorien-erklaert {
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.operative-img-cashflow-kategorien-erklaert {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.investment-section-cashflow-kategorien-erklaert {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.investment-content-cashflow-kategorien-erklaert {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.investment-image-cashflow-kategorien-erklaert {
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.investment-img-cashflow-kategorien-erklaert {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.investment-text-cashflow-kategorien-erklaert {
  flex: 1 1 50%;
  max-width: 50%;
}

.investment-heading-cashflow-kategorien-erklaert {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.investment-paragraph-cashflow-kategorien-erklaert {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.8;
}

.investment-highlight-cashflow-kategorien-erklaert {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.08) 0%, rgba(5, 150, 105, 0.04) 100%);
  border-left: 4px solid #059669;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.financing-section-cashflow-kategorien-erklaert {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.financing-content-cashflow-kategorien-erklaert {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.financing-text-cashflow-kategorien-erklaert {
  flex: 1 1 50%;
  max-width: 50%;
}

.financing-heading-cashflow-kategorien-erklaert {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.financing-paragraph-cashflow-kategorien-erklaert {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.8;
}

.financing-highlight-cashflow-kategorien-erklaert {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.08) 0%, rgba(220, 38, 38, 0.04) 100%);
  border-left: 4px solid #dc2626;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.financing-image-cashflow-kategorien-erklaert {
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.financing-img-cashflow-kategorien-erklaert {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

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

.comparison-header-cashflow-kategorien-erklaert {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.comparison-title-cashflow-kategorien-erklaert {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

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

.comparison-table-wrapper-cashflow-kategorien-erklaert {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.comparison-table-cashflow-kategorien-erklaert {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
}

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

.table-cell-cashflow-kategorien-erklaert {
  padding: clamp(1rem, 2vw, 1.5rem);
  border-bottom: 1px solid #e2e8f0;
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.comparison-table-cashflow-kategorien-erklaert tbody tr:hover {
  background: #f8fafc;
}

.patterns-section-cashflow-kategorien-erklaert {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.patterns-header-cashflow-kategorien-erklaert {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.patterns-title-cashflow-kategorien-erklaert {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.patterns-subtitle-cashflow-kategorien-erklaert {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  margin: 0;
}

.patterns-cards-cashflow-kategorien-erklaert {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.pattern-card-cashflow-kategorien-erklaert {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.pattern-card-cashflow-kategorien-erklaert:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.pattern-card-title-cashflow-kategorien-erklaert {
  color: #1e293b;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  margin-top: 0;
}

.pattern-card-text-cashflow-kategorien-erklaert {
  color: #2563eb;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  margin-bottom: clamp(1rem, 1.5vw, 1.25rem);
}

.pattern-card-description-cashflow-kategorien-erklaert {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1rem);
  margin: 0;
  line-height: 1.6;
}

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

.conclusion-content-cashflow-kategorien-erklaert {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-cashflow-kategorien-erklaert {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}

.conclusion-text-cashflow-kategorien-erklaert {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.conclusion-highlight-cashflow-kategorien-erklaert {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0.04) 100%);
  border-left: 4px solid #2563eb;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  margin: clamp(2rem, 3vw, 2.5rem) 0;
}

.conclusion-highlight-text-cashflow-kategorien-erklaert {
  color: #1e293b;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: 1.8;
  margin: 0;
}

.cta-link-cashflow-kategorien-erklaert {
  display: inline-block;
  color: #2563eb;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  margin-top: clamp(1rem, 2vw, 1.5rem);
  text-decoration: none;
  border-bottom: 2px solid #2563eb;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-link-cashflow-kategorien-erklaert:hover {
  color: #1d4ed8;
  border-bottom-color: #1d4ed8;
}

.disclaimer-section-cashflow-kategorien-erklaert {
  background: #f8fafc;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.disclaimer-content-cashflow-kategorien-erklaert {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-cashflow-kategorien-erklaert {
  color: #1e293b;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  margin-top: 0;
}

.disclaimer-text-cashflow-kategorien-erklaert {
  color: #64748b;
  font-size: clamp(0.813rem, 0.95vw, 1rem);
  line-height: 1.7;
  margin: 0;
}

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

.related-header-cashflow-kategorien-erklaert {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-title-cashflow-kategorien-erklaert {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.related-subtitle-cashflow-kategorien-erklaert {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  margin: 0;
}

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

.related-card-cashflow-kategorien-erklaert {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.related-card-cashflow-kategorien-erklaert:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.related-card-image-cashflow-kategorien-erklaert {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f1f5f9;
}

.related-img-cashflow-kategorien-erklaert {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.related-card-cashflow-kategorien-erklaert:hover .related-img-cashflow-kategorien-erklaert {
  transform: scale(1.05);
}

.related-card-content-cashflow-kategorien-erklaert {
  padding: clamp(1.25rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.related-card-title-cashflow-kategorien-erklaert {
  color: #1e293b;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  margin-top: 0;
  line-height: 1.4;
}

.related-card-description-cashflow-kategorien-erklaert {
  color: #64748b;
  font-size: clamp(0.813rem, 1vw, 0.95rem);
  line-height: 1.6;
  margin-bottom: auto;
  margin-top: 0;
}

.related-link-cashflow-kategorien-erklaert {
  color: #2563eb;
  font-weight: 600;
  font-size: clamp(0.813rem, 1vw, 0.95rem);
  text-decoration: none;
  margin-top: clamp(1rem, 1.5vw, 1.25rem);
  display: inline-block;
  border-bottom: 2px solid #2563eb;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.related-link-cashflow-kategorien-erklaert:hover {
  color: #1d4ed8;
  border-bottom-color: #1d4ed8;
}

@media (max-width: 768px) {
  .hero-section-cashflow-kategorien-erklaert {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  .intro-content-cashflow-kategorien-erklaert,
  .operative-content-cashflow-kategorien-erklaert,
  .investment-content-cashflow-kategorien-erklaert,
  .financing-content-cashflow-kategorien-erklaert {
    flex-direction: column;
  }

  .intro-text-cashflow-kategorien-erklaert,
  .intro-image-cashflow-kategorien-erklaert,
  .operative-text-cashflow-kategorien-erklaert,
  .operative-image-cashflow-kategorien-erklaert,
  .investment-text-cashflow-kategorien-erklaert,
  .investment-image-cashflow-kategorien-erklaert,
  .financing-text-cashflow-kategorien-erklaert,
  .financing-image-cashflow-kategorien-erklaert {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-image-cashflow-kategorien-erklaert,
  .operative-image-cashflow-kategorien-erklaert,
  .investment-image-cashflow-kategorien-erklaert,
  .financing-image-cashflow-kategorien-erklaert {
    min-height: 250px;
  }

  .comparison-table-cashflow-kategorien-erklaert {
    font-size: 0.875rem;
  }

  .table-header-cashflow-kategorien-erklaert,
  .table-cell-cashflow-kategorien-erklaert {
    padding: 0.75rem;
  }

  .patterns-cards-cashflow-kategorien-erklaert {
    flex-direction: column;
    align-items: center;
  }

  .pattern-card-cashflow-kategorien-erklaert {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-cards-wrapper-cashflow-kategorien-erklaert {
    flex-direction: column;
    align-items: center;
  }

  .related-card-cashflow-kategorien-erklaert {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-cashflow-kategorien-erklaert {
    font-size: 0.75rem;
  }

  .hero-title-cashflow-kategorien-erklaert {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .operative-heading-cashflow-kategorien-erklaert,
  .investment-heading-cashflow-kategorien-erklaert,
  .financing-heading-cashflow-kategorien-erklaert {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
  }

  .comparison-title-cashflow-kategorien-erklaert,
  .patterns-title-cashflow-kategorien-erklaert,
  .conclusion-title-cashflow-kategorien-erklaert,
  .related-title-cashflow-kategorien-erklaert {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
  }

  .operative-section-cashflow-kategorien-erklaert,
  .investment-section-cashflow-kategorien-erklaert,
  .financing-section-cashflow-kategorien-erklaert,
  .comparison-section-cashflow-kategorien-erklaert,
  .patterns-section-cashflow-kategorien-erklaert,
  .conclusion-section-cashflow-kategorien-erklaert,
  .disclaimer-section-cashflow-kategorien-erklaert,
  .related-section-cashflow-kategorien-erklaert {
    padding: clamp(2rem, 4vw, 3rem) 0;
  }
}

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

.hero-section-cashflow-aufbau-schritt-fuer-schritt {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a1f35 100%);
  color: #ffffff;
  padding: clamp(2rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-cashflow-aufbau-schritt-fuer-schritt::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

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

.breadcrumbs-cashflow-aufbau-schritt-fuer-schritt {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #94a3b8;
}

.breadcrumb-link-cashflow-aufbau-schritt-fuer-schritt {
  color: #2563eb;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb-link-cashflow-aufbau-schritt-fuer-schritt:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.breadcrumb-divider-cashflow-aufbau-schritt-fuer-schritt {
  color: #64748b;
}

.breadcrumb-current-cashflow-aufbau-schritt-fuer-schritt {
  color: #e2e8f0;
}

.hero-content-cashflow-aufbau-schritt-fuer-schritt {
  max-width: 700px;
}

.hero-title-cashflow-aufbau-schritt-fuer-schritt {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

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

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

.meta-item-cashflow-aufbau-schritt-fuer-schritt {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: 0.9rem;
}

.meta-item-cashflow-aufbau-schritt-fuer-schritt i {
  color: #2563eb;
  font-size: 1rem;
}

.hero-image-cashflow-aufbau-schritt-fuer-schritt {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.hero-img-cashflow-aufbau-schritt-fuer-schritt {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero-section-cashflow-aufbau-schritt-fuer-schritt {
    padding: clamp(1.5rem, 4vw, 2.5rem) 0;
  }

  .hero-section-cashflow-aufbau-schritt-fuer-schritt::before {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
  }

  .hero-meta-cashflow-aufbau-schritt-fuer-schritt {
    flex-direction: column;
    gap: 1rem;
  }
}

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

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

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

.intro-image-cashflow-aufbau-schritt-fuer-schritt {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-heading-cashflow-aufbau-schritt-fuer-schritt {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
}

.intro-paragraph-cashflow-aufbau-schritt-fuer-schritt {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #64748b;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-img-cashflow-aufbau-schritt-fuer-schritt {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

@media (max-width: 768px) {
  .intro-section-cashflow-aufbau-schritt-fuer-schritt {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .intro-wrapper-cashflow-aufbau-schritt-fuer-schritt {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

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

.structure-section-cashflow-aufbau-schritt-fuer-schritt {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.structure-wrapper-cashflow-aufbau-schritt-fuer-schritt {
  display: flex;
  flex-direction: row-reverse;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.structure-text-cashflow-aufbau-schritt-fuer-schritt {
  flex: 1 1 50%;
  max-width: 50%;
}

.structure-image-cashflow-aufbau-schritt-fuer-schritt {
  flex: 1 1 50%;
  max-width: 50%;
}

.structure-heading-cashflow-aufbau-schritt-fuer-schritt {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
}

.structure-paragraph-cashflow-aufbau-schritt-fuer-schritt {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #64748b;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.structure-list-cashflow-aufbau-schritt-fuer-schritt {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.list-item-cashflow-aufbau-schritt-fuer-schritt {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.list-number-cashflow-aufbau-schritt-fuer-schritt {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #2563eb;
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
  line-height: 1;
}

.list-content-cashflow-aufbau-schritt-fuer-schritt {
  flex: 1;
}

.list-title-cashflow-aufbau-schritt-fuer-schritt {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.list-text-cashflow-aufbau-schritt-fuer-schritt {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

.structure-img-cashflow-aufbau-schritt-fuer-schritt {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

@media (max-width: 768px) {
  .structure-section-cashflow-aufbau-schritt-fuer-schritt {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .structure-wrapper-cashflow-aufbau-schritt-fuer-schritt {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .structure-text-cashflow-aufbau-schritt-fuer-schritt,
  .structure-image-cashflow-aufbau-schritt-fuer-schritt {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.steps-section-cashflow-aufbau-schritt-fuer-schritt {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.steps-header-cashflow-aufbau-schritt-fuer-schritt {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.steps-heading-cashflow-aufbau-schritt-fuer-schritt {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.steps-subheading-cashflow-aufbau-schritt-fuer-schritt {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #64748b;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

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

.step-card-cashflow-aufbau-schritt-fuer-schritt {
  background: #f8fafc;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid #e2e8f0;
  transition: all var(--transition-base);
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.step-card-cashflow-aufbau-schritt-fuer-schritt:hover {
  box-shadow: var(--shadow-lg);
  border-color: #2563eb;
  transform: translateY(-4px);
}

.step-number-box-cashflow-aufbau-schritt-fuer-schritt {
  flex-shrink: 0;
}

.step-number-cashflow-aufbau-schritt-fuer-schritt {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #2563eb;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.step-content-cashflow-aufbau-schritt-fuer-schritt {
  flex: 1;
}

.step-title-cashflow-aufbau-schritt-fuer-schritt {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
  margin-top: 0;
  font-family: 'Playfair Display', serif;
}

.step-text-cashflow-aufbau-schritt-fuer-schritt {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .steps-section-cashflow-aufbau-schritt-fuer-schritt {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .steps-wrapper-cashflow-aufbau-schritt-fuer-schritt {
    grid-template-columns: 1fr;
  }
}

.detail-section-cashflow-aufbau-schritt-fuer-schritt {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.detail-text-cashflow-aufbau-schritt-fuer-schritt {
  flex: 1 1 50%;
  max-width: 50%;
}

.detail-image-cashflow-aufbau-schritt-fuer-schritt {
  flex: 1 1 50%;
  max-width: 50%;
}

.detail-heading-cashflow-aufbau-schritt-fuer-schritt {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
}

.detail-paragraph-cashflow-aufbau-schritt-fuer-schritt {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #64748b;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.detail-highlight-cashflow-aufbau-schritt-fuer-schritt {
  background: #e0e7ff;
  border-left: 4px solid #2563eb;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-md);
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.highlight-text-cashflow-aufbau-schritt-fuer-schritt {
  color: #1e293b;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.7;
  margin: 0;
}

.detail-img-cashflow-aufbau-schritt-fuer-schritt {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

@media (max-width: 768px) {
  .detail-section-cashflow-aufbau-schritt-fuer-schritt {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .detail-wrapper-cashflow-aufbau-schritt-fuer-schritt {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .detail-text-cashflow-aufbau-schritt-fuer-schritt,
  .detail-image-cashflow-aufbau-schritt-fuer-schritt {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.common-section-cashflow-aufbau-schritt-fuer-schritt {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.common-header-cashflow-aufbau-schritt-fuer-schritt {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.common-heading-cashflow-aufbau-schritt-fuer-schritt {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.common-subheading-cashflow-aufbau-schritt-fuer-schritt {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #64748b;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.common-wrapper-cashflow-aufbau-schritt-fuer-schritt {
  display: flex;
  flex-direction: row-reverse;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.common-text-cashflow-aufbau-schritt-fuer-schritt {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.common-image-cashflow-aufbau-schritt-fuer-schritt {
  flex: 1 1 50%;
  max-width: 50%;
}

.error-item-cashflow-aufbau-schritt-fuer-schritt {
  background: #fef2f2;
  border-left: 4px solid #dc2626;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-md);
}

.error-title-cashflow-aufbau-schritt-fuer-schritt {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: #991b1b;
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.error-text-cashflow-aufbau-schritt-fuer-schritt {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #7f1d1d;
  line-height: 1.7;
  margin: 0;
}

.common-img-cashflow-aufbau-schritt-fuer-schritt {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

@media (max-width: 768px) {
  .common-section-cashflow-aufbau-schritt-fuer-schritt {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .common-wrapper-cashflow-aufbau-schritt-fuer-schritt {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .common-text-cashflow-aufbau-schritt-fuer-schritt,
  .common-image-cashflow-aufbau-schritt-fuer-schritt {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-cashflow-aufbau-schritt-fuer-schritt {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-cashflow-aufbau-schritt-fuer-schritt {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-heading-cashflow-aufbau-schritt-fuer-schritt {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  text-align: center;
}

.conclusion-paragraph-cashflow-aufbau-schritt-fuer-schritt {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #64748b;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.cta-box-cashflow-aufbau-schritt-fuer-schritt {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  text-align: center;
  margin-top: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-lg);
}

.cta-title-cashflow-aufbau-schritt-fuer-schritt {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  margin-top: 0;
}

.cta-text-cashflow-aufbau-schritt-fuer-schritt {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #dbeafe;
  line-height: 1.6;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.cta-button-cashflow-aufbau-schritt-fuer-schritt {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: #2563eb;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
}

.cta-button-cashflow-aufbau-schritt-fuer-schritt:hover {
  background: #f0f4f8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
  .conclusion-section-cashflow-aufbau-schritt-fuer-schritt {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }
}

.disclaimer-section-cashflow-aufbau-schritt-fuer-schritt {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-box-cashflow-aufbau-schritt-fuer-schritt {
  max-width: 800px;
  margin: 0 auto;
  background: #f0fdf4;
  border-left: 4px solid #059669;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
}

.disclaimer-heading-cashflow-aufbau-schritt-fuer-schritt {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #047857;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  margin-top: 0;
}

.disclaimer-text-cashflow-aufbau-schritt-fuer-schritt {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #166534;
  line-height: 1.7;
  margin: 0;
}

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

.related-section-cashflow-aufbau-schritt-fuer-schritt {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-cashflow-aufbau-schritt-fuer-schritt {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-heading-cashflow-aufbau-schritt-fuer-schritt {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.related-subheading-cashflow-aufbau-schritt-fuer-schritt {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #64748b;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.related-cards-cashflow-aufbau-schritt-fuer-schritt {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin: 0;
}

.related-card-cashflow-aufbau-schritt-fuer-schritt {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.related-card-cashflow-aufbau-schritt-fuer-schritt:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

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

.related-image-cashflow-aufbau-schritt-fuer-schritt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-base);
}

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

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

.related-title-cashflow-aufbau-schritt-fuer-schritt {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  margin-top: 0;
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
}

.related-description-cashflow-aufbau-schritt-fuer-schritt {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

@media (max-width: 768px) {
  .related-section-cashflow-aufbau-schritt-fuer-schritt {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .related-cards-cashflow-aufbau-schritt-fuer-schritt {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-section-cashflow-aufbau-schritt-fuer-schritt {
    padding: clamp(1rem, 3vw, 2rem) 0;
  }

  .hero-meta-cashflow-aufbau-schritt-fuer-schritt {
    flex-direction: column;
    gap: 0.75rem;
  }

  .breadcrumbs-cashflow-aufbau-schritt-fuer-schritt {
    font-size: 0.75rem;
  }

  .intro-section-cashflow-aufbau-schritt-fuer-schritt,
  .structure-section-cashflow-aufbau-schritt-fuer-schritt,
  .steps-section-cashflow-aufbau-schritt-fuer-schritt,
  .detail-section-cashflow-aufbau-schritt-fuer-schritt,
  .common-section-cashflow-aufbau-schritt-fuer-schritt,
  .conclusion-section-cashflow-aufbau-schritt-fuer-schritt,
  .disclaimer-section-cashflow-aufbau-schritt-fuer-schritt,
  .related-section-cashflow-aufbau-schritt-fuer-schritt {
    padding: clamp(1.5rem, 4vw, 2.5rem) 0;
  }

  .list-item-cashflow-aufbau-schritt-fuer-schritt {
    gap: 1rem;
  }
}

html, body {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

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

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

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

.main-cashflow-fehler-vermeiden {
  width: 100%;
}

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

.hero-section-cashflow-fehler-vermeiden::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

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

.breadcrumbs-cashflow-fehler-vermeiden {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: 0.875rem;
  color: #94a3b8;
}

.breadcrumbs-cashflow-fehler-vermeiden a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 150ms ease;
}

.breadcrumbs-cashflow-fehler-vermeiden a:hover {
  color: #60a5fa;
  text-decoration: underline;
}

.breadcrumbs-cashflow-fehler-vermeiden span {
  color: #475569;
}

.hero-content-cashflow-fehler-vermeiden {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

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

.hero-meta-cashflow-fehler-vermeiden {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.meta-item-cashflow-fehler-vermeiden {
  display: inline;
}

.meta-divider-cashflow-fehler-vermeiden {
  color: #475569;
}

.hero-image-wrapper-cashflow-fehler-vermeiden {
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-image-cashflow-fehler-vermeiden {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

  .hero-section-cashflow-fehler-vermeiden::before {
    width: 400px;
    height: 400px;
    right: -10%;
    top: -20%;
  }

  .breadcrumbs-cashflow-fehler-vermeiden {
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
  }
}

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

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

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

.intro-title-cashflow-fehler-vermeiden {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.intro-paragraph-cashflow-fehler-vermeiden {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

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

.intro-img-cashflow-fehler-vermeiden {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: block;
  object-fit: cover;
}

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

  .intro-content-cashflow-fehler-vermeiden {
    flex-direction: column;
  }

  .intro-text-cashflow-fehler-vermeiden,
  .intro-image-cashflow-fehler-vermeiden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-one-cashflow-fehler-vermeiden {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-text-one-cashflow-fehler-vermeiden {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-one-cashflow-fehler-vermeiden {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.content-para-one-cashflow-fehler-vermeiden {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.content-image-one-cashflow-fehler-vermeiden {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-one-cashflow-fehler-vermeiden {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .content-section-one-cashflow-fehler-vermeiden {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .content-wrapper-one-cashflow-fehler-vermeiden {
    flex-direction: column;
  }

  .content-text-one-cashflow-fehler-vermeiden,
  .content-image-one-cashflow-fehler-vermeiden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-two-cashflow-fehler-vermeiden {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-image-two-cashflow-fehler-vermeiden {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-two-cashflow-fehler-vermeiden {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: block;
  object-fit: cover;
}

.content-text-two-cashflow-fehler-vermeiden {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-two-cashflow-fehler-vermeiden {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.content-para-two-cashflow-fehler-vermeiden {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
  .content-section-two-cashflow-fehler-vermeiden {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .content-wrapper-two-cashflow-fehler-vermeiden {
    flex-direction: column;
  }

  .content-image-two-cashflow-fehler-vermeiden,
  .content-text-two-cashflow-fehler-vermeiden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-three-cashflow-fehler-vermeiden {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-text-three-cashflow-fehler-vermeiden {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-three-cashflow-fehler-vermeiden {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.content-para-three-cashflow-fehler-vermeiden {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.content-image-three-cashflow-fehler-vermeiden {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-three-cashflow-fehler-vermeiden {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .content-section-three-cashflow-fehler-vermeiden {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .content-wrapper-three-cashflow-fehler-vermeiden {
    flex-direction: column;
  }

  .content-text-three-cashflow-fehler-vermeiden,
  .content-image-three-cashflow-fehler-vermeiden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-four-cashflow-fehler-vermeiden {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-image-four-cashflow-fehler-vermeiden {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-four-cashflow-fehler-vermeiden {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: block;
  object-fit: cover;
}

.content-text-four-cashflow-fehler-vermeiden {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-four-cashflow-fehler-vermeiden {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.content-para-four-cashflow-fehler-vermeiden {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
  .content-section-four-cashflow-fehler-vermeiden {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .content-wrapper-four-cashflow-fehler-vermeiden {
    flex-direction: column;
  }

  .content-image-four-cashflow-fehler-vermeiden,
  .content-text-four-cashflow-fehler-vermeiden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.highlight-content-cashflow-fehler-vermeiden {
  text-align: center;
}

.highlight-title-cashflow-fehler-vermeiden {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}

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

.highlight-card-cashflow-fehler-vermeiden {
  flex: 1 1 calc(50% - 1rem);
  max-width: 380px;
  background: rgba(255, 255, 255, 0.05);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

.card-title-cashflow-fehler-vermeiden {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.card-text-cashflow-fehler-vermeiden {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #cbd5e1;
  line-height: 1.65;
}

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

  .highlight-cards-cashflow-fehler-vermeiden {
    flex-direction: column;
  }

  .highlight-card-cashflow-fehler-vermeiden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-five-cashflow-fehler-vermeiden {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-text-five-cashflow-fehler-vermeiden {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-five-cashflow-fehler-vermeiden {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.content-para-five-cashflow-fehler-vermeiden {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.content-image-five-cashflow-fehler-vermeiden {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-five-cashflow-fehler-vermeiden {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .content-section-five-cashflow-fehler-vermeiden {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .content-wrapper-five-cashflow-fehler-vermeiden {
    flex-direction: column;
  }

  .content-text-five-cashflow-fehler-vermeiden,
  .content-image-five-cashflow-fehler-vermeiden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.summary-content-cashflow-fehler-vermeiden {
  max-width: 900px;
  margin: 0 auto;
}

.summary-title-cashflow-fehler-vermeiden {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  text-align: center;
}

.summary-list-cashflow-fehler-vermeiden {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.list-item-cashflow-fehler-vermeiden {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.list-number-cashflow-fehler-vermeiden {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  width: 40px;
  height: 40px;
  background: #3b82f6;
  color: #ffffff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.list-text-cashflow-fehler-vermeiden {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  line-height: 1.75;
  margin: 0;
}

.list-text-cashflow-fehler-vermeiden strong {
  color: #1e293b;
  font-weight: 600;
}

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

.disclaimer-section-cashflow-fehler-vermeiden {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(2rem, 6vw, 4rem) 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  overflow: hidden;
}

.disclaimer-content-cashflow-fehler-vermeiden {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.disclaimer-title-cashflow-fehler-vermeiden {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.disclaimer-text-cashflow-fehler-vermeiden {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

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

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

.related-title-cashflow-fehler-vermeiden {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  text-align: center;
}

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

.related-card-cashflow-fehler-vermeiden {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 250ms ease;
  display: flex;
  flex-direction: column;
}

.related-card-cashflow-fehler-vermeiden:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.related-image-cashflow-fehler-vermeiden {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-img-cashflow-fehler-vermeiden {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-title-cashflow-fehler-vermeiden {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
  margin: 0;
}

.related-card-text-cashflow-fehler-vermeiden {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.related-link-cashflow-fehler-vermeiden {
  display: inline-block;
  font-size: 0.95rem;
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
  margin-top: 0.5rem;
  transition: color 150ms ease;
}

.related-link-cashflow-fehler-vermeiden:hover {
  color: #2563eb;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-cards-cashflow-fehler-vermeiden {
    flex-direction: column;
    align-items: center;
  }

  .related-card-cashflow-fehler-vermeiden {
    flex: 1 1 100%;
    max-width: 500px;
  }
}

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

  .related-cards-cashflow-fehler-vermeiden {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .related-card-cashflow-fehler-vermeiden {
    flex: 1 1 100%;
    max-width: 100%;
    min-width: auto;
  }

  .related-image-cashflow-fehler-vermeiden {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .hero-title-cashflow-fehler-vermeiden {
    font-size: 1.75rem;
  }

  .hero-meta-cashflow-fehler-vermeiden {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .breadcrumbs-cashflow-fehler-vermeiden {
    font-size: 0.75rem;
  }

  .related-image-cashflow-fehler-vermeiden {
    height: 160px;
  }
}

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

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

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

.main-cashflow-prognose-methoden {
  width: 100%;
  background: var(--color-bg-secondary);
}

.hero-section-cashflow-prognose-methoden {
  background: var(--color-bg-primary);
  color: var(--color-text-light);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-cashflow-prognose-methoden::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
  opacity: 0.1;
  border-radius: var(--radius-full);
  z-index: 0;
}

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

.breadcrumbs-cashflow-prognose-methoden {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  font-size: 0.875rem;
  color: var(--color-text-secondary-dark);
}

.breadcrumbs-cashflow-prognose-methoden a {
  color: var(--color-info);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumbs-cashflow-prognose-methoden a:hover {
  color: #06b6d4;
  text-decoration: underline;
}

.breadcrumbs-cashflow-prognose-methoden span {
  color: var(--color-text-secondary-dark);
}

.hero-content-cashflow-prognose-methoden {
  max-width: 900px;
}

.hero-meta-cashflow-prognose-methoden {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  font-size: 0.875rem;
  color: var(--color-text-secondary-dark);
}

.meta-item-cashflow-prognose-methoden {
  color: var(--color-text-secondary-dark);
}

.meta-divider-cashflow-prognose-methoden {
  color: var(--color-text-secondary-dark);
}

.hero-title-cashflow-prognose-methoden {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  font-weight: 700;
  line-height: 1.2;
}

.hero-subtitle-cashflow-prognose-methoden {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary-dark);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
  max-width: 700px;
}

.hero-image-cashflow-prognose-methoden {
  margin-top: var(--space-xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-img-cashflow-prognose-methoden {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .hero-section-cashflow-prognose-methoden {
    padding: var(--space-2xl) 0;
  }

  .hero-section-cashflow-prognose-methoden::before {
    width: 300px;
    height: 300px;
    right: -5%;
    top: 0;
  }

  .breadcrumbs-cashflow-prognose-methoden {
    flex-wrap: wrap;
    font-size: 0.75rem;
  }

  .hero-title-cashflow-prognose-methoden {
    font-size: 1.75rem;
  }

  .hero-subtitle-cashflow-prognose-methoden {
    font-size: 1rem;
  }
}

.intro-section-cashflow-prognose-methoden {
  background: var(--color-bg-secondary);
  color: var(--color-text-dark);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-wrapper-cashflow-prognose-methoden {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-cashflow-prognose-methoden {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-cashflow-prognose-methoden {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-title-cashflow-prognose-methoden {
  color: var(--color-text-dark);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: var(--space-lg);
}

.intro-paragraph-cashflow-prognose-methoden {
  color: var(--color-text-secondary-light);
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .intro-wrapper-cashflow-prognose-methoden {
    flex-direction: column;
  }

  .intro-text-cashflow-prognose-methoden,
  .intro-image-cashflow-prognose-methoden {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-title-cashflow-prognose-methoden {
    font-size: 1.5rem;
  }
}

.methods-section-cashflow-prognose-methoden {
  background: var(--color-bg-tertiary);
  color: var(--color-text-dark);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.methods-content-cashflow-prognose-methoden {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
}

.methods-title-cashflow-prognose-methoden {
  color: var(--color-text-dark);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.method-card-wrapper-cashflow-prognose-methoden {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.method-card-cashflow-prognose-methoden {
  background: var(--color-bg-secondary);
  color: var(--color-text-dark);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

.method-number-cashflow-prognose-methoden {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.method-name-cashflow-prognose-methoden {
  color: var(--color-text-dark);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin: 0;
}

.method-description-cashflow-prognose-methoden {
  color: var(--color-text-secondary-light);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .methods-section-cashflow-prognose-methoden {
    padding: var(--space-2xl) 0;
  }

  .method-card-cashflow-prognose-methoden {
    padding: var(--space-lg);
  }

  .method-number-cashflow-prognose-methoden {
    font-size: 2rem;
  }
}

.implementation-section-cashflow-prognose-methoden {
  background: var(--color-bg-secondary);
  color: var(--color-text-dark);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.implementation-wrapper-cashflow-prognose-methoden {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.implementation-image-cashflow-prognose-methoden {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-image-cashflow-prognose-methoden img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.implementation-text-cashflow-prognose-methoden {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-title-cashflow-prognose-methoden {
  color: var(--color-text-dark);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: var(--space-lg);
}

.step-item-cashflow-prognose-methoden {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  align-items: flex-start;
}

.step-number-cashflow-prognose-methoden {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
  flex-shrink: 0;
}

.step-content-cashflow-prognose-methoden {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.step-title-cashflow-prognose-methoden {
  color: var(--color-text-dark);
  font-size: 1.1rem;
  margin: 0;
  font-weight: 600;
}

.step-text-cashflow-prognose-methoden {
  color: var(--color-text-secondary-light);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .implementation-wrapper-cashflow-prognose-methoden {
    flex-direction: column;
  }

  .implementation-image-cashflow-prognose-methoden,
  .implementation-text-cashflow-prognose-methoden {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .implementation-title-cashflow-prognose-methoden {
    font-size: 1.5rem;
  }

  .step-item-cashflow-prognose-methoden {
    gap: var(--space-sm);
  }

  .step-number-cashflow-prognose-methoden {
    font-size: 1.35rem;
  }
}

.tools-section-cashflow-prognose-methoden {
  background: var(--color-bg-accent);
  color: var(--color-text-light);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tools-content-cashflow-prognose-methoden {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
}

.tools-title-cashflow-prognose-methoden {
  color: var(--color-text-light);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  text-align: center;
  margin-bottom: var(--space-sm);
}

.tools-subtitle-cashflow-prognose-methoden {
  color: var(--color-text-secondary-dark);
  text-align: center;
  font-size: 1rem;
  margin-bottom: var(--space-lg);
}

.tools-grid-cashflow-prognose-methoden {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.tool-card-cashflow-prognose-methoden {
  background: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-light);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.tool-card-cashflow-prognose-methoden:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.tool-name-cashflow-prognose-methoden {
  color: var(--color-text-light);
  font-size: 1.2rem;
  margin: 0;
  font-weight: 600;
}

.tool-description-cashflow-prognose-methoden {
  color: var(--color-text-secondary-dark);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

.tool-badge-cashflow-prognose-methoden {
  display: inline-block;
  background: var(--color-info);
  color: var(--color-text-light);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  width: fit-content;
}

@media (max-width: 768px) {
  .tools-section-cashflow-prognose-methoden {
    padding: var(--space-2xl) 0;
  }

  .tool-card-cashflow-prognose-methoden {
    padding: var(--space-lg);
  }
}

.best-practices-section-cashflow-prognose-methoden {
  background: var(--color-bg-tertiary);
  color: var(--color-text-dark);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.best-practices-wrapper-cashflow-prognose-methoden {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.best-practices-text-cashflow-prognose-methoden {
  flex: 1 1 50%;
  max-width: 50%;
}

.best-practices-image-cashflow-prognose-methoden {
  flex: 1 1 50%;
  max-width: 50%;
}

.best-practices-image-cashflow-prognose-methoden img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.best-practices-title-cashflow-prognose-methoden {
  color: var(--color-text-dark);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: var(--space-lg);
}

.error-block-cashflow-prognose-methoden {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid #e2e8f0;
}

.error-block-cashflow-prognose-methoden:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.error-title-cashflow-prognose-methoden {
  color: var(--color-text-dark);
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.error-text-cashflow-prognose-methoden {
  color: var(--color-text-secondary-light);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .best-practices-wrapper-cashflow-prognose-methoden {
    flex-direction: column;
  }

  .best-practices-text-cashflow-prognose-methoden,
  .best-practices-image-cashflow-prognose-methoden {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .best-practices-title-cashflow-prognose-methoden {
    font-size: 1.5rem;
  }
}

.tips-section-cashflow-prognose-methoden {
  background: var(--color-bg-secondary);
  color: var(--color-text-dark);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tips-content-cashflow-prognose-methoden {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
}

.tips-title-cashflow-prognose-methoden {
  color: var(--color-text-dark);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.tips-list-cashflow-prognose-methoden {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.tip-item-cashflow-prognose-methoden {
  display: flex;
  flex-direction: row;
  gap: var(--space-lg);
  align-items: flex-start;
  background: var(--color-bg-tertiary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.tip-item-cashflow-prognose-methoden:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.tip-icon-cashflow-prognose-methoden {
  font-size: 1.5rem;
  color: var(--color-secondary);
  font-weight: 700;
  flex-shrink: 0;
}

.tip-content-cashflow-prognose-methoden {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.tip-heading-cashflow-prognose-methoden {
  color: var(--color-text-dark);
  font-size: 1.1rem;
  margin: 0;
  font-weight: 600;
}

.tip-text-cashflow-prognose-methoden {
  color: var(--color-text-secondary-light);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .tips-section-cashflow-prognose-methoden {
    padding: var(--space-2xl) 0;
  }

  .tips-title-cashflow-prognose-methoden {
    font-size: 1.5rem;
  }

  .tip-item-cashflow-prognose-methoden {
    gap: var(--space-md);
    padding: var(--space-md);
  }
}

.quote-section-cashflow-prognose-methoden {
  background: var(--color-bg-primary);
  color: var(--color-text-light);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.quote-box-cashflow-prognose-methoden {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.quote-text-cashflow-prognose-methoden {
  border-left: 4px solid var(--color-info);
  padding-left: var(--space-lg);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--color-text-light);
  font-style: italic;
  margin: 0;
  line-height: 1.7;
  text-align: left;
}

.quote-author-cashflow-prognose-methoden {
  color: var(--color-text-secondary-dark);
  font-size: 0.95rem;
  text-align: left;
  padding-left: var(--space-lg);
}

@media (max-width: 768px) {
  .quote-section-cashflow-prognose-methoden {
    padding: var(--space-2xl) 0;
  }

  .quote-text-cashflow-prognose-methoden {
    font-size: 1.1rem;
  }
}

.conclusion-section-cashflow-prognose-methoden {
  background: var(--color-bg-secondary);
  color: var(--color-text-dark);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-cashflow-prognose-methoden {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.conclusion-title-cashflow-prognose-methoden {
  color: var(--color-text-dark);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  text-align: center;
}

.conclusion-text-cashflow-prognose-methoden {
  color: var(--color-text-secondary-light);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .conclusion-section-cashflow-prognose-methoden {
    padding: var(--space-2xl) 0;
  }

  .conclusion-title-cashflow-prognose-methoden {
    font-size: 1.5rem;
  }
}

.disclaimer-section-cashflow-prognose-methoden {
  background: var(--color-bg-tertiary);
  color: var(--color-text-dark);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-box-cashflow-prognose-methoden {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-secondary);
  border-left: 4px solid var(--color-warning);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.disclaimer-title-cashflow-prognose-methoden {
  color: var(--color-warning);
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.disclaimer-text-cashflow-prognose-methoden {
  color: var(--color-text-secondary-light);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .disclaimer-section-cashflow-prognose-methoden {
    padding: var(--space-xl) 0;
  }

  .disclaimer-box-cashflow-prognose-methoden {
    padding: var(--space-lg);
  }
}

.related-section-cashflow-prognose-methoden {
  background: var(--color-bg-secondary);
  color: var(--color-text-dark);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

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

.related-title-cashflow-prognose-methoden {
  color: var(--color-text-dark);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.related-cards-cashflow-prognose-methoden {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
}

.related-card-cashflow-prognose-methoden {
  flex: 1 1 280px;
  max-width: 350px;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
}

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

.related-card-image-cashflow-prognose-methoden {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f0f0f0;
}

.related-card-image-cashflow-prognose-methoden img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-body-cashflow-prognose-methoden {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex-grow: 1;
}

.related-card-title-cashflow-prognose-methoden {
  color: var(--color-text-dark);
  font-size: 1.1rem;
  margin: 0;
  font-weight: 600;
  line-height: 1.4;
}

.related-card-description-cashflow-prognose-methoden {
  color: var(--color-text-secondary-light);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
  flex-grow: 1;
}

.related-card-link-cashflow-prognose-methoden {
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
  align-self: flex-start;
}

.related-card-link-cashflow-prognose-methoden:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .related-section-cashflow-prognose-methoden {
    padding: var(--space-2xl) 0;
  }

  .related-cards-cashflow-prognose-methoden {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .related-card-cashflow-prognose-methoden {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-title-cashflow-prognose-methoden {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-section-cashflow-prognose-methoden {
    padding: var(--space-xl) 0;
  }

  .intro-section-cashflow-prognose-methoden,
  .methods-section-cashflow-prognose-methoden,
  .implementation-section-cashflow-prognose-methoden,
  .tools-section-cashflow-prognose-methoden,
  .best-practices-section-cashflow-prognose-methoden,
  .tips-section-cashflow-prognose-methoden,
  .quote-section-cashflow-prognose-methoden,
  .conclusion-section-cashflow-prognose-methoden,
  .disclaimer-section-cashflow-prognose-methoden,
  .related-section-cashflow-prognose-methoden {
    padding: var(--space-xl) 0;
  }

  .hero-title-cashflow-prognose-methoden {
    font-size: 1.5rem;
  }

  .intro-title-cashflow-prognose-methoden,
  .methods-title-cashflow-prognose-methoden,
  .implementation-title-cashflow-prognose-methoden,
  .tools-title-cashflow-prognose-methoden,
  .best-practices-title-cashflow-prognose-methoden,
  .tips-title-cashflow-prognose-methoden,
  .conclusion-title-cashflow-prognose-methoden {
    font-size: 1.25rem;
  }

  .breadcrumbs-cashflow-prognose-methoden {
    font-size: 0.7rem;
    gap: var(--space-xs);
  }

  .step-item-cashflow-prognose-methoden {
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
  }

  .tip-item-cashflow-prognose-methoden {
    gap: var(--space-sm);
    padding: var(--space-md);
  }

  .quote-text-cashflow-prognose-methoden {
    font-size: 1rem;
    padding-left: var(--space-md);
  }

  .quote-author-cashflow-prognose-methoden {
    padding-left: var(--space-md);
  }

  .method-card-cashflow-prognose-methoden {
    padding: var(--space-md);
  }
}

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

html, body {
  width: 100%;
  overflow-x: hidden;
}

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

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

.finance-foundation-about {
  font-family: var(--font-primary);
  background: var(--color-bg-secondary);
  color: var(--color-text-dark);
}

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

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

.hero-intro-title-about {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-light);
  font-family: var(--font-heading);
}

.hero-intro-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary-dark);
  max-width: 700px;
  line-height: 1.6;
}

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

.stat-item-about {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1 1 120px;
  min-width: 100px;
}

.stat-number-about {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
}

.stat-label-about {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-secondary-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

.expertise-section-about {
  background: var(--color-bg-secondary);
  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;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.section-tag-about {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.expertise-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-dark);
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}

.expertise-subtitle-about {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-light);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.expertise-intro-about {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.expertise-intro-text-about {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-dark);
  line-height: 1.8;
}

.expertise-intro-text-about strong {
  color: var(--color-primary);
  font-weight: 700;
}

.approach-section-about {
  background: var(--color-bg-accent);
  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;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.approach-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-light);
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}

.approach-subtitle-about {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-dark);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

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

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

.step-number-about {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--color-primary);
  flex-shrink: 0;
  min-width: 80px;
  line-height: 1;
}

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

.step-title-about {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  font-weight: 700;
  color: var(--color-text-light);
}

.step-text-about {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
}

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

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

.features-header-about {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.features-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-dark);
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}

.features-subtitle-about {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-light);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.feature-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-base);
  border: 1px solid rgba(30, 41, 59, 0.1);
}

.feature-card-about:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.card-icon-about {
  font-size: 2.5rem;
  color: var(--color-primary);
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-title-about {
  font-size: clamp(1.05rem, 1.5vw + 0.5rem, 1.3rem);
  font-weight: 700;
  color: var(--color-text-dark);
}

.card-text-about {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary-light);
  line-height: 1.7;
}

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

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

.featured-quote-about {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
}

.quote-text-about {
  font-size: clamp(1.05rem, 2vw + 0.5rem, 1.4rem);
  font-style: italic;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.quote-author-about {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary-dark);
  display: block;
  font-style: normal;
  font-weight: 600;
}

.story-visual-about {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

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

.cta-content-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cta-box-about {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--color-text-light);
  box-shadow: var(--shadow-lg);
}

.cta-box-title-about {
  font-size: clamp(1.3rem, 3vw + 0.5rem, 2rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--color-text-light);
}

.cta-box-text-about {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: var(--color-text-light);
}

.btn-about {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--color-text-light);
  color: var(--color-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
}

.btn-about:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.disclaimer-section-about {
  background: var(--color-bg-tertiary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(30, 41, 59, 0.15);
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 900px;
}

.disclaimer-header-about {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
}

.disclaimer-icon-about {
  font-size: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.disclaimer-title-about {
  font-size: clamp(1.05rem, 2vw + 0.5rem, 1.3rem);
  font-weight: 700;
  color: var(--color-text-dark);
}

.disclaimer-text-about {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 0.975rem);
  color: var(--color-text-secondary-light);
  line-height: 1.8;
  font-weight: 500;
}

@media (max-width: 768px) {
  .process-step-about {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .step-number-about {
    min-width: 60px;
  }

  .hero-stats-container-about {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-item-about {
    flex: 1 1 100%;
  }

  .features-cards-about {
    flex-direction: column;
    align-items: center;
  }

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

@media (max-width: 480px) {
  .hero-intro-title-about {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
  }

  .expertise-title-about,
  .approach-title-about,
  .features-title-about {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
  }

  .step-number-about {
    font-size: clamp(2rem, 3vw, 2.5rem);
  }
}

.portfolio-page {
  background-color: var(--color-bg-primary);
  color: var(--color-text-light);
}

.portfolio-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.portfolio-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: var(--color-text-light);
  font-weight: 700;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.portfolio-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary-dark);
  font-weight: 300;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .portfolio-hero {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-hero {
    padding: var(--space-3xl) var(--space-2xl);
  }
}

.portfolio-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.portfolio-projects {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.portfolio-card {
  background-color: var(--color-bg-card-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.portfolio-card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background-color: var(--color-bg-accent);
}

.portfolio-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.portfolio-card:hover .portfolio-card-image img {
  transform: scale(1.05);
}

.portfolio-card-content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-card-tag {
  display: inline-block;
  background-color: rgba(37, 99, 235, 0.15);
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  width: fit-content;
  margin-bottom: var(--space-md);
}

.portfolio-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-light);
  font-weight: 700;
  margin-bottom: var(--space-md);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.portfolio-card-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.portfolio-card-detail {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  color: var(--color-text-secondary-dark);
  font-weight: 500;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-md);
  margin-top: auto;
}

@media (min-width: 768px) {
  .portfolio-projects {
    padding: var(--space-3xl) var(--space-lg);
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .portfolio-card-image {
    height: 280px;
  }
}

@media (min-width: 1024px) {
  .portfolio-projects {
    padding: var(--space-3xl) var(--space-2xl);
  }

  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
  }

  .portfolio-card-image {
    height: 220px;
  }
}

.portfolio-cta {
  background-color: var(--color-bg-accent);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.portfolio-cta-content {
  text-align: center;
}

.portfolio-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-light);
  font-weight: 700;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.portfolio-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-dark);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
  cursor: pointer;
  letter-spacing: 0.02em;
}

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

@media (min-width: 768px) {
  .portfolio-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-cta {
    padding: var(--space-3xl) var(--space-2xl);
  }
}

.services-page {
  width: 100%;
  background-color: var(--color-bg-primary);
}

.services-hero {
  background-color: var(--color-bg-primary);
  padding: 3rem var(--space-md);
  overflow: hidden;
  border-bottom: 1px solid var(--color-bg-card-dark);
}

.services-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: var(--color-text-light);
  font-weight: 700;
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.services-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  color: var(--color-text-secondary-dark);
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.services-content {
  background-color: var(--color-bg-primary);
  padding: 4rem var(--space-md);
  overflow: hidden;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  width: 100%;
  display: flex;
  flex-direction: column;
}

.service-card {
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  border-color: var(--color-primary);
  background-color: rgba(37, 99, 235, 0.05);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: rgba(37, 99, 235, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.75rem;
  color: var(--color-primary);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.25rem, 1.5rem);
  color: var(--color-text-light);
  margin: 0 0 var(--space-sm) 0;
  font-weight: 700;
  line-height: 1.3;
}

.service-card-text {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: var(--color-text-secondary-dark);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.6;
  flex-grow: 1;
}

.service-card-link {
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: color var(--transition-fast);
  width: fit-content;
}

.service-card-link:hover {
  color: var(--color-primary-hover);
}

.service-card-link::after {
  content: '';
  margin-left: 0.5rem;
  transition: transform var(--transition-fast);
}

.service-card:hover .service-card-link::after {
  transform: translateX(4px);
}

.services-cta {
  background-color: var(--color-bg-accent);
  padding: 3.5rem var(--space-md);
  overflow: hidden;
  border-top: 1px solid var(--color-bg-card-dark);
}

.services-cta-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.services-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.25rem, 2.25rem);
  color: var(--color-text-light);
  margin: 0 0 var(--space-sm) 0;
  font-weight: 700;
  line-height: 1.2;
}

.services-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1vw + 0.25rem, 1.0625rem);
  color: var(--color-text-secondary-dark);
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.6;
}

.services-cta-button {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--color-primary);
  color: var(--color-text-light);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
}

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

.services-image {
  display: none;
  margin: 0;
  padding: 0;
}

.services-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 640px) {
  .services-hero {
    padding: 4rem var(--space-lg);
  }

  .services-content {
    padding: 5rem var(--space-lg);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  .services-cta {
    padding: 4.5rem var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: 5rem var(--space-xl);
  }

  .services-content {
    padding: 6rem var(--space-xl);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

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

  .services-cta {
    padding: 5rem var(--space-xl);
  }
}

@media (min-width: 1280px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.legal-hub {
  background-color: var(--color-bg-secondary);
  color: var(--color-text-dark);
  font-family: var(--font-primary);
}

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

.legal-hub .content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) 0;
}

.legal-hub h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.legal-hub .updated {
  font-size: clamp(0.85rem, 0.9vw + 0.5rem, 1rem);
  color: var(--color-text-secondary-light);
  margin-bottom: var(--space-2xl);
  font-style: italic;
}

.legal-hub h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  line-height: 1.4;
}

.legal-hub p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-dark);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.legal-hub ul {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-dark);
  line-height: 1.7;
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.legal-hub li {
  margin-bottom: var(--space-sm);
}

.legal-hub .section {
  margin-bottom: var(--space-2xl);
}

.legal-hub .contact-section {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--space-2xl);
}

.legal-hub .contact-section h2 {
  margin-top: 0;
  color: var(--color-text-dark);
}

.legal-hub .contact-section p {
  color: var(--color-text-dark);
  margin-bottom: var(--space-sm);
}

.legal-hub .contact-section strong {
  color: var(--color-text-dark);
  font-weight: 600;
}

@media (min-width: 768px) {
  .legal-hub .content {
    padding: var(--space-3xl) var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .legal-hub .container {
    padding: 0 var(--space-lg);
  }

  .legal-hub .content {
    padding: var(--space-3xl) var(--space-2xl);
  }
}

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

html, body {
  width: 100%;
  height: 100%;
}

.thank-you-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: var(--color-bg-primary);
  color: var(--color-text-light);
}

.thank-you-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg) var(--space-sm);
  overflow: hidden;
}

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

.content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.thank-you-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.success-icon {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-md);
  animation: scaleIn 0.6s var(--transition-base);
}

.success-icon svg {
  width: clamp(60px, 12vw, 100px);
  height: clamp(60px, 12vw, 100px);
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

.thank-you-wrapper h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-light);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: var(--space-sm);
  animation: fadeInUp 0.6s var(--transition-base) 0.1s both;
}

.thank-you-lead {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.6s var(--transition-base) 0.2s both;
}

.thank-you-message {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.6s var(--transition-base) 0.3s both;
}

.thank-you-message p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
  letter-spacing: 0.3px;
}

.thank-you-cta {
  display: flex;
  justify-content: center;
  animation: fadeInUp 0.6s var(--transition-base) 0.4s both;
}

.btn-primary {
  display: inline-block;
  padding: var(--space-md) var(--space-2xl);
  background-color: var(--color-primary);
  color: var(--color-text-light);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  letter-spacing: 0.3px;
}

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

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

@media (min-width: 768px) {
  .thank-you-section {
    padding: var(--space-xl) var(--space-md);
  }

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

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

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

  .thank-you-message {
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .thank-you-section {
    padding: var(--space-3xl) var(--space-lg);
  }

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

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

  .thank-you-message {
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
  }

  .btn-primary {
    padding: var(--space-md) calc(var(--space-2xl) * 1.5);
  }

  .btn-primary:hover {
    transform: translateY(-3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .success-icon,
  .thank-you-wrapper h1,
  .thank-you-lead,
  .thank-you-message,
  .thank-you-cta {
    animation: none;
  }

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

  .btn-primary:hover {
    transform: none;
  }
}

.error-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  width: 100%;
  padding: var(--space-lg) var(--space-sm);
  overflow: hidden;
}

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

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

.error-wrapper {
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.error-visual {
  position: relative;
  margin-bottom: var(--space-2xl);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-info) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1;
  position: relative;
  z-index: 2;
}

.error-decoration {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0) 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-light);
  margin: var(--space-lg) 0 var(--space-md);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.error-message {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.15rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.8;
  margin: 0 0 var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-suggestions {
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-2xl);
  backdrop-filter: blur(10px);
}

.suggestions-label {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary-dark);
  margin: 0 0 var(--space-md);
  font-weight: 600;
  letter-spacing: 0.5px;
}

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

.suggestions-list li {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-light);
  padding-left: var(--space-md);
  position: relative;
  line-height: 1.6;
}

.suggestions-list li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 600;
}

.btn-home {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-2xl);
  background-color: var(--color-primary);
  color: var(--color-text-light);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  font-weight: 600;
  border: 2px solid var(--color-primary);
  transition: all var(--transition-base);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  letter-spacing: 0.3px;
}

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

.btn-home:active {
  transform: translateY(0);
}

.btn-icon {
  font-size: 1.2em;
  transition: transform var(--transition-fast);
}

.btn-home:hover .btn-icon {
  transform: translateX(-4px);
}

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

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-xl) var(--space-md);
  }

  .error-visual {
    margin-bottom: var(--space-3xl);
    height: 250px;
  }

  .error-decoration {
    width: 400px;
    height: 400px;
  }

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

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-2xl) var(--space-lg);
  }

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

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

@media (prefers-reduced-motion: reduce) {
  .error-wrapper {
    animation: none;
  }

  .btn-home,
  .btn-icon {
    transition: none;
  }
}

.contact-say-hello {
  width: 100%;
  background-color: var(--color-bg-primary);
}

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

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

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--space-xl);
  }
}

.contact-say-hello-hero {
  width: 100%;
  background-color: var(--color-bg-primary);
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(5, 150, 105, 0.08) 0%, transparent 50%);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .contact-say-hello-hero {
    padding: var(--space-3xl) 0;
  }
}

.contact-say-hello-hero-content {
  width: 100%;
}

.contact-say-hello-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.contact-say-hello-lead {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
  max-width: 700px;
}

.contact-say-hello-main {
  width: 100%;
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .contact-say-hello-main {
    padding: var(--space-3xl) 0;
  }
}

.contact-say-hello-main-content {
  width: 100%;
}

.contact-say-hello-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xl);
  width: 100%;
}

@media (min-width: 768px) {
  .contact-say-hello-grid {
    gap: var(--space-3xl);
  }
}

.contact-say-hello-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .contact-say-hello-form-wrapper {
    flex: 1 1 45%;
    min-width: 380px;
  }
}

.contact-say-hello-form-header {
  margin-bottom: var(--space-lg);
}

.contact-say-hello-form-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.contact-say-hello-form-header p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
}

.contact-say-hello-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-say-hello-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  width: 100%;
}

.contact-say-hello-label {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  font-weight: 600;
  color: var(--color-text-light);
  display: block;
}

.contact-say-hello-input,
.contact-say-hello-textarea {
  width: 100%;
  padding: var(--space-sm);
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-light);
  transition: border-color var(--transition-base), background-color var(--transition-base);
  box-sizing: border-box;
}

.contact-say-hello-input::placeholder,
.contact-say-hello-textarea::placeholder {
  color: var(--color-text-secondary-dark);
}

.contact-say-hello-input:focus,
.contact-say-hello-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-say-hello-textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-say-hello-form-privacy {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-say-hello-form-privacy p {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
}

.contact-say-hello-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.contact-say-hello-privacy-link:hover,
.contact-say-hello-privacy-link:focus {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-say-hello-submit {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-primary);
  color: var(--color-text-dark);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 700;
  cursor: pointer;
  transition: background-color var(--transition-base), transform var(--transition-fast);
  margin-top: var(--space-sm);
}

.contact-say-hello-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

.contact-say-hello-submit:active {
  transform: translateY(0);
}

.contact-say-hello-submit:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
}

.contact-say-hello-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .contact-say-hello-info-wrapper {
    flex: 1 1 45%;
    min-width: 380px;
  }
}

.contact-say-hello-info-header {
  margin-bottom: var(--space-lg);
}

.contact-say-hello-info-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.contact-say-hello-info-header p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
}

.contact-say-hello-info-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.contact-say-hello-info-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition-base), background-color var(--transition-base);
}

.contact-say-hello-info-item:hover {
  border-color: rgba(37, 99, 235, 0.3);
  background-color: rgba(255, 255, 255, 0.06);
}

.contact-say-hello-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-info));
  border-radius: var(--radius-md);
  color: var(--color-text-dark);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

.contact-say-hello-info-content {
  flex: 1;
  min-width: 0;
}

.contact-say-hello-info-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--color-text-light);
  margin-bottom: var(--space-xs);
  font-weight: 700;
}

.contact-say-hello-info-content p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: var(--space-xs);
}

.contact-say-hello-info-content a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-weight: 600;
}

.contact-say-hello-info-content a:hover,
.contact-say-hello-info-content a:focus {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-say-hello-info-meta {
  display: block;
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  color: var(--color-text-secondary-dark);
  margin-top: var(--space-xs);
}

.contact-say-hello-info-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

@media (min-width: 480px) {
  .contact-say-hello-info-features {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .contact-say-hello-info-features {
    grid-template-columns: 1fr;
  }
}

.contact-say-hello-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm);
  background-color: rgba(5, 150, 105, 0.1);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-secondary);
}

.contact-say-hello-feature-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-secondary);
  color: var(--color-text-light);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1rem;
}

.contact-say-hello-feature span {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-light);
  font-weight: 500;
}

.contact-say-hello-cta {
  width: 100%;
  background-color: var(--color-bg-accent);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .contact-say-hello-cta {
    padding: var(--space-3xl) 0;
  }
}

.contact-say-hello-cta-content {
  width: 100%;
}

.contact-say-hello-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--color-text-light);
  margin-bottom: var(--space-2xl);
  text-align: center;
  font-weight: 700;
}

.contact-say-hello-cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 640px) {
  .contact-say-hello-cta-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .contact-say-hello-cta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-say-hello-cta-item {
  padding: var(--space-lg);
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.contact-say-hello-cta-item:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-4px);
}

.contact-say-hello-cta-item h3 {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.contact-say-hello-cta-item p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
}

@media (max-width: 767px) {
  .contact-say-hello-grid {
    flex-direction: column;
  }

  .contact-say-hello-form-wrapper,
  .contact-say-hello-info-wrapper {
    flex: 1 1 100%;
  }
}