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

:root {
  
  
  
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f8fafc;
  --color-bg-dark-accent: #0f172a;
  --color-bg-card-dark: rgba(255, 255, 255, 0.05);
  --color-bg-card-light: #ffffff;
  
  
  --color-text-dark: #ffffff;
  --color-text-light: #0f172a;
  --color-text-secondary-dark: #cbd5e1;
  --color-text-secondary-light: #475569;
  --color-text-muted-dark: #94a3b8;
  --color-text-muted-light: #78828f;
  
  
  --color-primary: #10b981;
  --color-primary-hover: #059669;
  --color-primary-light: #d1fae5;
  --color-secondary: #0ea5e9;
  --color-secondary-hover: #0284c7;
  --color-accent-warm: #f59e0b;
  --color-success: #10b981;
  --color-error: #ef4444;
  --color-warning: #f59e0b;
  
  
  --font-primary: 'Sora', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  --shadow-dark: 0 25px 50px rgba(0, 0, 0, 0.3);
  
  
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  
  
  --letter-spacing-tight: -0.02em;
  --letter-spacing-normal: 0em;
  --letter-spacing-wide: 0.05em;
  
  
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
}

*,
*::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: 1rem;
  line-height: var(--line-height-normal);
  color: var(--color-text-light);
  background: var(--color-bg-secondary);
  overflow-x: hidden;
}

h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
}

h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  line-height: var(--line-height-tight);
}

h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
}

h5 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
}

h6 {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
}

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

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

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

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

strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

small {
  font-size: 0.875rem;
}

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

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

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--space-xl);
  }
}

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

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

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

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

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

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

.flex {
  display: flex;
}

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

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

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

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

.section-hero h1,
.section-hero h2 {
  color: var(--color-text-dark);
}

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

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

.section-light {
  background: var(--color-bg-secondary);
  color: var(--color-text-light);
  padding: var(--space-3xl) var(--space-md);
}

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

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

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

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

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

.section-dark-accent {
  background: var(--color-bg-dark-accent);
  color: var(--color-text-dark);
  padding: var(--space-3xl) var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

.btn-ghost-dark {
  background: transparent;
  color: var(--color-text-dark);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

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

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

.card {
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.card-light {
  background: var(--color-bg-card-light);
  color: var(--color-text-light);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.card-dark {
  background: var(--color-bg-card-dark);
  color: var(--color-text-dark);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-dark:hover {
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.card-title {
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: var(--space-md);
  font-size: 1.25rem;
}

.card-text {
  font-size: 0.95rem;
  line-height: var(--line-height-relaxed);
}

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

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

.badge-secondary {
  background: rgba(14, 165, 233, 0.1);
  color: var(--color-secondary);
}

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

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

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

.form-group:last-child {
  margin-bottom: 0;
}

label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 500;
  font-size: 0.95rem;
}

input,
textarea,
select {
  width: 100%;
  padding: var(--space-sm);
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all var(--transition-base);
  background: #ffffff;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

.text-white {
  color: #ffffff;
}

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

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

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

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

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

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

.italic {
  font-style: italic;
}

.underline {
  text-decoration: underline;
}

.no-decoration {
  text-decoration: none;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

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

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

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

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

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

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

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

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

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

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

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

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

.hidden {
  display: none;
}

.block {
  display: block;
}

.inline {
  display: inline;
}

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

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

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

@media (max-width: 767px) {
  .hide-mobile {
    display: none;
  }
}

@media (min-width: 768px) {
  .show-mobile {
    display: none;
  }
}

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

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

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

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

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

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

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

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

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

@media print {
  body {
    background: #ffffff;
    color: #000000;
  }

  a {
    text-decoration: underline;
  }

  .no-print {
    display: none;
  }
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

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

@media (min-width: 1440px) {
  .container {
    padding: 0 var(--space-2xl);
  }
}
.header-profit-nexus {
  background: var(--color-bg-primary);
  padding: clamp(0.75rem, 2vw, 1rem) 0;
  position: static;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

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

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

.header-profit-nexus-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-dark);
  letter-spacing: var(--letter-spacing-tight);
  line-height: var(--line-height-tight);
}

.header-profit-nexus-desktop-nav {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 2rem);
  flex: 1;
  justify-content: center;
  margin: 0 clamp(1rem, 3vw, 2rem);
}

.header-profit-nexus-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  color: var(--color-text-secondary-dark);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color var(--transition-base);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.header-profit-nexus-nav-link:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

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

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

.header-profit-nexus-mobile-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.header-profit-nexus-mobile-toggle:hover {
  opacity: 0.7;
}

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

.header-profit-nexus-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-primary);
  display: flex;
  flex-direction: column;
  padding-top: 60px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-base);
  z-index: 999;
  overflow-y: auto;
}

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

.header-profit-nexus-mobile-header {
  display: flex;
  justify-content: flex-end;
  padding: clamp(1rem, 3vw, 1.5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.header-profit-nexus-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: clamp(1rem, 3vw, 1.5rem);
}

.header-profit-nexus-mobile-link {
  padding: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary-dark);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-base);
}

.header-profit-nexus-mobile-link:hover {
  color: var(--color-primary);
  background: rgba(16, 185, 129, 0.05);
  padding-left: clamp(1.5rem, 3vw, 1.75rem);
}

.header-profit-nexus-mobile-cta {
  margin-top: clamp(1rem, 3vw, 1.5rem);
  padding: clamp(0.875rem, 1.5vw, 1rem) clamp(1rem, 2vw, 1.5rem);
  background: var(--color-primary);
  color: var(--color-bg-primary);
  text-align: center;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-base);
}

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

@media (min-width: 768px) {
  .header-profit-nexus {
    padding: 0.875rem 0;
  }

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

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

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

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

  .header-profit-nexus-container {
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }
}

@media (min-width: 1024px) {
  .header-profit-nexus-container {
    gap: clamp(2rem, 4vw, 3rem);
  }

  .header-profit-nexus-nav-link {
    font-size: 1rem;
  }

  .header-profit-nexus-cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}

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

.breakeven-hub * {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

@media (min-width: 1024px) {
  .hero-content-index {
    flex-direction: row;
    align-items: center;
  }
}

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

.hero-image-block-index {
  flex: 1 1 45%;
  width: 100%;
  height: auto;
}

.hero-image-index {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
}

.hero-title-index {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

.hero-buttons-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  margin-top: 0.5rem;
}

.btn-primary-hero-index {
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #10b981;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 250ms ease-in-out;
  font-size: clamp(0.9rem, 1vw, 1rem);
}

.btn-primary-hero-index:hover {
  background: #059669;
  transform: translateY(-2px);
}

.btn-secondary-hero-index {
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 250ms ease-in-out;
  font-size: clamp(0.9rem, 1vw, 1rem);
}

.btn-secondary-hero-index:hover {
  border-color: #10b981;
  color: #10b981;
}

.hero-stats-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hero-stat-number-index {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #10b981;
}

.hero-stat-label-index {
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: #94a3b8;
  font-weight: 500;
}

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

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

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

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

.features-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #475569;
  line-height: 1.75;
  margin: 0;
}

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

.feature-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 250ms ease-in-out;
}

.feature-card-index:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon-index {
  font-size: 2.5rem;
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card-title-index {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

.feature-card-text-index {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.75;
  margin: 0;
}

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

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

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

.howitworks-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.howitworks-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #475569;
  line-height: 1.75;
  margin: 0;
}

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

.howitworks-step-index {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
}

@media (max-width: 767px) {
  .howitworks-step-index {
    flex-direction: column;
  }
}

.howitworks-step-number-index {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #10b981;
  flex-shrink: 0;
  min-width: 80px;
}

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

.howitworks-step-title-index {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

.howitworks-step-text-index {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.75;
  margin: 0;
}

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

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

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

.statistics-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.statistics-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #cbd5e1;
  line-height: 1.75;
  margin: 0;
}

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

.statistics-card-index {
  flex: 1 1 280px;
  max-width: 350px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  transition: all 250ms ease-in-out;
}

.statistics-card-index:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #10b981;
}

.statistics-number-index {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #10b981;
}

.statistics-card-text-index {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.75;
  margin: 0;
}

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

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

@media (min-width: 1024px) {
  .about-content-index {
    flex-direction: row;
    align-items: center;
  }
}

.about-text-block-index {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-image-block-index {
  flex: 1 1 45%;
  width: 100%;
  height: auto;
}

.about-image-index {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
}

.about-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.about-text-index {
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  color: #475569;
  line-height: 1.75;
  margin: 0;
}

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

.about-feature-item-index {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #0f172a;
}

.about-feature-icon-index {
  color: #10b981;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.about-feature-text-index {
  line-height: 1.5;
}

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

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

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

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

.testimonials-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #475569;
  line-height: 1.75;
  margin: 0;
}

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

.testimonial-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.testimonial-text-index {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.75;
  margin: 0;
  font-style: italic;
}

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

