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

:root {
  
  
  
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f8fafc;
  --color-bg-card-dark: rgba(255, 255, 255, 0.05);
  --color-bg-card-light: #ffffff;
  
  
  --color-text-light: #ffffff;
  --color-text-dark: #0f172a;
  --color-text-secondary-light: #94a3b8;
  --color-text-secondary-dark: #64748b;
  --color-text-muted-dark: #9ca3af;
  
  
  --color-primary: #10b981;
  --color-primary-hover: #059669;
  --color-primary-light: #d1fae5;
  --color-secondary: #3b82f6;
  --color-secondary-hover: #2563eb;
  --color-accent-warm: #f59e0b;
  --color-accent-warm-hover: #d97706;
  
  
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-info: #3b82f6;
  
  
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Lora', serif;
  
  
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.5rem;
  --fs-4xl: 3rem;
  --fs-5xl: 3.5rem;
  
  
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --radius-full: 9999px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.25);
  
  
  --transition-fast: 150ms ease-in-out;
  --transition-base: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;
  
  
  --lh-tight: 1.2;
  --lh-normal: 1.5;
  --lh-relaxed: 1.75;
  --lh-loose: 2;
  
  
  --ls-tight: -0.02em;
  --ls-normal: 0;
  --ls-wide: 0.05em;
}

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

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

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

.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: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
}

.hero h1 {
  font-size: var(--fs-5xl);
  margin-bottom: var(--space-lg);
  color: var(--color-text-light);
  animation: fadeInUp 0.8s ease-out;
}

.hero__subtitle {
  font-size: var(--fs-xl);
  color: var(--color-text-secondary-light);
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.8s ease-out 0.1s both;
  line-height: var(--lh-relaxed);
}

.hero__cta-group {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

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

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

.section-dark {
  background: #0f172a;
  color: var(--color-text-light);
  padding: var(--space-4xl) var(--space-lg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.card p {
  color: var(--color-text-secondary-dark);
  font-size: var(--fs-sm);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-lg);
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  gap: var(--space-sm);
  letter-spacing: var(--ls-wide);
}

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

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

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

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

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

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

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

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

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

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

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

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

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

@media (max-width: 768px) {
  .feature {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

.feature__image {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.feature__image img {
  width: 100%;
  height: auto;
  display: block;
}

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

.stat {
  text-align: center;
}

.stat__number {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  line-height: var(--lh-tight);
}

.stat__label {
  font-size: var(--fs-base);
  color: var(--color-text-secondary-dark);
  margin-top: var(--space-sm);
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-primary-light);
  color: var(--color-text-dark);
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

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

.badge--secondary {
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-secondary-hover);
}

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

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
  margin: var(--space-3xl) 0;
}

.divider--light {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media print {
  body {
    background: white;
    color: black;
  }

  .hero {
    min-height: auto;
    padding: var(--space-lg);
  }
}
.header-budget-forge {
  background: var(--color-bg-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 100;
}

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

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

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

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

.header-budget-forge-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-light);
  letter-spacing: var(--ls-tight);
}

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

.header-budget-forge-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: var(--fw-medium);
  color: var(--color-text-secondary-light);
  text-decoration: none;
  transition: color var(--transition-base);
  position: relative;
}

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

.header-budget-forge-nav-link:hover {
  color: var(--color-primary);
}

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

.header-budget-forge-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-text-light);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  transition: all var(--transition-base);
  white-space: nowrap;
  flex-shrink: 0;
}

.header-budget-forge-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.header-budget-forge-mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
  flex-shrink: 0;
  z-index: 101;
}

.header-budget-forge-mobile-toggle-icon {
  width: 24px;
  height: 2px;
  background: var(--color-text-light);
  border-radius: 1px;
  transition: all var(--transition-base);
}

.header-budget-forge-mobile-toggle.active .header-budget-forge-mobile-toggle-icon:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}

.header-budget-forge-mobile-toggle.active .header-budget-forge-mobile-toggle-icon:nth-child(2) {
  opacity: 0;
}

.header-budget-forge-mobile-toggle.active .header-budget-forge-mobile-toggle-icon:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

.header-budget-forge-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: var(--color-bg-primary);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-base);
  z-index: 100;
  padding: 0;
}

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

.header-budget-forge-mobile-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-budget-forge-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-budget-forge-mobile-close:hover {
  color: var(--color-primary);
}

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

.header-budget-forge-mobile-link {
  padding: 1rem 1.5rem;
  color: var(--color-text-secondary-light);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: var(--fw-medium);
  transition: all var(--transition-base);
  border-left: 3px solid transparent;
}

.header-budget-forge-mobile-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-primary);
  border-left-color: var(--color-primary);
  padding-left: calc(1.5rem + 3px);
}

.header-budget-forge-mobile-cta {
  padding: 1rem 1.5rem;
  margin: 1rem 1rem 0 1rem;
  background: var(--color-primary);
  color: var(--color-text-light);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  text-align: center;
  transition: all var(--transition-base);
  display: block;
}

.header-budget-forge-mobile-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

@media (min-width: 768px) {
  .header-budget-forge-container {
    height: 80px;
  }

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

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

  .header-budget-forge-mobile-toggle {
    display: none;
  }

  .header-budget-forge-mobile-menu {
    display: none;
  }
}

@media (max-width: 767px) {
  .header-budget-forge-logo-text {
    font-size: 1rem;
  }
}

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

.hero-section-index {
  background: var(--color-bg-primary);
  color: var(--color-text-light);
  padding: clamp(3rem, 8vw, 6rem) 0;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-section-index::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section-index::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero-text-block-index {
  flex: 1 1 50%;
  min-width: 300px;
}

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

.hero-title-index {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  line-height: var(--lh-tight);
  animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle-index {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary-light);
  margin-bottom: var(--space-xl);
  line-height: var(--lh-relaxed);
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-cta-group-index {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-stats-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3rem);
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

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

.stat-number-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  line-height: var(--lh-tight);
}

.stat-label-index {
  font-size: var(--fs-sm);
  color: var(--color-text-secondary-light);
}

.hero-image-index {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

@media (max-width: 768px) {
  .hero-section-index {
    min-height: auto;
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

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

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

  .hero-stats-index {
    gap: clamp(1.5rem, 4vw, 2rem);
  }
}

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

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

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

.section-tag-index {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  margin-bottom: var(--space-md);
}

.features-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
}

.features-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--lh-relaxed);
}

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

.feature-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-card-light);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

.card-icon-index {
  width: 50px;
  height: 50px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-primary);
}

.card-title-index {
  font-size: var(--fs-lg);
  color: var(--color-text-dark);
  margin: 0;
}

.card-text-index {
  font-size: var(--fs-sm);
  color: var(--color-text-secondary-dark);
  line-height: var(--lh-relaxed);
  margin: 0;
}

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

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

.benefits-image-block-index {
  flex: 1 1 45%;
  min-width: 300px;
}

.benefits-image-index {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.benefits-text-block-index {
  flex: 1 1 55%;
  min-width: 300px;
}

.benefits-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
}

.benefits-intro-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-xl);
}

.benefits-list-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

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

.benefit-icon-index {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.25rem;
  margin-top: 2px;
}

.benefit-text-index h4 {
  font-size: var(--fs-lg);
  color: var(--color-text-dark);
  margin-bottom: var(--space-sm);
}

.benefit-text-index p {
  font-size: var(--fs-sm);
  color: var(--color-text-secondary-dark);
  line-height: var(--lh-relaxed);
  margin: 0;
}

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

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

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

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

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

.how-it-works-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
}

.how-it-works-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--lh-relaxed);
}

.how-it-works-steps-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.process-step-index {
  flex: 1 1 280px;
  max-width: 320px;
  display: flex;
  flex-direction: row;
  gap: var(--space-lg);
  align-items: flex-start;
}

.step-number-index {
  flex-shrink: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  line-height: var(--lh-tight);
}

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

.step-title-index {
  font-size: var(--fs-lg);
  color: var(--color-text-dark);
  margin-bottom: var(--space-sm);
}

.step-text-index {
  font-size: var(--fs-sm);
  color: var(--color-text-secondary-dark);
  line-height: var(--lh-relaxed);
  margin: 0;
}

@media (max-width: 768px) {
  .process-step-index {
    max-width: 100%;
  }
}

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

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

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

