
    @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 - L3 SOFT GRAY + GREEN */
  
  /* Primary backgrounds */
  --color-bg-primary: #f9fafb;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f3f4f6;
  --color-bg-card: #ffffff;
  --color-bg-overlay: rgba(0, 0, 0, 0.02);
  
  /* Text colors */
  --color-text-primary: #111827;
  --color-text-secondary: #4b5563;
  --color-text-muted: #9ca3af;
  --color-text-light: #d1d5db;
  
  /* Accent colors */
  --color-primary: #059669;
  --color-primary-hover: #047857;
  --color-primary-light: #d1fae5;
  --color-secondary: #10b981;
  --color-secondary-hover: #059669;
  --color-accent: #34d399;
  
  /* Status colors */
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-info: #3b82f6;
  
  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  /* Font weights */
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Font sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  
  /* Line heights */
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 1.75;
  
  /* 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;
  --space-4xl: 8rem;
  
  /* Border radius */
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.03);
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px 0 rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
  
  /* Border widths */
  --border-xs: 0.5px;
  --border-sm: 1px;
  --border-md: 2px;
  --border-lg: 3px;
  
  /* Z-index scale */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-weight: var(--font-weight-regular);
  line-height: var(--leading-normal);
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  line-height: var(--leading-tight);
  color: var(--color-text-primary);
}

h1 {
  font-size: var(--text-5xl);
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--text-4xl);
  letter-spacing: -0.015em;
}

h3 {
  font-size: var(--text-3xl);
  letter-spacing: -0.01em;
}

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

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

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

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

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

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

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

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

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

/* Grid System */
.grid {
  display: grid;
  gap: var(--space-lg);
}

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

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

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

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

@media (max-width: 1024px) {
  .grid-cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .grid-cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

/* Flexbox 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;
}

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

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

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

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

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

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

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-weight: var(--font-weight-semibold);
  font-size: var(--text-base);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

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

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

.btn-secondary {
  background: var(--color-bg-tertiary);
  color: var(--color-text-primary);
  border: var(--border-sm) solid #e5e7eb;
}

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

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

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

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

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

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

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

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

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

.badge-error {
  background: #fee2e2;
  color: var(--color-error);
}

.badge-info {
  background: #dbeafe;
  color: var(--color-info);
}

/* Sections */
.section {
  padding: var(--space-3xl) 0;
}

.section-sm {
  padding: var(--space-2xl) 0;
}

.section-lg {
  padding: var(--space-4xl) 0;
}

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

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

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

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

/* Input Elements */
input,
textarea,
select {
  width: 100%;
  padding: var(--space-sm);
  border: var(--border-sm) solid #e5e7eb;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  color: var(--color-text-primary);
  background: var(--color-bg-card);
  transition: border-color var(--transition-fast), box-shadow 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);
}

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

label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
}

/* Divider */
.divider {
  height: var(--border-sm);
  background: #e5e7eb;
  margin: var(--space-lg) 0;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

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

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

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

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

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

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

.font-light {
  font-weight: var(--font-weight-regular);
}

.font-normal {
  font-weight: var(--font-weight-medium);
}

.font-semibold {
  font-weight: var(--font-weight-semibold);
}

.font-bold {
  font-weight: var(--font-weight-bold);
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

.no-wrap {
  white-space: nowrap;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

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

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

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

/* Visibility */
.hidden {
  display: none;
}

.invisible {
  visibility: hidden;
}

.visible {
  visibility: visible;
}

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

@media (min-width: 769px) {
  .hidden-desktop {
    display: none;
  }
}

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

li {
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
}

/* Code */
code {
  background: var(--color-bg-tertiary);
  color: var(--color-primary);
  padding: 0.2em 0.4em;
  border-radius: var(--radius-sm);
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
}

pre {
  background: var(--color-bg-tertiary);
  color: var(--color-text-primary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  margin-bottom: var(--space-lg);
}

pre code {
  background: none;
  color: inherit;
  padding: 0;
}

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

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.img-responsive {
  width: 100%;
  height: auto;
}

.img-cover {
  object-fit: cover;
}

.img-contain {
  object-fit: contain;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-lg);
}

th {
  background: var(--color-bg-tertiary);
  color: var(--color-text-primary);
  padding: var(--space-md);
  text-align: left;
  font-weight: var(--font-weight-semibold);
  border-bottom: var(--border-sm) solid #e5e7eb;
}

td {
  padding: var(--space-md);
  border-bottom: var(--border-sm) solid #e5e7eb;
  color: var(--color-text-secondary);
}

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

/* 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 scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

.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-scaleIn {
  animation: scaleIn var(--transition-base);
}

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

/* Responsive Typography */
@media (max-width: 1024px) {
  h1 {
    font-size: var(--text-4xl);
  }
  
  h2 {
    font-size: var(--text-3xl);
  }
  
  h3 {
    font-size: var(--text-2xl);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: var(--text-3xl);
  }
  
  h2 {
    font-size: var(--text-2xl);
  }
  
  h3 {
    font-size: var(--text-xl);
  }
  
  h4 {
    font-size: var(--text-lg);
  }
}

/* Accessibility */
.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;
}

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

button:focus-visible,
a:focus-visible {
  outline-offset: 2px;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: var(--radius-full);
}

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

/* Selection */
::selection {
  background: var(--color-primary);
  color: #ffffff;
}

::-moz-selection {
  background: var(--color-primary);
  color: #ffffff;
}

/* Print Styles */
@media print {
  body {
    background: #ffffff;
    color: #000000;
  }
  
  .no-print {
    display: none;
  }
}
.header-growth-hub {
  background: var(--color-bg-secondary);
  border-bottom: 1px solid var(--color-bg-tertiary);
  position: relative;
  z-index: var(--z-sticky);
  padding: clamp(0.75rem, 2vw, 1.25rem) 0;
}

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

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

.header-growth-hub-brand:hover {
  opacity: 0.8;
}

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

.header-growth-hub-logo-text {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-bold);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  letter-spacing: -0.3px;
}

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

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

.header-growth-hub-nav-link:hover {
  color: var(--color-primary);
}

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

.header-growth-hub-nav-link:hover::after {
  width: 100%;
}

.header-growth-hub-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background var(--transition-fast), transform var(--transition-fast);
  flex-shrink: 0;
}

.header-growth-hub-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

.header-growth-hub-mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}

.header-growth-hub-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  transform-origin: center;
}

.header-growth-hub-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}

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

.header-growth-hub-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

.header-growth-hub-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-secondary);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-base);
  z-index: var(--z-modal);
  padding-top: 70px;
}

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

.header-growth-hub-mobile-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--color-bg-tertiary);
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  background: var(--color-bg-secondary);
  z-index: var(--z-modal);
}

.header-growth-hub-mobile-close {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--color-text-primary);
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast);
}

.header-growth-hub-mobile-close:hover {
  color: var(--color-primary);
}

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

.header-growth-hub-mobile-link {
  display: block;
  padding: 1rem 1.5rem;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-secondary);
  text-decoration: none;
  border-bottom: 1px solid var(--color-bg-tertiary);
  transition: all var(--transition-fast);
}

.header-growth-hub-mobile-link:hover {
  background: var(--color-bg-tertiary);
  color: var(--color-primary);
  padding-left: 2rem;
}

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

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

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

  .header-growth-hub-cta-button {
    display: block;
  }

  .header-growth-hub-mobile-toggle {
    display: none;
  }

  .header-growth-hub-mobile-menu {
    display: none;
  }
}

@media (max-width: 767px) {
  .header-growth-hub-brand span {
    font-size: 1.1rem;
  }

  .header-growth-hub-mobile-menu {
    width: 100vw;
  }
}

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

.hero-section-index {
  background: var(--color-bg-secondary);
  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-index {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.hero-title-index {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: var(--color-text-primary);
  line-height: var(--leading-tight);
  font-weight: var(--font-weight-bold);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.hero-cta-group-index {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex-wrap: wrap;
}

.hero-cta-group-index .btn {
  font-size: clamp(0.875rem, 1vw, 1rem);
  padding: clamp(0.625rem, 1.5vw, 0.75rem) clamp(1.25rem, 2vw, 1.75rem);
}

.hero-stats-index {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

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

.hero-stat-number-index {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  font-family: var(--font-heading);
  line-height: var(--leading-tight);
}

.hero-stat-label-index {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-muted);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

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

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

  .hero-image-index {
    flex: 1 1 100%;
    min-height: 280px;
    max-height: 400px;
  }
}

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

  .hero-cta-group-index {
    flex-direction: column;
  }

  .hero-cta-group-index .btn {
    width: 100%;
    text-align: center;
  }

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

  .hero-image-index {
    min-height: 200px;
    max-height: 300px;
  }
}

.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, 4vw, 3.5rem);
}