.testimonial-name-index {
  font-size: 0.95rem;
  color: #0f172a;
  margin: 0;
}

.testimonial-role-index {
  font-size: 0.85rem;
  color: #10b981;
  font-weight: 500;
}

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

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

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

.faq-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.faq-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #475569;
  line-height: 1.75;
  margin: 0;
}

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

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

.faq-question-index {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 0.75rem 0;
}

.faq-answer-index {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.75;
  margin: 0;
}

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

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

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

.featured-posts-tag-index {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.featured-posts-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.featured-posts-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #475569;
  line-height: 1.75;
  margin: 0;
}

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

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

.featured-post-card-index:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.featured-post-card-title-index {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
}

.featured-post-card-text-index {
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.featured-post-link-index {
  color: #10b981;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 250ms ease-in-out;
  align-self: flex-start;
}

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

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

.featured-posts-view-all-index {
  display: inline-block;
  padding: clamp(0.75rem, 1vw, 1rem) clamp(1.5rem, 2vw, 2rem);
  background: #10b981;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 250ms ease-in-out;
  font-size: clamp(0.9rem, 1vw, 1rem);
}

.featured-posts-view-all-index:hover {
  background: #059669;
  transform: translateY(-2px);
}

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

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

.cta-box-index {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 16px;
  text-align: center;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

.cta-box-button-index {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: #10b981;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 250ms ease-in-out;
  font-size: clamp(0.9rem, 1vw, 1rem);
  align-self: center;
}

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

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

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

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

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

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  transition: all 250ms ease-in-out;
}

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

.cookie-btn-accept-index:hover {
  background: #059669;
}

.cookie-btn-decline-index {
  background: transparent;
  color: #f1f5f9;
  border: 1px solid rgba(241, 245, 249, 0.3);
}

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

@media (max-width: 767px) {
  .hero-content-index {
    flex-direction: column;
  }
  
  .hero-image-block-index {
    flex: 1 1 100%;
  }
  
  .about-content-index {
    flex-direction: column;
  }
  
  .about-image-block-index {
    flex: 1 1 100%;
  }
  
  .cookie-banner-index {
    padding: 1rem;
    gap: 1rem;
  }
  
  .cookie-banner-buttons-index {
    width: 100%;
    gap: 0.75rem;
  }
  
  .cookie-btn-accept-index,
  .cookie-btn-decline-index {
    flex: 1 1 auto;
    min-width: 120px;
  }
}

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

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

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

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

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

.footer-about h3 {
  color: var(--color-text-dark);
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  letter-spacing: var(--letter-spacing-tight);
}

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

.footer-nav h3,
.footer-contact h3,
.footer-legal h3 {
  color: var(--color-text-dark);
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  letter-spacing: var(--letter-spacing-tight);
}

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

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

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

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

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

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

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

  .footer-about {
    flex: 1 1 280px;
    max-width: none;
  }

  .footer-nav {
    flex: 1 1 150px;
    min-width: 140px;
  }

  .footer-contact {
    flex: 1 1 280px;
  }

  .footer-legal {
    flex: 1 1 150px;
    min-width: 140px;
  }

  .footer-copyright {
    flex: 1 1 100%;
  }
}

@media (min-width: 1024px) {
  .footer-content {
    display: flex;
    flex-direction: row;

    gap: clamp(2.5rem, 3vw, 3.5rem);
  }

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

  .footer-nav {
    flex: 1 1 140px;
  }

  .footer-contact {
    flex: 1 1 280px;
  }

  .footer-legal {
    flex: 1 1 140px;
  }

  .footer-copyright {
    flex: 1 1 100%;
  }
}
    

.category-page-break-even {
  width: 100%;
  overflow-x: hidden;
}

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

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

.hero-header-break-even {
  text-align: center;
}

.hero-title-break-even {
  color: #ffffff;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.hero-subtitle-break-even {
  color: #cbd5e1;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 500;
  line-height: 1.5;
}

.hero-description-break-even {
  max-width: 800px;
  margin: 0 auto;
}

.hero-text-break-even {
  color: #94a3b8;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin: 0;
}

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

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

.posts-header-break-even {
  text-align: center;
}

.posts-title-break-even {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  line-height: 1.2;
}

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

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

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

.card-break-even:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-color: #10b981;
}

