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

:root {
  /* COLOR STRATEGY: LIGHT - L5 COOL GRAY + INDIGO */
  
  /* Primary backgrounds */
  --color-bg-primary: #f8fafc;
  --color-bg-secondary: #e2e8f0;
  --color-bg-tertiary: #ffffff;
  --color-bg-card: #ffffff;
  
  /* Text colors */
  --color-text-primary: #0f172a;
  --color-text-secondary: #475569;
  --color-text-muted: #94a3b8;
  
  /* Accent colors */
  --color-primary: #4f46e5;
  --color-primary-hover: #4338ca;
  --color-primary-light: #eef2ff;
  --color-secondary: #06b6d4;
  --color-secondary-light: #cffafe;
  
  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 10px 15px rgba(15, 23, 42, 0.1);
  --shadow-xl: 0 20px 25px rgba(15, 23, 42, 0.12);
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-lg);
}

h3 {
  font-size: 1.875rem;
  margin-bottom: var(--space-md);
}

h4 {
  font-size: 1.5rem;
  font-family: var(--font-primary);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

h5 {
  font-size: 1.25rem;
  font-family: var(--font-primary);
  font-weight: 600;
}

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

p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  font-size: 1.0625rem;
  line-height: 1.8;
}

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

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

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

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

/* Card Styles */
.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid rgba(71, 85, 105, 0.1);
}

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

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

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

/* Badge Styles */
.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: 0.05em;
}

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

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

.badge-success {
  background: #dcfce7;
  color: #166534;
}

.badge-warning {
  background: #fef3c7;
  color: #92400e;
}

/* Form Elements */
input,
textarea,
select {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid var(--color-bg-secondary);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--color-text-primary);
  background: var(--color-bg-card);
  transition: all var(--transition-fast);
}

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

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

/* Layout Utilities */
.flex {
  display: flex;
}

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

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

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

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

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

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

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

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

.grid {
  display: grid;
}

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

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

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

/* Spacing Utilities */
.p-xs { padding: var(--space-xs); }
.p-sm { padding: var(--space-sm); }
.p-md { padding: var(--space-md); }
.p-lg { padding: var(--space-lg); }
.p-xl { padding: var(--space-xl); }

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

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

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

.mx-auto { margin-left: auto; margin-right: auto; }
.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

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

/* Text Utilities */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }

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

.font-light { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

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

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

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

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

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

/* Visibility Utilities */
.hidden { display: none !important; }
.visible { display: block !important; }
.invisible { visibility: hidden; }

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

/* Opacity Utilities */
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }

/* Border Utilities */
.border { border: 1px solid var(--color-bg-secondary); }
.border-top { border-top: 1px solid var(--color-bg-secondary); }
.border-bottom { border-bottom: 1px solid var(--color-bg-secondary); }

.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: 9999px; }

/* Shadow Utilities */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

/* Hover Effects */
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.hover-glow:hover {
  box-shadow: 0 0 20px rgba(79, 70, 229, 0.3);
}

.hover-scale:hover {
  transform: scale(1.05);
}

/* Animations */
@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 slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.animate-fadeIn {
  animation: fadeIn var(--transition-base);
}

.animate-slideInUp {
  animation: slideInUp var(--transition-base);
}

.animate-slideInDown {
  animation: slideInDown var(--transition-base);
}

.animate-slideInLeft {
  animation: slideInLeft var(--transition-base);
}

.animate-slideInRight {
  animation: slideInRight var(--transition-base);
}

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

.animate-bounce {
  animation: bounce var(--transition-slow) infinite;
}

/* Responsive Design */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 15px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .container {
    padding: 0 var(--space-md);
  }
  
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.25rem;
  }
  
  h3 {
    font-size: 1.125rem;
  }
  
  p {
    font-size: 0.9375rem;
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
}

/* Print Styles */
@media print {
  body {
    background: #ffffff;
    color: #000000;
  }
  
  .btn,
  a {
    color: #000000;
  }
  
  .no-print {
    display: none;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.header-compass-forge {
  background: var(--color-bg-tertiary);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 100;
  border-bottom: 1px solid var(--color-bg-secondary);
}

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

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

.header-compass-forge-brand:hover {
  opacity: 0.8;
}

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

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

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

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

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

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

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

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

.header-compass-forge-cta-button:hover {
  background: var(--color-primary-hover);
}

.header-compass-forge-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.header-compass-forge-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: all var(--transition-base);
  display: block;
}

.header-compass-forge-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

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

.header-compass-forge-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.header-compass-forge-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-tertiary);
  z-index: 99;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-base);
  overflow-y: auto;
  padding-top: 5rem;
}

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

.header-compass-forge-mobile-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5rem;
  background: var(--color-bg-tertiary);
  border-bottom: 1px solid var(--color-bg-secondary);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 clamp(1rem, 4vw, 2rem);
  z-index: 98;
}

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

.header-compass-forge-mobile-close:hover {
  color: var(--color-primary-hover);
}

.header-compass-forge-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 1rem 0;
}