.featured-header-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.featured-tag-index {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
  margin: 0 auto;
}

.featured-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: var(--font-weight-bold);
  line-height: var(--leading-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

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

.featured-card-image-index {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
}

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

.featured-card-title-index {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  font-weight: var(--font-weight-bold);
  line-height: var(--leading-snug);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.featured-card-text-index {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin: 0;
  flex: 1;
}

.featured-card-link-index {
  font-size: clamp(0.875rem, 1vw, 0.975rem);
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  transition: color var(--transition-fast);
  margin-top: auto;
}

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

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

.featured-all-link-index {
  display: inline-block;
  font-size: clamp(0.975rem, 1vw, 1.125rem);
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.featured-all-link-index:hover {
  background: var(--color-primary-light);
  color: var(--color-primary-hover);
}

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

  .featured-cards-index {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

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

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

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

.features-header-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.features-tag-index {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
  margin: 0 auto;
}

.features-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: var(--font-weight-bold);
  line-height: var(--leading-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.feature-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  text-align: center;
  transition: transform var(--transition-base);
}

.feature-card-index:hover {
  transform: translateY(-4px);
}

.feature-icon-index {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  height: clamp(3rem, 6vw, 4.5rem);
}

.feature-title-index {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-primary);
  font-weight: var(--font-weight-bold);
  line-height: var(--leading-snug);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.feature-text-index {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin: 0;
}

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

  .features-cards-index {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

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

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

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

.process-header-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.process-tag-index {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
  margin: 0 auto;
}

.process-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: var(--font-weight-bold);
  line-height: var(--leading-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.process-steps-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, 5vw, 3.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  font-family: var(--font-heading);
  line-height: var(--leading-tight);
  flex-shrink: 0;
  min-width: clamp(3rem, 5vw, 4.5rem);
}

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

.step-title-index {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-primary);
  font-weight: var(--font-weight-bold);
  line-height: var(--leading-snug);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.step-text-index {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin: 0;
}

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

  .process-steps-index {
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .process-step-index {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .step-number-index {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    min-width: clamp(2.5rem, 4vw, 3.5rem);
  }
}

.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(2.5rem, 5vw, 4rem);
}

.testimonials-header-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.testimonials-tag-index {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
  margin: 0 auto;
}

.testimonials-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: var(--font-weight-bold);
  line-height: var(--leading-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

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

.testimonial-text-index {
  font-size: clamp(0.875rem, 1vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin: 0;
  font-style: italic;
}

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

.testimonial-name-index {
  font-size: clamp(0.975rem, 1.5vw, 1.125rem);
  color: var(--color-text-primary);
  font-weight: var(--font-weight-semibold);
  margin: 0;
}

.testimonial-role-index {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-muted);
  margin: 0;
}

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

  .testimonials-grid-index {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

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

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

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

.faq-header-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.faq-tag-index {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
  margin: 0 auto;
}

.faq-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: var(--font-weight-bold);
  line-height: var(--leading-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.faq-grid-index {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.faq-item-index {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.faq-question-index {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  font-weight: var(--font-weight-bold);
  line-height: var(--leading-snug);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.faq-answer-index {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin: 0;
}

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

  .faq-grid-index {
    grid-template-columns: 1fr;
  }
}

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

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

.benefits-header-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.benefits-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: var(--font-weight-bold);
  line-height: var(--leading-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.benefits-item-index {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
}

.benefits-icon-index {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--color-primary);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(2.5rem, 4vw, 3.5rem);
  min-height: clamp(2.5rem, 4vw, 3.5rem);
}

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

.benefits-item-title-index {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  font-weight: var(--font-weight-bold);
  line-height: var(--leading-snug);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.benefits-item-text-index {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin: 0;
}

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

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

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

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

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

.cta-title-index {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #ffffff;
  font-weight: var(--font-weight-bold);
  line-height: var(--leading-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-text-index {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: var(--leading-relaxed);
  margin: 0;
  max-width: 500px;
}

.cta-btn-index {
  margin-top: clamp(0.5rem, 1vw, 0.75rem);
  background: #ffffff;
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
}

.cta-btn-index:hover {
  background: #f1f5f9;
  color: var(--color-primary-hover);
}

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

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

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

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

.cookie-banner-text {
  color: #ffffff;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  line-height: var(--leading-normal);
  margin: 0;
  text-align: center;
  flex: 1 1 100%;
  min-width: 250px;
}

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

.cookie-btn-accept,
.cookie-btn-decline {
  padding: clamp(0.5rem, 1vw, 0.625rem) clamp(1rem, 1.5vw, 1.25rem);
  border: none;
  border-radius: var(--radius-lg);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

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

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

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

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

@media (max-width: 768px) {
  .cookie-banner {
    padding: clamp(0.75rem, 1.5vw, 1rem);
    gap: clamp(0.5rem, 1vw, 0.75rem);
  }

  .cookie-banner-text {
    flex: 1 1 100%;
  }

  .cookie-banner-buttons {
    flex: 1 1 100%;
    gap: clamp(0.5rem, 1vw, 0.75rem);
  }

  .cookie-btn-accept,
  .cookie-btn-decline {
    flex: 1 1 45%;
  }
}

@media (max-width: 640px) {
  .cookie-btn-accept,
  .cookie-btn-decline {
    flex: 1 1 100%;
  }
}

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

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

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

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

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

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

.footer-about {
  display: block;
}

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

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

.footer-navigation {
  display: block;
}

.footer-navigation h3,
.footer-contact h3,
.footer-legal h3 {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  letter-spacing: -0.3px;
}

.footer-nav-list,
.footer-legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.5rem, 2vw, 1.5rem);
}

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

.footer-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-base);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.footer-contact {
  display: block;
}

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

.footer-legal {
  display: block;
}

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

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

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

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

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

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

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

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

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

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

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

  .footer-navigation {
    flex: 0 1 150px;
  }

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

  .footer-legal {
    flex: 0 1 200px;
  }

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

.category-page-personal-growth {
  background: #ffffff;
}

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

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

.hero-text-personal-growth {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

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

.hero-subtitle-personal-growth {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #e0e7ff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.6;
  font-weight: 500;
}

.hero-description-personal-growth {
  font-size: clamp(0.875rem, 1.5vw + 0.4rem, 1.125rem);
  color: #a5b4fc;
  line-height: 1.7;
  margin-bottom: 0;
}

.posts-section-personal-growth {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.posts-header-personal-growth {
  text-align: center;
}

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

.posts-subtitle-personal-growth {
  font-size: clamp(0.95rem, 1.5vw + 0.4rem, 1.25rem);
  color: #64748b;
  margin-bottom: 0;
}

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

.card-personal-growth {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex: 1 1 clamp(280px, 90vw, 350px);
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  padding: 0;
}

.card-personal-growth:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

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

.card-title-personal-growth {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #0f172a;
  font-weight: 700;
  line-height: 1.3;
  padding: 0 clamp(1rem, 2vw, 1.5rem);
  padding-top: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: 0;
}

.card-description-personal-growth {
  font-size: clamp(0.875rem, 1.5vw + 0.3rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  padding: 0 clamp(1rem, 2vw, 1.5rem);
  margin-bottom: 0;
}

.card-meta-personal-growth {
  display: flex;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  flex-wrap: wrap;
  padding: 0 clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(0.8rem, 1.2vw + 0.3rem, 0.95rem);
  color: #94a3b8;
}

.card-time-personal-growth,
.card-level-personal-growth,
.card-date-personal-growth {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #94a3b8;
}

.card-time-personal-growth i,
.card-level-personal-growth i,
.card-date-personal-growth i {
  color: #10b981;
}

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

.card-link-personal-growth:hover {
  background: #059669;
  transform: translateX(4px);
}

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

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

.insights-header-personal-growth {
  text-align: center;
}

.insights-title-personal-growth {
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: 0;
  font-weight: 700;
}

.insights-grid-personal-growth {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.insight-card-personal-growth {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f3f4f6;
  border-radius: 12px;
  border-left: 4px solid #10b981;
}

.insight-number-personal-growth {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #10b981;
  margin-bottom: 0.5rem;
  opacity: 0.6;
}

.insight-heading-personal-growth {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  line-height: 1.3;
}

.insight-text-personal-growth {
  font-size: clamp(0.875rem, 1.5vw + 0.3rem, 1rem);
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 0;
}

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

.faq-content-personal-growth {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 800px;
  margin: 0 auto;
}

.faq-header-personal-growth {
  text-align: center;
}

.faq-title-personal-growth {
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  font-weight: 700;
}

.faq-subtitle-personal-growth {
  font-size: clamp(0.95rem, 1.5vw + 0.4rem, 1.25rem);
  color: #a5b4fc;
  margin-bottom: 0;
}

.faq-list-personal-growth {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.faq-item-personal-growth {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(165, 180, 252, 0.2);
  border-radius: 10px;
  padding: clamp(1rem, 2vw, 1.5rem);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item-personal-growth:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(165, 180, 252, 0.4);
}

.faq-item-personal-growth[open] {
  background: rgba(16, 185, 129, 0.1);
  border-color: #10b981;
}

.faq-question-personal-growth {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  list-style: none;
  cursor: pointer;
}

.faq-question-personal-growth::-webkit-details-marker {
  display: none;
}

.faq-icon-personal-growth {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #10b981;
  transition: transform 0.3s ease;
}

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

.faq-text-personal-growth {
  font-size: clamp(0.95rem, 1.5vw + 0.4rem, 1.25rem);
  color: #f1f5f9;
  font-weight: 600;
  text-align: left;
}

.faq-answer-personal-growth {
  font-size: clamp(0.875rem, 1.5vw + 0.3rem, 1.025rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-top: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: 0;
  padding-left: clamp(1rem, 2vw, 1.5rem);
}

@media (max-width: 768px) {
  .posts-grid-personal-growth {
    flex-direction: column;
    align-items: stretch;
  }

  .card-personal-growth {
    flex: 1 1 auto;
  }

  .insights-grid-personal-growth {
    grid-template-columns: 1fr;
  }

  .faq-item-personal-growth {
    padding: clamp(0.875rem, 2vw, 1.25rem);
  }
}

@media (max-width: 640px) {
  .hero-text-personal-growth {
    max-width: 100%;
  }

  .card-title-personal-growth,
  .card-description-personal-growth,
  .card-meta-personal-growth,
  .card-link-personal-growth {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .card-meta-personal-growth {
    font-size: 0.8rem;
  }
}

.main-ziele-setzen-strategien {
  background: #f9fafb;
}

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

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

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

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

.hero-title-ziele-setzen-strategien {
  color: #0f172a;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  margin-bottom: clamp(0.75rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.hero-subtitle-ziele-setzen-strategien {
  color: #4b5563;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.6;
}

.hero-meta-ziele-setzen-strategien {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.meta-item-ziele-setzen-strategien {
  color: #9ca3af;
  font-size: 0.875rem;
}

.meta-separator-ziele-setzen-strategien {
  color: #d1d5db;
}

.hero-image-ziele-setzen-strategien {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

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

  .hero-text-wrapper-ziele-setzen-strategien,
  .hero-image-wrapper-ziele-setzen-strategien {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-section-ziele-setzen-strategien {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }
}

.breadcrumbs-ziele-setzen-strategien {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  flex-wrap: wrap;
}

.breadcrumbs-ziele-setzen-strategien a {
  color: #059669;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.breadcrumbs-ziele-setzen-strategien a:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumbs-ziele-setzen-strategien span {
  color: #d1d5db;
  font-size: 0.875rem;
}

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

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

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

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

.intro-title-ziele-setzen-strategien {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-text-ziele-setzen-strategien {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-ziele-setzen-strategien {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .intro-content-ziele-setzen-strategien {
    flex-direction: column;
  }

  .intro-text-column-ziele-setzen-strategien,
  .intro-image-column-ziele-setzen-strategien {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.framework-text-column-ziele-setzen-strategien {
  flex: 1 1 50%;
  max-width: 50%;
}

.framework-image-column-ziele-setzen-strategien {
  flex: 1 1 50%;
  max-width: 50%;
}

.framework-title-ziele-setzen-strategien {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.framework-text-ziele-setzen-strategien {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.framework-image-ziele-setzen-strategien {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .framework-content-ziele-setzen-strategien {
    flex-direction: column;
  }

  .framework-text-column-ziele-setzen-strategien,
  .framework-image-column-ziele-setzen-strategien {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.process-header-ziele-setzen-strategien {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.process-title-ziele-setzen-strategien {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.process-subtitle-ziele-setzen-strategien {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
}

.steps-wrapper-ziele-setzen-strategien {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.step-item-ziele-setzen-strategien {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
}

.step-number-ziele-setzen-strategien {
  color: #059669;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  flex-shrink: 0;
  min-width: 60px;
}

.step-content-ziele-setzen-strategien {
  flex: 1;
}

.step-title-ziele-setzen-strategien {
  color: #0f172a;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
}

.step-text-ziele-setzen-strategien {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
}

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

  .step-number-ziele-setzen-strategien {
    min-width: auto;
  }
}

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

.mistakes-content-ziele-setzen-strategien {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.mistakes-text-column-ziele-setzen-strategien {
  flex: 1 1 50%;
  max-width: 50%;
}

.mistakes-image-column-ziele-setzen-strategien {
  flex: 1 1 50%;
  max-width: 50%;
}

.mistakes-title-ziele-setzen-strategien {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.mistakes-text-ziele-setzen-strategien {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.mistake-item-ziele-setzen-strategien {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  padding-bottom: clamp(1.5rem, 3vw, 2rem);
  border-bottom: 1px solid #e5e7eb;
}

.mistake-item-ziele-setzen-strategien:last-child {
  border-bottom: none;
}

.mistake-label-ziele-setzen-strategien {
  color: #0f172a;
  font-size: clamp(0.95rem, 2vw + 0.5rem, 1.15rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.mistake-description-ziele-setzen-strategien {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
}

.mistakes-image-ziele-setzen-strategien {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .mistakes-content-ziele-setzen-strategien {
    flex-direction: column;
  }

  .mistakes-text-column-ziele-setzen-strategien,
  .mistakes-image-column-ziele-setzen-strategien {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.practical-header-ziele-setzen-strategien {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.practical-title-ziele-setzen-strategien {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.practical-subtitle-ziele-setzen-strategien {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
}

.template-card-ziele-setzen-strategien {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 700px;
  margin: 0 auto;
}

.template-section-ziele-setzen-strategien {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.template-section-ziele-setzen-strategien:last-child {
  margin-bottom: 0;
}

.template-label-ziele-setzen-strategien {
  color: #0f172a;
  font-size: clamp(0.95rem, 2vw + 0.5rem, 1.15rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.template-instruction-ziele-setzen-strategien {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  font-style: italic;
}

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

.conclusion-content-ziele-setzen-strategien {
  max-width: 700px;
  margin: 0 auto;
}

.conclusion-title-ziele-setzen-strategien {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.conclusion-text-ziele-setzen-strategien {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.featured-quote-ziele-setzen-strategien {
  background: #f3f4f6;
  border-left: 4px solid #059669;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
  margin: clamp(2rem, 4vw, 3rem) 0;
}

.quote-text-ziele-setzen-strategien {
  color: #0f172a;
  font-size: clamp(0.95rem, 2vw + 0.5rem, 1.15rem);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.quote-author-ziele-setzen-strategien {
  color: #4b5563;
  font-size: clamp(0.8rem, 1vw + 0.4rem, 1rem);
  font-style: italic;
  display: block;
}

.disclaimer-section-ziele-setzen-strategien {
  background: #f3f4f6;
  padding: clamp(2rem, 4vw, 3rem) 0;
  overflow: hidden;
}

.disclaimer-content-ziele-setzen-strategien {
  max-width: 700px;
  margin: 0 auto;
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
}

.disclaimer-title-ziele-setzen-strategien {
  color: #0f172a;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-ziele-setzen-strategien {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
}

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

.related-header-ziele-setzen-strategien {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-title-ziele-setzen-strategien {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.related-subtitle-ziele-setzen-strategien {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
}

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

.related-card-ziele-setzen-strategien {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 280px;
  max-width: 380px;
  background: #f9fafb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.related-card-ziele-setzen-strategien:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.related-card-image-ziele-setzen-strategien {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-image-ziele-setzen-strategien {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-ziele-setzen-strategien:hover .related-image-ziele-setzen-strategien {
  transform: scale(1.05);
}

.related-card-content-ziele-setzen-strategien {
  padding: clamp(1rem, 2vw, 1.5rem);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-ziele-setzen-strategien {
  color: #0f172a;
  font-size: clamp(0.95rem, 2vw + 0.5rem, 1.15rem);
  font-weight: 600;
  line-height: 1.4;
}

.related-card-description-ziele-setzen-strategien {
  color: #4b5563;
  font-size: clamp(0.8rem, 1vw + 0.4rem, 0.95rem);
  line-height: 1.6;
  flex: 1;
}

@media (max-width: 1024px) {
  .related-card-ziele-setzen-strategien {
    flex: 1 1 calc(50% - 1rem);
  }
}

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

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

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

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

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

p {
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0 0 1rem 0;
}

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

a {
  color: #059669;
  transition: color 0.3s ease;
}

a:hover {
  color: #047857;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .hero-section-ziele-setzen-strategien,
  .intro-section-ziele-setzen-strategien,
  .framework-section-ziele-setzen-strategien,
  .process-section-ziele-setzen-strategien,
  .mistakes-section-ziele-setzen-strategien,
  .practical-section-ziele-setzen-strategien,
  .conclusion-section-ziele-setzen-strategien,
  .related-section-ziele-setzen-strategien {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }
}

.main-gewohnheiten-aufbauen {
  background: #f9fafb;
  overflow: hidden;
}

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

.breadcrumbs-gewohnheiten-aufbauen {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  flex-wrap: wrap;
}

.breadcrumbs-gewohnheiten-aufbauen a {
  color: #cbd5e1;
  transition: color 0.3s ease;
}

.breadcrumbs-gewohnheiten-aufbauen a:hover {
  color: #10b981;
}

.breadcrumbs-gewohnheiten-aufbauen span {
  color: #64748b;
}

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

.hero-text-wrapper-gewohnheiten-aufbauen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.hero-meta-gewohnheiten-aufbauen {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.meta-item-gewohnheiten-aufbauen {
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
}

.meta-separator-gewohnheiten-aufbauen {
  color: #475569;
}

.hero-image-wrapper-gewohnheiten-aufbauen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-gewohnheiten-aufbauen {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .hero-content-gewohnheiten-aufbauen {
    flex-direction: column;
  }
  
  .hero-text-wrapper-gewohnheiten-aufbauen,
  .hero-image-wrapper-gewohnheiten-aufbauen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.intro-text-block-gewohnheiten-aufbauen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-gewohnheiten-aufbauen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.intro-text-gewohnheiten-aufbauen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.intro-image-block-gewohnheiten-aufbauen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-gewohnheiten-aufbauen {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-content-gewohnheiten-aufbauen {
    flex-direction: column;
  }
  
  .intro-text-block-gewohnheiten-aufbauen,
  .intro-image-block-gewohnheiten-aufbauen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-one-gewohnheiten-aufbauen {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-text-block-gewohnheiten-aufbauen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-gewohnheiten-aufbauen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.content-text-gewohnheiten-aufbauen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.highlight-box-gewohnheiten-aufbauen {
  background: #ffffff;
  border-left: 4px solid #10b981;
  padding: clamp(1rem, 2vw, 1.5rem);
  margin: clamp(1.5rem, 3vw, 2rem) 0;
  border-radius: 8px;
}

.highlight-text-gewohnheiten-aufbauen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #1e293b;
  line-height: 1.6;
  margin: 0;
}

.content-image-block-gewohnheiten-aufbauen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-gewohnheiten-aufbauen {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .content-wrapper-one-gewohnheiten-aufbauen {
    flex-direction: column;
  }
  
  .content-text-block-gewohnheiten-aufbauen,
  .content-image-block-gewohnheiten-aufbauen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-two-gewohnheiten-aufbauen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-image-block-two-gewohnheiten-aufbauen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-two-gewohnheiten-aufbauen {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.content-text-block-two-gewohnheiten-aufbauen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-two-gewohnheiten-aufbauen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.content-text-two-gewohnheiten-aufbauen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

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

.step-item-gewohnheiten-aufbauen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.step-title-gewohnheiten-aufbauen {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #0f172a;
  font-weight: 700;
  margin: 0;
}

.step-text-gewohnheiten-aufbauen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .content-wrapper-two-gewohnheiten-aufbauen {
    flex-direction: column-reverse;
  }
  
  .content-image-block-two-gewohnheiten-aufbauen,
  .content-text-block-two-gewohnheiten-aufbauen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-three-gewohnheiten-aufbauen {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-text-block-three-gewohnheiten-aufbauen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-three-gewohnheiten-aufbauen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.quote-block-gewohnheiten-aufbauen {
  background: #ffffff;
  border-left: 4px solid #10b981;
  padding: clamp(1.5rem, 3vw, 2rem);
  margin: clamp(1.5rem, 3vw, 2rem) 0;
  border-radius: 8px;
  font-style: italic;
}

.quote-text-gewohnheiten-aufbauen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #1e293b;
  line-height: 1.7;
  margin-bottom: 0.75rem;
  margin: 0 0 0.75rem 0;
}

.quote-author-gewohnheiten-aufbauen {
  font-size: 0.875rem;
  color: #64748b;
  display: block;
  font-style: normal;
  font-weight: 600;
}

.content-subtitle-gewohnheiten-aufbauen {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #0f172a;
  margin-top: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.content-image-block-three-gewohnheiten-aufbauen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-three-gewohnheiten-aufbauen {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .content-wrapper-three-gewohnheiten-aufbauen {
    flex-direction: column;
  }
  
  .content-text-block-three-gewohnheiten-aufbauen,
  .content-image-block-three-gewohnheiten-aufbauen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-four-gewohnheiten-aufbauen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-image-block-four-gewohnheiten-aufbauen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-four-gewohnheiten-aufbauen {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.content-text-block-four-gewohnheiten-aufbauen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-four-gewohnheiten-aufbauen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.content-text-four-gewohnheiten-aufbauen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
  .content-wrapper-four-gewohnheiten-aufbauen {
    flex-direction: column-reverse;
  }
  
  .content-image-block-four-gewohnheiten-aufbauen,
  .content-text-block-four-gewohnheiten-aufbauen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.conclusion-content-gewohnheiten-aufbauen {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-gewohnheiten-aufbauen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  text-align: center;
}

.conclusion-text-gewohnheiten-aufbauen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}

.action-steps-gewohnheiten-aufbauen {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.action-item-gewohnheiten-aufbauen {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.action-number-gewohnheiten-aufbauen {
  font-size: 1.5rem;
  color: #10b981;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.5;
}

.action-text-gewohnheiten-aufbauen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #e2e8f0;
  line-height: 1.6;
  margin: 0;
}

.conclusion-closing-gewohnheiten-aufbauen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
  text-align: center;
  margin-top: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
}

.disclaimer-section-gewohnheiten-aufbauen {
  background: #f3f4f6;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.disclaimer-title-gewohnheiten-aufbauen {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #0f172a;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.disclaimer-text-gewohnheiten-aufbauen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

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

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

.related-title-gewohnheiten-aufbauen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  text-align: center;
  margin: 0;
  font-weight: 700;
}

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

.related-card-gewohnheiten-aufbauen {
  flex: 1 1 300px;
  max-width: 380px;
  background: #f9fafb;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-gewohnheiten-aufbauen:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.15);
}

.related-card-image-gewohnheiten-aufbauen {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #e5e7eb;
}

.related-image-gewohnheiten-aufbauen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-title-gewohnheiten-aufbauen {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: #0f172a;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.related-card-description-gewohnheiten-aufbauen {
  font-size: clamp(0.813rem, 1vw + 0.4rem, 0.975rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.related-card-link-gewohnheiten-aufbauen {
  font-size: clamp(0.813rem, 1vw + 0.4rem, 0.975rem);
  color: #10b981;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: 0.5rem;
  display: inline-block;
}

.related-card-link-gewohnheiten-aufbauen:hover {
  color: #047857;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .related-cards-gewohnheiten-aufbauen {
    flex-direction: column;
    align-items: center;
  }
  
  .related-card-gewohnheiten-aufbauen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1024px) {
  .hero-section-gewohnheiten-aufbauen,
  .intro-section-gewohnheiten-aufbauen,
  .content-section-one-gewohnheiten-aufbauen,
  .content-section-two-gewohnheiten-aufbauen,
  .content-section-three-gewohnheiten-aufbauen,
  .content-section-four-gewohnheiten-aufbauen,
  .conclusion-section-gewohnheiten-aufbauen {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
  }
}

@media (max-width: 640px) {
  .hero-section-gewohnheiten-aufbauen,
  .intro-section-gewohnheiten-aufbauen,
  .content-section-one-gewohnheiten-aufbauen,
  .content-section-two-gewohnheiten-aufbauen,
  .content-section-three-gewohnheiten-aufbauen,
  .content-section-four-gewohnheiten-aufbauen,
  .conclusion-section-gewohnheiten-aufbauen {
    padding: 2rem 0;
  }
  
  .hero-title-gewohnheiten-aufbauen {
    font-size: 1.75rem;
  }
  
  .content-title-gewohnheiten-aufbauen,
  .content-title-two-gewohnheiten-aufbauen,
  .content-title-three-gewohnheiten-aufbauen,
  .content-title-four-gewohnheiten-aufbauen,
  .intro-title-gewohnheiten-aufbauen,
  .conclusion-title-gewohnheiten-aufbauen {
    font-size: 1.5rem;
  }
}

.main-zeitblockierung-produktivitaet {
  overflow: hidden;
}

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

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

.hero-text-zeitblockierung-produktivitaet {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-zeitblockierung-produktivitaet {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: #111827;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-zeitblockierung-produktivitaet {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #4b5563;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-meta-zeitblockierung-produktivitaet {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  font-size: 0.875rem;
}

.meta-item-zeitblockierung-produktivitaet {
  color: #6b7280;
  font-weight: 500;
}

.meta-divider-zeitblockierung-produktivitaet {
  color: #d1d5db;
}

.hero-image-zeitblockierung-produktivitaet {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-zeitblockierung-produktivitaet {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.breadcrumbs-zeitblockierung-produktivitaet {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs-zeitblockierung-produktivitaet a {
  color: #059669;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-zeitblockierung-produktivitaet a:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumbs-zeitblockierung-produktivitaet span {
  color: #d1d5db;
}

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

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

  .hero-section-zeitblockierung-produktivitaet {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }
}

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

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

.intro-text-zeitblockierung-produktivitaet {
  flex: 1 1 55%;
  max-width: 55%;
}

.intro-paragraph-zeitblockierung-produktivitaet {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.intro-highlight-zeitblockierung-produktivitaet {
  flex: 1 1 45%;
  max-width: 45%;
}

.highlight-box-zeitblockierung-produktivitaet {
  background: #f3f4f6;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border-left: 4px solid #059669;
}

.highlight-title-zeitblockierung-produktivitaet {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #111827;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.highlight-list-zeitblockierung-produktivitaet {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlight-item-zeitblockierung-produktivitaet {
  color: #4b5563;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.highlight-item-zeitblockierung-produktivitaet::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: 700;
}

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

  .intro-text-zeitblockierung-produktivitaet,
  .intro-highlight-zeitblockierung-produktivitaet {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.method-section-zeitblockierung-produktivitaet {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.method-text-zeitblockierung-produktivitaet {
  flex: 1 1 50%;
  max-width: 50%;
}

.method-title-zeitblockierung-produktivitaet {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.method-paragraph-zeitblockierung-produktivitaet {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.method-image-zeitblockierung-produktivitaet {
  flex: 1 1 50%;
  max-width: 50%;
}

.method-image-zeitblockierung-produktivitaet img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .method-content-zeitblockierung-produktivitaet {
    flex-direction: column;
  }

  .method-text-zeitblockierung-produktivitaet,
  .method-image-zeitblockierung-produktivitaet {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.implementation-header-zeitblockierung-produktivitaet {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.implementation-title-zeitblockierung-produktivitaet {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #111827;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.implementation-subtitle-zeitblockierung-produktivitaet {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #6b7280;
  line-height: 1.6;
}

.steps-wrapper-zeitblockierung-produktivitaet {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.step-card-zeitblockierung-produktivitaet {
  flex: 1 1 calc(50% - 1rem);
  min-width: 250px;
  max-width: 380px;
  background: #f3f4f6;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.step-card-zeitblockierung-produktivitaet:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.step-number-zeitblockierung-produktivitaet {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
}

.step-title-zeitblockierung-produktivitaet {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #111827;
  margin: 0;
  font-weight: 700;
}

.step-text-zeitblockierung-produktivitaet {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .step-card-zeitblockierung-produktivitaet {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.benefits-section-zeitblockierung-produktivitaet {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.benefits-image-zeitblockierung-produktivitaet {
  flex: 1 1 50%;
  max-width: 50%;
}

.benefits-image-zeitblockierung-produktivitaet img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.benefits-text-zeitblockierung-produktivitaet {
  flex: 1 1 50%;
  max-width: 50%;
}

.benefits-title-zeitblockierung-produktivitaet {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.benefits-paragraph-zeitblockierung-produktivitaet {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .benefits-content-zeitblockierung-produktivitaet {
    flex-direction: column;
  }

  .benefits-image-zeitblockierung-produktivitaet,
  .benefits-text-zeitblockierung-produktivitaet {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.common-header-zeitblockierung-produktivitaet {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.common-title-zeitblockierung-produktivitaet {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #111827;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.common-subtitle-zeitblockierung-produktivitaet {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #6b7280;
  line-height: 1.6;
}

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

.mistake-card-zeitblockierung-produktivitaet {
  flex: 1 1 calc(50% - 1rem);
  min-width: 250px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.mistake-card-zeitblockierung-produktivitaet:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: #059669;
}

.mistake-title-zeitblockierung-produktivitaet {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #111827;
  margin: 0;
  font-weight: 700;
}

.mistake-text-zeitblockierung-produktivitaet {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .mistake-card-zeitblockierung-produktivitaet {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.advanced-section-zeitblockierung-produktivitaet {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.advanced-text-zeitblockierung-produktivitaet {
  flex: 1 1 50%;
  max-width: 50%;
}

.advanced-title-zeitblockierung-produktivitaet {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.advanced-paragraph-zeitblockierung-produktivitaet {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.featured-quote-zeitblockierung-produktivitaet {
  background: #f3f4f6;
  border-left: 4px solid #059669;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

.quote-text-zeitblockierung-produktivitaet {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: #111827;
  font-style: italic;
  margin: 0 0 1rem 0;
  line-height: 1.7;
}

.quote-author-zeitblockierung-produktivitaet {
  font-size: 0.95rem;
  color: #6b7280;
  font-style: normal;
  display: block;
  margin: 0;
}

.advanced-image-zeitblockierung-produktivitaet {
  flex: 1 1 50%;
  max-width: 50%;
}

.advanced-image-zeitblockierung-produktivitaet img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .advanced-content-zeitblockierung-produktivitaet {
    flex-direction: column;
  }

  .advanced-text-zeitblockierung-produktivitaet,
  .advanced-image-zeitblockierung-produktivitaet {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.conclusion-content-zeitblockierung-produktivitaet {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-zeitblockierung-produktivitaet {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #111827;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-paragraph-zeitblockierung-produktivitaet {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.conclusion-cta-zeitblockierung-produktivitaet {
  margin-top: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  background: #059669;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  background: #047857;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  transform: translateY(-2px);
}

.disclaimer-section-zeitblockierung-produktivitaet {
  background: #f3f4f6;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.disclaimer-content-zeitblockierung-produktivitaet {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border-left: 4px solid #059669;
}

.disclaimer-title-zeitblockierung-produktivitaet {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  color: #111827;
  margin-bottom: 1rem;
  font-weight: 700;
}

.disclaimer-text-zeitblockierung-produktivitaet {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}

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

.related-header-zeitblockierung-produktivitaet {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.related-title-zeitblockierung-produktivitaet {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #111827;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-subtitle-zeitblockierung-produktivitaet {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #6b7280;
  line-height: 1.6;
}

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

.related-card-zeitblockierung-produktivitaet {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 400px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-zeitblockierung-produktivitaet:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #059669;
  transform: translateY(-4px);
}

.related-image-zeitblockierung-produktivitaet {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-card-img-zeitblockierung-produktivitaet {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.related-card-zeitblockierung-produktivitaet:hover .related-card-img-zeitblockierung-produktivitaet {
  transform: scale(1.05);
}

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

.related-card-title-zeitblockierung-produktivitaet {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #111827;
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
}

.related-card-text-zeitblockierung-produktivitaet {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.related-card-link-zeitblockierung-produktivitaet {
  display: inline-flex;
  align-items: center;
  color: #059669;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.related-card-link-zeitblockierung-produktivitaet:hover {
  color: #047857;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-card-zeitblockierung-produktivitaet {
    flex: 1 1 calc(50% - 1rem);
  }
}

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

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  .conclusion-section-zeitblockierung-produktivitaet {
    padding: 2.5rem 0;
  }

  .disclaimer-section-zeitblockierung-produktivitaet {
    padding: 2rem 0;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 1rem;
  }

  h1 {
    word-break: break-word;
  }

  h2 {
    word-break: break-word;
  }

  .hero-meta-zeitblockierung-produktivitaet {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .meta-divider-zeitblockierung-produktivitaet {
    display: none;
  }
}

.main-selbstmitgefuehl-entwickeln {
  width: 100%;
  overflow-x: hidden;
}

.hero-section-selbstmitgefuehl-entwickeln {
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.breadcrumbs-selbstmitgefuehl-entwickeln {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #6b7280;
  flex-wrap: wrap;
}

.breadcrumbs-selbstmitgefuehl-entwickeln a {
  color: #059669;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-selbstmitgefuehl-entwickeln a:hover {
  color: #047857;
  text-decoration: underline;
}

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

.hero-text-wrapper-selbstmitgefuehl-entwickeln {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-selbstmitgefuehl-entwickeln {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: #111827;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: 'Playfair Display', serif;
}

.hero-subtitle-selbstmitgefuehl-entwickeln {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
}

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

.meta-item-selbstmitgefuehl-entwickeln {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #6b7280;
}

.meta-item-selbstmitgefuehl-entwickeln i {
  color: #059669;
  font-size: 1.1em;
}

.hero-image-wrapper-selbstmitgefuehl-entwickeln {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

  .hero-text-wrapper-selbstmitgefuehl-entwickeln,
  .hero-image-wrapper-selbstmitgefuehl-entwickeln {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-selbstmitgefuehl-entwickeln {
    max-height: 350px;
  }
}

.intro-section-selbstmitgefuehl-entwickeln {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.intro-text-selbstmitgefuehl-entwickeln {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-lead-selbstmitgefuehl-entwickeln {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #111827;
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.intro-text-selbstmitgefuehl-entwickeln p {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.intro-image-selbstmitgefuehl-entwickeln {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-selbstmitgefuehl-entwickeln img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-height: 400px;
  object-fit: cover;
}

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

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

.foundation-section-selbstmitgefuehl-entwickeln {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.foundation-text-selbstmitgefuehl-entwickeln {
  flex: 1 1 50%;
  max-width: 50%;
}

.foundation-title-selbstmitgefuehl-entwickeln {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #111827;
  font-weight: 700;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  font-family: 'Playfair Display', serif;
}

.foundation-paragraph-selbstmitgefuehl-entwickeln {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.quote-selbstmitgefuehl-entwickeln {
  border-left: 4px solid #059669;
  padding-left: 1.5rem;
  margin: clamp(2rem, 3vw, 2.5rem) 0;
  font-style: italic;
}

.quote-text-selbstmitgefuehl-entwickeln {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: #374151;
  line-height: 1.7;
  margin: 0;
}

.foundation-image-selbstmitgefuehl-entwickeln {
  flex: 1 1 50%;
  max-width: 50%;
}

.foundation-image-selbstmitgefuehl-entwickeln img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-height: 400px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .foundation-content-selbstmitgefuehl-entwickeln {
    flex-direction: column;
  }

  .foundation-text-selbstmitgefuehl-entwickeln,
  .foundation-image-selbstmitgefuehl-entwickeln {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.barriers-section-selbstmitgefuehl-entwickeln {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.barriers-image-selbstmitgefuehl-entwickeln {
  flex: 1 1 50%;
  max-width: 50%;
}

.barriers-image-selbstmitgefuehl-entwickeln img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-height: 400px;
  object-fit: cover;
}

.barriers-text-selbstmitgefuehl-entwickeln {
  flex: 1 1 50%;
  max-width: 50%;
}

.barriers-title-selbstmitgefuehl-entwickeln {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #111827;
  font-weight: 700;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  font-family: 'Playfair Display', serif;
}

.barriers-paragraph-selbstmitgefuehl-entwickeln {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.barriers-list-selbstmitgefuehl-entwickeln {
  list-style: none;
  padding: 0;
  margin: clamp(1.5rem, 2vw, 2rem) 0;
}

.list-item-selbstmitgefuehl-entwickeln {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: #374151;
  line-height: 1.7;
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
}

.list-item-selbstmitgefuehl-entwickeln::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: 700;
  font-size: 1.2em;
}

@media (max-width: 768px) {
  .barriers-content-selbstmitgefuehl-entwickeln {
    flex-direction: column;
  }

  .barriers-image-selbstmitgefuehl-entwickeln,
  .barriers-text-selbstmitgefuehl-entwickeln {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.practices-section-selbstmitgefuehl-entwickeln {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.practices-header-selbstmitgefuehl-entwickeln {
  text-align: center;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.practices-title-selbstmitgefuehl-entwickeln {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #111827;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.practices-subtitle-selbstmitgefuehl-entwickeln {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: #4b5563;
  line-height: 1.6;
}

.practices-cards-selbstmitgefuehl-entwickeln {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
  justify-content: center;
  flex-wrap: wrap;
}

.practice-card-selbstmitgefuehl-entwickeln {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.practice-card-selbstmitgefuehl-entwickeln:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.card-number-selbstmitgefuehl-entwickeln {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #059669;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.card-title-selbstmitgefuehl-entwickeln {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: #111827;
  font-weight: 700;
  margin: 0;
  font-family: 'Playfair Display', serif;
}

.card-text-selbstmitgefuehl-entwickeln {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}

.practices-image-selbstmitgefuehl-entwickeln {
  width: 100%;
  margin-top: clamp(1rem, 2vw, 2rem);
}

.practices-image-selbstmitgefuehl-entwickeln img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-height: 400px;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .practice-card-selbstmitgefuehl-entwickeln {
    flex: 1 1 calc(50% - 1.5rem);
  }
}

@media (max-width: 768px) {
  .practice-card-selbstmitgefuehl-entwickeln {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.integration-section-selbstmitgefuehl-entwickeln {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.integration-text-selbstmitgefuehl-entwickeln {
  flex: 1 1 50%;
  max-width: 50%;
}

.integration-title-selbstmitgefuehl-entwickeln {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #111827;
  font-weight: 700;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  font-family: 'Playfair Display', serif;
}

.integration-paragraph-selbstmitgefuehl-entwickeln {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.highlight-box-selbstmitgefuehl-entwickeln {
  background: #d1fae5;
  border-left: 4px solid #059669;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 8px;
  margin: clamp(1.5rem, 2vw, 2rem) 0;
}

.highlight-text-selbstmitgefuehl-entwickeln {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: #065f46;
  line-height: 1.7;
  margin: 0;
}

.highlight-text-selbstmitgefuehl-entwickeln strong {
  color: #047857;
  font-weight: 700;
}

.integration-image-selbstmitgefuehl-entwickeln {
  flex: 1 1 50%;
  max-width: 50%;
}

.integration-image-selbstmitgefuehl-entwickeln img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-height: 400px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .integration-content-selbstmitgefuehl-entwickeln {
    flex-direction: column;
  }

  .integration-text-selbstmitgefuehl-entwickeln,
  .integration-image-selbstmitgefuehl-entwickeln {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-selbstmitgefuehl-entwickeln {
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-selbstmitgefuehl-entwickeln {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-selbstmitgefuehl-entwickeln {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #111827;
  font-weight: 700;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  text-align: center;
  font-family: 'Playfair Display', serif;
}

.conclusion-text-selbstmitgefuehl-entwickeln {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  text-align: center;
}

.cta-box-selbstmitgefuehl-entwickeln {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  text-align: center;
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  color: #ffffff;
}

.cta-title-selbstmitgefuehl-entwickeln {
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.cta-text-selbstmitgefuehl-entwickeln {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: #d1fae5;
  line-height: 1.7;
  margin: 0;
}

.related-section-selbstmitgefuehl-entwickeln {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.related-title-selbstmitgefuehl-entwickeln {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #111827;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.related-subtitle-selbstmitgefuehl-entwickeln {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: #4b5563;
  line-height: 1.6;
}

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

.related-card-selbstmitgefuehl-entwickeln {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.related-card-selbstmitgefuehl-entwickeln:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

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

.related-image-selbstmitgefuehl-entwickeln img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-text-selbstmitgefuehl-entwickeln {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.related-card-title-selbstmitgefuehl-entwickeln {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: #111827;
  font-weight: 700;
  margin: 0;
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
}

.related-card-description-selbstmitgefuehl-entwickeln {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .related-card-selbstmitgefuehl-entwickeln {
    flex: 1 1 calc(50% - 1.5rem);
  }
}

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

.disclaimer-section-selbstmitgefuehl-entwickeln {
  background: #f9fafb;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-selbstmitgefuehl-entwickeln {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-left: 4px solid #059669;
  border-radius: 8px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.disclaimer-icon-selbstmitgefuehl-entwickeln {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: #059669;
  line-height: 1;
}

.disclaimer-title-selbstmitgefuehl-entwickeln {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: #111827;
  font-weight: 700;
  margin: 0;
  font-family: 'Playfair Display', serif;
}

.disclaimer-text-selbstmitgefuehl-entwickeln {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #4b5563;
  line-height: 1.75;
  margin: 0;
}

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

@media (max-width: 640px) {
  .container {
    padding: 0 clamp(0.75rem, 3vw, 1.25rem);
  }
}

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #059669;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

html, body {
  width: 100%;
  height: 100%;
}

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

.personal-growth-academy-about {
  width: 100%;
  overflow: hidden;
}

.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(1.5rem, 3vw, 2.5rem);
  align-items: center;
}

.hero-header-about {
  text-align: center;
  max-width: 900px;
}

.hero-title-about {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}

.hero-subtitle-about {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  line-height: 1.6;
  max-width: 700px;
}

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

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

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

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

.stat-label-about {
  font-size: clamp(0.8rem, 1vw + 0.3rem, 1rem);
  color: #94a3b8;
  text-align: center;
  font-weight: 500;
}

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

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

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

.section-tag-about {
  display: inline-block;
  padding: 0.35rem 1.2rem;
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.foundation-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}

.foundation-subtitle-about {
  font-size: clamp(0.9rem, 1.1vw + 0.4rem, 1.15rem);
  color: #64748b;
  line-height: 1.6;
}

.foundation-blocks-about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

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

.block-icon-about {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

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

.block-text-about {
  font-size: clamp(0.85rem, 1vw + 0.3rem, 1rem);
  color: #475569;
  line-height: 1.6;
}

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

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

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

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

.journey-subtitle-about {
  font-size: clamp(0.9rem, 1.1vw + 0.4rem, 1.15rem);
  color: #cbd5e1;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

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

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

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

.step-content-about {
  flex: 1;
  padding-top: 0.5rem;
}

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

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

.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;
  max-width: 800px;
  margin: 0 auto;
}

.approach-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}

.approach-subtitle-about {
  font-size: clamp(0.9rem, 1.1vw + 0.4rem, 1.15rem);
  color: #64748b;
  line-height: 1.6;
}

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

.feature-card-about {
  flex: 1 1 clamp(260px, 100%, 340px);
  background: #ffffff;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

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

.card-title-about {
  font-size: clamp(1rem, 1.8vw + 0.3rem, 1.3rem);
  font-weight: 700;
  color: #1e293b;
}

.card-text-about {
  font-size: clamp(0.8rem, 1vw + 0.3rem, 0.95rem);
  color: #64748b;
  line-height: 1.6;
}

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

.values-section-about {
  background: #1e293b;
  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;
}

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

.values-subtitle-about {
  font-size: clamp(0.9rem, 1.1vw + 0.4rem, 1.15rem);
  color: #cbd5e1;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.featured-quote-about {
  padding: clamp(2rem, 3vw, 3rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(5, 150, 105, 0.08);
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  max-width: 750px;
  border-radius: var(--radius-md);
}

.quote-text-about {
  font-size: clamp(0.95rem, 1.2vw + 0.4rem, 1.25rem);
  color: #e2e8f0;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.quote-author-about {
  font-size: clamp(0.8rem, 1vw + 0.3rem, 1rem);
  color: #94a3b8;
  display: block;
  font-style: normal;
  font-weight: 600;
}

.disclaimer-section-about {
  background: #0a0f1e;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

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

.disclaimer-title-about {
  font-size: clamp(1.1rem, 2vw + 0.3rem, 1.4rem);
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.disclaimer-text-about {
  font-size: clamp(0.8rem, 1vw + 0.3rem, 0.95rem);
  color: #cbd5e1;
  line-height: 1.7;
  max-width: 900px;
}

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

  .process-step-about {
    gap: 1.25rem;
  }

  .step-number-about {
    min-width: 60px;
  }

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

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

@media (max-width: 480px) {
  .hero-stats-about {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-item-about {
    gap: 0.35rem;
  }

  .featured-quote-about {
    padding: 1.5rem;
  }

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

  .step-number-about {
    min-width: auto;
    font-size: 2rem;
  }
}

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

.services-hero {
  background-color: var(--color-bg-secondary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
  border-bottom: var(--border-sm) solid var(--color-bg-tertiary);
}

.services-hero__container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.services-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-3xl), 5vw + 0.5rem, var(--text-5xl));
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--leading-tight);
}

.services-hero__subtitle {
  font-size: clamp(var(--text-base), 2vw + 0.25rem, var(--text-lg));
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--leading-normal);
  font-weight: var(--font-weight-regular);
}

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

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

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

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

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

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

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

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

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

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

.services-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  font-size: var(--text-2xl);
  color: var(--color-primary);
}

.services-card__title {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-xl), 2vw + 0.25rem, var(--text-2xl));
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--leading-snug);
}

.services-card__description {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--leading-relaxed);
  flex-grow: 1;
}

.services-card__topics {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.services-card__topics li {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  padding-left: var(--space-sm);
  position: relative;
}

.services-card__topics li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
}

.services-cta {
  background-color: var(--color-bg-secondary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
  border-top: var(--border-sm) solid var(--color-bg-tertiary);
}

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

.services-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-2xl), 4vw + 0.25rem, var(--text-3xl));
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--leading-snug);
}

.services-cta__text {
  font-size: clamp(var(--text-sm), 1.5vw + 0.25rem, var(--text-base));
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-xl) 0;
  line-height: var(--leading-relaxed);
}

.services-cta__button {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background-color: var(--color-primary);
  color: var(--color-bg-secondary);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-weight: var(--font-weight-semibold);
  font-size: var(--text-sm);
  transition: background-color var(--transition-base), transform var(--transition-base);
  border: none;
  cursor: pointer;
  line-height: 1;
}

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

.services-cta__button:active {
  transform: translateY(0);
}

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

.services-visual {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.services-visual img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 1024px) {
  .services-visual--1,
  .services-visual--2,
  .services-visual--3 {
    display: block;
  }

  .services-visual--1 {
    position: absolute;
    width: 280px;
    height: 280px;
    top: 150px;
    right: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    z-index: 1;
  }

  .services-visual--2 {
    position: absolute;
    width: 240px;
    height: 240px;
    top: 900px;
    left: 50px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    z-index: 1;
  }

  .services-visual--3 {
    position: absolute;
    width: 260px;
    height: 260px;
    top: 1700px;
    right: 60px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    z-index: 1;
  }
}

@media (min-width: 1280px) {
  .services-visual--1 {
    width: 320px;
    height: 320px;
    top: 140px;
    right: 60px;
  }

  .services-visual--2 {
    width: 280px;
    height: 280px;
    top: 920px;
    left: 80px;
  }

  .services-visual--3 {
    width: 300px;
    height: 300px;
    top: 1720px;
    right: 100px;
  }
}

.portfolio-page {
  width: 100%;
  overflow: hidden;
}

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

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

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

.portfolio-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-3xl), 5vw + 0.5rem, var(--text-5xl));
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  line-height: var(--leading-tight);
  margin: 0 0 var(--space-md) 0;
}

.portfolio-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(var(--text-base), 1.5vw, var(--text-lg));
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.portfolio-projects__container {
  max-width: 1200px;
  margin: 0 auto;
}

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

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

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

.portfolio-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.portfolio-card__image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: var(--color-bg-tertiary);
}

.portfolio-card__img-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.portfolio-card__tag {
  display: inline-block;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-card__title {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-lg), 2vw, var(--text-2xl));
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  line-height: var(--leading-snug);
  margin: 0 0 var(--space-md) 0;
}

.portfolio-card__description {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin: 0 0 var(--space-md) 0;
  flex-grow: 1;
}

.portfolio-card__meta {
  display: flex;
  gap: var(--space-md);
  padding-top: var(--space-md);
  border-top: var(--border-sm) solid var(--color-bg-tertiary);
}

.portfolio-card__meta-item {
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.portfolio-cta {
  background-color: var(--color-primary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
}

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

.portfolio-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: var(--font-weight-bold);
  color: var(--color-bg-secondary);
  line-height: var(--leading-tight);
  margin: 0 0 var(--space-md) 0;
}

.portfolio-cta__text {
  font-family: var(--font-primary);
  font-size: clamp(var(--text-base), 1.5vw, var(--text-lg));
  color: var(--color-bg-secondary);
  line-height: var(--leading-relaxed);
  margin: 0 0 var(--space-2xl) 0;
  opacity: 0.95;
}

.portfolio-cta__button {
  display: inline-block;
  background-color: var(--color-bg-secondary);
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-weight-semibold);
  padding: var(--space-sm) var(--space-2xl);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  box-shadow: var(--shadow-md);
  border: none;
  cursor: pointer;
}

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

.portfolio-cta__button:active {
  transform: translateY(0);
}

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

  .portfolio-projects {
    padding: var(--space-4xl) var(--space-md);
  }

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

  .portfolio-card__image {
    height: 260px;
  }

  .portfolio-cta {
    padding: var(--space-4xl) var(--space-md);
  }
}

@media (min-width: 1024px) {
  .portfolio-hero {
    padding: var(--space-4xl) var(--space-md);
  }

  .portfolio-projects {
    padding: var(--space-4xl) var(--space-md);
  }

  .portfolio-card__content {
    padding: var(--space-xl);
  }

  .portfolio-card__image {
    height: 280px;
  }

  .portfolio-cta {
    padding: var(--space-4xl) var(--space-md);
  }
}

.growth-hub {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

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

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

.growth-hub h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: var(--leading-tight);
}

.growth-hub .last-updated {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
  font-weight: var(--font-weight-medium);
}

.growth-hub h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: var(--font-weight-semibold);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  line-height: var(--leading-snug);
}

.growth-hub p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.growth-hub ul {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.growth-hub li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}

.growth-hub .section {
  margin-bottom: var(--space-2xl);
}

.growth-hub .contact-section {
  background-color: var(--color-bg-secondary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-text-light);
  margin-top: var(--space-3xl);
}

.growth-hub .contact-section h2 {
  color: var(--color-text-primary);
  margin-top: 0;
}

.growth-hub .contact-section p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}

.growth-hub .contact-section strong {
  color: var(--color-text-primary);
  font-weight: var(--font-weight-semibold);
}

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

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

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

html {
  scroll-behavior: smooth;
}

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

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

.thank-you-section {
  width: 100%;
  padding: var(--space-lg) var(--space-md);
  background-color: var(--color-bg-primary);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

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

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

.thank-you-wrapper {
  text-align: center;
  padding: var(--space-lg) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.success-icon {
  margin-bottom: var(--space-lg);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-icon svg {
  width: 80px;
  height: 80px;
}

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

.thank-you-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

.thank-you-lead {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.thank-you-message {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.thank-you-next-steps {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-text-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.thank-you-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.next-steps-list {
  list-style: none;
  text-align: left;
}

.next-steps-list li {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  padding: var(--space-sm) 0;
  padding-left: var(--space-lg);
  position: relative;
}

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

.btn-return {
  display: inline-block;
  padding: var(--space-sm) var(--space-xl);
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  font-weight: var(--font-weight-semibold);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-primary);
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

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

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

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

  .thank-you-wrapper {
    padding: var(--space-2xl) 0;
  }

  .success-icon svg {
    width: 100px;
    height: 100px;
  }

  .thank-you-next-steps {
    padding: var(--space-xl) var(--space-2xl);
  }
}

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

  .thank-you-wrapper {
    padding: var(--space-3xl) 0;
  }

  .success-icon svg {
    width: 120px;
    height: 120px;
  }

  .next-steps-list li {
    padding: var(--space-md) 0;
    padding-left: var(--space-lg);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

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

html,
body {
  width: 100%;
  height: 100%;
}

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

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

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

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

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

.error-visual {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--space-xl) 0;
}

.error-code-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}

.error-decoration {
  position: absolute;
  width: clamp(200px, 50vw, 400px);
  height: clamp(200px, 50vw, 400px);
  background: radial-gradient(circle, var(--color-primary-light) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: pulse-decoration 4s ease-in-out infinite;
}

@keyframes pulse-decoration {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }
}

.error-message {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  line-height: var(--leading-tight);
  letter-spacing: -0.01em;
}

.error-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  max-width: 600px;
  margin: 0 auto;
}

.error-suggestions {
  background-color: var(--color-bg-secondary);
  border: var(--border-sm) solid var(--color-primary-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin: var(--space-md) 0;
}

.suggestions-label {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.suggestions-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.suggestions-list li {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 0.9vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--leading-normal);
  padding-left: var(--space-lg);
  position: relative;
}

.suggestions-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  transition: all var(--transition-base);
  border: var(--border-sm) solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

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

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

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

.btn-large {
  padding: var(--space-md) var(--space-2xl);
  font-size: clamp(0.95rem, 1.1vw, 1.125rem);
}

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

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

  .error-visual {
    padding: var(--space-2xl) 0;
  }

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

  .suggestions-list li {
    padding-left: var(--space-2xl);
  }
}

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

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

  .error-visual {
    padding: var(--space-3xl) 0;
  }

  .error-title {
    letter-spacing: -0.02em;
  }

  .error-decoration {
    width: clamp(250px, 60vw, 500px);
    height: clamp(250px, 60vw, 500px);
  }
}

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

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

  .error-visual {
    padding: var(--space-4xl) 0;
  }

  .btn-primary:hover {
    transform: translateY(-3px);
  }
}

@media (max-width: 639px) {
  .error-decoration {
    width: clamp(150px, 40vw, 250px);
    height: clamp(150px, 40vw, 250px);
  }
}

.contact-say-hello {
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.contact-say-hello-hero {
  background-color: var(--color-bg-secondary);
  padding: 3rem 1rem;
  overflow: hidden;
}

.contact-say-hello-hero-content {
  text-align: center;
}

.contact-say-hello-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0 0 1rem 0;
  letter-spacing: -0.5px;
}

.contact-say-hello-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .contact-say-hello-hero {
    padding: 4rem 1rem;
  }

  .contact-say-hello-hero-title {
    margin-bottom: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .contact-say-hello-hero {
    padding: 5rem 1rem;
  }
}

.contact-say-hello-main {
  background-color: var(--color-bg-primary);
  padding: 3rem 1rem;
  overflow: hidden;
}

.contact-say-hello-main-content {
  width: 100%;
}

.contact-say-hello-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

.contact-say-hello-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-say-hello-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-say-hello-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-say-hello-label {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  display: block;
}

.contact-say-hello-input,
.contact-say-hello-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--color-text-light);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-primary);
  transition: all var(--transition-base);
  box-sizing: border-box;
}

.contact-say-hello-input::placeholder,
.contact-say-hello-textarea::placeholder {
  color: var(--color-text-muted);
}

.contact-say-hello-input:focus,
.contact-say-hello-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: var(--color-bg-secondary);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.contact-say-hello-input:hover,
.contact-say-hello-textarea:hover {
  border-color: var(--color-primary);
}

.contact-say-hello-textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-say-hello-form-agreement {
  margin-top: 0.5rem;
}

.contact-say-hello-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  cursor: pointer;
  user-select: none;
  line-height: 1.5;
}

.contact-say-hello-checkbox {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--color-primary);
}

.contact-say-hello-checkbox:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.contact-say-hello-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  transition: color var(--transition-base);
}

.contact-say-hello-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-say-hello-submit {
  width: 100%;
  padding: 1rem 2rem;
  background-color: var(--color-primary);
  color: var(--color-bg-secondary);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1rem);
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: all var(--transition-base);
  margin-top: 0.5rem;
  box-shadow: var(--shadow-sm);
}

.contact-say-hello-submit:hover {
  background-color: var(--color-primary-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.contact-say-hello-submit:active {
  transform: translateY(0);
}

.contact-say-hello-submit:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.contact-say-hello-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-say-hello-info-box {
  background-color: var(--color-bg-secondary);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-say-hello-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0 0 1.75rem 0;
  letter-spacing: -0.5px;
}

.contact-say-hello-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--color-bg-tertiary);
}

.contact-say-hello-info-item:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-say-hello-info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.25rem;
}

.contact-say-hello-info-text {
  flex: 1;
}

.contact-say-hello-info-label {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 1vw, 0.875rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-muted);
  margin: 0 0 0.25rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-say-hello-info-value {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.6;
}

.contact-say-hello-info-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-bg-tertiary);
}

.contact-say-hello-info-section:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.contact-say-hello-info-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin: 0 0 1rem 0;
  letter-spacing: -0.5px;
}

.contact-say-hello-hours {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-say-hello-hour-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.contact-say-hello-day {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
}

.contact-say-hello-time {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
}

.contact-say-hello-info-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .contact-say-hello-main {
    padding: 4rem 1rem;
  }

  .contact-say-hello-grid {
    gap: 3rem;
  }

  .contact-say-hello-form-wrapper {
    flex: 1 1 calc(50% - 1.5rem);
  }

  .contact-say-hello-info-wrapper {
    flex: 1 1 calc(50% - 1.5rem);
  }

  .contact-say-hello-info-box {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .contact-say-hello-main {
    padding: 5rem 1rem;
  }

  .contact-say-hello-grid {
    gap: 4rem;
  }

  .contact-say-hello-info-box {
    padding: 3rem;
    height: fit-content;
    position: sticky;
    top: 2rem;
  }
}

@media (max-width: 767px) {
  .contact-say-hello-form-wrapper,
  .contact-say-hello-info-wrapper {
    flex: 1 1 100%;
  }

  .contact-say-hello-info-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .contact-say-hello-info-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }
}
.growth-hub .legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-sm);
}

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

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

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