.faq-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
}

.faq-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--lh-relaxed);
}

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

.faq-item-index {
  background: var(--color-bg-card-light);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-primary);
}

.faq-question-index {
  font-size: var(--fs-lg);
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
}

.faq-answer-index {
  font-size: var(--fs-sm);
  color: var(--color-text-secondary-dark);
  line-height: var(--lh-relaxed);
  margin: 0;
}

.blog-preview-section-index {
  background: var(--color-bg-secondary);
  color: var(--color-text-dark);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.blog-preview-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
}

.blog-preview-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--lh-relaxed);
}

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

.featured-card-index {
  flex: 1 1 320px;
  max-width: 400px;
  background: var(--color-bg-card-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.card-image-wrapper-index {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

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

.card-title-featured-index {
  font-size: var(--fs-lg);
  color: var(--color-text-dark);
  margin: 0;
  line-height: var(--lh-tight);
}

.card-description-index {
  font-size: var(--fs-sm);
  color: var(--color-text-secondary-dark);
  line-height: var(--lh-relaxed);
  margin: 0;
  flex: 1;
}

.card-link-index {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  transition: color var(--transition-base);
  align-self: flex-start;
}

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

.blog-preview-cta-index {
  display: flex;
  justify-content: center;
  margin-top: var(--space-lg);
}

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

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

.cta-box-index {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-text-light);
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: var(--radius-xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: center;
}

.cta-title-index {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  color: var(--color-text-light);
  margin: 0;
}

.cta-description-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
  margin: 0;
  max-width: 600px;
}

.btn-large-index {
  padding: clamp(0.75rem, 2vw, 1.25rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: var(--fs-base);
}

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

.info-block-index {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-card-light);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-md);
}

.info-title-index {
  font-size: var(--fs-lg);
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
}

.info-list-index {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-md) 0;
}

.info-list-index li {
  font-size: var(--fs-sm);
  color: var(--color-text-secondary-dark);
  line-height: var(--lh-relaxed);
  padding-left: var(--space-lg);
  position: relative;
  margin-bottom: var(--space-sm);
}

.info-list-index li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: var(--fw-bold);
}

.info-text-index {
  font-size: var(--fs-sm);
  color: var(--color-text-secondary-dark);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-md);
}

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

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

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

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

.cookie-banner-text {
  color: var(--color-text-light);
  font-size: var(--fs-sm);
  margin: 0;
  max-width: 500px;
  line-height: var(--lh-relaxed);
}

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

.cookie-btn-accept,
.cookie-btn-decline {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md);
  border: none;
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  cursor: pointer;
  transition: all var(--transition-base);
}

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

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

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

.cookie-btn-decline:hover {
  border-color: var(--color-text-light);
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-md);
  }

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

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

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

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

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