.header-compass-forge-mobile-link {
  padding: 1rem clamp(1rem, 4vw, 2rem);
  color: var(--color-text-primary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 500;
  border-bottom: 1px solid var(--color-bg-secondary);
  transition: background var(--transition-base), color var(--transition-base);
}

.header-compass-forge-mobile-link:hover {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

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

.header-compass-forge-mobile-cta:hover {
  background: var(--color-primary-hover);
}

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

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

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

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

@media (max-width: 767px) {
  .header-compass-forge-container {
    height: 5rem;
  }
}

    .goals-hub {
  width: 100%;
}

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

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

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

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

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

.hero-subtitle-index {
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

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

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

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

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

.stat-number-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.stat-label-index {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

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

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

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

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

.section-header-index {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(79, 70, 229, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

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

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

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

.benefit-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(71, 85, 105, 0.1);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

.benefit-icon-index {
  font-size: 2rem;
  color: var(--color-primary);
}

.benefit-title-index {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}

.benefit-text-index {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
}

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

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

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

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

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

.partner-item-index {
  flex: 1 1 300px;
  max-width: 360px;
  text-align: center;
  padding: clamp(1.5rem, 2vw, 2rem);
}

.partner-icon-index {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.partner-name-index {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.partner-desc-index {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
}

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

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

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

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

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

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

.step-number-index {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
  min-width: 80px;
  flex-shrink: 0;
}

.step-content-index {
  flex: 1;
  padding-top: var(--space-sm);
}

.step-title-index {
  color: var(--color-text-primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.step-text-index {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .process-step-index {
    flex-direction: column;
    gap: var(--space-md);
  }

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

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

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

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

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

.features-image-block-index {
  width: 100%;
  margin: var(--space-lg) 0;
}

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

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

.feature-item-index {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
  padding: var(--space-md);
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(71, 85, 105, 0.1);
}

.feature-check-index {
  font-size: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.feature-details-index {
  flex: 1;
}

.feature-name-index {
  color: var(--color-text-primary);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.feature-description-index {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

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

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

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

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

.testimonials-grid-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: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(71, 85, 105, 0.1);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.testimonial-quote-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.testimonial-quote-index i {
  font-size: 1.5rem;
  color: var(--color-primary);
  opacity: 0.5;
}

.testimonial-text-index {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
  font-style: italic;
  margin: 0;
}

.testimonial-author-index {
  border-top: 1px solid rgba(71, 85, 105, 0.1);
  padding-top: var(--space-md);
}

.author-name-index {
  color: var(--color-text-primary);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.author-role-index {
  color: var(--color-text-muted);
  font-size: 0.8125rem;
  margin: 0;
}

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

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

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

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

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

.featured-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(71, 85, 105, 0.1);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

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

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

.featured-card-title-index {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.featured-card-description-index {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.featured-card-link-index {
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
  align-self: flex-start;
}

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

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

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

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

.cta-box-index {
  flex: 1 1 45%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

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

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

.cta-feature-item-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(71, 85, 105, 0.1);
}

.cta-feature-icon-index {
  font-size: 1.75rem;
  color: var(--color-primary);
}

.cta-feature-title-index {
  color: var(--color-text-primary);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.cta-feature-text-index {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-text-primary);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  box-shadow: 0 -4px 12px rgba(15, 23, 42, 0.15);
}

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

.cookie-banner-text-index {
  color: #ffffff;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.9375rem);
  margin: 0;
  flex: 1 1 auto;
  min-width: 200px;
}

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

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

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

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

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

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

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

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

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

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

@media (max-width: 480px) {
  .benefits-cards-index,
  .partners-grid-index,
  .testimonials-grid-index,
  .featured-cards-index {
    gap: var(--space-md);
  }

  .benefit-card-index,
  .partner-item-index,
  .testimonial-card-index,
  .featured-card-index {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

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

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

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

.footer-nav h3,
.footer-contact h3,
.footer-legal h3 {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.5px;
}

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

.footer-links li {
  display: block;
}

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

.footer-links a:hover {
  color: #ffffff;
}

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

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

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

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

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

  .footer-about {
    flex: 1 1 280px;
    min-width: 260px;
  }

  .footer-nav {
    flex: 1 1 200px;
    min-width: 160px;
  }

  .footer-contact {
    flex: 1 1 240px;
    min-width: 200px;
  }

  .footer-legal {
    flex: 1 1 200px;
    min-width: 160px;
  }

  .footer-copyright {
    flex: 1 1 100%;
    padding-top: clamp(2rem, 4vw, 2.5rem);
  }
}

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

  .footer-about {
    flex: 1 1 320px;
  }

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

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

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

@media (max-width: 767px) {
  .footer-content {
    gap: clamp(1.75rem, 4vw, 2.5rem);
  }

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

  .footer-links li {
    display: block;
  }
}
    

.category-page-goal-setting-strategies {
  background: #0a0f1e;
  color: #ffffff;
}

.hero-section-goal-setting-strategies {
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1526 100%);
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
}

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

.hero-content-goal-setting-strategies {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 4rem);
}

.hero-text-goal-setting-strategies {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.hero-title-goal-setting-strategies {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-family: 'Playfair Display', serif;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-subtitle-goal-setting-strategies {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  max-width: 650px;
}

.hero-cta-goal-setting-strategies {
  align-self: flex-start;
  background: #f59e0b;
  color: #0a0f1e;
  padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.hero-cta-goal-setting-strategies:hover {
  background: #fbbf24;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.2);
}

.hero-stats-goal-setting-strategies {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
}

.stat-item-goal-setting-strategies {
  flex: 1 1 150px;
  min-width: 140px;
}

.stat-number-goal-setting-strategies {
  font-size: clamp(2rem, 5vw, 3rem);
  font-family: 'Playfair Display', serif;
  color: #f59e0b;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-goal-setting-strategies {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #94a3b8;
  line-height: 1.5;
}

.posts-section-goal-setting-strategies {
  background: #0d1526;
  padding: clamp(4rem, 10vw, 6rem) 0;
  overflow: hidden;
}

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

.posts-header-goal-setting-strategies {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.posts-title-goal-setting-strategies {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-family: 'Playfair Display', serif;
  color: #ffffff;
  line-height: 1.2;
}

.posts-subtitle-goal-setting-strategies {
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

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

.card-goal-setting-strategies {
  flex: 1 1 280px;
  max-width: 380px;
  background: #111d2f;
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  transition: all 0.35s ease;
}

.card-goal-setting-strategies:hover {
  background: #1a2847;
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(245, 158, 11, 0.1);
}

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

.card-title-goal-setting-strategies {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-family: 'Playfair Display', serif;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
}

.card-description-goal-setting-strategies {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

.card-meta-goal-setting-strategies {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

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

.card-reading-time-goal-setting-strategies i,
.card-level-goal-setting-strategies i,
.card-date-goal-setting-strategies i {
  color: #f59e0b;
  font-size: 0.875em;
}

.card-link-goal-setting-strategies {
  color: #f59e0b;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 0.5rem;
}

.card-link-goal-setting-strategies:hover {
  color: #fbbf24;
  transform: translateX(4px);
}

.framework-section-goal-setting-strategies {
  background: #0a0f1e;
  padding: clamp(4rem, 10vw, 6rem) 0;
  overflow: hidden;
}

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

.framework-header-goal-setting-strategies {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.framework-title-goal-setting-strategies {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-family: 'Playfair Display', serif;
  color: #ffffff;
  line-height: 1.2;
}

.framework-intro-goal-setting-strategies {
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  color: #cbd5e1;
  max-width: 650px;
  margin: 0 auto;
}

.framework-list-goal-setting-strategies {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.framework-item-goal-setting-strategies {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(148, 163, 184, 0.05);
  border-left: 3px solid #f59e0b;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.framework-item-goal-setting-strategies:hover {
  background: rgba(245, 158, 11, 0.1);
  border-left-color: #fbbf24;
}

.framework-number-goal-setting-strategies {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: 'Playfair Display', serif;
  color: #f59e0b;
  font-weight: 700;
  line-height: 1;
  min-width: 60px;
}

.framework-details-goal-setting-strategies {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.framework-name-goal-setting-strategies {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #ffffff;
  font-weight: 600;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.framework-description-goal-setting-strategies {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

.insight-section-goal-setting-strategies {
  background: #0d1526;
  padding: clamp(4rem, 10vw, 6rem) 0;
  overflow: hidden;
}

.insight-content-goal-setting-strategies {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 4rem);
}

.insight-quote-goal-setting-strategies {
  background: rgba(245, 158, 11, 0.08);
  border-left: 4px solid #f59e0b;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 8px;
}

.insight-text-goal-setting-strategies {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 0;
}

.insight-quote-text-goal-setting-strategies {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-family: 'Playfair Display', serif;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

.insight-attribution-goal-setting-strategies {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.insight-author-goal-setting-strategies {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #f59e0b;
  font-weight: 600;
}

.insight-role-goal-setting-strategies {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #94a3b8;
}

.insight-context-goal-setting-strategies {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.insight-context-title-goal-setting-strategies {
  font-size: clamp(1.375rem, 3vw, 2rem);
  font-family: 'Playfair Display', serif;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
}

.insight-context-text-goal-setting-strategies,
.insight-context-text-secondary-goal-setting-strategies {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 1024px) {
  .hero-content-goal-setting-strategies {
    gap: 2.5rem;
  }

  .framework-item-goal-setting-strategies {
    flex-direction: column;
    align-items: flex-start;
  }

  .framework-number-goal-setting-strategies {
    font-size: 2rem;
  }

  .posts-grid-goal-setting-strategies {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-section-goal-setting-strategies {
    padding: 3rem 0;
  }

  .hero-stats-goal-setting-strategies {
    gap: 2rem;
  }

  .stat-item-goal-setting-strategies {
    flex: 1 1 120px;
  }

  .posts-section-goal-setting-strategies {
    padding: 3rem 0;
  }

  .posts-grid-goal-setting-strategies {
    gap: 1.5rem;
  }

  .card-goal-setting-strategies {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .framework-section-goal-setting-strategies {
    padding: 3rem 0;
  }

  .framework-list-goal-setting-strategies {
    gap: 1.5rem;
  }

  .insight-section-goal-setting-strategies {
    padding: 3rem 0;
  }

  .insight-quote-goal-setting-strategies {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title-goal-setting-strategies {
    font-size: 1.75rem;
  }

  .hero-subtitle-goal-setting-strategies {
    font-size: 0.9375rem;
  }

  .posts-title-goal-setting-strategies,
  .framework-title-goal-setting-strategies {
    font-size: 1.5rem;
  }

  .stat-number-goal-setting-strategies {
    font-size: 1.75rem;
  }

  .card-goal-setting-strategies {
    padding: 1rem;
    gap: 1rem;
  }

  .card-meta-goal-setting-strategies {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-stats-goal-setting-strategies {
    gap: 1.5rem;
  }

  .stat-item-goal-setting-strategies {
    flex: 1 1 100%;
  }

  .framework-item-goal-setting-strategies {
    padding: 1rem;
    gap: 1rem;
  }

  .framework-number-goal-setting-strategies {
    min-width: 50px;
  }

  .insight-quote-text-goal-setting-strategies {
    font-size: 1.125rem;
  }
}

.main-smart-ziele-setzen {
  width: 100%;
  background: #f8fafc;
}

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

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

.hero-text-smart-ziele-setzen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-badge-smart-ziele-setzen {
  display: inline-block;
  background: rgba(79, 70, 229, 0.2);
  color: #a5b4fc;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title-smart-ziele-setzen {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-description-smart-ziele-setzen {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-meta-smart-ziele-setzen {
  display: flex;
  gap: 1rem;
  font-size: 0.95rem;
  color: #94a3b8;
}

.meta-item-smart-ziele-setzen {
  color: #94a3b8;
}

.meta-separator-smart-ziele-setzen {
  color: #64748b;
}

.hero-image-smart-ziele-setzen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-smart-ziele-setzen img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.breadcrumbs-smart-ziele-setzen {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.breadcrumbs-smart-ziele-setzen a {
  color: #a5b4fc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-smart-ziele-setzen a:hover {
  color: #ffffff;
}

.breadcrumb-separator-smart-ziele-setzen {
  color: #64748b;
}

.breadcrumb-current-smart-ziele-setzen {
  color: #cbd5e1;
}

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

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

.intro-text-smart-ziele-setzen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-paragraph-smart-ziele-setzen {
  font-size: 1.0625rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-image-smart-ziele-setzen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-smart-ziele-setzen img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.steps-section-smart-ziele-setzen {
  background: #f1f5f9;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.steps-content-smart-ziele-setzen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.steps-header-smart-ziele-setzen {
  text-align: center;
}

.steps-title-smart-ziele-setzen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 1rem;
  font-weight: 700;
}

.steps-subtitle-smart-ziele-setzen {
  font-size: 1.0625rem;
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

.steps-wrapper-smart-ziele-setzen {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.step-card-smart-ziele-setzen {
  flex: 1 1 calc(50% - 1rem);
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card-smart-ziele-setzen:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.step-number-smart-ziele-setzen {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #4f46e5;
  line-height: 1;
}

.step-body-smart-ziele-setzen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-title-smart-ziele-setzen {
  font-size: 1.25rem;
  color: #0f172a;
  font-weight: 700;
  margin: 0;
}

.step-text-smart-ziele-setzen {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

.example-section-smart-ziele-setzen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.example-wrapper-smart-ziele-setzen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.example-text-smart-ziele-setzen {
  flex: 1 1 50%;
  max-width: 50%;
}

.example-title-smart-ziele-setzen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 2rem;
  font-weight: 700;
}

.example-box-smart-ziele-setzen {
  background: #f8fafc;
  border-left: 4px solid #ef4444;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.example-box-smart-smart-ziele-setzen {
  border-left-color: #10b981;
}

.example-label-smart-ziele-setzen {
  font-size: 1rem;
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.example-box-description-smart-ziele-setzen {
  font-size: 0.95rem;
  color: #475569;
  margin: 0;
  line-height: 1.6;
}

.example-text-conclusion-smart-ziele-setzen {
  font-size: 1rem;
  color: #475569;
  line-height: 1.8;
}

.example-image-smart-ziele-setzen {
  flex: 1 1 50%;
  max-width: 50%;
}

.example-image-smart-ziele-setzen img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.implementation-section-smart-ziele-setzen {
  background: #f1f5f9;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.implementation-text-smart-ziele-setzen {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-title-smart-ziele-setzen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.implementation-paragraph-smart-ziele-setzen {
  font-size: 1.0625rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.implementation-list-smart-ziele-setzen {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.list-item-smart-ziele-setzen {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.list-number-smart-ziele-setzen {
  background: #4f46e5;
  color: #ffffff;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.list-text-smart-ziele-setzen {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

.implementation-image-smart-ziele-setzen {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-image-smart-ziele-setzen img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tips-section-smart-ziele-setzen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tips-content-smart-ziele-setzen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.tips-header-smart-ziele-setzen {
  text-align: center;
}

.tips-title-smart-ziele-setzen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 1rem;
  font-weight: 700;
}

.tips-subtitle-smart-ziele-setzen {
  font-size: 1.0625rem;
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

.tips-grid-smart-ziele-setzen {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.tip-card-smart-ziele-setzen {
  flex: 1 1 calc(50% - 1rem);
  min-width: 280px;
  max-width: 380px;
  background: #f8fafc;
  padding: 1.75rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.tip-card-smart-ziele-setzen:hover {
  background: #ffffff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.tip-card-title-smart-ziele-setzen {
  font-size: 1.125rem;
  color: #0f172a;
  font-weight: 700;
  margin: 0;
}

.tip-card-text-smart-ziele-setzen {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

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

.conclusion-content-smart-ziele-setzen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-smart-ziele-setzen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #ffffff;
  font-weight: 700;
}

.conclusion-text-smart-ziele-setzen {
  font-size: 1.0625rem;
  color: #cbd5e1;
  line-height: 1.8;
}

.cta-box-smart-ziele-setzen {
  background: linear-gradient(135deg, #4f46e5 0%, #3730a3 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  text-align: center;
  margin-top: 1rem;
}

.cta-title-smart-ziele-setzen {
  font-size: 1.5rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.cta-description-smart-ziele-setzen {
  font-size: 1rem;
  color: #e0e7ff;
  margin-bottom: 1.5rem;
}

.cta-button-smart-ziele-setzen {
  display: inline-block;
  background: #ffffff;
  color: #4f46e5;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button-smart-ziele-setzen:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.disclaimer-section-smart-ziele-setzen {
  background: #f1f5f9;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-smart-ziele-setzen {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.disclaimer-title-smart-ziele-setzen {
  font-size: 1.25rem;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 1rem;
}

.disclaimer-text-smart-ziele-setzen {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

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

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

.related-header-smart-ziele-setzen {
  text-align: center;
}

.related-title-smart-ziele-setzen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.related-subtitle-smart-ziele-setzen {
  font-size: 1.0625rem;
  color: #475569;
}

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

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

.related-card-smart-ziele-setzen:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.related-card-image-smart-ziele-setzen {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f1f5f9;
}

.related-card-image-smart-ziele-setzen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-body-smart-ziele-setzen {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.related-card-title-smart-ziele-setzen {
  font-size: 1.125rem;
  color: #0f172a;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.related-card-description-smart-ziele-setzen {
  font-size: 0.9rem;
  color: #475569;
  margin: 0;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-smart-ziele-setzen {
  display: inline-block;
  color: #4f46e5;
  text-decoration: none;
  font-weight: 600;
  margin-top: 0.75rem;
  transition: color 0.3s ease;
}

.related-card-link-smart-ziele-setzen:hover {
  color: #3730a3;
}

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

@media (max-width: 1024px) {
  .hero-content-smart-ziele-setzen,
  .intro-content-smart-ziele-setzen,
  .example-wrapper-smart-ziele-setzen,
  .implementation-content-smart-ziele-setzen {
    flex-direction: column;
  }

  .hero-text-smart-ziele-setzen,
  .hero-image-smart-ziele-setzen,
  .intro-text-smart-ziele-setzen,
  .intro-image-smart-ziele-setzen,
  .example-text-smart-ziele-setzen,
  .example-image-smart-ziele-setzen,
  .implementation-text-smart-ziele-setzen,
  .implementation-image-smart-ziele-setzen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-card-smart-ziele-setzen {
    flex: 1 1 calc(50% - 1rem);
  }

  .tip-card-smart-ziele-setzen {
    flex: 1 1 calc(50% - 1rem);
  }

  .related-card-smart-ziele-setzen {
    flex: 1 1 calc(50% - 1rem);
  }
}

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

  .intro-section-smart-ziele-setzen,
  .steps-section-smart-ziele-setzen,
  .example-section-smart-ziele-setzen,
  .implementation-section-smart-ziele-setzen,
  .tips-section-smart-ziele-setzen,
  .conclusion-section-smart-ziele-setzen,
  .disclaimer-section-smart-ziele-setzen,
  .related-section-smart-ziele-setzen {
    padding: 2.5rem 0;
  }

  .hero-content-smart-ziele-setzen,
  .intro-content-smart-ziele-setzen,
  .example-wrapper-smart-ziele-setzen,
  .implementation-content-smart-ziele-setzen {
    gap: 1.5rem;
  }

  .steps-wrapper-smart-ziele-setzen,
  .tips-grid-smart-ziele-setzen,
  .related-cards-smart-ziele-setzen {
    gap: 1.25rem;
  }

  .step-card-smart-ziele-setzen,
  .tip-card-smart-ziele-setzen,
  .related-card-smart-ziele-setzen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .breadcrumbs-smart-ziele-setzen {
    font-size: 0.8rem;
  }

  .hero-title-smart-ziele-setzen {
    font-size: 1.75rem;
  }

  .intro-title-smart-ziele-setzen,
  .example-title-smart-ziele-setzen,
  .implementation-title-smart-ziele-setzen,
  .steps-title-smart-ziele-setzen,
  .tips-title-smart-ziele-setzen,
  .conclusion-title-smart-ziele-setzen,
  .related-title-smart-ziele-setzen {
    font-size: 1.5rem;
  }

  .hero-description-smart-ziele-setzen,
  .intro-paragraph-smart-ziele-setzen,
  .implementation-paragraph-smart-ziele-setzen,
  .conclusion-text-smart-ziele-setzen {
    font-size: 1rem;
  }

  .cta-box-smart-ziele-setzen {
    padding: 1.5rem;
  }

  .disclaimer-content-smart-ziele-setzen {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-section-smart-ziele-setzen,
  .intro-section-smart-ziele-setzen,
  .steps-section-smart-ziele-setzen,
  .example-section-smart-ziele-setzen,
  .implementation-section-smart-ziele-setzen,
  .tips-section-smart-ziele-setzen,
  .conclusion-section-smart-ziele-setzen,
  .disclaimer-section-smart-ziele-setzen,
  .related-section-smart-ziele-setzen {
    padding: 1.75rem 0;
  }

  .hero-title-smart-ziele-setzen {
    font-size: 1.5rem;
  }

  .intro-title-smart-ziele-setzen,
  .example-title-smart-ziele-setzen,
  .implementation-title-smart-ziele-setzen,
  .steps-title-smart-ziele-setzen,
  .tips-title-smart-ziele-setzen,
  .conclusion-title-smart-ziele-setzen,
  .related-title-smart-ziele-setzen {
    font-size: 1.25rem;
  }

  .step-number-smart-ziele-setzen {
    font-size: 2rem;
  }

  .cta-title-smart-ziele-setzen {
    font-size: 1.25rem;
  }

  .related-card-image-smart-ziele-setzen {
    height: 150px;
  }
}

.main-fortschritt-messen-anpassen {
  width: 100%;
  overflow: hidden;
  background: var(--color-bg-primary);
}

.hero-section-fortschritt-messen-anpassen {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.hero-text-fortschritt-messen-anpassen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-subtitle-fortschritt-messen-anpassen {
  color: #cbd5e1;
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-fortschritt-messen-anpassen {
  display: flex;
  flex-direction: row;
  gap: clamp(0.75rem, 1vw, 1rem);
  align-items: center;
  flex-wrap: wrap;
}

.meta-item-fortschritt-messen-anpassen {
  color: #94a3b8;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 500;
}

.meta-separator-fortschritt-messen-anpassen {
  color: #475569;
  font-size: 0.875rem;
}

.hero-image-fortschritt-messen-anpassen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.breadcrumbs-fortschritt-messen-anpassen a {
  color: #06b6d4;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumbs-fortschritt-messen-anpassen a:hover {
  color: #0891b2;
  text-decoration: underline;
}

.breadcrumbs-fortschritt-messen-anpassen span {
  color: #64748b;
}

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

.intro-content-fortschritt-messen-anpassen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.intro-text-fortschritt-messen-anpassen {
  flex: 1 1 55%;
  max-width: 55%;
}

.intro-title-fortschritt-messen-anpassen {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.3;
}

.intro-paragraph-fortschritt-messen-anpassen {
  color: #334155;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-highlight-fortschritt-messen-anpassen {
  flex: 1 1 45%;
  max-width: 45%;
}

.highlight-box-fortschritt-messen-anpassen {
  background: #f1f5f9;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid #4f46e5;
}

.highlight-title-fortschritt-messen-anpassen {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  margin-bottom: clamp(1rem, 2vw, 1.25rem);
}

.highlight-list-fortschritt-messen-anpassen {
  list-style: none;
  padding: 0;
}

.highlight-item-fortschritt-messen-anpassen {
  color: #334155;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  padding-left: clamp(1.5rem, 2vw, 2rem);
  position: relative;
}

.highlight-item-fortschritt-messen-anpassen::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4f46e5;
  font-weight: 700;
  font-size: 1.125rem;
}

.content-section-fortschritt-messen-anpassen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-header-fortschritt-messen-anpassen {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.content-title-fortschritt-messen-anpassen {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
}

.content-subtitle-fortschritt-messen-anpassen {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
}

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

.content-text-fortschritt-messen-anpassen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-paragraph-fortschritt-messen-anpassen {
  color: #334155;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.85;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-image-fortschritt-messen-anpassen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-fortschritt-messen-anpassen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

.steps-section-fortschritt-messen-anpassen {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.steps-header-fortschritt-messen-anpassen {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.steps-title-fortschritt-messen-anpassen {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
}

.steps-subtitle-fortschritt-messen-anpassen {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
}

.steps-grid-fortschritt-messen-anpassen {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.step-card-fortschritt-messen-anpassen {
  flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1rem));
  max-width: calc(50% - clamp(0.75rem, 1.5vw, 1rem));
  background: #1e293b;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid #334155;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  transition: all var(--transition-base);
}

.step-card-fortschritt-messen-anpassen:hover {
  background: #334155;
  border-color: #4f46e5;
  transform: translateY(-4px);
}

.step-number-fortschritt-messen-anpassen {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #4f46e5;
  line-height: 1;
  font-family: var(--font-primary);
}

.step-card-title-fortschritt-messen-anpassen {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  line-height: 1.4;
  font-family: var(--font-primary);
}

.step-card-text-fortschritt-messen-anpassen {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.75;
}

.challenges-section-fortschritt-messen-anpassen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.challenges-wrapper-fortschritt-messen-anpassen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.challenges-text-fortschritt-messen-anpassen {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenges-title-fortschritt-messen-anpassen {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.3;
}

.challenges-intro-fortschritt-messen-anpassen {
  color: #334155;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 500;
}

.challenges-text-fortschritt-messen-anpassen {
  color: #334155;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.85;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.challenges-image-fortschritt-messen-anpassen {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenges-img-fortschritt-messen-anpassen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

.tools-section-fortschritt-messen-anpassen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tools-header-fortschritt-messen-anpassen {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.tools-title-fortschritt-messen-anpassen {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
}

.tools-subtitle-fortschritt-messen-anpassen {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
}

.tools-grid-fortschritt-messen-anpassen {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.tool-card-fortschritt-messen-anpassen {
  flex: 1 1 calc(33.333% - clamp(1rem, 2vw, 1.5rem));
  max-width: calc(33.333% - clamp(1rem, 2vw, 1.5rem));
  min-width: 250px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  transition: all var(--transition-base);
}

.tool-card-fortschritt-messen-anpassen:hover {
  box-shadow: var(--shadow-lg);
  border-color: #4f46e5;
  transform: translateY(-4px);
}

.tool-card-title-fortschritt-messen-anpassen {
  color: #0f172a;
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 600;
  line-height: 1.4;
  font-family: var(--font-primary);
}

.tool-card-text-fortschritt-messen-anpassen {
  color: #334155;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  line-height: 1.7;
}

.conclusion-section-fortschritt-messen-anpassen {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-fortschritt-messen-anpassen {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-fortschritt-messen-anpassen {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.3;
}

.conclusion-quote-fortschritt-messen-anpassen {
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
}

.quote-text-fortschritt-messen-anpassen {
  color: #cbd5e1;
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  line-height: 1.8;
  font-style: italic;
  border-left: 4px solid #4f46e5;
  padding-left: clamp(1.5rem, 2vw, 2rem);
  margin: 0;
}

.conclusion-paragraph-fortschritt-messen-anpassen {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.85;
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
}

.conclusion-next-fortschritt-messen-anpassen {
  margin-top: clamp(2rem, 4vw, 3rem);
}

.conclusion-cta-text-fortschritt-messen-anpassen {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 500;
}

.conclusion-btn-fortschritt-messen-anpassen {
  display: inline-flex;
}

.disclaimer-section-fortschritt-messen-anpassen {
  background: #ffffff;
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-fortschritt-messen-anpassen {
  max-width: 800px;
  margin: 0 auto;
  background: #f1f5f9;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid #06b6d4;
}

.disclaimer-title-fortschritt-messen-anpassen {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.disclaimer-text-fortschritt-messen-anpassen {
  color: #334155;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  line-height: 1.75;
  margin: 0;
}

.related-section-fortschritt-messen-anpassen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-fortschritt-messen-anpassen {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.related-title-fortschritt-messen-anpassen {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
}

.related-subtitle-fortschritt-messen-anpassen {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
}

.related-grid-fortschritt-messen-anpassen {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-fortschritt-messen-anpassen {
  flex: 1 1 calc(33.333% - clamp(1rem, 2vw, 1.5rem));
  max-width: calc(33.333% - clamp(1rem, 2vw, 1.5rem));
  min-width: 280px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.related-image-fortschritt-messen-anpassen {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-img-fortschritt-messen-anpassen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-content-fortschritt-messen-anpassen {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1vw, 1rem);
  flex-grow: 1;
}

.related-card-title-fortschritt-messen-anpassen {
  color: #0f172a;
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  font-weight: 600;
  line-height: 1.4;
  font-family: var(--font-primary);
}

.related-card-text-fortschritt-messen-anpassen {
  color: #334155;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  line-height: 1.7;
  flex-grow: 1;
}

.related-link-fortschritt-messen-anpassen {
  color: #4f46e5;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
  align-self: flex-start;
}

.related-link-fortschritt-messen-anpassen:hover {
  color: #4338ca;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .hero-content-fortschritt-messen-anpassen,
  .intro-content-fortschritt-messen-anpassen,
  .content-wrapper-fortschritt-messen-anpassen,
  .challenges-wrapper-fortschritt-messen-anpassen {
    flex-direction: column;
  }

  .hero-text-fortschritt-messen-anpassen,
  .hero-image-fortschritt-messen-anpassen,
  .intro-text-fortschritt-messen-anpassen,
  .intro-highlight-fortschritt-messen-anpassen,
  .content-text-fortschritt-messen-anpassen,
  .content-image-fortschritt-messen-anpassen,
  .challenges-text-fortschritt-messen-anpassen,
  .challenges-image-fortschritt-messen-anpassen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-card-fortschritt-messen-anpassen,
  .tool-card-fortschritt-messen-anpassen {
    flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1rem));
    max-width: calc(50% - clamp(0.75rem, 1.5vw, 1rem));
  }

  .related-card-fortschritt-messen-anpassen {
    flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1rem));
    max-width: calc(50% - clamp(0.75rem, 1.5vw, 1rem));
    min-width: auto;
  }
}

@media (max-width: 768px) {
  .hero-img-fortschritt-messen-anpassen,
  .content-img-fortschritt-messen-anpassen,
  .challenges-img-fortschritt-messen-anpassen {
    max-height: 300px;
  }

  .step-card-fortschritt-messen-anpassen,
  .tool-card-fortschritt-messen-anpassen,
  .related-card-fortschritt-messen-anpassen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-image-fortschritt-messen-anpassen {
    height: 180px;
  }

  .breadcrumbs-fortschritt-messen-anpassen {
    font-size: 0.8125rem;
  }
}

@media (max-width: 480px) {
  .hero-section-fortschritt-messen-anpassen,
  .intro-section-fortschritt-messen-anpassen,
  .content-section-fortschritt-messen-anpassen,
  .steps-section-fortschritt-messen-anpassen,
  .challenges-section-fortschritt-messen-anpassen,
  .tools-section-fortschritt-messen-anpassen,
  .conclusion-section-fortschritt-messen-anpassen,
  .related-section-fortschritt-messen-anpassen {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  .hero-meta-fortschritt-messen-anpassen {
    gap: 0.5rem;
  }

  .related-image-fortschritt-messen-anpassen {
    height: 150px;
  }
}

.main-langzeitplanung-nachhaltiger-erfolg {
  width: 100%;
  overflow: hidden;
}

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

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

.hero-text-langzeitplanung-nachhaltiger-erfolg {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-langzeitplanung-nachhaltiger-erfolg {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-langzeitplanung-nachhaltiger-erfolg {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.breadcrumbs-langzeitplanung-nachhaltiger-erfolg {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.95rem);
}

.breadcrumbs-langzeitplanung-nachhaltiger-erfolg a {
  color: #60a5fa;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumbs-langzeitplanung-nachhaltiger-erfolg a:hover {
  color: #93c5fd;
}

.breadcrumbs-langzeitplanung-nachhaltiger-erfolg span {
  color: #64748b;
}

.hero-tag-langzeitplanung-nachhaltiger-erfolg {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(96, 165, 250, 0.1);
  color: #60a5fa;
  border-radius: var(--radius-xl);
  font-size: clamp(0.7rem, 1vw + 0.4rem, 0.85rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.hero-title-langzeitplanung-nachhaltiger-erfolg {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-lead-langzeitplanung-nachhaltiger-erfolg {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.15rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-langzeitplanung-nachhaltiger-erfolg {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 3vw, 2rem);
  flex-wrap: wrap;
}

.meta-item-langzeitplanung-nachhaltiger-erfolg {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.8rem, 1vw + 0.4rem, 0.95rem);
  color: #94a3b8;
}

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

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

.intro-text-langzeitplanung-nachhaltiger-erfolg {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-langzeitplanung-nachhaltiger-erfolg {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-langzeitplanung-nachhaltiger-erfolg {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

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

.intro-paragraph-langzeitplanung-nachhaltiger-erfolg {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.framework-section-langzeitplanung-nachhaltiger-erfolg {
  background: #f1f5f9;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.framework-header-langzeitplanung-nachhaltiger-erfolg {
  text-align: center;
}

.framework-title-langzeitplanung-nachhaltiger-erfolg {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: 1rem;
}

.framework-subtitle-langzeitplanung-nachhaltiger-erfolg {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

.framework-cards-langzeitplanung-nachhaltiger-erfolg {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.framework-card-langzeitplanung-nachhaltiger-erfolg {
  flex: 1 1 calc(33.333% - clamp(1.5rem, 3vw, 2rem));
  min-width: 250px;
  max-width: 340px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-base);
}

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

.card-number-langzeitplanung-nachhaltiger-erfolg {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #4f46e5;
  line-height: 1;
}

.card-title-langzeitplanung-nachhaltiger-erfolg {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #0f172a;
  margin: 0;
  font-weight: 600;
}

.card-text-langzeitplanung-nachhaltiger-erfolg {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.methodology-section-langzeitplanung-nachhaltiger-erfolg {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.methodology-content-langzeitplanung-nachhaltiger-erfolg {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.methodology-text-langzeitplanung-nachhaltiger-erfolg {
  flex: 1 1 50%;
  max-width: 50%;
}

.methodology-image-langzeitplanung-nachhaltiger-erfolg {
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 350px;
}

.methodology-img-langzeitplanung-nachhaltiger-erfolg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.methodology-title-langzeitplanung-nachhaltiger-erfolg {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: 1rem;
}

.methodology-intro-langzeitplanung-nachhaltiger-erfolg {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

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

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

.step-number-langzeitplanung-nachhaltiger-erfolg {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #4f46e5;
  line-height: 1;
  flex-shrink: 0;
}

.step-details-langzeitplanung-nachhaltiger-erfolg {
  flex: 1;
}

.step-title-langzeitplanung-nachhaltiger-erfolg {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #0f172a;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.step-text-langzeitplanung-nachhaltiger-erfolg {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

.resilience-section-langzeitplanung-nachhaltiger-erfolg {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.resilience-content-langzeitplanung-nachhaltiger-erfolg {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.resilience-image-langzeitplanung-nachhaltiger-erfolg {
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 350px;
}

.resilience-img-langzeitplanung-nachhaltiger-erfolg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.resilience-text-langzeitplanung-nachhaltiger-erfolg {
  flex: 1 1 50%;
  max-width: 50%;
}

.resilience-title-langzeitplanung-nachhaltiger-erfolg {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.resilience-paragraph-langzeitplanung-nachhaltiger-erfolg {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.resilience-tips-langzeitplanung-nachhaltiger-erfolg {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.tip-item-langzeitplanung-nachhaltiger-erfolg {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(96, 165, 250, 0.1);
  border-left: 4px solid #60a5fa;
  border-radius: var(--radius-md);
}

.tip-title-langzeitplanung-nachhaltiger-erfolg {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  color: #93c5fd;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.tip-text-langzeitplanung-nachhaltiger-erfolg {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

.tools-section-langzeitplanung-nachhaltiger-erfolg {
  background: #f1f5f9;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tools-content-langzeitplanung-nachhaltiger-erfolg {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.tools-header-langzeitplanung-nachhaltiger-erfolg {
  text-align: center;
}

.tools-title-langzeitplanung-nachhaltiger-erfolg {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: 1rem;
}

.tools-subtitle-langzeitplanung-nachhaltiger-erfolg {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

.tools-grid-langzeitplanung-nachhaltiger-erfolg {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.tool-card-langzeitplanung-nachhaltiger-erfolg {
  flex: 1 1 calc(50% - clamp(1.5rem, 3vw, 2rem));
  min-width: 250px;
  max-width: 360px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all var(--transition-base);
}

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

.tool-name-langzeitplanung-nachhaltiger-erfolg {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.2rem);
  color: #0f172a;
  margin: 0;
  font-weight: 600;
}

.tool-description-langzeitplanung-nachhaltiger-erfolg {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.common-mistakes-section-langzeitplanung-nachhaltiger-erfolg {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.common-mistakes-content-langzeitplanung-nachhaltiger-erfolg {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.mistakes-text-langzeitplanung-nachhaltiger-erfolg {
  flex: 1 1 50%;
  max-width: 50%;
}

.mistakes-image-langzeitplanung-nachhaltiger-erfolg {
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 350px;
}

.mistakes-img-langzeitplanung-nachhaltiger-erfolg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.mistakes-title-langzeitplanung-nachhaltiger-erfolg {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: 1rem;
}

.mistakes-intro-langzeitplanung-nachhaltiger-erfolg {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.mistake-list-langzeitplanung-nachhaltiger-erfolg {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.mistake-item-langzeitplanung-nachhaltiger-erfolg {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #f8fafc;
  border-left: 4px solid #ef4444;
  border-radius: var(--radius-md);
}

.mistake-title-langzeitplanung-nachhaltiger-erfolg {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  color: #0f172a;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.mistake-text-langzeitplanung-nachhaltiger-erfolg {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.conclusion-section-langzeitplanung-nachhaltiger-erfolg {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-langzeitplanung-nachhaltiger-erfolg {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.conclusion-title-langzeitplanung-nachhaltiger-erfolg {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-text-langzeitplanung-nachhaltiger-erfolg {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #e0e7ff;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-cta-langzeitplanung-nachhaltiger-erfolg {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-text-langzeitplanung-nachhaltiger-erfolg {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #ffffff;
  margin: 0;
  line-height: 1.7;
}

.related-section-langzeitplanung-nachhaltiger-erfolg {
  background: #f1f5f9;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.related-title-langzeitplanung-nachhaltiger-erfolg {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  text-align: center;
  margin: 0;
}

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

.related-card-langzeitplanung-nachhaltiger-erfolg {
  flex: 1 1 calc(33.333% - clamp(1.5rem, 3vw, 2rem));
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.related-image-langzeitplanung-nachhaltiger-erfolg {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-img-langzeitplanung-nachhaltiger-erfolg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-title-langzeitplanung-nachhaltiger-erfolg {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.15rem);
  color: #0f172a;
  margin: 0;
  font-weight: 600;
  line-height: 1.4;
}

.related-card-desc-langzeitplanung-nachhaltiger-erfolg {
  font-size: clamp(0.8rem, 1vw + 0.4rem, 0.9rem);
  color: #475569;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.related-link-langzeitplanung-nachhaltiger-erfolg {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
  color: #4f46e5;
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
  align-self: flex-start;
}

.related-link-langzeitplanung-nachhaltiger-erfolg:hover {
  color: #7c3aed;
}

.disclaimer-section-langzeitplanung-nachhaltiger-erfolg {
  background: #0f172a;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-langzeitplanung-nachhaltiger-erfolg {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-langzeitplanung-nachhaltiger-erfolg {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #93c5fd;
  margin: 0 0 1rem 0;
  font-weight: 600;
}

.disclaimer-text-langzeitplanung-nachhaltiger-erfolg {
  font-size: clamp(0.8rem, 1vw + 0.4rem, 0.9rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
}

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

  .hero-text-langzeitplanung-nachhaltiger-erfolg,
  .hero-image-langzeitplanung-nachhaltiger-erfolg {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-content-langzeitplanung-nachhaltiger-erfolg {
    flex-direction: column;
  }

  .intro-text-langzeitplanung-nachhaltiger-erfolg,
  .intro-image-langzeitplanung-nachhaltiger-erfolg {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .methodology-content-langzeitplanung-nachhaltiger-erfolg {
    flex-direction: column;
  }

  .methodology-text-langzeitplanung-nachhaltiger-erfolg,
  .methodology-image-langzeitplanung-nachhaltiger-erfolg {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .methodology-image-langzeitplanung-nachhaltiger-erfolg {
    min-height: 300px;
  }

  .resilience-content-langzeitplanung-nachhaltiger-erfolg {
    flex-direction: column;
  }

  .resilience-image-langzeitplanung-nachhaltiger-erfolg,
  .resilience-text-langzeitplanung-nachhaltiger-erfolg {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .resilience-image-langzeitplanung-nachhaltiger-erfolg {
    min-height: 300px;
  }

  .framework-cards-langzeitplanung-nachhaltiger-erfolg {
    flex-direction: column;
  }

  .framework-card-langzeitplanung-nachhaltiger-erfolg {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .tool-card-langzeitplanung-nachhaltiger-erfolg {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .common-mistakes-content-langzeitplanung-nachhaltiger-erfolg {
    flex-direction: column;
  }

  .mistakes-text-langzeitplanung-nachhaltiger-erfolg,
  .mistakes-image-langzeitplanung-nachhaltiger-erfolg {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .mistakes-image-langzeitplanung-nachhaltiger-erfolg {
    min-height: 300px;
  }

  .related-cards-langzeitplanung-nachhaltiger-erfolg {
    flex-direction: column;
  }

  .related-card-langzeitplanung-nachhaltiger-erfolg {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title-langzeitplanung-nachhaltiger-erfolg {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .breadcrumbs-langzeitplanung-nachhaltiger-erfolg {
    font-size: 0.7rem;
  }

  .step-block-langzeitplanung-nachhaltiger-erfolg {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-langzeitplanung-nachhaltiger-erfolg {
    font-size: 1.5rem;
  }
}

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

.goal-achievement-narrative-about {
  width: 100%;
  background: var(--color-bg-primary);
  font-family: var(--font-primary);
  color: var(--color-text-primary);
}

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

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

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

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

.hero-title-about {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
  letter-spacing: -0.02em;
}

.hero-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #94a3b8;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.hero-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: 0 auto;
}

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

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

.foundation-header-about {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.section-tag-about {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(79, 70, 229, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.foundation-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.foundation-subtitle-about {
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.1rem);
  color: #475569;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.foundation-blocks-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.foundation-block-about {
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.foundation-block-title-about {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.foundation-block-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.7;
}

.methodology-section-about {
  background: #1e293b;
  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;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.methodology-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.methodology-subtitle-about {
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.1rem);
  color: #cbd5e1;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

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

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

.step-number-about {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-secondary);
  flex-shrink: 0;
  min-width: clamp(3rem, 6vw, 4rem);
  line-height: 1;
}

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

.step-title-about {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.step-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
}

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

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

.approach-header-about {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.approach-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.approach-subtitle-about {
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.1rem);
  color: #475569;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.approach-visual-about {
  width: 100%;
  max-width: 850px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: clamp(1.5rem, 3vw, 2.5rem) auto 0;
}

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

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

.values-header-about {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.values-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.values-subtitle-about {
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.1rem);
  color: #475569;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.value-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-base);
}

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

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

.card-title-about {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.card-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.7;
}

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

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

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

.story-block-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.story-block-title-about {
  font-size: clamp(1.3rem, 3vw + 0.5rem, 2rem);
  font-weight: 700;
  color: #ffffff;
}

.story-block-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.05rem);
  color: #cbd5e1;
  line-height: 1.8;
}

.story-image-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: clamp(1rem, 2vw, 2rem) auto;
}

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

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

.featured-quote-about {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 5px solid var(--color-primary);
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 700px;
  box-shadow: var(--shadow-md);
}

.quote-text-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.3rem);
  color: #0f172a;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.quote-author-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  font-style: normal;
  display: block;
  text-align: right;
}

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

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 850px;
}

.disclaimer-header-about {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.disclaimer-icon-about {
  font-size: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.disclaimer-title-about {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.35rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.disclaimer-text-about {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 0.95rem);
  color: #475569;
  line-height: 1.8;
  margin: 0;
}

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

  .step-number-about {
    font-size: 2.5rem;
    min-width: 3rem;
  }

  .values-cards-about {
    flex-direction: column;
  }

  .value-card-about {
    flex: 1 1 100%;
  }

  .hero-content-about {
    gap: 1.5rem;
  }

  .story-blocks-about {
    gap: 1.5rem;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .values-cards-about {
    gap: 2rem;
  }

  .value-card-about {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (min-width: 1024px) {
  .values-cards-about {
    gap: 2.5rem;
  }

  .value-card-about {
    flex: 1 1 calc(33.333% - 1.67rem);
  }
}

.faq-page {
  width: 100%;
  background-color: var(--color-bg-primary);
}

.faq-hero {
  padding: var(--space-xl) var(--space-md);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.faq-hero__container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  letter-spacing: -0.02em;
}

.faq-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  margin: 0;
  font-weight: 400;
  line-height: 1.6;
}

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

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

.faq-content {
  padding: var(--space-xl) var(--space-md);
  background-color: var(--color-bg-primary);
  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);
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}

.faq-item__trigger {
  width: 100%;
  padding: var(--space-lg) var(--space-md);
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary);
  text-align: left;
  transition: color var(--transition-fast);
}

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

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

.faq-item__question {
  flex: 1;
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--color-primary);
  transition: transform var(--transition-fast);
}

.faq-item[open] .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__answer {
  padding: 0 var(--space-md) var(--space-lg) var(--space-md);
  display: none;
  animation: slideDown var(--transition-base) ease-out;
}

.faq-item[open] .faq-item__answer {
  display: block;
}

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

.faq-item__answer p {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

@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) var(--space-xl);
  }

  .faq-item__answer {
    padding: 0 var(--space-xl) var(--space-lg) var(--space-xl);
  }
}

.faq-cta {
  padding: var(--space-2xl) var(--space-md);
  background-color: var(--color-primary);
  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.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-bg-tertiary);
  margin: 0 0 var(--space-md) 0;
  letter-spacing: -0.01em;
}

.faq-cta__text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.6;
}

.faq-cta__button {
  display: inline-block;
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-bg-tertiary);
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

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

.faq-cta__button:focus {
  outline: 2px solid var(--color-bg-tertiary);
  outline-offset: 2px;
}

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

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

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

@media (max-width: 480px) {
  .faq-item__trigger {
    padding: var(--space-md) var(--space-md);
    font-size: 0.95rem;
  }

  .faq-item__icon {
    width: 20px;
    height: 20px;
  }

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

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

.services-hero {
  background-color: var(--color-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, 3rem);
  font-weight: 700;
  color: var(--color-bg-tertiary);
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.2;
}

.services-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.service-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

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

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

.service-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.3;
}

.service-card-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0 0 var(--space-md) 0;
  flex-grow: 1;
}

.service-card-topics {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: auto;
}

.topic-tag {
  display: inline-block;
  background-color: var(--color-secondary-light);
  color: var(--color-text-primary);
  font-size: 0.8rem;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-family: var(--font-primary);
}

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

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

@media (min-width: 768px) {
  .services-info {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

.services-info-content {
  order: 2;
}

@media (min-width: 768px) {
  .services-info-content {
    order: 1;
  }
}

.services-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.2;
}

.services-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-info-list li {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
  position: relative;
}

.services-info-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: bold;
  font-size: 1.25rem;
}

.services-info-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  order: 1;
}

@media (min-width: 768px) {
  .services-info-image {
    order: 2;
  }
}

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

.services-cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.services-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--color-bg-tertiary);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.2;
}

.services-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.6;
}

.services-cta-button {
  display: inline-block;
  background-color: var(--color-bg-tertiary);
  color: var(--color-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1rem);
  font-weight: 600;
  padding: var(--space-sm) var(--space-xl);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: var(--shadow-md);
}

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

.services-cta-button:active {
  transform: translateY(0);
}

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

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

.goal-docs {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

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

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

.goal-docs h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.goal-docs .updated-date {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.goal-docs h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  line-height: 1.4;
}

.goal-docs p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.goal-docs ul {
  list-style-position: inside;
  margin: var(--space-md) 0;
  padding-left: var(--space-md);
}

.goal-docs li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.goal-docs .section {
  margin-bottom: var(--space-2xl);
}

.goal-docs .contact-section {
  background-color: var(--color-bg-card);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--space-3xl);
  border-left: 4px solid var(--color-primary);
}

.goal-docs .contact-section h2 {
  margin-top: 0;
}

.goal-docs .contact-section p {
  margin-bottom: var(--space-sm);
}

.goal-docs .contact-section strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

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

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

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

  html, body {
    width: 100%;
    height: 100%;
  }

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

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

  .container {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
  }

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

  .success-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-lg);
    background-color: var(--color-bg-card);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
  }

  .success-icon {
    margin-bottom: var(--space-lg);
    animation: scaleInBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .success-icon svg {
    display: block;
    width: 80px;
    height: 80px;
  }

  @keyframes scaleInBounce {
    0% {
      transform: scale(0);
      opacity: 0;
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

  .thank-you-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-family: var(--font-heading);
    color: var(--color-text-primary);
    margin-bottom: var(--space-md);
    font-weight: 700;
    letter-spacing: -0.5px;
  }

  .thank-you-lead {
    font-size: clamp(1rem, 1.2vw + 0.3rem, 1.25rem);
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
    font-weight: 600;
    line-height: 1.6;
  }

  .thank-you-content {
    margin-bottom: var(--space-xl);
  }

  .thank-you-content p {
    font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-md);
  }

  .thank-you-content p:last-of-type {
    margin-bottom: 0;
  }

  .highlight-text {
    color: var(--color-primary) !important;
    font-weight: 600;
    margin-top: var(--space-lg) !important;
    padding: var(--space-md);
    background-color: var(--color-primary-light);
    border-radius: var(--radius-lg);
    display: inline-block;
  }

  .btn {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-size: clamp(0.95rem, 1vw + 0.5rem, 1.05rem);
    font-weight: 600;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
  }

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

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

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

  .btn-large {
    padding: var(--space-md) var(--space-2xl);
    margin-top: var(--space-lg);
  }

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

    .success-wrapper {
      padding: var(--space-2xl);
    }
  }

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

    .success-wrapper {
      padding: var(--space-3xl) var(--space-2xl);
    }

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

    .success-icon svg {
      width: 100px;
      height: 100px;
    }

    .thank-you-title {
      margin-bottom: var(--space-lg);
    }

    .thank-you-lead {
      margin-bottom: var(--space-xl);
    }

    .thank-you-content {
      margin-bottom: var(--space-2xl);
    }
  }

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

    .success-wrapper {
      padding: 4rem var(--space-2xl);
    }
  }

  @media (max-width: 639px) {
    .thank-you-page {
      min-height: auto;
    }

    .highlight-text {
      display: block;
      margin: var(--space-lg) 0 !important;
    }
  }

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

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

.container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
}

.content {
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
  text-align: center;
}

.error-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.error-code-wrapper {
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid var(--color-primary-light);
  border-radius: var(--radius-2xl);
  animation: float 6s ease-in-out infinite;
}

.error-code {
  font-size: clamp(3.5rem, 12vw, 6rem);
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-weight: 900;
  letter-spacing: -0.05em;
  position: relative;
  z-index: 1;
  line-height: 1;
  margin: 0;
  padding: 0;
}

.error-message {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  width: 100%;
}

.error-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  font-weight: 700;
  margin: 0;
  padding: 0;
  letter-spacing: -0.02em;
}

.error-description {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: 0;
  padding: 0;
}

.error-subtitle {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
  padding: 0;
  font-style: italic;
}

.error-actions {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: var(--space-md);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-family: var(--font-primary);
  font-weight: 600;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  min-height: 48px;
  min-width: 200px;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
  box-shadow: var(--shadow-md);
}

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

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

.error-hints {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  width: 100%;
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-bg-secondary);
}

.hint-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  background-color: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  transition: all var(--transition-fast);
}

.hint-item:hover {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hint-icon {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hint-text {
  white-space: nowrap;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

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

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

  .error-code-wrapper {
    max-width: 350px;
  }

  .hint-item {
    flex-basis: auto;
  }
}

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

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

  .error-code-wrapper {
    max-width: 400px;
  }

  .hint-item {
    padding: var(--space-md) var(--space-lg);
  }
}

.contact-page-sayhello {
  width: 100%;
  background-color: var(--color-bg-primary);
}

.contact-page-hero {
  width: 100%;
  background-color: var(--color-primary);
  padding: 3rem 1rem;
  overflow: hidden;
}

.contact-page-hero-content {
  text-align: center;
}

.contact-page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--space-md);
  letter-spacing: -0.5px;
}

.contact-page-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #e0e7ff;
  line-height: 1.7;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-page-main {
  width: 100%;
  background-color: var(--color-bg-primary);
  padding: 2.5rem 1rem;
  overflow: hidden;
}

.contact-page-main-content {
  width: 100%;
}

.contact-page-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.contact-page-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-page-form-header {
  margin-bottom: 2rem;
}

.contact-page-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.contact-page-form-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.contact-page-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background-color: var(--color-bg-tertiary);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-page-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-page-form-label {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-primary);
  display: block;
}

.contact-page-form-input,
.contact-page-form-textarea {
  width: 100%;
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--color-text-primary);
  background-color: var(--color-bg-secondary);
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  transition: border-color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.contact-page-form-input::placeholder,
.contact-page-form-textarea::placeholder {
  color: var(--color-text-muted);
}

.contact-page-form-input:focus,
.contact-page-form-textarea:focus {
  border-color: var(--color-primary);
  background-color: var(--color-bg-tertiary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

.contact-page-form-textarea {
  resize: vertical;
  min-height: 140px;
  font-family: var(--font-primary);
}

.contact-page-form-privacy {
  padding: var(--space-sm) 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.contact-page-form-privacy-text {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.contact-page-form-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.contact-page-form-privacy-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-page-form-submit {
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-page-form-submit:hover {
  background-color: var(--color-primary-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.contact-page-form-submit:active {
  transform: translateY(0);
}

.contact-page-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-page-info-header {
  margin-bottom: 2rem;
}

.contact-page-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.contact-page-info-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.contact-page-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-page-info-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background-color: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-primary);
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

.contact-page-info-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.contact-page-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  min-width: 50px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-lg);
  font-size: 1.5rem;
  color: var(--color-primary);
}

.contact-page-info-content {
  flex: 1;
}

.contact-page-info-item-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.contact-page-info-item-text {
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.contact-page-info-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

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

.contact-page-info-item-subtitle {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0;
}

.contact-page-info-highlight {
  background-color: var(--color-secondary-light);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-secondary);
}

.contact-page-info-highlight-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.contact-page-info-highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-page-info-highlight-list li {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: var(--color-text-primary);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.contact-page-info-highlight-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: bold;
  font-size: 1.1rem;
}

@media (min-width: 768px) {
  .contact-page-hero {
    padding: 4rem 2rem;
  }

  .contact-page-main {
    padding: 4rem 2rem;
  }

  .contact-page-grid {
    gap: 3rem;
  }

  .contact-page-form-wrapper {
    flex: 1 1 45%;
  }

  .contact-page-info-wrapper {
    flex: 1 1 45%;
  }

  .contact-page-form {
    padding: 2.5rem;
  }

  .contact-page-info-items {
    gap: 1.75rem;
  }

  .contact-page-info-item {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .contact-page-hero {
    padding: 5rem 2rem;
  }

  .contact-page-main {
    padding: 5rem 2rem;
  }

  .contact-page-grid {
    gap: 4rem;
  }

  .contact-page-form-wrapper {
    flex: 1 1 48%;
  }

  .contact-page-info-wrapper {
    flex: 1 1 48%;
  }

  .contact-page-form {
    padding: 3rem;
  }

  .contact-page-info-highlight {
    padding: 2.5rem;
  }
}

@media (min-width: 1440px) {
  .contact-page-hero {
    padding: 6rem 0;
  }

  .contact-page-main {
    padding: 6rem 0;
  }

  .contact-page-grid {
    gap: 5rem;
  }
}
.main-erfolgsvisionen-entwickeln {
  width: 100%;
  background: var(--color-bg-primary);
}

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

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

.breadcrumbs-erfolgsvisionen-entwickeln a {
  color: #60a5fa;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumbs-erfolgsvisionen-entwickeln a:hover {
  color: #93c5fd;
}

.breadcrumbs-erfolgsvisionen-entwickeln span {
  color: #64748b;
}

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

.hero-text-erfolgsvisionen-entwickeln {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-erfolgsvisionen-entwickeln {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.hero-meta-erfolgsvisionen-entwickeln {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex-wrap: wrap;
}

.meta-item-erfolgsvisionen-entwickeln {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #94a3b8;
}

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

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

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

.intro-text-erfolgsvisionen-entwickeln {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-erfolgsvisionen-entwickeln {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-erfolgsvisionen-entwickeln {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
}

.intro-paragraph-erfolgsvisionen-entwickeln {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-img-erfolgsvisionen-entwickeln {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

.components-section-erfolgsvisionen-entwickeln {
  background: #f1f5f9;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.components-header-erfolgsvisionen-entwickeln {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

.components-subtitle-erfolgsvisionen-entwickeln {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

.components-wrapper-erfolgsvisionen-entwickeln {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.components-text-erfolgsvisionen-entwickeln {
  flex: 1 1 50%;
  max-width: 50%;
}

.components-image-erfolgsvisionen-entwickeln {
  flex: 1 1 50%;
  max-width: 50%;
}

.component-item-erfolgsvisionen-entwickeln {
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
}

.component-heading-erfolgsvisionen-entwickeln {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.component-text-erfolgsvisionen-entwickeln {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

.components-img-erfolgsvisionen-entwickeln {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

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

.development-header-erfolgsvisionen-entwickeln {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

.development-wrapper-erfolgsvisionen-entwickeln {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.development-image-erfolgsvisionen-entwickeln {
  flex: 1 1 50%;
  max-width: 50%;
}

.development-text-erfolgsvisionen-entwickeln {
  flex: 1 1 50%;
  max-width: 50%;
}

.development-img-erfolgsvisionen-entwickeln {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

.development-paragraph-erfolgsvisionen-entwickeln {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.step-box-erfolgsvisionen-entwickeln {
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid #4f46e5;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.step-label-erfolgsvisionen-entwickeln {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-text-erfolgsvisionen-entwickeln {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

.power-section-erfolgsvisionen-entwickeln {
  background: #f1f5f9;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.power-header-erfolgsvisionen-entwickeln {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

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

.power-text-erfolgsvisionen-entwickeln {
  flex: 1 1 50%;
  max-width: 50%;
}

.power-image-erfolgsvisionen-entwickeln {
  flex: 1 1 50%;
  max-width: 50%;
}

.power-paragraph-erfolgsvisionen-entwickeln {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.power-img-erfolgsvisionen-entwickeln {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

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

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

.practice-header-erfolgsvisionen-entwickeln {
  text-align: center;
}

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

.practice-intro-erfolgsvisionen-entwickeln {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

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

.practice-card-erfolgsvisionen-entwickeln {
  flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1rem));
  min-width: 280px;
  max-width: 400px;
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

.practice-card-title-erfolgsvisionen-entwickeln {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.practice-card-text-erfolgsvisionen-entwickeln {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

.cta-section-erfolgsvisionen-entwickeln {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.cta-content-erfolgsvisionen-entwickeln {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title-erfolgsvisionen-entwickeln {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.cta-text-erfolgsvisionen-entwickeln {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #e0e7ff;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.cta-button-erfolgsvisionen-entwickeln {
  display: inline-block;
  background: #ffffff;
  color: #4f46e5;
  padding: clamp(0.875rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
}

.cta-button-erfolgsvisionen-entwickeln:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.disclaimer-section-erfolgsvisionen-entwickeln {
  background: #f1f5f9;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-erfolgsvisionen-entwickeln {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid #f59e0b;
  box-shadow: var(--shadow-sm);
}

.disclaimer-title-erfolgsvisionen-entwickeln {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 1rem;
}

.disclaimer-text-erfolgsvisionen-entwickeln {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

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

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

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

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

.related-card-erfolgsvisionen-entwickeln {
  flex: 1 1 calc(33.333% - clamp(1rem, 2vw, 1.5rem));
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

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

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

.related-card-title-erfolgsvisionen-entwickeln {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  color: #0f172a;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.related-card-description-erfolgsvisionen-entwickeln {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.related-card-link-erfolgsvisionen-entwickeln {
  color: #4f46e5;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
  align-self: flex-start;
}

.related-card-link-erfolgsvisionen-entwickeln:hover {
  color: #3730a3;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .hero-content-erfolgsvisionen-entwickeln,
  .intro-content-erfolgsvisionen-entwickeln,
  .components-wrapper-erfolgsvisionen-entwickeln,
  .development-wrapper-erfolgsvisionen-entwickeln,
  .power-wrapper-erfolgsvisionen-entwickeln {
    flex-direction: column;
  }

  .hero-text-erfolgsvisionen-entwickeln,
  .hero-image-erfolgsvisionen-entwickeln,
  .intro-text-erfolgsvisionen-entwickeln,
  .intro-image-erfolgsvisionen-entwickeln,
  .components-text-erfolgsvisionen-entwickeln,
  .components-image-erfolgsvisionen-entwickeln,
  .development-image-erfolgsvisionen-entwickeln,
  .development-text-erfolgsvisionen-entwickeln,
  .power-text-erfolgsvisionen-entwickeln,
  .power-image-erfolgsvisionen-entwickeln {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .practice-card-erfolgsvisionen-entwickeln {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-card-erfolgsvisionen-entwickeln {
    flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1rem));
  }
}

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

@media (max-width: 480px) {
  .breadcrumbs-erfolgsvisionen-entwickeln {
    font-size: 0.8125rem;
  }

  .hero-title-erfolgsvisionen-entwickeln {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
}