.card-image-break-even {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.card-title-break-even {
  color: #0f172a;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

.card-description-break-even {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.card-meta-break-even {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid #e2e8f0;
}

.card-reading-time-break-even,
.card-level-break-even,
.card-date-break-even {
  color: #64748b;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-reading-time-break-even i,
.card-level-break-even i,
.card-date-break-even i {
  color: #10b981;
  font-size: 0.9rem;
}

.card-link-break-even {
  color: #10b981;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 0.5rem;
}

.card-link-break-even:hover {
  color: #059669;
  text-decoration: underline;
}

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

.insight-content-break-even {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
  max-width: 900px;
  margin: 0 auto;
}

.insight-quote-break-even {
  background: #ffffff;
  border-left: 4px solid #10b981;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.insight-quote-text-break-even {
  color: #0f172a;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  line-height: 1.6;
  margin: 0 0 1rem 0;
  font-weight: 500;
}

.insight-author-break-even {
  color: #64748b;
  font-size: 0.95rem;
  margin: 0;
}

.insight-explanation-break-even {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.insight-title-break-even {
  color: #0f172a;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.insight-text-break-even {
  color: #475569;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin: 0;
}

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

.framework-content-break-even {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.framework-header-break-even {
  text-align: center;
}

.framework-title-break-even {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  line-height: 1.2;
}

.framework-subtitle-break-even {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  margin: 0;
}

.framework-items-break-even {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.framework-item-break-even {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1 1 240px;
  max-width: 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;
}

.framework-item-break-even:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #10b981;
  transform: translateY(-4px);
}

.framework-number-break-even {
  width: 48px;
  height: 48px;
  background: #10b981;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.framework-item-title-break-even {
  color: #ffffff;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

.framework-item-text-break-even {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 767px) {
  .posts-grid-break-even {
    flex-direction: column;
    align-items: stretch;
  }

  .card-break-even {
    flex: 1 1 auto;
    max-width: 100%;
  }

  .framework-items-break-even {
    flex-direction: column;
    align-items: stretch;
  }

  .framework-item-break-even {
    flex: 1 1 auto;
    max-width: 100%;
  }

  .insight-quote-break-even {
    padding: 1.5rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .posts-grid-break-even {
    gap: 1.5rem;
  }

  .card-break-even {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .framework-items-break-even {
    gap: 1.5rem;
  }

  .framework-item-break-even {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (min-width: 1024px) {
  .card-break-even {
    flex: 1 1 calc(25% - 1.5rem);
  }

  .framework-item-break-even {
    flex: 1 1 calc(25% - 1.5rem);
  }
}

.main-break-even-punkt-berechnen {
  width: 100%;
  overflow-x: hidden;
}

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

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

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--space-xl);
  }
}

.hero-section-break-even-punkt-berechnen {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.breadcrumbs-break-even-punkt-berechnen {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.75rem, 1vw, 0.95rem);
}

.breadcrumbs-break-even-punkt-berechnen a {
  color: #10b981;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.breadcrumbs-break-even-punkt-berechnen a:hover {
  color: #059669;
  text-decoration: underline;
}

.breadcrumbs-break-even-punkt-berechnen span {
  color: #64748b;
}

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

.hero-text-break-even-punkt-berechnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-break-even-punkt-berechnen {
  font-size: clamp(2rem, 5vw + 1rem, 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-break-even-punkt-berechnen {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-break-even-punkt-berechnen {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: #94a3b8;
}

.meta-item-break-even-punkt-berechnen {
  color: #94a3b8;
}

.meta-divider-break-even-punkt-berechnen {
  color: #475569;
}

.hero-image-break-even-punkt-berechnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-break-even-punkt-berechnen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-height: 400px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-content-break-even-punkt-berechnen {
    flex-direction: column;
  }

  .hero-text-break-even-punkt-berechnen,
  .hero-image-break-even-punkt-berechnen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-meta-break-even-punkt-berechnen {
    flex-wrap: wrap;
  }
}

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

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

.intro-text-break-even-punkt-berechnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-break-even-punkt-berechnen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-break-even-punkt-berechnen {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #374151;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-paragraph-break-even-punkt-berechnen:last-child {
  margin-bottom: 0;
}

.intro-image-break-even-punkt-berechnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-break-even-punkt-berechnen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-height: 400px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .intro-content-break-even-punkt-berechnen {
    flex-direction: column;
  }

  .intro-text-break-even-punkt-berechnen,
  .intro-image-break-even-punkt-berechnen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.formula-section-break-even-punkt-berechnen {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.formula-content-break-even-punkt-berechnen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.formula-text-break-even-punkt-berechnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.formula-title-break-even-punkt-berechnen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.formula-paragraph-break-even-punkt-berechnen {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #374151;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.formula-box-break-even-punkt-berechnen {
  background: #ffffff;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-left: 4px solid #10b981;
  border-radius: 8px;
  margin: clamp(1.5rem, 3vw, 2rem) 0;
}

.formula-item-break-even-punkt-berechnen {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #1e293b;
  line-height: 1.6;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.formula-item-break-even-punkt-berechnen:last-child {
  margin-bottom: 0;
}

.formula-image-break-even-punkt-berechnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.formula-img-break-even-punkt-berechnen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-height: 400px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .formula-content-break-even-punkt-berechnen {
    flex-direction: column;
  }

  .formula-text-break-even-punkt-berechnen,
  .formula-image-break-even-punkt-berechnen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.steps-section-break-even-punkt-berechnen {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.steps-header-break-even-punkt-berechnen {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.steps-title-break-even-punkt-berechnen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.steps-subtitle-break-even-punkt-berechnen {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

.steps-wrapper-break-even-punkt-berechnen {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.step-card-break-even-punkt-berechnen {
  flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1rem));
  min-width: 250px;
  max-width: 350px;
  background: rgba(255, 255, 255, 0.05);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1.5vw, 1.5rem);
  transition: all 0.3s ease;
}

.step-card-break-even-punkt-berechnen:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(16, 185, 129, 0.5);
  transform: translateY(-4px);
}

.step-number-break-even-punkt-berechnen {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
}

.step-title-break-even-punkt-berechnen {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.step-text-break-even-punkt-berechnen {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .step-card-break-even-punkt-berechnen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.practical-section-break-even-punkt-berechnen {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practical-content-break-even-punkt-berechnen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.practical-text-break-even-punkt-berechnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-title-break-even-punkt-berechnen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.practical-paragraph-break-even-punkt-berechnen {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #374151;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.practical-paragraph-break-even-punkt-berechnen:last-child {
  margin-bottom: 0;
}

.practical-image-break-even-punkt-berechnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-img-break-even-punkt-berechnen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-height: 400px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .practical-content-break-even-punkt-berechnen {
    flex-direction: column;
  }

  .practical-text-break-even-punkt-berechnen,
  .practical-image-break-even-punkt-berechnen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.insights-section-break-even-punkt-berechnen {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.insights-content-break-even-punkt-berechnen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.insights-image-break-even-punkt-berechnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.insights-img-break-even-punkt-berechnen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-height: 400px;
  object-fit: cover;
}

.insights-text-break-even-punkt-berechnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.insights-title-break-even-punkt-berechnen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.insights-paragraph-break-even-punkt-berechnen {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #374151;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.insights-highlight-break-even-punkt-berechnen {
  background: #ffffff;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-left: 4px solid #10b981;
  border-radius: 8px;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.highlight-text-break-even-punkt-berechnen {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #1e293b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .insights-content-break-even-punkt-berechnen {
    flex-direction: column-reverse;
  }

  .insights-image-break-even-punkt-berechnen,
  .insights-text-break-even-punkt-berechnen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-break-even-punkt-berechnen {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-break-even-punkt-berechnen {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-break-even-punkt-berechnen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-paragraph-break-even-punkt-berechnen {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #cbd5e1;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-paragraph-break-even-punkt-berechnen:last-child {
  margin-bottom: 0;
}

.disclaimer-section-break-even-punkt-berechnen {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(2rem, 4vw, 3rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-break-even-punkt-berechnen {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-break-even-punkt-berechnen {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: clamp(1rem, 1.5vw, 1.25rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.disclaimer-text-break-even-punkt-berechnen {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #475569;
  line-height: 1.6;
}

.related-section-break-even-punkt-berechnen {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-break-even-punkt-berechnen {
  text-align: center;
}

.related-title-break-even-punkt-berechnen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-card-break-even-punkt-berechnen {
  flex: 1 1 calc(33.333% - clamp(1rem, 2vw, 1.5rem));
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.related-card-break-even-punkt-berechnen:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #10b981;
  transform: translateY(-4px);
}

.related-card-image-break-even-punkt-berechnen {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.related-card-title-break-even-punkt-berechnen {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 600;
  color: #0f172a;
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem) clamp(0.5rem, 1vw, 0.75rem);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-text-break-even-punkt-berechnen {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #475569;
  padding: 0 clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem);
  line-height: 1.6;
  flex: 1;
}

.related-card-link-break-even-punkt-berechnen {
  display: inline-block;
  padding: clamp(0.75rem, 1vw, 1rem) clamp(1rem, 2vw, 1.5rem);
  color: #10b981;
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(0.9rem, 1vw, 1rem);
  transition: all 0.3s ease;
  margin: clamp(0.5rem, 1vw, 1rem) clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem);
}

.related-card-link-break-even-punkt-berechnen:hover {
  color: #059669;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-card-break-even-punkt-berechnen {
    flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1rem));
  }
}

@media (max-width: 768px) {
  .related-card-break-even-punkt-berechnen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.main-fixkosten-variable-kosten {
  width: 100%;
  overflow-x: hidden;
}

.main-fixkosten-variable-kosten h1,
.main-fixkosten-variable-kosten h2,
.main-fixkosten-variable-kosten h3,
.main-fixkosten-variable-kosten h4,
.main-fixkosten-variable-kosten h5,
.main-fixkosten-variable-kosten h6 {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.main-fixkosten-variable-kosten p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-section-fixkosten-variable-kosten {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) var(--space-md);
  overflow: hidden;
  position: relative;
}

.breadcrumbs-fixkosten-variable-kosten {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.breadcrumbs-fixkosten-variable-kosten a {
  color: #10b981;
  text-decoration: none;
  transition: all var(--transition-base);
  font-weight: 500;
}

.breadcrumbs-fixkosten-variable-kosten a:hover {
  color: #059669;
  text-decoration: underline;
}

.breadcrumbs-fixkosten-variable-kosten span {
  color: #64748b;
}

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

.hero-text-fixkosten-variable-kosten {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-fixkosten-variable-kosten {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: #ffffff;
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.hero-description-fixkosten-variable-kosten {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}

.hero-meta-fixkosten-variable-kosten {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

.meta-item-fixkosten-variable-kosten {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: #94a3b8;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-image-fixkosten-variable-kosten {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

  .hero-text-fixkosten-variable-kosten,
  .hero-image-fixkosten-variable-kosten {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-meta-fixkosten-variable-kosten {
    gap: var(--space-md);
  }

  .meta-item-fixkosten-variable-kosten {
    gap: var(--space-xs);
  }
}

.intro-section-fixkosten-variable-kosten {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) var(--space-md);
  overflow: hidden;
}

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

.intro-text-fixkosten-variable-kosten {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-fixkosten-variable-kosten {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.intro-description-fixkosten-variable-kosten {
  color: #475569;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}

.intro-description-fixkosten-variable-kosten:last-child {
  margin-bottom: 0;
}

.intro-image-fixkosten-variable-kosten {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-fixkosten-variable-kosten {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-wrapper-fixkosten-variable-kosten {
    flex-direction: column;
  }

  .intro-text-fixkosten-variable-kosten,
  .intro-image-fixkosten-variable-kosten {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.fixkosten-section-fixkosten-variable-kosten {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) var(--space-md);
  overflow: hidden;
}

.fixkosten-wrapper-fixkosten-variable-kosten {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.fixkosten-image-fixkosten-variable-kosten {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.fixkosten-img-fixkosten-variable-kosten {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.fixkosten-text-fixkosten-variable-kosten {
  flex: 1 1 50%;
  max-width: 50%;
}

.fixkosten-title-fixkosten-variable-kosten {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.fixkosten-description-fixkosten-variable-kosten {
  color: #475569;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}

.fixkosten-list-fixkosten-variable-kosten {
  list-style: none;
  margin-left: 0;
  margin-bottom: var(--space-lg);
  padding: 0;
}

.fixkosten-list-item-fixkosten-variable-kosten {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
  position: relative;
}

.fixkosten-list-item-fixkosten-variable-kosten::before {
  content: "";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
  font-size: 1.1rem;
}

.fixkosten-note-fixkosten-variable-kosten {
  color: #0f172a;
  font-size: 0.95rem;
  line-height: 1.75;
  padding: var(--space-md);
  background: rgba(16, 185, 129, 0.05);
  border-left: 4px solid #10b981;
  border-radius: var(--radius-md);
  margin-top: var(--space-lg);
}

@media (max-width: 768px) {
  .fixkosten-wrapper-fixkosten-variable-kosten {
    flex-direction: column;
  }

  .fixkosten-image-fixkosten-variable-kosten,
  .fixkosten-text-fixkosten-variable-kosten {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .fixkosten-image-fixkosten-variable-kosten {
    order: 0;
  }
}

.variable-section-fixkosten-variable-kosten {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) var(--space-md);
  overflow: hidden;
}

.variable-wrapper-fixkosten-variable-kosten {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.variable-text-fixkosten-variable-kosten {
  flex: 1 1 50%;
  max-width: 50%;
}

.variable-title-fixkosten-variable-kosten {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.variable-description-fixkosten-variable-kosten {
  color: #475569;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}

.variable-list-fixkosten-variable-kosten {
  list-style: none;
  margin-left: 0;
  margin-bottom: var(--space-lg);
  padding: 0;
}

.variable-list-item-fixkosten-variable-kosten {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
  position: relative;
}

.variable-list-item-fixkosten-variable-kosten::before {
  content: "";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
  font-size: 1.1rem;
}

.variable-note-fixkosten-variable-kosten {
  color: #0f172a;
  font-size: 0.95rem;
  line-height: 1.75;
  padding: var(--space-md);
  background: rgba(16, 185, 129, 0.05);
  border-left: 4px solid #10b981;
  border-radius: var(--radius-md);
  margin-top: var(--space-lg);
}

.variable-image-fixkosten-variable-kosten {
  flex: 1 1 50%;
  max-width: 50%;
}

.variable-img-fixkosten-variable-kosten {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .variable-wrapper-fixkosten-variable-kosten {
    flex-direction: column;
  }

  .variable-text-fixkosten-variable-kosten,
  .variable-image-fixkosten-variable-kosten {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.praktisch-section-fixkosten-variable-kosten {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) var(--space-md);
  overflow: hidden;
}

.praktisch-header-fixkosten-variable-kosten {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.praktisch-title-fixkosten-variable-kosten {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.praktisch-subtitle-fixkosten-variable-kosten {
  color: #475569;
  font-size: 1rem;
  line-height: 1.75;
}

.praktisch-content-fixkosten-variable-kosten {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.praktisch-text-fixkosten-variable-kosten {
  flex: 1 1 50%;
  max-width: 50%;
}

.praktisch-description-fixkosten-variable-kosten {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: var(--space-md);
}

.praktisch-list-fixkosten-variable-kosten {
  list-style: none;
  margin-left: 0;
  margin-bottom: var(--space-lg);
  padding: 0;
}

.praktisch-list-item-fixkosten-variable-kosten {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: var(--space-sm);
  padding-left: var(--space-lg);
  position: relative;
}

.praktisch-list-item-fixkosten-variable-kosten::before {
  content: "";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
  font-size: 1.1rem;
}

.praktisch-total-fixkosten-variable-kosten {
  color: #0f172a;
  font-size: 0.95rem;
  line-height: 1.75;
  padding: var(--space-md);
  background: rgba(16, 185, 129, 0.08);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
}

.praktisch-var-text-fixkosten-variable-kosten {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: var(--space-md);
  margin-top: var(--space-lg);
}

.praktisch-var-list-fixkosten-variable-kosten {
  list-style: none;
  margin-left: 0;
  margin-bottom: var(--space-lg);
  padding: 0;
}

.praktisch-var-list-item-fixkosten-variable-kosten {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: var(--space-sm);
  padding-left: var(--space-lg);
  position: relative;
}

.praktisch-var-list-item-fixkosten-variable-kosten::before {
  content: "";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
  font-size: 1.1rem;
}

.praktisch-total-variable-fixkosten-variable-kosten {
  color: #0f172a;
  font-size: 0.95rem;
  line-height: 1.75;
  padding: var(--space-md);
  background: rgba(16, 185, 129, 0.08);
  border-radius: var(--radius-md);
}

.praktisch-image-fixkosten-variable-kosten {
  flex: 1 1 50%;
  max-width: 50%;
}

.praktisch-img-fixkosten-variable-kosten {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .praktisch-content-fixkosten-variable-kosten {
    flex-direction: column;
  }

  .praktisch-text-fixkosten-variable-kosten,
  .praktisch-image-fixkosten-variable-kosten {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.anwendung-section-fixkosten-variable-kosten {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) var(--space-md);
  overflow: hidden;
}

.anwendung-wrapper-fixkosten-variable-kosten {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.anwendung-text-fixkosten-variable-kosten {
  flex: 1 1 50%;
  max-width: 50%;
}

.anwendung-title-fixkosten-variable-kosten {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.anwendung-description-fixkosten-variable-kosten {
  color: #475569;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}

.anwendung-cards-fixkosten-variable-kosten {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.anwendung-card-fixkosten-variable-kosten {
  background: #f8fafc;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid #10b981;
  transition: all var(--transition-base);
}

.anwendung-card-fixkosten-variable-kosten:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateX(4px);
}

.anwendung-card-title-fixkosten-variable-kosten {
  font-size: 1.1rem;
  color: #0f172a;
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.anwendung-card-text-fixkosten-variable-kosten {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0;
}

.anwendung-image-fixkosten-variable-kosten {
  flex: 1 1 50%;
  max-width: 50%;
}

.anwendung-img-fixkosten-variable-kosten {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .anwendung-wrapper-fixkosten-variable-kosten {
    flex-direction: column;
  }

  .anwendung-text-fixkosten-variable-kosten,
  .anwendung-image-fixkosten-variable-kosten {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.tipps-section-fixkosten-variable-kosten {
  background: #0f172a;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) var(--space-md);
  overflow: hidden;
}

.tipps-header-fixkosten-variable-kosten {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.tipps-title-fixkosten-variable-kosten {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.tipps-subtitle-fixkosten-variable-kosten {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.75;
}

.tipps-content-fixkosten-variable-kosten {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.tipps-list-fixkosten-variable-kosten {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.tipps-item-fixkosten-variable-kosten {
  display: flex;
  gap: var(--space-lg);
}

.tipps-number-fixkosten-variable-kosten {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #10b981;
  min-width: 60px;
  flex-shrink: 0;
}

.tipps-text-fixkosten-variable-kosten {
  flex: 1;
}

.tipps-item-title-fixkosten-variable-kosten {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.tipps-item-description-fixkosten-variable-kosten {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0;
}

.tipps-image-fixkosten-variable-kosten {
  flex: 1 1 50%;
  max-width: 50%;
}

.tipps-img-fixkosten-variable-kosten {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .tipps-content-fixkosten-variable-kosten {
    flex-direction: column;
  }

  .tipps-list-fixkosten-variable-kosten,
  .tipps-image-fixkosten-variable-kosten {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.fazit-section-fixkosten-variable-kosten {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) var(--space-md);
  overflow: hidden;
}

.fazit-content-fixkosten-variable-kosten {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.fazit-title-fixkosten-variable-kosten {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.fazit-text-fixkosten-variable-kosten {
  color: #475569;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
  text-align: left;
}

.fazit-list-fixkosten-variable-kosten {
  list-style: none;
  margin-left: 0;
  margin-bottom: var(--space-lg);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  text-align: left;
}

.fazit-list-item-fixkosten-variable-kosten {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.75;
  padding-left: var(--space-lg);
  position: relative;
}

.fazit-list-item-fixkosten-variable-kosten::before {
  content: "";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
  font-size: 1.1rem;
}

.fazit-closing-fixkosten-variable-kosten {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: var(--space-xl);
  text-align: left;
}

.fazit-cta-fixkosten-variable-kosten {
  display: flex;
  justify-content: center;
  margin-top: var(--space-xl);
}

.fazit-cta-fixkosten-variable-kosten .btn {
  padding: var(--space-sm) var(--space-xl);
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

@media (max-width: 768px) {
  .fazit-content-fixkosten-variable-kosten {
    text-align: center;
  }

  .fazit-text-fixkosten-variable-kosten,
  .fazit-list-fixkosten-variable-kosten,
  .fazit-closing-fixkosten-variable-kosten {
    text-align: left;
  }
}

.disclaimer-section-fixkosten-variable-kosten {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(2rem, 6vw, 4rem) var(--space-md);
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-fixkosten-variable-kosten {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-lg);
  background: #f8fafc;
  border-radius: var(--radius-lg);
  border-left: 4px solid #0ea5e9;
}

.disclaimer-title-fixkosten-variable-kosten {
  font-size: 1.1rem;
  color: #0f172a;
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.disclaimer-text-fixkosten-variable-kosten {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.75;
  margin: 0;
}

.related-section-fixkosten-variable-kosten {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) var(--space-md);
  overflow: hidden;
}

.related-header-fixkosten-variable-kosten {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-title-fixkosten-variable-kosten {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.related-subtitle-fixkosten-variable-kosten {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.75;
}

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

.related-card-fixkosten-variable-kosten {
  flex: 1 1 280px;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-base);
}

.related-card-fixkosten-variable-kosten:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #10b981;
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.related-card-image-fixkosten-variable-kosten {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.related-card-content-fixkosten-variable-kosten {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.related-card-title-fixkosten-variable-kosten {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: var(--space-md);
  font-weight: 600;
  line-height: 1.3;
}

.related-card-description-fixkosten-variable-kosten {
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

@media (max-width: 768px) {
  .related-cards-fixkosten-variable-kosten {
    flex-direction: column;
  }

  .related-card-fixkosten-variable-kosten {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--space-xl);
  }
}

.main-gewinn-volumen-analyse {
  width: 100%;
  overflow-x: hidden;
}

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

.breadcrumbs-gewinn-volumen-analyse {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.75rem, 1vw, 0.9rem);
}

.breadcrumbs-gewinn-volumen-analyse a {
  color: #10b981;
  text-decoration: none;
  transition: all 250ms ease-in-out;
}

.breadcrumbs-gewinn-volumen-analyse a:hover {
  color: #059669;
  text-decoration: underline;
}

.breadcrumbs-gewinn-volumen-analyse span {
  color: #64748b;
}

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

.hero-text-wrapper-gewinn-volumen-analyse {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-wrapper-gewinn-volumen-analyse {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-gewinn-volumen-analyse {
  font-size: clamp(1.75rem, 5vw, 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-gewinn-volumen-analyse {
  font-size: clamp(0.95rem, 1.2vw, 1.25rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-gewinn-volumen-analyse {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: #94a3b8;
}

.meta-item-gewinn-volumen-analyse {
  font-weight: 500;
}

.meta-separator-gewinn-volumen-analyse {
  color: #475569;
}

.hero-image-gewinn-volumen-analyse {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

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

  .hero-text-wrapper-gewinn-volumen-analyse,
  .hero-image-wrapper-gewinn-volumen-analyse {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-gewinn-volumen-analyse {
    max-height: 300px;
  }
}

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

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

.intro-text-block-gewinn-volumen-analyse {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-block-gewinn-volumen-analyse {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-gewinn-volumen-analyse {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-gewinn-volumen-analyse {
  font-size: clamp(0.9rem, 1.1vw, 1.1rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-paragraph-gewinn-volumen-analyse:last-child {
  margin-bottom: 0;
}

.intro-image-gewinn-volumen-analyse {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

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

  .intro-text-block-gewinn-volumen-analyse,
  .intro-image-block-gewinn-volumen-analyse {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-image-gewinn-volumen-analyse {
    max-height: 300px;
  }
}

.core-section-gewinn-volumen-analyse {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.core-content-gewinn-volumen-analyse {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.core-text-block-gewinn-volumen-analyse {
  flex: 1 1 50%;
  max-width: 50%;
}

.core-image-block-gewinn-volumen-analyse {
  flex: 1 1 50%;
  max-width: 50%;
}

.core-title-gewinn-volumen-analyse {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.core-paragraph-gewinn-volumen-analyse {
  font-size: clamp(0.9rem, 1.1vw, 1.1rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.core-paragraph-gewinn-volumen-analyse:last-child {
  margin-bottom: 0;
}

.core-image-gewinn-volumen-analyse {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .core-content-gewinn-volumen-analyse {
    flex-direction: column;
  }

  .core-text-block-gewinn-volumen-analyse,
  .core-image-block-gewinn-volumen-analyse {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .core-image-gewinn-volumen-analyse {
    max-height: 300px;
  }
}

.calculation-section-gewinn-volumen-analyse {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.calculation-content-gewinn-volumen-analyse {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.calculation-image-block-gewinn-volumen-analyse {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.calculation-text-block-gewinn-volumen-analyse {
  flex: 1 1 50%;
  max-width: 50%;
}

.calculation-title-gewinn-volumen-analyse {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.calculation-paragraph-gewinn-volumen-analyse {
  font-size: clamp(0.9rem, 1.1vw, 1.1rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.calculation-paragraph-gewinn-volumen-analyse:last-child {
  margin-bottom: 0;
}

.calculation-image-gewinn-volumen-analyse {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .calculation-content-gewinn-volumen-analyse {
    flex-direction: column;
  }

  .calculation-image-block-gewinn-volumen-analyse,
  .calculation-text-block-gewinn-volumen-analyse {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }

  .calculation-image-gewinn-volumen-analyse {
    max-height: 300px;
  }
}

.scenarios-section-gewinn-volumen-analyse {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.scenarios-header-gewinn-volumen-analyse {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.scenarios-title-gewinn-volumen-analyse {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.scenarios-subtitle-gewinn-volumen-analyse {
  font-size: clamp(0.9rem, 1.1vw, 1.1rem);
  color: #cbd5e1;
  max-width: 700px;
  margin: 0 auto;
}

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

.scenario-card-gewinn-volumen-analyse {
  flex: 1 1 300px;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 16px;
  transition: all 250ms ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.scenario-card-gewinn-volumen-analyse:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-4px);
}

.scenario-card-title-gewinn-volumen-analyse {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
  color: #10b981;
  line-height: 1.3;
}

.scenario-card-text-gewinn-volumen-analyse {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .scenario-card-gewinn-volumen-analyse {
    flex: 1 1 100%;
  }
}

.insight-section-gewinn-volumen-analyse {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.insight-content-gewinn-volumen-analyse {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.insight-text-block-gewinn-volumen-analyse {
  flex: 1 1 50%;
  max-width: 50%;
}

.insight-image-block-gewinn-volumen-analyse {
  flex: 1 1 50%;
  max-width: 50%;
}

.insight-title-gewinn-volumen-analyse {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.insight-paragraph-gewinn-volumen-analyse {
  font-size: clamp(0.9rem, 1.1vw, 1.1rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.insight-paragraph-gewinn-volumen-analyse:last-child {
  margin-bottom: 0;
}

.insight-image-gewinn-volumen-analyse {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .insight-content-gewinn-volumen-analyse {
    flex-direction: column;
  }

  .insight-text-block-gewinn-volumen-analyse,
  .insight-image-block-gewinn-volumen-analyse {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .insight-image-gewinn-volumen-analyse {
    max-height: 300px;
  }
}

.quote-section-gewinn-volumen-analyse {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.featured-quote-gewinn-volumen-analyse {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #10b981;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}

.quote-text-gewinn-volumen-analyse {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.quote-author-gewinn-volumen-analyse {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #94a3b8;
  display: block;
  font-style: normal;
}

.conclusion-section-gewinn-volumen-analyse {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-gewinn-volumen-analyse {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-gewinn-volumen-analyse {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-text-gewinn-volumen-analyse {
  font-size: clamp(0.9rem, 1.1vw, 1.1rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-cta-gewinn-volumen-analyse {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw, 1rem);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 250ms ease-in-out;
  text-decoration: none;
  gap: 0.5rem;
}

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

.btn-primary:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(16, 185, 129, 0.3);
}

.related-section-gewinn-volumen-analyse {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.related-title-gewinn-volumen-analyse {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-card-gewinn-volumen-analyse {
  flex: 1 1 320px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  transition: all 250ms ease-in-out;
  display: flex;
  flex-direction: column;
}

.related-card-gewinn-volumen-analyse:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  border-color: #10b981;
}

.related-card-image-gewinn-volumen-analyse {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-gewinn-volumen-analyse img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 250ms ease-in-out;
}

.related-card-gewinn-volumen-analyse:hover .related-card-image-gewinn-volumen-analyse img {
  transform: scale(1.05);
}

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

.related-card-title-gewinn-volumen-analyse {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
}

.related-card-description-gewinn-volumen-analyse {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #64748b;
  line-height: 1.6;
  flex: 1;
}

.related-card-link-gewinn-volumen-analyse {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #10b981;
  font-weight: 600;
  text-decoration: none;
  transition: all 250ms ease-in-out;
  font-size: clamp(0.9rem, 1vw, 1rem);
}

.related-card-link-gewinn-volumen-analyse:hover {
  color: #059669;
  gap: 0.75rem;
}

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

.disclaimer-section-gewinn-volumen-analyse {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-gewinn-volumen-analyse {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-left: 4px solid #10b981;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
}

.disclaimer-title-gewinn-volumen-analyse {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
  color: #10b981;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  line-height: 1.3;
}

.disclaimer-text-gewinn-volumen-analyse {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #cbd5e1;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

@media (min-width: 1440px) {
  .container {
    padding: 0 clamp(2rem, 8vw, 4rem);
  }
}

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

.main-break-even-einzelhandel-beispiel {
  width: 100%;
  overflow: hidden;
}

.hero-section-break-even-einzelhandel-beispiel {
  background: #0a0f1e;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.breadcrumbs-break-even-einzelhandel-beispiel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.95rem);
}

.breadcrumbs-break-even-einzelhandel-beispiel a {
  color: #10b981;
  text-decoration: none;
  font-weight: 500;
  transition: all 250ms ease-in-out;
}

.breadcrumbs-break-even-einzelhandel-beispiel a:hover {
  color: #059669;
  text-decoration: underline;
}

.breadcrumbs-break-even-einzelhandel-beispiel span {
  color: #64748b;
}

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

.hero-title-break-even-einzelhandel-beispiel {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-break-even-einzelhandel-beispiel {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #cbd5e1;
  line-height: 1.6;
  max-width: 650px;
}

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

.meta-item-break-even-einzelhandel-beispiel {
  font-weight: 500;
}

.meta-divider-break-even-einzelhandel-beispiel {
  color: #475569;
}

.hero-image-wrapper-break-even-einzelhandel-beispiel {
  width: 100%;
  max-height: 450px;
  border-radius: 12px;
  overflow: hidden;
  margin-top: clamp(0.5rem, 2vw, 1rem);
}

.hero-image-break-even-einzelhandel-beispiel {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .hero-image-wrapper-break-even-einzelhandel-beispiel {
    max-height: 300px;
  }
}

.intro-section-break-even-einzelhandel-beispiel {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

.intro-text-block-break-even-einzelhandel-beispiel {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-heading-break-even-einzelhandel-beispiel {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

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

.intro-paragraph-break-even-einzelhandel-beispiel:last-child {
  margin-bottom: 0;
}

.intro-image-block-break-even-einzelhandel-beispiel {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-break-even-einzelhandel-beispiel {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  min-height: 300px;
  max-height: 450px;
}

@media (max-width: 768px) {
  .intro-content-break-even-einzelhandel-beispiel {
    flex-direction: column;
  }

  .intro-text-block-break-even-einzelhandel-beispiel,
  .intro-image-block-break-even-einzelhandel-beispiel {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-image-break-even-einzelhandel-beispiel {
    min-height: 250px;
    max-height: 350px;
  }
}

.scenario-section-break-even-einzelhandel-beispiel {
  background: #f8fafc;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.scenario-content-break-even-einzelhandel-beispiel {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.scenario-text-break-even-einzelhandel-beispiel {
  flex: 1 1 50%;
  max-width: 50%;
}

.scenario-heading-break-even-einzelhandel-beispiel {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.scenario-paragraph-break-even-einzelhandel-beispiel {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.scenario-paragraph-break-even-einzelhandel-beispiel:last-child {
  margin-bottom: 0;
}

.scenario-image-break-even-einzelhandel-beispiel {
  flex: 1 1 50%;
  max-width: 50%;
}

.scenario-image-break-even-einzelhandel-beispiel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  min-height: 300px;
  max-height: 450px;
}

@media (max-width: 768px) {
  .scenario-content-break-even-einzelhandel-beispiel {
    flex-direction: column;
  }

  .scenario-text-break-even-einzelhandel-beispiel,
  .scenario-image-break-even-einzelhandel-beispiel {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .scenario-image-break-even-einzelhandel-beispiel img {
    min-height: 250px;
    max-height: 350px;
  }
}

.calculation-section-break-even-einzelhandel-beispiel {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.calculation-wrapper-break-even-einzelhandel-beispiel {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.calculation-heading-break-even-einzelhandel-beispiel {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  line-height: 1.2;
}

.calculation-steps-break-even-einzelhandel-beispiel {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.step-card-break-even-einzelhandel-beispiel {
  flex: 1 1 calc(50% - 1rem);
  min-width: 280px;
  max-width: 380px;
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 250ms ease-in-out;
}

.step-card-break-even-einzelhandel-beispiel:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.step-number-break-even-einzelhandel-beispiel {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
}

.step-body-break-even-einzelhandel-beispiel {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-title-break-even-einzelhandel-beispiel {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
}

.step-text-break-even-einzelhandel-beispiel {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .step-card-break-even-einzelhandel-beispiel {
    flex: 1 1 100%;
  }
}

.calculation-highlight-break-even-einzelhandel-beispiel {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid #10b981;
  border-radius: 8px;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.highlight-text-break-even-einzelhandel-beispiel {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #0f172a;
  line-height: 1.7;
  margin: 0;
}

.reality-section-break-even-einzelhandel-beispiel {
  background: #f8fafc;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.reality-wrapper-break-even-einzelhandel-beispiel {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.reality-text-break-even-einzelhandel-beispiel {
  flex: 1 1 50%;
  max-width: 50%;
}

.reality-heading-break-even-einzelhandel-beispiel {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.reality-paragraph-break-even-einzelhandel-beispiel {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.reality-paragraph-break-even-einzelhandel-beispiel:last-child {
  margin-bottom: 0;
}

.reality-image-break-even-einzelhandel-beispiel {
  flex: 1 1 50%;
  max-width: 50%;
}

.reality-image-break-even-einzelhandel-beispiel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  min-height: 300px;
  max-height: 450px;
}

@media (max-width: 768px) {
  .reality-wrapper-break-even-einzelhandel-beispiel {
    flex-direction: column;
  }

  .reality-text-break-even-einzelhandel-beispiel,
  .reality-image-break-even-einzelhandel-beispiel {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .reality-image-break-even-einzelhandel-beispiel img {
    min-height: 250px;
    max-height: 350px;
  }
}

.optimization-section-break-even-einzelhandel-beispiel {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.optimization-content-break-even-einzelhandel-beispiel {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.optimization-heading-break-even-einzelhandel-beispiel {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  line-height: 1.2;
}

.optimization-cards-break-even-einzelhandel-beispiel {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.optimization-card-break-even-einzelhandel-beispiel {
  flex: 1 1 calc(50% - 1rem);
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 250ms ease-in-out;
}

.optimization-card-break-even-einzelhandel-beispiel:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.card-title-break-even-einzelhandel-beispiel {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
}

.card-text-break-even-einzelhandel-beispiel {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .optimization-card-break-even-einzelhandel-beispiel {
    flex: 1 1 100%;
  }
}

.insights-section-break-even-einzelhandel-beispiel {
  background: #f8fafc;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.insights-wrapper-break-even-einzelhandel-beispiel {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.insights-text-break-even-einzelhandel-beispiel {
  flex: 1 1 50%;
  max-width: 50%;
}

.insights-heading-break-even-einzelhandel-beispiel {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.insights-paragraph-break-even-einzelhandel-beispiel {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.insights-paragraph-break-even-einzelhandel-beispiel:last-child {
  margin-bottom: 0;
}

.insights-image-break-even-einzelhandel-beispiel {
  flex: 1 1 50%;
  max-width: 50%;
}

.insights-image-break-even-einzelhandel-beispiel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  min-height: 300px;
  max-height: 450px;
}

@media (max-width: 768px) {
  .insights-wrapper-break-even-einzelhandel-beispiel {
    flex-direction: column;
  }

  .insights-text-break-even-einzelhandel-beispiel,
  .insights-image-break-even-einzelhandel-beispiel {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .insights-image-break-even-einzelhandel-beispiel img {
    min-height: 250px;
    max-height: 350px;
  }
}

.disclaimer-section-break-even-einzelhandel-beispiel {
  background: #ffffff;
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-break-even-einzelhandel-beispiel {
  background: #f0fdf4;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid #10b981;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.disclaimer-title-break-even-einzelhandel-beispiel {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #059669;
  margin: 0;
}

.disclaimer-text-break-even-einzelhandel-beispiel {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #374151;
  line-height: 1.7;
  margin: 0;
}

.related-section-break-even-einzelhandel-beispiel {
  background: #f8fafc;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.related-content-break-even-einzelhandel-beispiel {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-heading-break-even-einzelhandel-beispiel {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  line-height: 1.2;
}

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

.related-card-break-even-einzelhandel-beispiel {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 300px;
  max-width: 400px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 250ms ease-in-out;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.related-card-break-even-einzelhandel-beispiel:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.related-card-image-break-even-einzelhandel-beispiel {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-break-even-einzelhandel-beispiel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-body-break-even-einzelhandel-beispiel {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-break-even-einzelhandel-beispiel {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
  margin: 0;
}

.related-card-text-break-even-einzelhandel-beispiel {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.related-card-break-even-einzelhandel-beispiel:hover .related-card-title-break-even-einzelhandel-beispiel {
  color: #10b981;
}

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

@media (max-width: 768px) {
  .related-card-break-even-einzelhandel-beispiel {
    flex: 1 1 100%;
  }
}

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

@media (min-width: 768px) {
  .container {
    padding: 0 clamp(1.5rem, 4vw, 2.5rem);
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 clamp(2rem, 5vw, 3rem);
  }
}

body {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #0f172a;
  background: #ffffff;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

a {
  color: #10b981;
  text-decoration: none;
  transition: all 250ms ease-in-out;
}

a:hover {
  color: #059669;
  text-decoration: underline;
}

strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

@media (max-width: 480px) {
  .hero-section-break-even-einzelhandel-beispiel {
    padding: 1.5rem 0;
  }

  .intro-section-break-even-einzelhandel-beispiel,
  .scenario-section-break-even-einzelhandel-beispiel,
  .calculation-section-break-even-einzelhandel-beispiel,
  .reality-section-break-even-einzelhandel-beispiel,
  .optimization-section-break-even-einzelhandel-beispiel,
  .insights-section-break-even-einzelhandel-beispiel,
  .disclaimer-section-break-even-einzelhandel-beispiel,
  .related-section-break-even-einzelhandel-beispiel {
    padding: 2rem 0;
  }
}

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

.breakeven-narrative-about {
  width: 100%;
  font-family: var(--font-primary);
  color: var(--color-text-light);
}

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

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

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

.hero-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-dark);
  letter-spacing: var(--letter-spacing-tight);
}

.hero-subtitle-about {
  font-size: clamp(0.95rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary-dark);
  max-width: 600px;
  line-height: var(--line-height-relaxed);
}

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

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

.stat-number-about {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.stat-label-about {
  font-size: clamp(0.8rem, 1vw + 0.3rem, 1rem);
  color: var(--color-text-muted-dark);
}

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

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

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

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

.section-tag-about {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-light);
  letter-spacing: var(--letter-spacing-tight);
  margin-bottom: 1rem;
}

.section-subtitle-about {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.15rem);
  color: var(--color-text-secondary-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: var(--line-height-relaxed);
}

.foundation-text-about {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-relaxed);
  max-width: 800px;
  margin: 0 auto;
}

.foundation-text-about p {
  margin-bottom: 1.5rem;
  color: var(--color-text-secondary-light);
}

.foundation-text-about p:last-child {
  margin-bottom: 0;
}

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

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

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

.expertise-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-dark);
  letter-spacing: var(--letter-spacing-tight);
  margin-bottom: 1rem;
}

.expertise-subtitle-about {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.15rem);
  color: var(--color-text-muted-dark);
  max-width: 700px;
  margin: 0 auto;
  line-height: var(--line-height-relaxed);
}

.features-cards-about {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

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

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

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

.card-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  font-weight: 700;
  color: var(--color-text-dark);
}

.card-text-about {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-muted-dark);
  line-height: var(--line-height-normal);
}

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

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

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

.methodology-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-light);
  letter-spacing: var(--letter-spacing-tight);
  margin-bottom: 1rem;
}

.methodology-subtitle-about {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.15rem);
  color: var(--color-text-secondary-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: var(--line-height-relaxed);
}

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

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

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

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

.step-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: var(--color-text-light);
}

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

.commitment-section-about {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.commitment-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: var(--letter-spacing-tight);
}

.commitment-text-about {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.15rem);
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  line-height: var(--line-height-relaxed);
}

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

.quote-content-about {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.featured-quote-about {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-tertiary);
  max-width: 700px;
  border-radius: var(--radius-lg);
}

.quote-text-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.3rem);
  color: var(--color-text-light);
  font-style: italic;
  line-height: var(--line-height-relaxed);
  margin-bottom: 1.5rem;
}

.quote-author-about {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  color: var(--color-text-secondary-light);
  font-style: normal;
  font-weight: 600;
}

.disclaimer-section-about {
  background: var(--color-bg-dark-accent);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 800px;
}

.disclaimer-header-about {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: center;
}

.disclaimer-icon-about {
  font-size: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.disclaimer-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: var(--color-text-dark);
}

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

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

  .stat-number-about {
    font-size: 1.5rem;
  }

  .stat-label-about {
    font-size: 0.75rem;
  }

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

  .step-number-about {
    min-width: 60px;
  }

  .features-cards-about {
    flex-direction: column;
  }

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

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

  .hero-stats-about {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-item-about {
    width: 100%;
  }
}

.faq-page {
  background-color: var(--color-bg-primary);
  color: var(--color-text-dark);
  font-family: var(--font-primary);
}

.faq-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-hero__container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
}

.faq-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary-dark);
  margin: 0;
  line-height: var(--line-height-normal);
}

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

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

@media (min-width: 1024px) {
  .faq-hero {
    padding: var(--space-3xl) var(--space-xl);
  }
}

.faq-content {
  background-color: var(--color-bg-primary);
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
}

.faq-content__container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: rgba(16, 185, 129, 0.3);
  background-color: rgba(255, 255, 255, 0.08);
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: var(--color-text-dark);
  font-weight: 500;
  transition: color var(--transition-fast);
}

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

.faq-item__question {
  flex: 1;
  line-height: var(--line-height-normal);
}

.faq-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: var(--radius-sm);
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: 300;
  transition: all var(--transition-fast);
  margin-left: var(--space-md);
}

.faq-item__trigger:hover .faq-item__icon {
  background-color: rgba(16, 185, 129, 0.2);
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
  padding: 0 var(--space-md) var(--space-md) var(--space-md);
}

.faq-item__answer.is-open {
  max-height: 500px;
}

.faq-item__answer p {
  margin: 0;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-height-relaxed);
}

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

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

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

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

@media (min-width: 1024px) {
  .faq-content {
    padding: var(--space-3xl) var(--space-xl);
  }
}

.faq-cta {
  background-color: var(--color-bg-dark-accent);
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
}

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

.faq-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-tight);
}

.faq-cta__text {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: var(--color-text-secondary-dark);
  margin: 0 0 var(--space-lg) 0;
  line-height: var(--line-height-normal);
}

.faq-cta__button {
  display: inline-block;
  padding: 0.875rem var(--space-lg);
  background-color: var(--color-primary);
  color: var(--color-text-light);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
  cursor: pointer;
}

.faq-cta__button:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

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

@media (min-width: 1024px) {
  .faq-cta {
    padding: var(--space-3xl) var(--space-xl);
  }
}

.services-page {
  width: 100%;
  overflow: hidden;
}

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

.services-hero__container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.services-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0 0 var(--space-md) 0;
  letter-spacing: var(--letter-spacing-tight);
  line-height: var(--line-height-tight);
}

.services-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-secondary-dark);
  margin: 0;
  line-height: var(--line-height-normal);
  font-weight: 400;
}

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

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

.services-content {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

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

.services-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.services-card {
  background-color: var(--color-bg-card-light);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid #e2e8f0;
}

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

.services-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  font-size: 1.75rem;
  color: var(--color-primary);
}

.services-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: var(--color-text-light);
  margin: 0 0 var(--space-sm) 0;
  letter-spacing: var(--letter-spacing-tight);
}

.services-card__description {
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1vw + 0.25rem, 1rem);
  color: var(--color-text-secondary-light);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-relaxed);
}

.services-card__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.services-card__features li {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.25rem, 0.9375rem);
  color: var(--color-text-muted-light);
  padding-left: var(--space-md);
  position: relative;
  line-height: var(--line-height-normal);
}

.services-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

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

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

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

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

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

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

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

.services-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0 0 var(--space-md) 0;
  letter-spacing: var(--letter-spacing-tight);
  line-height: var(--line-height-tight);
}

.services-cta__text {
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  margin: 0 0 var(--space-lg) 0;
  line-height: var(--line-height-relaxed);
}

.services-cta__button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1vw + 0.25rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.services-cta__button:hover {
  background-color: var(--color-primary-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

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

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

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

.legal-docs .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

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

.legal-docs h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  letter-spacing: var(--letter-spacing-tight);
  line-height: var(--line-height-tight);
}

.legal-docs .updated-date {
  font-size: clamp(0.85rem, 0.9vw + 0.5rem, 1rem);
  color: var(--color-text-muted-light);
  margin-bottom: var(--space-2xl);
  font-style: italic;
}

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

.legal-docs h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: var(--color-text-light);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  letter-spacing: var(--letter-spacing-tight);
  line-height: var(--line-height-tight);
}

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

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

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

.legal-docs li:before {
  content: "";
  color: var(--color-primary);
  font-weight: bold;
  display: inline-block;
  width: var(--space-md);
  margin-left: calc(var(--space-md) * -1);
}

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

.legal-docs .contact-section h2 {
  margin-top: 0;
  color: var(--color-text-light);
}

.legal-docs .contact-section p {
  color: var(--color-text-secondary-light);
  margin-bottom: var(--space-sm);
}

.legal-docs .contact-section strong {
  color: var(--color-text-light);
  font-weight: 600;
}

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

  .legal-docs .contact-section {
    padding: var(--space-xl);
  }
}

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

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

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

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

.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg);
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--color-bg-card-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-icon svg {
  width: 48px;
  height: 48px;
  color: var(--color-success);
  stroke-linecap: round;
  stroke-linejoin: round;
}

h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-dark);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-tight);
  margin: 0;
  padding: 0;
  line-height: var(--line-height-tight);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.lead {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-secondary-dark);
  font-weight: 500;
  margin: 0;
  padding: 0;
  line-height: var(--line-height-normal);
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.message {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-dark);
  margin: 0;
  padding: 0;
  line-height: var(--line-height-relaxed);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.follow-up {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-muted-dark);
  margin: 0;
  padding: 0;
  line-height: var(--line-height-relaxed);
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.btn-return {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-xl);
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  text-decoration: none;
  border: 2px solid var(--color-primary);
  transition: all var(--transition-base);
  cursor: pointer;
  margin-top: var(--space-md);
  animation: fadeInUp 0.8s ease-out 0.6s both;
  letter-spacing: var(--letter-spacing-normal);
  min-height: 44px;
  gap: var(--space-xs);
}

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

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

.btn-return:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

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

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

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

  .thank-you-content {
    padding: var(--space-xl);
    gap: var(--space-xl);
  }

  .success-icon {
    width: 100px;
    height: 100px;
    margin-bottom: var(--space-lg);
  }

  .success-icon svg {
    width: 56px;
    height: 56px;
  }
}

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

  .thank-you-content {
    padding: var(--space-2xl);
    gap: var(--space-2xl);
  }

  .success-icon {
    width: 120px;
    height: 120px;
    margin-bottom: var(--space-xl);
  }

  .success-icon svg {
    width: 64px;
    height: 64px;
  }
}

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

  .thank-you-content {
    padding: var(--space-3xl);
    gap: var(--space-3xl);
  }
}

@media (prefers-reduced-motion: reduce) {
  .success-icon,
  h1,
  .lead,
  .message,
  .follow-up,
  .btn-return {
    animation: none;
  }

  .btn-return:hover {
    transform: none;
  }
}

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

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

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

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

.error-visual {
  margin-bottom: var(--space-3xl);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 280px;
}

.error-code-wrapper {
  position: relative;
  display: inline-block;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
  display: block;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
}

.error-decoration {
  position: absolute;
  width: 320px;
  height: 320px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.1;
  animation: float-spin 8s linear infinite;
}

@keyframes float-spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.error-message {
  animation: fade-in-up 0.8s ease-out;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.error-message h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0 0 var(--space-md) 0;
  letter-spacing: var(--letter-spacing-tight);
}

.error-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.15rem);
  color: var(--color-text-secondary-dark);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-relaxed);
}

.error-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  color: var(--color-text-muted-dark);
  margin: 0 0 var(--space-2xl) 0;
  line-height: var(--line-height-relaxed);
}

.error-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-bottom: var(--space-2xl);
}

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

.feature-icon {
  font-size: clamp(1rem, 2vw, 1.25rem);
  display: inline-block;
}

.feature-text {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw + 0.3rem, 0.95rem);
  color: var(--color-text-secondary-dark);
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.4rem, 1.1rem);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  letter-spacing: var(--letter-spacing-normal);
  white-space: nowrap;
}

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

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

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

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

  .error-visual {
    margin-bottom: var(--space-3xl);
    min-height: 320px;
  }

  .error-decoration {
    width: 380px;
    height: 380px;
  }

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

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

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

  .error-visual {
    margin-bottom: var(--space-4xl);
    min-height: 360px;
  }

  .error-decoration {
    width: 420px;
    height: 420px;
  }

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

  .feature-item {
    padding: var(--space-md) var(--space-lg);
  }
}

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

  .error-visual {
    margin-bottom: var(--space-4xl);
    min-height: 400px;
  }

  .error-decoration {
    width: 480px;
    height: 480px;
  }

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

@media (max-width: 480px) {
  .error-message h1 {
    margin-bottom: var(--space-sm);
  }

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

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

  .error-features {
    margin-bottom: var(--space-lg);
    flex-direction: column;
    align-items: stretch;
  }

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

.contact-say-hello {
  width: 100%;
  background-color: var(--color-bg-primary);
  color: var(--color-text-dark);
}

.contact-say-hello-hero {
  width: 100%;
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-say-hello-hero-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: 0 var(--space-sm);
}

.contact-say-hello-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark);
  letter-spacing: var(--letter-spacing-tight);
  line-height: var(--line-height-tight);
}

.contact-say-hello-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-height-relaxed);
  max-width: 600px;
}

@media (min-width: 768px) {
  .contact-say-hello-hero {
    padding: var(--space-3xl) 0;
  }

  .contact-say-hello-hero-content {
    gap: var(--space-lg);
    padding: 0 var(--space-md);
  }
}

@media (min-width: 1024px) {
  .contact-say-hello-hero {
    padding: var(--space-4xl) 0;
  }

  .contact-say-hello-hero-content {
    padding: 0;
  }
}

.contact-say-hello-main {
  width: 100%;
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.contact-say-hello-main-content {
  width: 100%;
  padding: 0 var(--space-sm);
}

.contact-say-hello-grid {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

@media (min-width: 768px) {
  .contact-say-hello-main {
    padding: var(--space-3xl) 0;
  }

  .contact-say-hello-main-content {
    padding: 0 var(--space-md);
  }

  .contact-say-hello-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-3xl);
  }
}

@media (min-width: 1024px) {
  .contact-say-hello-main {
    padding: var(--space-4xl) 0;
  }

  .contact-say-hello-main-content {
    padding: 0;
  }

  .contact-say-hello-grid {
    gap: var(--space-4xl);
  }
}

.contact-say-hello-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-say-hello-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .contact-say-hello-form-wrapper {
    flex: 1 1 45%;
    min-width: 350px;
  }

  .contact-say-hello-info-wrapper {
    flex: 1 1 45%;
    min-width: 350px;
  }
}

@media (min-width: 1024px) {
  .contact-say-hello-form-wrapper {
    flex: 1 1 50%;
  }

  .contact-say-hello-info-wrapper {
    flex: 1 1 40%;
  }
}

.contact-say-hello-form-header {
  margin-bottom: var(--space-lg);
}

.contact-say-hello-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-dark);
  letter-spacing: var(--letter-spacing-tight);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-sm);
}

.contact-say-hello-form-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-height-relaxed);
}

.contact-say-hello-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-say-hello-form-row {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.contact-say-hello-label {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw + 0.5rem, 0.95rem);
  font-weight: 600;
  color: var(--color-text-secondary-dark);
  letter-spacing: var(--letter-spacing-normal);
}

.contact-say-hello-input,
.contact-say-hello-textarea {
  width: 100%;
  padding: var(--space-sm) 1rem;
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-dark);
  transition: all var(--transition-base);
  outline: none;
}

.contact-say-hello-input::placeholder,
.contact-say-hello-textarea::placeholder {
  color: var(--color-text-muted-dark);
}

.contact-say-hello-input:hover,
.contact-say-hello-textarea:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.08);
}

.contact-say-hello-input:focus,
.contact-say-hello-textarea:focus {
  border-color: var(--color-primary);
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.contact-say-hello-textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-say-hello-submit {
  width: 100%;
  padding: 1rem var(--space-lg);
  background-color: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  letter-spacing: var(--letter-spacing-normal);
  margin-top: var(--space-sm);
}

.contact-say-hello-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

.contact-say-hello-submit:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.contact-say-hello-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.contact-say-hello-privacy-notice {
  font-family: var(--font-primary);
  font-size: clamp(0.75rem, 0.85vw + 0.5rem, 0.875rem);
  color: var(--color-text-muted-dark);
  line-height: var(--line-height-normal);
  text-align: center;
}

.contact-say-hello-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-base);
}

.contact-say-hello-privacy-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-say-hello-info-header {
  margin-bottom: var(--space-lg);
}

.contact-say-hello-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-dark);
  letter-spacing: var(--letter-spacing-tight);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-sm);
}

.contact-say-hello-info-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-height-relaxed);
}

.contact-say-hello-info-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.contact-say-hello-info-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md);
  background-color: var(--color-bg-card-dark);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-base);
}

.contact-say-hello-info-item:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.contact-say-hello-info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(14, 165, 233, 0.2));
  border-radius: var(--radius-lg);
  font-size: 1.5rem;
  color: var(--color-primary);
}

.contact-say-hello-info-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.contact-say-hello-info-label {
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  color: var(--color-text-dark);
  letter-spacing: var(--letter-spacing-normal);
}

.contact-say-hello-info-text {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 0.95vw + 0.5rem, 0.95rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-height-normal);
}

.contact-say-hello-info-cta {
  padding: var(--space-lg);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(14, 165, 233, 0.1));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.contact-say-hello-info-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: var(--color-text-dark);
  letter-spacing: var(--letter-spacing-normal);
  margin-bottom: var(--space-sm);
}

.contact-say-hello-info-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 0.95vw + 0.5rem, 0.95rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-height-normal);
  margin-bottom: var(--space-xs);
}

.contact-say-hello-info-cta-text:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .contact-say-hello-form-wrapper {
    order: 1;
  }

  .contact-say-hello-info-wrapper {
    order: 2;
  }
}

@media (min-width: 1440px) {
  .contact-say-hello-form-wrapper {
    flex: 1 1 auto;
  }

  .contact-say-hello-info-wrapper {
    flex: 1 1 auto;
  }
}

@media (max-width: 480px) {
  .contact-say-hello-hero-content {
    padding: 0 var(--space-sm);
  }

  .contact-say-hello-main-content {
    padding: 0 var(--space-sm);
  }

  .contact-say-hello-form {
    gap: var(--space-md);
  }

  .contact-say-hello-info-items {
    gap: var(--space-md);
  }

  .contact-say-hello-info-item {
    padding: var(--space-md);
  }
}

@media (min-width: 1200px) {
  .contact-say-hello-hero {
    padding: 5rem 0;
  }

  .contact-say-hello-main {
    padding: 5rem 0;
  }

  .contact-say-hello-grid {
    gap: var(--space-4xl);
    align-items: flex-start;
  }
}