@media (max-width: 480px) {
  .hero-stats-index {
    flex-direction: column;
    gap: var(--space-md);
  }

  .stat-item-index {
    flex-direction: row;
    align-items: center;
    gap: var(--space-md);
  }

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

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

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

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

.footer-content {
  display: block;
}

.footer-about {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  padding-bottom: clamp(2rem, 5vw, 2.5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

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

.footer-nav,
.footer-contact,
.footer-legal {
  flex: 1 1 180px;
  min-width: 160px;
}

.footer-nav h4,
.footer-contact h4,
.footer-legal h4 {
  color: var(--color-text-light);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 600;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  letter-spacing: var(--ls-normal);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links li {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

  .footer-nav h4,
  .footer-contact h4,
  .footer-legal h4 {
    font-size: 1rem;
  }

  .footer-links a,
  .footer-contact p {
    font-size: 0.8rem;
  }
}
    

.category-page-budget-planning-germany {
  overflow-x: hidden;
}

.hero-section-budget-planning-germany {
  background: linear-gradient(135deg, #0a0f1e 0%, #0f172a 100%);
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.hero-section-budget-planning-germany::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section-budget-planning-germany::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content-budget-planning-germany {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 4rem);
}

.hero-header-budget-planning-germany {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

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

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

.hero-visual-budget-planning-germany {
  display: flex;
  justify-content: center;
}

.hero-stats-budget-planning-germany {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: center;
  padding: clamp(2rem, 3vw, 3rem);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.stat-item-budget-planning-germany {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 120px;
}

.stat-number-budget-planning-germany {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #10b981;
  line-height: 1;
}

.stat-label-budget-planning-germany {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #94a3b8;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

.posts-header-budget-planning-germany {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.posts-title-budget-planning-germany {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

.posts-subtitle-budget-planning-germany {
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.1rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

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

.card-budget-planning-germany {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex: 1 1 clamp(300px, 45vw, 420px);
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.card-budget-planning-germany:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1), 0 20px 40px rgba(0, 0, 0, 0.12);
}

.card-image-budget-planning-germany {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.card-title-budget-planning-germany {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.5rem);
  color: #0f172a;
  line-height: 1.3;
  margin: 0;
  padding: 0 clamp(1rem, 2vw, 1.5rem);
  font-weight: 600;
}

.card-description-budget-planning-germany {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  padding: 0 clamp(1rem, 2vw, 1.5rem);
}

.card-meta-budget-planning-germany {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: 0 clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.card-reading-time-budget-planning-germany,
.card-level-budget-planning-germany,
.card-date-budget-planning-germany {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
}

.card-reading-time-budget-planning-germany i,
.card-level-budget-planning-germany i,
.card-date-budget-planning-germany i {
  color: #10b981;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.card-link-budget-planning-germany {
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1rem, 2vw, 1.5rem);
  margin: 0 clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem);
  background: #10b981;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  text-align: center;
  transition: all 0.3s ease;
  display: inline-block;
}

.card-link-budget-planning-germany:hover {
  background: #059669;
  transform: translateY(-2px);
}

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

.insights-content-budget-planning-germany {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 4rem);
}

.insights-header-budget-planning-germany {
  text-align: center;
}

.insights-title-budget-planning-germany {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  line-height: 1.2;
  margin: 0;
}

.insights-main-budget-planning-germany {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.insights-quote-budget-planning-germany {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #10b981;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.insights-quote-text-budget-planning-germany {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  color: #0f172a;
  line-height: 1.6;
  font-style: italic;
  margin: 0;
  font-weight: 500;
}

.insights-text-budget-planning-germany {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.insights-paragraph-budget-planning-germany {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  color: #334155;
  line-height: 1.75;
  margin: 0;
}

.insights-list-budget-planning-germany {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.insights-list-item-budget-planning-germany {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  color: #334155;
  line-height: 1.6;
  padding-left: 2rem;
  position: relative;
}

.insights-list-item-budget-planning-germany::before {
  content: '';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
  font-size: 1.25rem;
}

.essentials-section-budget-planning-germany {
  background: linear-gradient(135deg, #0a0f1e 0%, #0f172a 100%);
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.essentials-content-budget-planning-germany {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 4rem);
}

.essentials-header-budget-planning-germany {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.essentials-title-budget-planning-germany {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

.essentials-subtitle-budget-planning-germany {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

.essentials-steps-budget-planning-germany {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.step-card-budget-planning-germany {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1 1 clamp(280px, 40vw, 320px);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.step-card-budget-planning-germany:hover {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-4px);
}

.step-number-budget-planning-germany {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #10b981;
  line-height: 1;
}

.step-title-budget-planning-germany {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
  font-weight: 600;
}

.step-text-budget-planning-germany {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-content-budget-planning-germany {
    padding: 0 clamp(1rem, 3vw, 2rem);
  }

  .hero-stats-budget-planning-germany {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-item-budget-planning-germany {
    min-width: auto;
  }

  .posts-grid-budget-planning-germany {
    flex-direction: column;
  }

  .card-budget-planning-germany {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .essentials-steps-budget-planning-germany {
    flex-direction: column;
  }

  .step-card-budget-planning-germany {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .insights-main-budget-planning-germany {
    padding: 0 clamp(1rem, 3vw, 2rem);
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .posts-grid-budget-planning-germany {
    gap: clamp(1.5rem, 2.5vw, 2rem);
  }

  .card-budget-planning-germany {
    flex: 1 1 calc(50% - 1rem);
  }

  .essentials-steps-budget-planning-germany {
    gap: clamp(1.5rem, 2.5vw, 2rem);
  }

  .step-card-budget-planning-germany {
    flex: 1 1 calc(50% - 1rem);
  }
}

.main-einfaches-budget-erstellen {
  width: 100%;
  overflow-x: hidden;
}

.hero-section-einfaches-budget-erstellen {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(2rem, 6vw, 5rem) 0;
  overflow: hidden;
  position: relative;
}

.hero-section-einfaches-budget-erstellen::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section-einfaches-budget-erstellen::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section-einfaches-budget-erstellen .container {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.breadcrumbs-einfaches-budget-erstellen {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #94a3b8;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.breadcrumbs-einfaches-budget-erstellen a {
  color: #10b981;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-einfaches-budget-erstellen a:hover {
  color: #059669;
  text-decoration: underline;
}

.breadcrumbs-einfaches-budget-erstellen span {
  color: #64748b;
}

.hero-content-einfaches-budget-erstellen {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-title-einfaches-budget-erstellen {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.hero-meta-einfaches-budget-erstellen {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #94a3b8;
  margin-bottom: 0;
}

.meta-item-einfaches-budget-erstellen {
  color: #94a3b8;
}

.meta-divider-einfaches-budget-erstellen {
  color: #64748b;
}

.hero-image-wrapper-einfaches-budget-erstellen {
  position: relative;
  z-index: 1;
  border-radius: clamp(8px, 2vw, 16px);
  overflow: hidden;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
  max-height: 500px;
}

.hero-image-einfaches-budget-erstellen {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-section-einfaches-budget-erstellen {
    padding: 3rem 0;
  }

  .hero-section-einfaches-budget-erstellen .container {
    gap: 1.5rem;
  }
}

.intro-section-einfaches-budget-erstellen {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.intro-text-einfaches-budget-erstellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-einfaches-budget-erstellen {
  font-family: 'Lora', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.intro-paragraph-einfaches-budget-erstellen {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-image-einfaches-budget-erstellen {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: clamp(8px, 2vw, 16px);
  overflow: hidden;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.intro-image-img-einfaches-budget-erstellen {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .intro-content-einfaches-budget-erstellen {
    flex-direction: column;
  }

  .intro-text-einfaches-budget-erstellen,
  .intro-image-einfaches-budget-erstellen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.steps-section-einfaches-budget-erstellen {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.steps-header-einfaches-budget-erstellen {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.steps-title-einfaches-budget-erstellen {
  font-family: 'Lora', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.steps-subtitle-einfaches-budget-erstellen {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #64748b;
  line-height: 1.6;
}

.step-item-einfaches-budget-erstellen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: clamp(8px, 2vw, 16px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
 
}

.step-item-einfaches-budget-erstellen:nth-child(even) {
  flex-direction: row-reverse;
}

.step-number-einfaches-budget-erstellen {
  font-family: 'Lora', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: #10b981;
  line-height: 1;
  min-width: clamp(80px, 15vw, 140px);
  text-align: center;
  flex-shrink: 0;
}

.step-content-einfaches-budget-erstellen {
  flex: 1;
}

.step-title-einfaches-budget-erstellen {
  font-family: 'Lora', serif;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.step-text-einfaches-budget-erstellen {
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: #475569;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.step-image-einfacles-budget-erstellen,
.step-image-left-einfacles-budget-erstellen {
  width: 45%;
  min-height: 280px;
  border-radius: clamp(8px, 2vw, 12px);
  overflow: hidden;
  flex-shrink: 0;
}

.step-image-img-einfaches-budget-erstellen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .step-item-einfaches-budget-erstellen {
    flex-direction: column !important;
    padding: 1.5rem;
  }

  .step-item-einfaches-budget-erstellen:nth-child(even) {
    flex-direction: column;
  }

  .step-number-einfacles-budget-erstellen {
    min-width: 60px;
  }

  .step-image-einfacles-budget-erstellen,
  .step-image-left-einfacles-budget-erstellen {
    width: 100%;
  }
}

.tools-section-einfaches-budget-erstellen {
  background: #0f172a;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.tools-header-einfaches-budget-erstellen {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.tools-title-einfaches-budget-erstellen {
  font-family: 'Lora', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.tools-subtitle-einfaches-budget-erstellen {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

.tools-grid-einfaches-budget-erstellen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.tool-card-einfaches-budget-erstellen {
  flex: 1 1 calc(50% - 1rem);
  min-width: 250px;
  max-width: 320px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: clamp(8px, 2vw, 12px);
  transition: transform 0.3s ease, background 0.3s ease;
}

.tool-card-einfaches-budget-erstellen:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
}

.tool-icon-einfaches-budget-erstellen {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #10b981;
  margin-bottom: clamp(1rem, 1.5vw, 1.25rem);
}

.tool-card-title-einfaches-budget-erstellen {
  font-family: 'Lora', serif;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.tool-card-text-einfaches-budget-erstellen {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tools-image-einfaches-budget-erstellen {
  border-radius: clamp(8px, 2vw, 16px);
  overflow: hidden;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
  max-height: 450px;
}

.tools-image-img-einfaches-budget-erstellen {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .tool-card-einfaches-budget-erstellen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.tips-section-einfaches-budget-erstellen {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.tips-header-einfaches-budget-erstellen {
  text-align: center;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.tips-title-einfaches-budget-erstellen {
  font-family: 'Lora', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.tips-subtitle-einfaches-budget-erstellen {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #64748b;
  line-height: 1.6;
}

.tips-highlight-einfaches-budget-erstellen {
  background: #f0fdf4;
  border-left: 4px solid #10b981;
  padding: clamp(1.5rem, 2vw, 2rem);
  margin-bottom: clamp(2rem, 3vw, 3rem);
  border-radius: 8px;
}

.tips-highlight-text-einfaches-budget-erstellen {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: #1e293b;
  font-style: italic;
  line-height: 1.7;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tips-list-einfaches-budget-erstellen {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tips-list-item-einfaches-budget-erstellen {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
  padding-left: clamp(1.5rem, 2vw, 2rem);
  position: relative;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tips-list-item-einfaches-budget-erstellen::before {
  content: '';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.tips-bold-einfaches-budget-erstellen {
  color: #1e293b;
  font-weight: 700;
}

.conclusion-section-einfaches-budget-erstellen {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-einfaches-budget-erstellen {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-einfaches-budget-erstellen {
  font-family: 'Lora', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  text-align: center;
}

.conclusion-text-einfaches-budget-erstellen {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-cta-einfaches-budget-erstellen {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: clamp(8px, 2vw, 12px);
  margin-top: clamp(2rem, 3vw, 3rem);
}

.conclusion-cta-text-einfaches-budget-erstellen {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #a7f3d0;
  line-height: 1.8;
  margin: 0;
  text-align: center;
  font-weight: 500;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-section-einfaches-budget-erstellen {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.related-header-einfaches-budget-erstellen {
  text-align: center;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.related-title-einfaches-budget-erstellen {
  font-family: 'Lora', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.related-subtitle-einfaches-budget-erstellen {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #64748b;
  line-height: 1.6;
}

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

.related-card-einfaches-budget-erstellen {
  flex: 1 1 calc(33.333% - 1.33rem);
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  border-radius: clamp(8px, 2vw, 12px);
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

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

.related-card-image-einfaches-budget-erstellen {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #e2e8f0;
}

.related-card-image-einfaches-budget-erstellen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-title-einfaches-budget-erstellen {
  font-family: 'Lora', serif;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: #1e293b;
  padding: clamp(1rem, 1.5vw, 1.5rem) clamp(1rem, 1.5vw, 1.5rem) clamp(0.5rem, 1vw, 0.75rem);
  line-height: 1.3;
}

.related-card-text-einfaches-budget-erstellen {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #64748b;
  padding: 0 clamp(1rem, 1.5vw, 1.5rem) clamp(1rem, 1.5vw, 1.5rem);
  line-height: 1.6;
  flex-grow: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 1024px) {
  .related-card-einfaches-budget-erstellen {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

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

.disclaimer-section-einfaches-budget-erstellen {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-einfaches-budget-erstellen {
  max-width: 800px;
  margin: 0 auto;
  background: #f8fafc;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: clamp(8px, 2vw, 12px);
  border-left: 4px solid #3b82f6;
}

.disclaimer-title-einfaches-budget-erstellen {
  font-family: 'Lora', serif;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.disclaimer-text-einfaches-budget-erstellen {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.7;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

a {
  transition: all 0.3s ease;
}

strong {
  font-weight: 700;
}

.main-funfzig-dreissig-zwanzig-regel {
  width: 100%;
  overflow: hidden;
}

.breadcrumbs-funfzig-dreissig-zwanzig-regel {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.breadcrumbs-funfzig-dreissig-zwanzig-regel a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-funfzig-dreissig-zwanzig-regel a:hover {
  color: #10b981;
}

.breadcrumbs-funfzig-dreissig-zwanzig-regel span {
  color: #64748b;
}

.hero-section-funfzig-dreissig-zwanzig-regel {
  background: #0a0f1e;
  color: #ffffff;
  padding: 4rem 1rem;
  overflow: hidden;
}

.hero-content-funfzig-dreissig-zwanzig-regel {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  align-items: center;
}

.hero-text-block-funfzig-dreissig-zwanzig-regel {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-funfzig-dreissig-zwanzig-regel {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-funfzig-dreissig-zwanzig-regel {
  color: #ffffff;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle-funfzig-dreissig-zwanzig-regel {
  color: #94a3b8;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-meta-funfzig-dreissig-zwanzig-regel {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.meta-item-funfzig-dreissig-zwanzig-regel {
  color: #94a3b8;
}

.meta-divider-funfzig-dreissig-zwanzig-regel {
  color: #475569;
}

.hero-image-funfzig-dreissig-zwanzig-regel {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-width: 100%;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero-content-funfzig-dreissig-zwanzig-regel {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-text-block-funfzig-dreissig-zwanzig-regel,
  .hero-image-block-funfzig-dreissig-zwanzig-regel {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-section-funfzig-dreissig-zwanzig-regel {
    padding: 2rem 1rem;
  }
}

.intro-section-funfzig-dreissig-zwanzig-regel {
  background: #ffffff;
  color: #0f172a;
  padding: 4rem 1rem;
  overflow: hidden;
}

.intro-content-funfzig-dreissig-zwanzig-regel {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  align-items: center;
}

.intro-text-funfzig-dreissig-zwanzig-regel {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-funfzig-dreissig-zwanzig-regel {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-funfzig-dreissig-zwanzig-regel {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-paragraph-funfzig-dreissig-zwanzig-regel {
  color: #374151;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.intro-image-funfzig-dreissig-zwanzig-regel img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-width: 100%;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-content-funfzig-dreissig-zwanzig-regel {
    flex-direction: column;
    gap: 2rem;
  }

  .intro-text-funfzig-dreissig-zwanzig-regel,
  .intro-image-funfzig-dreissig-zwanzig-regel {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-section-funfzig-dreissig-zwanzig-regel {
    padding: 2rem 1rem;
  }
}

.breakdown-section-funfzig-dreissig-zwanzig-regel {
  background: #f8fafc;
  color: #0f172a;
  padding: 4rem 1rem;
  overflow: hidden;
}

.breakdown-content-funfzig-dreissig-zwanzig-regel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.breakdown-title-funfzig-dreissig-zwanzig-regel {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.breakdown-cards-funfzig-dreissig-zwanzig-regel {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.breakdown-card-funfzig-dreissig-zwanzig-regel {
  flex: 1 1 280px;
  max-width: 340px;
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.breakdown-card-funfzig-dreissig-zwanzig-regel:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card-number-funfzig-dreissig-zwanzig-regel {
  font-size: 2.5rem;
  font-weight: 700;
  color: #10b981;
  margin-bottom: 1rem;
}

.card-title-funfzig-dreissig-zwanzig-regel {
  color: #0f172a;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.card-description-funfzig-dreissig-zwanzig-regel {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .breakdown-cards-funfzig-dreissig-zwanzig-regel {
    flex-direction: column;
    gap: 1.5rem;
  }

  .breakdown-card-funfzig-dreissig-zwanzig-regel {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .breakdown-section-funfzig-dreissig-zwanzig-regel {
    padding: 2rem 1rem;
  }
}

.implementation-section-funfzig-dreissig-zwanzig-regel {
  background: #ffffff;
  color: #0f172a;
  padding: 4rem 1rem;
  overflow: hidden;
}

.implementation-wrapper-funfzig-dreissig-zwanzig-regel {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  align-items: center;
}

.implementation-text-funfzig-dreissig-zwanzig-regel {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-image-funfzig-dreissig-zwanzig-regel {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-title-funfzig-dreissig-zwanzig-regel {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.implementation-paragraph-funfzig-dreissig-zwanzig-regel {
  color: #374151;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.implementation-image-funfzig-dreissig-zwanzig-regel img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-width: 100%;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .implementation-wrapper-funfzig-dreissig-zwanzig-regel {
    flex-direction: column;
    gap: 2rem;
  }

  .implementation-text-funfzig-dreissig-zwanzig-regel,
  .implementation-image-funfzig-dreissig-zwanzig-regel {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .implementation-section-funfzig-dreissig-zwanzig-regel {
    padding: 2rem 1rem;
  }
}

.advantages-section-funfzig-dreissig-zwanzig-regel {
  background: #f8fafc;
  color: #0f172a;
  padding: 4rem 1rem;
  overflow: hidden;
}

.advantages-content-funfzig-dreissig-zwanzig-regel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.advantages-title-funfzig-dreissig-zwanzig-regel {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.advantages-grid-funfzig-dreissig-zwanzig-regel {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.advantage-item-funfzig-dreissig-zwanzig-regel {
  flex: 1 1 220px;
  max-width: 280px;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.advantage-heading-funfzig-dreissig-zwanzig-regel {
  color: #0f172a;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.advantage-text-funfzig-dreissig-zwanzig-regel {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .advantages-grid-funfzig-dreissig-zwanzig-regel {
    flex-direction: column;
    gap: 1.5rem;
  }

  .advantage-item-funfzig-dreissig-zwanzig-regel {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .advantages-section-funfzig-dreissig-zwanzig-regel {
    padding: 2rem 1rem;
  }
}

.adjustment-section-funfzig-dreissig-zwanzig-regel {
  background: #0f172a;
  color: #ffffff;
  padding: 4rem 1rem;
  overflow: hidden;
}

.adjustment-wrapper-funfzig-dreissig-zwanzig-regel {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  align-items: center;
}

.adjustment-image-funfzig-dreissig-zwanzig-regel {
  flex: 1 1 50%;
  max-width: 50%;
}

.adjustment-text-funfzig-dreissig-zwanzig-regel {
  flex: 1 1 50%;
  max-width: 50%;
}

.adjustment-title-funfzig-dreissig-zwanzig-regel {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.adjustment-paragraph-funfzig-dreissig-zwanzig-regel {
  color: #94a3b8;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.adjustment-image-funfzig-dreissig-zwanzig-regel img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-width: 100%;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .adjustment-wrapper-funfzig-dreissig-zwanzig-regel {
    flex-direction: column;
    gap: 2rem;
  }

  .adjustment-image-funfzig-dreissig-zwanzig-regel,
  .adjustment-text-funfzig-dreissig-zwanzig-regel {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .adjustment-section-funfzig-dreissig-zwanzig-regel {
    padding: 2rem 1rem;
  }
}

.conclusion-section-funfzig-dreissig-zwanzig-regel {
  background: #ffffff;
  color: #0f172a;
  padding: 4rem 1rem;
  overflow: hidden;
}

.conclusion-content-funfzig-dreissig-zwanzig-regel {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-funfzig-dreissig-zwanzig-regel {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.conclusion-text-funfzig-dreissig-zwanzig-regel {
  color: #374151;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.conclusion-cta-funfzig-dreissig-zwanzig-regel {
  margin-top: 2.5rem;
}

.cta-button-funfzig-dreissig-zwanzig-regel {
  display: inline-block;
  padding: 1rem 2rem;
  background: #10b981;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cta-button-funfzig-dreissig-zwanzig-regel:hover {
  background: #059669;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .conclusion-section-funfzig-dreissig-zwanzig-regel {
    padding: 2rem 1rem;
  }
}

.disclaimer-section-funfzig-dreissig-zwanzig-regel {
  background: #f8fafc;
  color: #0f172a;
  padding: 3rem 1rem;
  border-top: 1px solid #e2e8f0;
  overflow: hidden;
}

.disclaimer-content-funfzig-dreissig-zwanzig-regel {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-funfzig-dreissig-zwanzig-regel {
  color: #0f172a;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.disclaimer-text-funfzig-dreissig-zwanzig-regel {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .disclaimer-section-funfzig-dreissig-zwanzig-regel {
    padding: 2rem 1rem;
  }
}

.related-section-funfzig-dreissig-zwanzig-regel {
  background: #ffffff;
  color: #0f172a;
  padding: 4rem 1rem;
  border-top: 1px solid #e2e8f0;
  overflow: hidden;
}

.related-content-funfzig-dreissig-zwanzig-regel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.related-title-funfzig-dreissig-zwanzig-regel {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.related-cards-funfzig-dreissig-zwanzig-regel {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.related-card-funfzig-dreissig-zwanzig-regel {
  flex: 1 1 300px;
  max-width: 360px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-funfzig-dreissig-zwanzig-regel:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.related-card-image-funfzig-dreissig-zwanzig-regel {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f0f0f0;
}

.related-image-funfzig-dreissig-zwanzig-regel {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-title-funfzig-dreissig-zwanzig-regel {
  color: #0f172a;
  font-size: 1.1rem;
  padding: 1.5rem 1.5rem 0.75rem 1.5rem;
  line-height: 1.3;
}

.related-card-description-funfzig-dreissig-zwanzig-regel {
  color: #64748b;
  font-size: 0.9rem;
  padding: 0 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.6;
  flex-grow: 1;
}

.related-link-funfzig-dreissig-zwanzig-regel {
  display: inline-block;
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: #10b981;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.related-link-funfzig-dreissig-zwanzig-regel:hover {
  color: #059669;
}

@media (max-width: 768px) {
  .related-cards-funfzig-dreissig-zwanzig-regel {
    flex-direction: column;
    gap: 1.5rem;
  }

  .related-card-funfzig-dreissig-zwanzig-regel {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-section-funfzig-dreissig-zwanzig-regel {
    padding: 2rem 1rem;
  }
}

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

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

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

.main-sparziele-erreichen {
  width: 100%;
  overflow: hidden;
}

.hero-section-sparziele-erreichen {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a1f2e 100%);
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.breadcrumbs-sparziele-erreichen a {
  color: #10b981;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-sparziele-erreichen a:hover {
  color: #059669;
}

.breadcrumbs-sparziele-erreichen span {
  color: #64748b;
}

.hero-content-sparziele-erreichen {
  max-width: 800px;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

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

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

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

.meta-separator-sparziele-erreichen {
  color: #475569;
}

.hero-image-container-sparziele-erreichen {
  width: 100%;
  max-width: 800px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.hero-image-sparziele-erreichen {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

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

.intro-text-sparziele-erreichen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-sparziele-erreichen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.intro-paragraph-sparziele-erreichen {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-sparziele-erreichen {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.intro-image-img-sparziele-erreichen {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

.definition-wrapper-sparziele-erreichen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.definition-image-sparziele-erreichen {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.definition-image-img-sparziele-erreichen {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.definition-text-sparziele-erreichen {
  flex: 1 1 50%;
  max-width: 50%;
}

.definition-title-sparziele-erreichen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.definition-paragraph-sparziele-erreichen {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.planning-section-sparziele-erreichen {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.planning-wrapper-sparziele-erreichen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.planning-text-sparziele-erreichen {
  flex: 1 1 50%;
  max-width: 50%;
}

.planning-title-sparziele-erreichen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

.steps-container-sparziele-erreichen {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.step-card-sparziele-erreichen {
  background: #f8fafc;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  border-left: 4px solid #10b981;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-number-sparziele-erreichen {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
}

.step-title-sparziele-erreichen {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #0f172a;
  font-weight: 600;
  margin: 0.5rem 0 0 0;
}

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

.planning-image-sparziele-erreichen {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.planning-image-img-sparziele-erreichen {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

.strategies-wrapper-sparziele-erreichen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.strategies-image-sparziele-erreichen {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.strategies-image-img-sparziele-erreichen {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.strategies-text-sparziele-erreichen {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategies-title-sparziele-erreichen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.strategies-paragraph-sparziele-erreichen {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.technique-list-sparziele-erreichen {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.technique-item-sparziele-erreichen {
  background: #ffffff;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.technique-name-sparziele-erreichen {
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  color: #0f172a;
  font-weight: 600;
  margin: 0;
}

.technique-desc-sparziele-erreichen {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.tracking-section-sparziele-erreichen {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tracking-header-sparziele-erreichen {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.tracking-title-sparziele-erreichen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  font-weight: 700;
}

.tracking-subtitle-sparziele-erreichen {
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  color: #64748b;
}

.tracking-wrapper-sparziele-erreichen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.tracking-text-sparziele-erreichen {
  flex: 1 1 50%;
  max-width: 50%;
}

.tracking-paragraph-sparziele-erreichen {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.tracking-image-sparziele-erreichen {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tracking-image-img-sparziele-erreichen {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.conclusion-section-sparziele-erreichen {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-sparziele-erreichen {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-sparziele-erreichen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.conclusion-text-sparziele-erreichen {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #f0fdf4;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-highlight-sparziele-erreichen {
  background: rgba(255, 255, 255, 0.15);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  border-left: 4px solid #ffffff;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.highlight-text-sparziele-erreichen {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #ffffff;
  line-height: 1.7;
  margin: 0;
}

.disclaimer-section-sparziele-erreichen {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-sparziele-erreichen {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  border-left: 4px solid #f59e0b;
}

.disclaimer-title-sparziele-erreichen {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #0f172a;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 600;
}

.disclaimer-text-sparziele-erreichen {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

.related-section-sparziele-erreichen {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.related-title-sparziele-erreichen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

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

.related-card-sparziele-erreichen {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: #0f172a;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-sparziele-erreichen:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.related-image-sparziele-erreichen {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f8fafc;
}

.related-card-image-sparziele-erreichen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-sparziele-erreichen {
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.related-card-title-sparziele-erreichen {
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  color: #0f172a;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.related-card-text-sparziele-erreichen {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

@media (max-width: 768px) {
  .intro-wrapper-sparziele-erreichen,
  .definition-wrapper-sparziele-erreichen,
  .planning-wrapper-sparziele-erreichen,
  .strategies-wrapper-sparziele-erreichen,
  .tracking-wrapper-sparziele-erreichen {
    flex-direction: column;
  }

  .intro-text-sparziele-erreichen,
  .intro-image-sparziele-erreichen,
  .definition-text-sparziele-erreichen,
  .definition-image-sparziele-erreichen,
  .planning-text-sparziele-erreichen,
  .planning-image-sparziele-erreichen,
  .strategies-text-sparziele-erreichen,
  .strategies-image-sparziele-erreichen,
  .tracking-text-sparziele-erreichen,
  .tracking-image-sparziele-erreichen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-content-sparziele-erreichen {
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
  }

  .related-card-sparziele-erreichen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-sparziele-erreichen {
    font-size: 0.7rem;
    gap: 0.25rem;
  }

  .steps-container-sparziele-erreichen,
  .technique-list-sparziele-erreichen {
    gap: 0.75rem;
  }

  .step-card-sparziele-erreichen,
  .technique-item-sparziele-erreichen {
    padding: 0.75rem;
  }
}

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

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: var(--font-primary);
    overflow-x: hidden;
  }

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

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

  .finance-compass-about {
    width: 100%;
    overflow: hidden;
  }

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

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

  .hero-title-about {
    font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
    font-weight: 800;
    color: var(--color-text-light);
    line-height: var(--lh-tight);
    letter-spacing: var(--ls-tight);
  }

  .hero-subtitle-about {
    font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
    color: var(--color-text-secondary-light);
    line-height: var(--lh-normal);
    max-width: 700px;
  }

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

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

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

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

  .stat-label-about {
    font-size: clamp(0.875rem, 1vw, 1rem);
    color: var(--color-text-secondary-light);
  }

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

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

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

  .section-tag-about {
    display: inline-block;
    padding: 0.35rem 1.2rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-primary);
    border-radius: var(--radius-full);
    font-size: clamp(0.75rem, 1vw, 0.875rem);
    font-weight: 600;
    margin-bottom: 1rem;
  }

  .story-title-about {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: var(--lh-tight);
  }

  .story-subtitle-about {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: var(--color-text-secondary-dark);
    line-height: var(--lh-normal);
    max-width: 650px;
    margin: 1rem auto 0;
  }

  .story-text-about {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    color: var(--color-text-dark);
    line-height: var(--lh-relaxed);
    margin-bottom: 1.5rem;
  }

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

  .story-image-about {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    margin: 0 auto;
    object-fit: cover;
  }

  .approach-framework-about {
    background: var(--color-bg-tertiary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

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

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

  .approach-title-about {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: var(--lh-tight);
  }

  .approach-subtitle-about {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: var(--color-text-secondary-dark);
    line-height: var(--lh-normal);
    max-width: 650px;
    margin: 1rem auto 0;
  }

  .process-steps-about {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 3vw, 2.5rem);
    margin-top: 2rem;
  }

  .process-step-about {
    display: flex;
    flex-direction: row;
    gap: clamp(1.5rem, 3vw, 2rem);
    align-items: flex-start;
  }

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

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

  .step-title-about {
    font-size: clamp(1rem, 2vw, 1.375rem);
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 0.75rem;
  }

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

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

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

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

  .expertise-title-about {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-weight: 700;
    color: var(--color-text-light);
    line-height: var(--lh-tight);
  }

  .expertise-subtitle-about {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: var(--color-text-secondary-light);
    line-height: var(--lh-normal);
    max-width: 650px;
    margin: 1rem auto 0;
  }

  .expertise-cards-about {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2rem);
    justify-content: center;
    margin-top: 2rem;
  }

  .expertise-card-about {
    flex: 1 1 280px;
    max-width: 380px;
    background: var(--color-bg-card-dark);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(16, 185, 129, 0.2);
    transition: all var(--transition-base);
  }

  .expertise-card-about:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary);
    background: rgba(16, 185, 129, 0.05);
  }

  .card-icon-about {
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: var(--color-primary);
    margin-bottom: 1rem;
  }

  .card-title-about {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 0.75rem;
  }

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

  .featured-quote-about {
    background: var(--color-bg-secondary);
    padding: clamp(2rem, 4vw, 3.5rem);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-lg);
    margin: 2rem auto;
    max-width: 750px;
  }

  .quote-text-about {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-style: italic;
    color: var(--color-text-dark);
    line-height: var(--lh-relaxed);
    margin-bottom: 1.5rem;
  }

  .quote-author-about {
    font-size: clamp(0.875rem, 1vw, 1rem);
    color: var(--color-primary);
    font-weight: 600;
    font-style: normal;
  }

  .disclaimer-section-about {
    background: var(--color-bg-secondary);
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    border-top: 1px solid #e5e7eb;
    overflow: hidden;
  }

  .disclaimer-content-about {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .disclaimer-heading-about {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 700;
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .disclaimer-icon-about {
    color: var(--color-primary);
    font-size: 1.25rem;
  }

  .disclaimer-text-about {
    font-size: clamp(0.85rem, 1vw, 1rem);
    color: var(--color-text-secondary-dark);
    line-height: var(--lh-relaxed);
  }

  @media (max-width: 768px) {
    .hero-stats-about {
      gap: 1.5rem;
    }

    .process-step-about {
      flex-direction: column;
      gap: 1rem;
    }

    .step-number-about {
      min-width: auto;
    }

    .expertise-card-about {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }

  @media (min-width: 1024px) {
    .hero-foundation-about {
      padding: clamp(4rem, 10vw, 8rem) 0;
    }

    .story-journey-about {
      padding: clamp(4rem, 10vw, 8rem) 0;
    }

    .approach-framework-about {
      padding: clamp(4rem, 10vw, 8rem) 0;
    }

    .expertise-pillars-about {
      padding: clamp(4rem, 10vw, 8rem) 0;
    }
  }

.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;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.portfolio-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-lg) 0;
}

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

.portfolio-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  line-height: var(--lh-tight);
}

.portfolio-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary-light);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
}

@media (min-width: 768px) {
  .portfolio-hero {
    padding: var(--space-3xl) var(--space-lg);
  }

  .portfolio-hero__container {
    padding: var(--space-2xl) 0;
  }
}

.portfolio-projects {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.portfolio-projects__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 768px) {
  .portfolio-projects {
    padding: var(--space-3xl) var(--space-lg);
  }

  .portfolio-projects__container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .portfolio-projects__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.portfolio-card {
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  border-color: rgba(16, 185, 129, 0.3);
  background-color: rgba(16, 185, 129, 0.05);
}

.portfolio-card__image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.03);
}

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

.portfolio-card:hover .portfolio-card__image img {
  transform: scale(1.05);
}

.portfolio-card__content {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.portfolio-card__tag {
  font-family: var(--font-primary);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  margin-bottom: var(--space-md);
  display: inline-block;
  width: fit-content;
}

.portfolio-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  line-height: var(--lh-tight);
}

.portfolio-card__description {
  font-family: var(--font-primary);
  font-size: var(--fs-sm);
  color: var(--color-text-secondary-light);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-md);
  flex: 1;
}

.portfolio-card__detail {
  font-family: var(--font-primary);
  font-size: var(--fs-xs);
  color: var(--color-text-secondary-light);
  font-weight: var(--fw-medium);
  display: block;
  margin-top: auto;
}

.portfolio-cta {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.portfolio-cta__container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
  line-height: var(--lh-tight);
}

.portfolio-cta__text {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-secondary-dark);
  margin-bottom: var(--space-xl);
  line-height: var(--lh-relaxed);
}

.portfolio-cta__button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
  cursor: pointer;
}

.portfolio-cta__button:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .portfolio-cta {
    padding: var(--space-3xl) var(--space-lg);
  }

  .portfolio-cta__container {
    padding: var(--space-lg) 0;
  }
}

.services-page {
  background-color: var(--color-bg-primary);
  color: var(--color-text-dark);
  overflow: hidden;
}

.services-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) var(--space-lg);
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.services-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(59, 130, 246, 0.05) 100%);
  pointer-events: none;
}

.services-hero-container {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.services-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-light);
  margin: 0;
  margin-bottom: var(--space-md);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
}

.services-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary-light);
  margin: 0;
  line-height: var(--lh-normal);
  font-weight: var(--fw-regular);
}

.services-content {
  background-color: var(--color-bg-secondary);
  padding: var(--space-3xl) var(--space-lg);
  overflow: hidden;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
  display: flex;
  flex-direction: column;
}

.service-card {
  background-color: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--transition-base);
  border: 1px solid rgba(16, 185, 129, 0.1);
  display: flex;
  flex-direction: column;
}

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

.service-card-icon {
  width: 60px;
  height: 60px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: var(--color-primary);
  font-size: 1.75rem;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-dark);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--lh-tight);
}

.service-card-description {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  color: var(--color-text-secondary-dark);
  margin: 0 0 var(--space-lg) 0;
  line-height: var(--lh-relaxed);
  flex-grow: 1;
}

.service-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.service-card-features li {
  font-family: var(--font-primary);
  font-size: var(--fs-sm);
  color: var(--color-text-secondary-dark);
  padding-left: var(--space-md);
  position: relative;
}

.service-card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: var(--fw-bold);
}

.services-info-box {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(59, 130, 246, 0.05) 100%);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.services-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-dark);
  margin: 0 0 var(--space-md) 0;
}

.services-info-text {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  color: var(--color-text-secondary-dark);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--lh-relaxed);
}

.services-info-text:last-child {
  margin-bottom: 0;
}

.services-cta {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) var(--space-lg);
  overflow: hidden;
  text-align: center;
}

.services-cta-container {
  max-width: 700px;
  margin: 0 auto;
}

.services-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-light);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--lh-tight);
}

.services-cta-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-light);
  margin: 0 0 var(--space-2xl) 0;
  line-height: var(--lh-normal);
}

.services-cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
  cursor: pointer;
  text-align: center;
}

.services-cta-button:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .services-hero {
    padding: var(--space-4xl) var(--space-lg);
    min-height: 350px;
  }

  .services-content {
    padding: var(--space-4xl) var(--space-lg);
  }

  .services-cta {
    padding: var(--space-4xl) var(--space-lg);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

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

@media (min-width: 1024px) {
  .services-hero {
    padding: var(--space-4xl) var(--space-2xl);
    min-height: 400px;
  }

  .services-content {
    padding: var(--space-4xl) var(--space-2xl);
  }

  .services-cta {
    padding: var(--space-4xl) var(--space-2xl);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3xl);
  }

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

@media (min-width: 1440px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.legal-finance {
  background-color: var(--color-bg-secondary);
  color: var(--color-text-dark);
  font-family: var(--font-primary);
}

.legal-finance main {
  width: 100%;
}

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

.legal-finance-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-sm);
}

.legal-finance h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-dark);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-sm);
  line-height: var(--lh-tight);
}

.legal-finance .updated {
  font-size: var(--fs-sm);
  color: var(--color-text-secondary-dark);
  margin-bottom: var(--space-lg);
  display: block;
}

.legal-finance p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: var(--lh-relaxed);
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
}

.legal-finance h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-dark);
  font-weight: var(--fw-bold);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  line-height: var(--lh-tight);
}

.legal-finance section {
  margin-bottom: var(--space-2xl);
}

.legal-finance ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-md);
}

.legal-finance li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: var(--lh-relaxed);
  color: var(--color-text-dark);
  margin-bottom: var(--space-sm);
  padding-left: var(--space-lg);
  position: relative;
}

.legal-finance li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: var(--fw-bold);
}

.contact-section {
  margin-top: var(--space-3xl);
  padding: var(--space-lg);
  background-color: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
}

.contact-section h2 {
  color: var(--color-text-dark);
  margin-top: 0;
  margin-bottom: var(--space-md);
}

.contact-section p {
  color: var(--color-text-dark);
  margin-bottom: var(--space-sm);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
}

.contact-section strong {
  color: var(--color-text-dark);
  font-weight: var(--fw-semibold);
}

@media (min-width: 768px) {
  .legal-finance-content {
    padding: var(--space-3xl) var(--space-md);
  }
}

@media (min-width: 1024px) {
  .legal-finance-content {
    padding: var(--space-4xl) var(--space-lg);
  }
}

.thank-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.thank-section {
  width: 100%;
  padding: var(--space-lg) var(--space-sm);
  overflow: hidden;
}

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

.content {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.thank-wrapper {
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.thank-icon {
  margin-bottom: var(--space-lg);
  display: flex;
  justify-content: center;
  animation: scaleIn 0.6s ease-out 0.2s both;
}

.thank-icon svg {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.2));
}

.thank-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  letter-spacing: var(--ls-tight);
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.thank-lead {
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-relaxed);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.thank-message {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-light);
  margin-bottom: var(--space-xl);
  line-height: var(--lh-relaxed);
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.thank-checklist {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-bg-card-dark);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.1);
  transition: all var(--transition-base);
}

.checklist-item:hover {
  background-color: rgba(16, 185, 129, 0.05);
  border-color: rgba(16, 185, 129, 0.2);
  transform: translateX(4px);
}

.checklist-item svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.checklist-item span {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary-light);
  text-align: left;
  line-height: var(--lh-normal);
}

.btn-primary {
  display: inline-block;
  padding: var(--space-md) var(--space-2xl);
  background-color: var(--color-primary);
  color: var(--color-text-dark);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  animation: fadeInUp 0.8s ease-out 0.5s both;
  letter-spacing: var(--ls-normal);
}

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 768px) {
  .thank-section {
    padding: var(--space-2xl) var(--space-md);
  }

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

  .thank-checklist {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

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

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-lg);
  }

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

  .thank-checklist {
    max-width: 550px;
  }
}

.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.error-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg) var(--space-sm);
}

.container {
  width: 100%;
  max-width: 1440px;
  padding: 0 var(--space-sm);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content {
  width: 100%;
  max-width: 800px;
}

.error-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.error-code-wrapper {
  position: relative;
  margin-bottom: var(--space-md);
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  line-height: var(--lh-tight);
  margin: 0;
  letter-spacing: var(--ls-tight);
  text-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
}

.error-decoration {
  width: clamp(100px, 30vw, 200px);
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  margin: var(--space-md) auto 0;
  border-radius: var(--radius-full);
  animation: expand-shrink 3s ease-in-out infinite;
}

@keyframes expand-shrink {
  0%, 100% {
    width: clamp(100px, 30vw, 200px);
    opacity: 0.5;
  }
  50% {
    width: clamp(150px, 40vw, 250px);
    opacity: 1;
  }
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-light);
  margin: 0;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
}

.error-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--color-text-secondary-light);
  line-height: var(--lh-relaxed);
  margin: var(--space-lg) 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-suggestions {
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin: var(--space-xl) 0;
  backdrop-filter: blur(10px);
}

.suggestions-label {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  margin: 0 0 var(--space-md) 0;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}

.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, 1rem);
  color: var(--color-text-secondary-light);
  padding-left: var(--space-md);
  position: relative;
  line-height: var(--lh-normal);
}

.suggestions-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--color-primary);
  border-radius: var(--radius-full);
}

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  text-align: center;
  letter-spacing: var(--ls-wide);
  margin-top: var(--space-lg);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

@media (min-width: 640px) {
  .error-section {
    padding: var(--space-xl) var(--space-md);
  }

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

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

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

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

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

  .error-code-wrapper {
    margin-bottom: var(--space-lg);
  }

  .error-suggestions {
    margin: var(--space-2xl) 0;
  }

  .suggestions-list {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
  }

  .suggestions-list li {
    padding-left: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl) var(--space-xl);
  }

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

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

  .error-suggestions {
    padding: var(--space-2xl);
    margin: var(--space-3xl) 0;
  }
}

.contact-lets-talk {
  width: 100%;
  background-color: var(--color-bg-secondary);
  color: var(--color-text-dark);
}

.contact-lets-talk-hero {
  background-color: var(--color-bg-primary);
  padding: 3rem var(--space-md);
  overflow: hidden;
}

.contact-lets-talk-hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.contact-lets-talk-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  line-height: var(--lh-tight);
}

.contact-lets-talk-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-light);
  line-height: var(--lh-relaxed);
  font-weight: var(--fw-regular);
}

@media (min-width: 768px) {
  .contact-lets-talk-hero {
    padding: 5rem var(--space-md);
  }
}

@media (min-width: 1024px) {
  .contact-lets-talk-hero {
    padding: 6rem var(--space-md);
  }
}

.contact-lets-talk-main {
  background-color: var(--color-bg-secondary);
  padding: 3rem var(--space-md);
  overflow: hidden;
}

.contact-lets-talk-main-content {
  width: 100%;
}

.contact-lets-talk-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.contact-lets-talk-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-lets-talk-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .contact-lets-talk-form-wrapper {
    flex: 1 1 45%;
    max-width: 500px;
  }

  .contact-lets-talk-info-wrapper {
    flex: 1 1 45%;
  }
}

@media (min-width: 1024px) {
  .contact-lets-talk-form-wrapper {
    flex: 1 1 50%;
  }

  .contact-lets-talk-info-wrapper {
    flex: 1 1 40%;
  }
}

.contact-lets-talk-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-dark);
  margin-bottom: var(--space-lg);
  line-height: var(--lh-tight);
}

.contact-lets-talk-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-lets-talk-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-lets-talk-label {
  font-family: var(--font-primary);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text-dark);
}

.contact-lets-talk-input,
.contact-lets-talk-textarea {
  font-family: var(--font-primary);
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: var(--color-bg-tertiary);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  color: var(--color-text-dark);
  font-size: var(--fs-base);
  transition: all var(--transition-base);
}

.contact-lets-talk-input::placeholder,
.contact-lets-talk-textarea::placeholder {
  color: var(--color-text-secondary-dark);
}

.contact-lets-talk-input:focus,
.contact-lets-talk-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: var(--color-bg-secondary);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.contact-lets-talk-textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-lets-talk-form-privacy {
  margin-top: var(--space-sm);
}

.contact-lets-talk-privacy-text {
  font-family: var(--font-primary);
  font-size: var(--fs-sm);
  color: var(--color-text-secondary-dark);
  line-height: var(--lh-normal);
}

.contact-lets-talk-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: var(--fw-medium);
  transition: color var(--transition-base);
}

.contact-lets-talk-privacy-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-lets-talk-submit {
  font-family: var(--font-primary);
  width: 100%;
  padding: 1rem 2rem;
  background-color: var(--color-primary);
  color: var(--color-text-dark);
  border: none;
  border-radius: var(--radius-md);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  cursor: pointer;
  transition: all var(--transition-base);
  margin-top: var(--space-sm);
}

.contact-lets-talk-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-lets-talk-submit:active {
  transform: translateY(0);
}

.contact-lets-talk-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-dark);
  margin-bottom: var(--space-lg);
  line-height: var(--lh-tight);
}

.contact-lets-talk-info-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.contact-lets-talk-info-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-lets-talk-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-lets-talk-info-content {
  flex: 1;
}

.contact-lets-talk-info-label {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--color-text-dark);
  margin-bottom: 0.25rem;
}

.contact-lets-talk-info-text {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  color: var(--color-text-secondary-dark);
  line-height: var(--lh-normal);
}

.contact-lets-talk-info-extra {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.contact-lets-talk-info-extra-title {
  font-family: var(--font-primary);
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--color-text-dark);
  margin-bottom: var(--space-sm);
}

.contact-lets-talk-info-extra-text {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  color: var(--color-text-secondary-dark);
  line-height: var(--lh-relaxed);
  font-weight: var(--fw-regular);
}

@media (min-width: 768px) {
  .contact-lets-talk-main {
    padding: 4rem var(--space-md);
  }
}

@media (min-width: 1024px) {
  .contact-lets-talk-main {
    padding: 5rem var(--space-md);
  }
}
.main-ausgaben-kategorisieren {
  width: 100%;
  overflow: hidden;
}

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

.hero-section-ausgaben-kategorisieren::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section-ausgaben-kategorisieren::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.breadcrumbs-ausgaben-kategorisieren {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #94a3b8;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.breadcrumbs-ausgaben-kategorisieren a {
  color: #10b981;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-ausgaben-kategorisieren a:hover {
  color: #059669;
  text-decoration: underline;
}

.breadcrumbs-ausgaben-kategorisieren span {
  color: #64748b;
}

.hero-content-ausgaben-kategorisieren {
  position: relative;
  z-index: 1;
}

.hero-meta-ausgaben-kategorisieren {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #94a3b8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.meta-item-ausgaben-kategorisieren {
  color: #94a3b8;
}

.meta-separator-ausgaben-kategorisieren {
  color: #64748b;
}

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

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

.hero-image-wrapper-ausgaben-kategorisieren {
  position: relative;
  z-index: 1;
  border-radius: clamp(8px, 2vw, 16px);
  overflow: hidden;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
  max-height: 500px;
}

.hero-image-ausgaben-kategorisieren {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

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

.intro-text-ausgaben-kategorisieren {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-visual-ausgaben-kategorisieren {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-ausgaben-kategorisieren {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.intro-paragraph-ausgaben-kategorisieren {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-ausgaben-kategorisieren {
  width: 100%;
  height: auto;
  border-radius: clamp(8px, 2vw, 16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
  object-fit: cover;
}

.categories-section-ausgaben-kategorisieren {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.categories-header-ausgaben-kategorisieren {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.categories-title-ausgaben-kategorisieren {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #1e293b;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  font-weight: 700;
}

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

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

.category-card-ausgaben-kategorisieren {
  flex: 1 1 280px;
  max-width: 380px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: clamp(8px, 2vw, 12px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card-ausgaben-kategorisieren:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card-icon-ausgaben-kategorisieren {
  width: 50px;
  height: 50px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: clamp(8px, 2vw, 12px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #10b981;
  margin-bottom: clamp(1rem, 2vw, 1.25rem);
}

.card-title-ausgaben-kategorisieren {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #1e293b;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  font-weight: 600;
}

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

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

.process-header-ausgaben-kategorisieren {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.process-title-ausgaben-kategorisieren {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #1e293b;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  font-weight: 700;
}

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

.steps-wrapper-ausgaben-kategorisieren {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 5vw, 4rem);
}

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

.step-content-ausgaben-kategorisieren:nth-child(even) {
  flex-direction: row-reverse;
}

.step-text-ausgaben-kategorisieren {
  flex: 1 1 50%;
  max-width: 50%;
}

.step-image-ausgaben-kategorisieren {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: clamp(8px, 2vw, 12px);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number-ausgaben-kategorisieren {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: #10b981;
  line-height: 1;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.step-title-ausgaben-kategorisieren {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: #1e293b;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 700;
}

.step-description-ausgaben-kategorisieren {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #475569;
  line-height: 1.7;
}

.step-image-item-ausgaben-kategorisieren {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.insight-section-ausgaben-kategorisieren {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.insight-wrapper-ausgaben-kategorisieren {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.insight-text-ausgaben-kategorisieren {
  flex: 1 1 50%;
  max-width: 50%;
}

.insight-image-ausgaben-kategorisieren {
  flex: 1 1 50%;
  max-width: 50%;
}

.insight-title-ausgaben-kategorisieren {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.insight-paragraph-ausgaben-kategorisieren {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.insight-highlight-ausgaben-kategorisieren {
  background: #f0fdf4;
  border-left: 4px solid #10b981;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 8px;
  margin: clamp(1.5rem, 3vw, 2rem) 0;
}

.highlight-text-ausgaben-kategorisieren {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: #1e293b;
  font-style: italic;
  line-height: 1.7;
  margin: 0;
}

.insight-image-item-ausgaben-kategorisieren {
  width: 100%;
  height: auto;
  border-radius: clamp(8px, 2vw, 12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
  object-fit: cover;
}

.tips-section-ausgaben-kategorisieren {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tips-header-ausgaben-kategorisieren {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

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

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

.tip-card-ausgaben-kategorisieren {
  flex: 1 1 280px;
  max-width: 380px;
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: clamp(8px, 2vw, 12px);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.tip-card-ausgaben-kategorisieren:hover {
  transform: translateY(-4px);
  border-color: #10b981;
}

.tip-title-ausgaben-kategorisieren {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #1e293b;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  font-weight: 600;
}

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

.conclusion-section-ausgaben-kategorisieren {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-ausgaben-kategorisieren {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-ausgaben-kategorisieren {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.conclusion-text-ausgaben-kategorisieren {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #f0fdf4;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-highlight-ausgaben-kategorisieren {
  background: rgba(255, 255, 255, 0.15);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 8px;
  border-left: 4px solid #ffffff;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.highlight-final-ausgaben-kategorisieren {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #ffffff;
  line-height: 1.7;
  margin: 0;
}

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

.related-header-ausgaben-kategorisieren {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.related-title-ausgaben-kategorisieren {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #1e293b;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  font-weight: 700;
}

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

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

.related-card-ausgaben-kategorisieren {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: clamp(8px, 2vw, 12px);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: #1e293b;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-ausgaben-kategorisieren:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.related-image-ausgaben-kategorisieren {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f8fafc;
}

.related-image-ausgaben-kategorisieren img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-content-ausgaben-kategorisieren {
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.related-card-title-ausgaben-kategorisieren {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #1e293b;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

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

.disclaimer-section-ausgaben-kategorisieren {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-ausgaben-kategorisieren {
  max-width: 900px;
  margin: 0 auto;
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: clamp(8px, 2vw, 12px);
  border-left: 4px solid #3b82f6;
}

.disclaimer-title-ausgaben-kategorisieren {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #1e293b;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  font-weight: 600;
}

.disclaimer-text-ausgaben-kategorisieren {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .intro-content-ausgaben-kategorisieren,
  .insight-wrapper-ausgaben-kategorisieren {
    flex-direction: column;
  }

  .intro-text-ausgaben-kategorisieren,
  .intro-visual-ausgaben-kategorisieren,
  .insight-text-ausgaben-kategorisieren,
  .insight-image-ausgaben-kategorisieren {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-content-ausgaben-kategorisieren,
  .step-content-ausgaben-kategorisieren:nth-child(even) {
    flex-direction: column;
  }

  .step-text-ausgaben-kategorisieren,
  .step-image-ausgaben-kategorisieren {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .categories-grid-ausgaben-kategorisieren,
  .tips-grid-ausgaben-kategorisieren,
  .related-cards-ausgaben-kategorisieren {
    flex-direction: column;
  }

  .category-card-ausgaben-kategorisieren,
  .tip-card-ausgaben-kategorisieren,
  .related-card-ausgaben-kategorisieren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}