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

:root {
  
  --color-bg-primary: #f9fafb;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f3f4f6;
  --color-bg-card: #ffffff;
  
  
  --color-text-primary: #111827;
  --color-text-secondary: #4b5563;
  --color-text-muted: #9ca3af;
  --color-text-light: #6b7280;
  
  
  --color-primary: #059669;
  --color-primary-hover: #047857;
  --color-primary-light: #d1fae5;
  --color-secondary: #10b981;
  --color-accent-warm: #f59e0b;
  --color-accent-blue: #3b82f6;
  
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.12);
  
  
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
}

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

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

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
}

h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  letter-spacing: -0.015em;
  color: var(--color-text-primary);
}

h3 {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  letter-spacing: -0.01em;
  color: var(--color-text-primary);
}

h4 {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary);
}

p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
}

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

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

section, [class*="-section"] {
  width: 100%;
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  gap: 0.5rem;
}

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

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

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

.btn-secondary:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

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

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

.btn-light {
  background: #ffffff;
  color: var(--color-primary);
  border: 2px solid #ffffff;
}

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

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

.card-icon {
  width: clamp(3rem, 8vw, 4.5rem);
  height: clamp(3rem, 8vw, 4.5rem);
  background: var(--color-primary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.card-title {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
}

.card-description {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

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

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

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

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

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

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

.grid-4 {
  grid-template-columns: 1fr;
}

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

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

.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-column {
  display: flex;
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

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

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

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

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

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

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

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

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

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

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

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: var(--color-primary-light);
  color: var(--color-primary);
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
}

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

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

input, textarea, select {
  font-family: var(--font-primary);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: var(--radius-md);
  background: var(--color-bg-card);
  color: var(--color-text-primary);
  transition: border-color var(--transition-base);
}

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

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.form-group label {
  font-weight: 600;
  color: var(--color-text-primary);
  font-size: 0.9375rem;
}

ul, ol {
  margin-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
  margin: var(--space-lg) 0;
}

.decoration-dot {
  width: 4px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 50%;
}

.accent-line {
  width: 60px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 2px;
  margin-bottom: var(--space-md);
}

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

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

.img-circle {
  border-radius: 50%;
}

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

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

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

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

.animate-fade {
  animation: fadeIn 0.6s ease-out;
}

.animate-slide-left {
  animation: slideInLeft 0.6s ease-out;
}

.animate-slide-right {
  animation: slideInRight 0.6s ease-out;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media print {
  body {
    background: #ffffff;
    color: #000000;
  }
  
  .no-print {
    display: none !important;
  }
}

@media (max-width: 767px) {
  html {
    font-size: 14px;
  }
  
  h1 {
    margin-bottom: var(--space-sm);
  }
  
  h2 {
    margin-bottom: var(--space-sm);
  }
  
  p {
    margin-bottom: var(--space-md);
  }
}

@media (min-width: 768px) {
  html {
    font-size: 15px;
  }
}

@media (min-width: 1024px) {
  html {
    font-size: 16px;
  }
}

@media (min-width: 1440px) {
  html {
    font-size: 16px;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@400;500;600;700&display=swap');

.header-growth-forge {
  background: var(--color-bg-secondary);
  border-bottom: 1px solid #e5e7eb;
  position: static;
  z-index: 100;
  width: 100%;
}

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

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

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

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

.header-growth-forge-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
  white-space: nowrap;
}

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

.header-growth-forge-nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-base);
  position: relative;
}

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

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

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

.header-growth-forge-cta-button {
  display: none;
  padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1.25rem, 3vw, 1.75rem);
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  flex-shrink: 0;
}

.header-growth-forge-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
}

.header-growth-forge-cta-button:active {
  transform: translateY(0);
}

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

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

.header-growth-forge-mobile-toggle[aria-expanded="true"] .header-growth-forge-toggle-icon:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.header-growth-forge-mobile-toggle[aria-expanded="true"] .header-growth-forge-toggle-icon:nth-child(2) {
  opacity: 0;
}

.header-growth-forge-mobile-toggle[aria-expanded="true"] .header-growth-forge-toggle-icon:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

.header-growth-forge-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg-secondary);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  padding-top: clamp(70px, 12vw, 90px);
}

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

.header-growth-forge-mobile-header {
  display: flex;
  justify-content: flex-end;
  padding: 1rem clamp(1rem, 5vw, 2rem);
  border-bottom: 1px solid #e5e7eb;
}

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

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

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

.header-growth-forge-mobile-link {
  display: block;
  padding: 1rem clamp(1rem, 5vw, 2rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid #f3f4f6;
  transition: all var(--transition-base);
}

.header-growth-forge-mobile-link:hover {
  background: #f9fafb;
  color: var(--color-primary);
  padding-left: clamp(1.5rem, 5vw, 2.5rem);
}

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

.header-growth-forge-mobile-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
}

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

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

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

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

  .header-growth-forge-logo-text {
    font-size: 1.375rem;
  }
}

@media (min-width: 1024px) {
  .header-growth-forge-container {
    height: 90px;
  }

  .header-growth-forge-desktop-nav {
    gap: 2.5rem;
  }

  .header-growth-forge-nav-link {
    font-size: 1rem;
  }

  .header-growth-forge-cta-button {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-growth-forge-brand,
  .header-growth-forge-nav-link,
  .header-growth-forge-nav-link::after,
  .header-growth-forge-cta-button,
  .header-growth-forge-toggle-icon,
  .header-growth-forge-mobile-menu,
  .header-growth-forge-mobile-link,
  .header-growth-forge-mobile-cta {
    transition: none;
  }
}

    .achievement-portal {
  width: 100%;
}

section, [class*="-section"] {
  width: 100%;
  overflow: hidden;
}

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

.hero-section-index {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: #f9fafb;
}

.hero-ambient-glow-index {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-gradient-mesh-index {
  position: absolute;
  bottom: 10%;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.06) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-accent-index {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: rgba(5, 150, 105, 0.05);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

.hero-corner-orb-index {
  position: absolute;
  bottom: 100px;
  right: 5%;
  width: 250px;
  height: 250px;
  background: rgba(34, 211, 238, 0.05);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-line-element-index {
  position: absolute;
  top: 30%;
  right: 20%;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

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

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

.hero-image-block-index {
  flex: 1 1 300px;
  min-width: 300px;
}

.hero-title-index {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.15;
}

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

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

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

.hero-stat-number-index {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
}

.hero-stat-label-index {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #64748b;
  font-weight: 500;
}

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

.hero-image-index {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.values-section-index {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #ffffff;
}

.values-shape-accent-index {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: rgba(5, 150, 105, 0.05);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.values-glow-left-index {
  position: absolute;
  bottom: 20%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.values-glow-right-index {
  position: absolute;
  top: 50%;
  right: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.values-content-index {
  position: relative;
  z-index: 10;
}

.values-header-index {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

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

.values-subtitle-index {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

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

.values-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.values-card-index:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(5, 150, 105, 0.2);
}

.values-card-icon-index {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  border-radius: 12px;
  color: #059669;
  font-size: 1.75rem;
}

.values-card-title-index {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #111827;
}

.values-card-text-index {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
}

@media (max-width: 768px) {
  .values-card-index {
    flex: 1 1 100%;
    max-width: none;
  }
}

.featured-section-index {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f3f4f6;
}

.featured-blob-accent-index {
  position: absolute;
  top: 5%;
  left: -100px;
  width: 350px;
  height: 350px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.featured-gradient-field-index {
  position: absolute;
  bottom: 10%;
  right: -150px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.06) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.featured-content-index {
  position: relative;
  z-index: 10;
}

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

.featured-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.featured-subtitle-index {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #4b5563;
  max-width: 650px;
  margin: 0 auto;
}

.featured-cards-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.featured-card-index {
  flex: 1 1 300px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.featured-card-image-index {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}

.featured-card-content-index {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.featured-card-title-index {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
}

.featured-card-text-index {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
}

.featured-card-link-index {
  color: #059669;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: color 300ms ease-in-out;
  text-decoration: none;
}

.featured-card-link-index:hover {
  color: #047857;
  text-decoration: underline;
}

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

@media (max-width: 768px) {
  .featured-card-index {
    flex: 1 1 100%;
    max-width: none;
  }
}

.process-section-index {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #ffffff;
}

.process-line-accent-index {
  position: absolute;
  top: 15%;
  right: 10%;
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

.process-glow-accent-index {
  position: absolute;
  bottom: 20%;
  left: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.process-content-index {
  position: relative;
  z-index: 10;
}

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

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

.process-subtitle-index {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

.process-steps-index {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step-index {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: 12px;
  transition: all 300ms ease-in-out;
}

.process-step-index:hover {
  background: #f3f4f6;
  transform: translateX(4px);
}

.process-step-number-index {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
}

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

.process-step-title-index {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
}

.process-step-text-index {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
}

.insight-section-index {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f3f4f6;
}

.insight-accent-shape-index {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 280px;
  height: 280px;
  background: rgba(5, 150, 105, 0.05);
  border-radius: 70% 30% 66% 34% / 33% 66% 34% 67%;
  z-index: 1;
  pointer-events: none;
}

.insight-glow-index {
  position: absolute;
  bottom: 15%;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.07) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

.insight-text-block-index {
  flex: 1 1 300px;
  min-width: 300px;
}

.insight-image-block-index {
  flex: 1 1 300px;
  min-width: 300px;
}

.insight-title-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.insight-description-index {
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.insight-quote-index {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #059669;
  background: #ffffff;
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
  border-radius: 4px;
}

.insight-quote-text-index {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-style: italic;
  color: #111827;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.insight-quote-author-index {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

.insight-image-index {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.benefits-section-index {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #ffffff;
}

.benefits-mesh-index {
  position: absolute;
  top: 5%;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.benefits-orb-left-index {
  position: absolute;
  bottom: 20%;
  left: -60px;
  width: 250px;
  height: 250px;
  background: rgba(34, 211, 238, 0.05);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.benefits-orb-right-index {
  position: absolute;
  top: 40%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: rgba(5, 150, 105, 0.04);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.benefits-content-index {
  position: relative;
  z-index: 10;
}

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

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

.benefits-subtitle-index {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

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

.benefits-item-index {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.benefits-item-icon-index {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  border-radius: 10px;
  color: #059669;
  font-size: 1.25rem;
  margin-top: 2px;
}

.benefits-item-content-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.benefits-item-title-index {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #111827;
}

.benefits-item-text-index {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
}

@media (max-width: 768px) {
  .benefits-item-index {
    flex: 1 1 100%;
    max-width: none;
  }
}

.contact-section-index {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #1e293b;
}

.contact-accent-index {
  position: absolute;
  top: 10%;
  left: -80px;
  width: 300px;
  height: 300px;
  background: rgba(34, 211, 238, 0.08);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.contact-glow-index {
  position: absolute;
  bottom: 20%;
  right: -120px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.07) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.contact-content-index {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
}

.contact-form-wrapper-index {
  flex: 1 1 400px;
}

.contact-info-wrapper-index {
  flex: 1 1 400px;
}

.contact-form-title-index {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.contact-form-subtitle-index {
  font-size: 1rem;
  color: #cbd5e1;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.contact-form-index {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.5rem);
}

.contact-form-group-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-form-label-index {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #e2e8f0;
}

.contact-form-input-index,
.contact-form-textarea-index {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1rem;
  font-family: var(--font-primary);
  transition: all 300ms ease-in-out;
}

.contact-form-input-index:focus,
.contact-form-textarea-index:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(5, 150, 105, 0.4);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.contact-form-textarea-index {
  min-height: 140px;
  resize: vertical;
}

.contact-form-submit-index {
  width: 100%;
  padding: 1rem 2rem;
  background: #059669;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

.contact-form-submit-index:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
}

.contact-form-submit-index:active {
  transform: translateY(0);
}

.contact-info-title-index {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.contact-faq-item-index {
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.contact-faq-question-index {
  font-size: 1rem;
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 0.75rem;
}

.contact-faq-answer-index {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #cbd5e1;
}

@media (max-width: 768px) {
  .contact-form-wrapper-index,
  .contact-info-wrapper-index {
    flex: 1 1 100%;
  }
}

.cookie-banner-index {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #0f172a;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

.cookie-banner-text-index {
  color: #cbd5e1;
  margin: 0;
  font-size: 0.875rem;
  text-align: center;
  max-width: 400px;
}

.cookie-banner-link-index {
  color: #59d9e8;
  text-decoration: underline;
  transition: color 300ms ease-in-out;
}

.cookie-banner-link-index:hover {
  color: #22d3ee;
}

.cookie-banner-buttons-index {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: 0.625rem 1.25rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 300ms ease-in-out;
  border: none;
  font-family: var(--font-primary);
}

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

.cookie-btn-accept-index:hover {
  background: #047857;
  transform: translateY(-2px);
}

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

.cookie-btn-decline-index:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #e2e8f0;
}

@media (max-width: 768px) {
  .cookie-banner-index {
    flex-direction: column;
    padding: 1rem;
  }
  
  .cookie-banner-text-index {
    order: 1;
    width: 100%;
  }
  
  .cookie-banner-buttons-index {
    order: 2;
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

    
.footer {
  background: var(--color-bg-primary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-top: 1px solid var(--color-bg-tertiary);
  margin-top: 0;
}

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

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

.footer-section {
  flex: 1 1 250px;
  min-width: 200px;
}

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

.footer-about-title {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  letter-spacing: -0.5px;
}

.footer-about-text {
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.footer-nav-title,
.footer-contact-title,
.footer-legal-title {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 1.25rem;
  font-family: var(--font-primary);
}

.footer-nav-list,
.footer-legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-link,
.footer-legal-link {
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-base);
  display: inline-block;
}

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

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.footer-contact-label {
  display: block;
  color: var(--color-text-primary);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.footer-contact-value {
  display: block;
  color: var(--color-text-secondary);
}

.footer-divider {
  height: 1px;
  background: var(--color-bg-tertiary);
  margin: 2rem 0;
}

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

.footer-copyright {
  font-size: clamp(0.8125rem, 1.2vw, 0.875rem);
  color: var(--color-text-light);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }

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

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

  .footer-nav-list,
  .footer-legal-list {
    gap: 0.625rem;
  }

  .footer-contact-item {
    font-size: 0.875rem;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .footer-content {
    gap: 2.5rem;
  }

  .footer-section {
    flex: 1 1 calc(50% - 1.25rem);
  }

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

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

  .footer-section {
    flex: 1 1 auto;
  }

  .footer-nav-link:focus-visible,
  .footer-legal-link:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-nav-link,
  .footer-legal-link {
    transition: none;
  }
}
    

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

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

.hero-deco-glow-1 {
  position: absolute;
  top: 5%;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-glow-2 {
  position: absolute;
  bottom: 10%;
  left: -100px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-shape-1 {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: rgba(5, 150, 105, 0.04);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.hero-deco-shape-2 {
  position: absolute;
  bottom: 15%;
  right: 5%;
  width: 180px;
  height: 180px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.hero-accent-line {
  position: absolute;
  top: 30%;
  right: 15%;
  width: 150px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.15), transparent);
  z-index: 1;
  pointer-events: none;
}

.hero-content-goal-achievement {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

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

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

.hero-stats-goal-achievement {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4rem);
  margin: clamp(2rem, 4vw, 3rem) 0;
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
  border-top: 1px solid rgba(5, 150, 105, 0.1);
  border-bottom: 1px solid rgba(5, 150, 105, 0.1);
}

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

.hero-stat-number-goal-achievement {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
}

.hero-stat-label-goal-achievement {
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  color: #6b7280;
  font-weight: 500;
}

.hero-buttons-goal-achievement {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.hero-buttons-goal-achievement .btn {
  min-width: 150px;
}

@media (min-width: 768px) {
  .hero-section-goal-achievement {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-goal-achievement {
    padding: 6rem 0;
  }
}

.posts-section-goal-achievement {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f9fafb;
}

.posts-header-goal-achievement {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.posts-tag-goal-achievement {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.posts-title-goal-achievement {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.posts-subtitle-goal-achievement {
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.0625rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.card-goal-achievement {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-slow);
  overflow: hidden;
}

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

.card-image-goal-achievement {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

.card-title-goal-achievement {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
}

.card-description-goal-achievement {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.6;
  flex-grow: 1;
}

.card-meta-goal-achievement {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.meta-badge-goal-achievement {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: rgba(5, 150, 105, 0.08);
  color: #059669;
  border-radius: 16px;
  font-size: 0.8125rem;
  font-weight: 500;
}

.meta-badge-goal-achievement i {
  font-size: 0.75rem;
}

.card-link-goal-achievement {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #059669;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: color var(--transition-base);
  text-decoration: none;
}

.card-link-goal-achievement:hover {
  color: #047857;
}

.card-link-goal-achievement::after {
  content: '';
  transition: transform var(--transition-base);
}

.card-link-goal-achievement:hover::after {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .card-goal-achievement {
    flex: 1 1 100%;
    max-width: none;
  }
}

.process-section-goal-achievement {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #ffffff;
}

.process-deco-1 {
  position: absolute;
  top: 10%;
  left: -120px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.07) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.process-deco-2 {
  position: absolute;
  bottom: 15%;
  right: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  filter: blur(65px);
  z-index: 1;
  pointer-events: none;
}

.process-header-goal-achievement {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.process-tag-goal-achievement {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.process-title-goal-achievement {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.process-subtitle-goal-achievement {
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.0625rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.process-steps-goal-achievement {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 900px;
  margin: 0 auto;
}

.process-step-goal-achievement {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: var(--radius-lg);
  border-left: 4px solid #059669;
  transition: all var(--transition-base);
}

.process-step-goal-achievement:hover {
  background: #f3f4f6;
  box-shadow: var(--shadow-md);
}

.process-step-number-goal-achievement {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.process-step-content-goal-achievement {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.process-step-title-goal-achievement {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #111827;
}

.process-step-text-goal-achievement {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .process-section-goal-achievement {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

.benefits-section-goal-achievement {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f3f4f6;
}

.benefits-deco-glow {
  position: absolute;
  top: 20%;
  right: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.benefits-header-goal-achievement {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.benefits-title-goal-achievement {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.benefits-subtitle-goal-achievement {
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.0625rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.benefits-quote-goal-achievement {
  position: relative;
  z-index: 10;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  margin: clamp(2rem, 4vw, 3rem) 0;
  background: #ffffff;
  border-left: 4px solid #059669;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.benefits-quote-text-goal-achievement {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-style: italic;
  color: #111827;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.benefits-quote-author-goal-achievement {
  font-size: 0.9375rem;
  color: #4b5563;
  font-style: normal;
  font-weight: 500;
}

.benefits-features-goal-achievement {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.benefits-feature-goal-achievement {
  flex: 1 1 220px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-base);
}

.benefits-feature-goal-achievement:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.benefits-feature-icon-goal-achievement {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: #059669;
}

.benefits-feature-title-goal-achievement {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #111827;
}

.benefits-feature-text-goal-achievement {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.6;
}

.cta-section-goal-achievement {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.cta-deco-1 {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.cta-deco-2 {
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.cta-content-goal-achievement {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title-goal-achievement {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-description-goal-achievement {
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.125rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.7;
}

.cta-button-goal-achievement {
  background: #ffffff !important;
  color: #059669 !important;
}

.cta-button-goal-achievement:hover {
  background: #f3f4f6 !important;
  color: #047857 !important;
}

@media (max-width: 768px) {
  .hero-buttons-goal-achievement {
    flex-direction: column;
  }

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

  .process-step-goal-achievement {
    flex-direction: column;
  }

  .process-step-number-goal-achievement {
    min-width: auto;
  }

  .benefits-feature-goal-achievement {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (min-width: 768px) {
  .posts-section-goal-achievement {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .process-section-goal-achievement {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .benefits-section-goal-achievement {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .cta-section-goal-achievement {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .posts-section-goal-achievement {
    padding: 6rem 0;
  }

  .process-section-goal-achievement {
    padding: 6rem 0;
  }

  .benefits-section-goal-achievement {
    padding: 6rem 0;
  }

  .cta-section-goal-achievement {
    padding: 6rem 0;
  }

  .process-step-goal-achievement {
    flex-direction: row;
  }

  .benefits-features-goal-achievement {
    gap: 2rem;
  }

  .benefits-feature-goal-achievement {
    flex: 1 1 250px;
    max-width: 320px;
  }
}

.btn:focus-visible,
.card-link-goal-achievement:focus-visible,
a[data-post-link]:focus-visible {
  outline: 2px solid #059669;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.main-smart-doelen-stellen {
  width: 100%;
  background: var(--color-bg-primary);
}

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

.hero-section-smart-doelen-stellen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.breadcrumbs-smart-doelen-stellen a {
  color: var(--color-primary);
  font-weight: 500;
  transition: color var(--transition-base);
}

.breadcrumbs-smart-doelen-stellen a:hover {
  color: var(--color-primary-hover);
}

.breadcrumbs-smart-doelen-stellen span {
  color: #cbd5e1;
}

.hero-content-smart-doelen-stellen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-text-block-smart-doelen-stellen {
  flex: 1 1 300px;
  min-width: 0;
}

.hero-title-smart-doelen-stellen {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.15;
}

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

.article-meta-smart-doelen-stellen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.meta-badge-smart-doelen-stellen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-image-block-smart-doelen-stellen {
  flex: 1 1 300px;
  min-width: 0;
}

.hero-image-smart-doelen-stellen {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

@media (max-width: 768px) {
  .hero-content-smart-doelen-stellen {
    flex-direction: column;
  }
  
  .hero-text-block-smart-doelen-stellen,
  .hero-image-block-smart-doelen-stellen {
    flex: 1 1 100%;
  }
}

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

.introduction-section-smart-doelen-stellen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.introduction-content-smart-doelen-stellen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.introduction-text-smart-doelen-stellen {
  flex: 1 1 350px;
  min-width: 0;
}

.introduction-title-smart-doelen-stellen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
}

.introduction-paragraph-smart-doelen-stellen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.introduction-image-smart-doelen-stellen {
  flex: 1 1 350px;
  min-width: 0;
}

.introduction-img-smart-doelen-stellen {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

@media (max-width: 768px) {
  .introduction-content-smart-doelen-stellen {
    flex-direction: column;
  }
  
  .introduction-text-smart-doelen-stellen,
  .introduction-image-smart-doelen-stellen {
    flex: 1 1 100%;
  }
}

.framework-section-smart-doelen-stellen {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.framework-section-smart-doelen-stellen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.framework-header-smart-doelen-stellen {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.framework-title-smart-doelen-stellen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.framework-subtitle-smart-doelen-stellen {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

.framework-steps-smart-doelen-stellen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.framework-step-smart-doelen-stellen {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.framework-step-smart-doelen-stellen:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.framework-step-number-smart-doelen-stellen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
  text-align: center;
}

.framework-step-content-smart-doelen-stellen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.framework-step-title-smart-doelen-stellen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #111827;
}

.framework-step-text-smart-doelen-stellen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .framework-step-smart-doelen-stellen {
    flex-direction: column;
  }
  
  .framework-step-number-smart-doelen-stellen {
    text-align: left;
  }
}

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

.example-section-smart-doelen-stellen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.example-content-smart-doelen-stellen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.example-text-smart-doelen-stellen {
  flex: 1 1 350px;
  min-width: 0;
}

.example-title-smart-doelen-stellen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.example-comparison-smart-doelen-stellen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.example-bad-smart-doelen-stellen,
.example-good-smart-doelen-stellen {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: var(--radius-md);
  border-left: 4px solid #ef4444;
}

.example-good-smart-doelen-stellen {
  border-left-color: var(--color-primary);
  background: rgba(5, 150, 105, 0.05);
}

.example-bad-smart-doelen-stellen {
  background: rgba(239, 68, 68, 0.05);
}

.example-bad-title-smart-doelen-stellen,
.example-good-title-smart-doelen-stellen {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #111827;
}

.example-bad-text-smart-doelen-stellen,
.example-good-text-smart-doelen-stellen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
  font-style: italic;
}

.example-explanation-smart-doelen-stellen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.7;
}

.example-image-smart-doelen-stellen {
  flex: 1 1 350px;
  min-width: 0;
}

.example-img-smart-doelen-stellen {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

@media (max-width: 768px) {
  .example-content-smart-doelen-stellen {
    flex-direction: column;
  }
  
  .example-text-smart-doelen-stellen,
  .example-image-smart-doelen-stellen {
    flex: 1 1 100%;
  }
}

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

.implementation-section-smart-doelen-stellen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.implementation-content-smart-doelen-stellen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.implementation-image-smart-doelen-stellen {
  flex: 1 1 300px;
  min-width: 0;
  order: -1;
}

.implementation-img-smart-doelen-stellen {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

.implementation-text-smart-doelen-stellen {
  flex: 1 1 350px;
  min-width: 0;
}

.implementation-title-smart-doelen-stellen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.implementation-steps-smart-doelen-stellen {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.implementation-step-smart-doelen-stellen {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  align-items: flex-start;
}

.implementation-step-number-smart-doelen-stellen {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 40px;
}

.implementation-step-title-smart-doelen-stellen {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.25rem;
}

.implementation-step-text-smart-doelen-stellen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .implementation-content-smart-doelen-stellen {
    flex-direction: column-reverse;
  }
  
  .implementation-image-smart-doelen-stellen {
    order: 0;
    flex: 1 1 100%;
  }
  
  .implementation-text-smart-doelen-stellen {
    flex: 1 1 100%;
  }
}

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

.tips-section-smart-doelen-stellen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.tips-header-smart-doelen-stellen {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.tips-title-smart-doelen-stellen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.tips-subtitle-smart-doelen-stellen {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

.tips-cards-smart-doelen-stellen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.tips-card-smart-doelen-stellen {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.tips-card-smart-doelen-stellen:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.tips-card-icon-smart-doelen-stellen {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
}

.tips-card-title-smart-doelen-stellen {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
}

.tips-card-text-smart-doelen-stellen {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .tips-card-smart-doelen-stellen {
    flex: 1 1 100%;
    max-width: none;
  }
}

.conclusion-section-smart-doelen-stellen {
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-section-smart-doelen-stellen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.conclusion-content-smart-doelen-stellen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-smart-doelen-stellen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  text-align: center;
}

.conclusion-text-smart-doelen-stellen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
}

.conclusion-quote-smart-doelen-stellen {
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: #f3f4f6;
  margin: clamp(1rem, 2vw, 2rem) 0;
  border-radius: var(--radius-md);
}

.conclusion-quote-text-smart-doelen-stellen {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: #111827;
  line-height: 1.6;
  font-style: italic;
}

.conclusion-cta-smart-doelen-stellen {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(5, 150, 105, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(5, 150, 105, 0.1);
  margin-top: clamp(1rem, 2vw, 2rem);
}

.conclusion-cta-text-smart-doelen-stellen {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
}

.cta-button-smart-doelen-stellen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-primary);
  color: #ffffff;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  text-decoration: none;
}

.cta-button-smart-doelen-stellen:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.disclaimer-section-smart-doelen-stellen {
  background: #f3f4f6;
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-section-smart-doelen-stellen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.disclaimer-content-smart-doelen-stellen {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid #f59e0b;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-smart-doelen-stellen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.disclaimer-text-smart-doelen-stellen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.7;
}

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

.related-section-smart-doelen-stellen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.related-title-smart-doelen-stellen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.related-subtitle-smart-doelen-stellen {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

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

.related-card-smart-doelen-stellen {
  flex: 1 1 300px;
  max-width: 380px;
  background: #f9fafb;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.related-card-image-smart-doelen-stellen {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #e5e7eb;
}

.related-card-img-smart-doelen-stellen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-smart-doelen-stellen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  flex: 1;
}

.related-card-title-smart-doelen-stellen {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.related-card-text-smart-doelen-stellen {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.5;
  flex: 1;
}

@media (max-width: 768px) {
  .related-card-smart-doelen-stellen {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (min-width: 768px) {
  .hero-section-smart-doelen-stellen,
  .introduction-section-smart-doelen-stellen,
  .framework-section-smart-doelen-stellen,
  .example-section-smart-doelen-stellen,
  .implementation-section-smart-doelen-stellen,
  .tips-section-smart-doelen-stellen,
  .conclusion-section-smart-doelen-stellen,
  .disclaimer-section-smart-doelen-stellen,
  .related-section-smart-doelen-stellen {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-smart-doelen-stellen,
  .introduction-section-smart-doelen-stellen,
  .framework-section-smart-doelen-stellen,
  .example-section-smart-doelen-stellen,
  .implementation-section-smart-doelen-stellen,
  .tips-section-smart-doelen-stellen,
  .conclusion-section-smart-doelen-stellen,
  .disclaimer-section-smart-doelen-stellen,
  .related-section-smart-doelen-stellen {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }
}

.main-groeistrategie-ontwikkelen {
  width: 100%;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.hero-section-groeistrategie-ontwikkelen {
  width: 100%;
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.hero-text-block-groeistrategie-ontwikkelen {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

@media (min-width: 1024px) {
  .hero-text-block-groeistrategie-ontwikkelen {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.hero-title-groeistrategie-ontwikkelen {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.hero-meta-groeistrategie-ontwikkelen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
}

.meta-badge-groeistrategie-ontwikkelen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-stats-groeistrategie-ontwikkelen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3.5rem);
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

.stat-item-groeistrategie-ontwikkelen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-groeistrategie-ontwikkelen {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #059669;
  line-height: 1;
}

.stat-label-groeistrategie-ontwikkelen {
  font-size: 0.875rem;
  color: #4b5563;
  opacity: 0.8;
}

.hero-image-block-groeistrategie-ontwikkelen {
  flex: 1 1 100%;
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-image-block-groeistrategie-ontwikkelen {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

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

.breadcrumbs-groeistrategie-ontwikkelen {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs-groeistrategie-ontwikkelen a {
  color: #059669;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-groeistrategie-ontwikkelen a:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumbs-separator-groeistrategie-ontwikkelen {
  color: #cbd5e1;
  margin: 0 0.25rem;
}

.breadcrumbs-current-groeistrategie-ontwikkelen {
  color: #4b5563;
}

.intro-section-groeistrategie-ontwikkelen {
  width: 100%;
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-groeistrategie-ontwikkelen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

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

.intro-text-block-groeistrategie-ontwikkelen {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .intro-text-block-groeistrategie-ontwikkelen {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.intro-title-groeistrategie-ontwikkelen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.intro-text-groeistrategie-ontwikkelen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #4b5563;
}

.intro-image-block-groeistrategie-ontwikkelen {
  flex: 1 1 100%;
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .intro-image-block-groeistrategie-ontwikkelen {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.intro-image-groeistrategie-ontwikkelen {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.foundation-section-groeistrategie-ontwikkelen {
  width: 100%;
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.section-tag-groeistrategie-ontwikkelen {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.foundation-title-groeistrategie-ontwikkelen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.foundation-subtitle-groeistrategie-ontwikkelen {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

.foundation-cards-groeistrategie-ontwikkelen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.foundation-card-groeistrategie-ontwikkelen {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.foundation-card-groeistrategie-ontwikkelen:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.foundation-card-number-groeistrategie-ontwikkelen {
  font-size: 2.5rem;
  font-weight: 800;
  color: #059669;
  line-height: 1;
}

.foundation-card-title-groeistrategie-ontwikkelen {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.foundation-card-text-groeistrategie-ontwikkelen {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
}

@media (max-width: 768px) {
  .foundation-card-groeistrategie-ontwikkelen {
    flex: 1 1 100%;
    max-width: none;
  }
}

.process-section-groeistrategie-ontwikkelen {
  width: 100%;
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.process-header-groeistrategie-ontwikkelen {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.process-title-groeistrategie-ontwikkelen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.process-subtitle-groeistrategie-ontwikkelen {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

.process-steps-groeistrategie-ontwikkelen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.process-step-groeistrategie-ontwikkelen {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 12px;
  border-left: 4px solid #059669;
}

.process-step-number-groeistrategie-ontwikkelen {
  font-size: 2rem;
  font-weight: 800;
  color: #059669;
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
}

.process-step-content-groeistrategie-ontwikkelen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.process-step-title-groeistrategie-ontwikkelen {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.process-step-text-groeistrategie-ontwikkelen {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
}

@media (max-width: 768px) {
  .process-step-groeistrategie-ontwikkelen {
    flex-direction: column;
    align-items: flex-start;
  }
}

.implementation-section-groeistrategie-ontwikkelen {
  width: 100%;
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.implementation-content-groeistrategie-ontwikkelen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

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

.implementation-text-block-groeistrategie-ontwikkelen {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .implementation-text-block-groeistrategie-ontwikkelen {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.implementation-title-groeistrategie-ontwikkelen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.implementation-text-groeistrategie-ontwikkelen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #4b5563;
}

.highlight-box-groeistrategie-ontwikkelen {
  padding: 1.5rem;
  background: #d1fae5;
  border-left: 4px solid #059669;
  border-radius: 8px;
  margin: 1rem 0;
}

.highlight-text-groeistrategie-ontwikkelen {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #065f46;
}

.implementation-image-block-groeistrategie-ontwikkelen {
  flex: 1 1 100%;
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .implementation-image-block-groeistrategie-ontwikkelen {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.implementation-image-groeistrategie-ontwikkelen {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.challenges-section-groeistrategie-ontwikkelen {
  width: 100%;
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.challenges-header-groeistrategie-ontwikkelen {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.challenges-title-groeistrategie-ontwikkelen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.challenges-cards-groeistrategie-ontwikkelen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.challenge-card-groeistrategie-ontwikkelen {
  flex: 1 1 280px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.challenge-card-groeistrategie-ontwikkelen:hover {
  border-color: #059669;
  box-shadow: 0 10px 25px rgba(5, 150, 105, 0.1);
}

.challenge-card-title-groeistrategie-ontwikkelen {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.challenge-card-text-groeistrategie-ontwikkelen {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
}

@media (max-width: 768px) {
  .challenge-card-groeistrategie-ontwikkelen {
    flex: 1 1 100%;
    max-width: none;
  }
}

.transformation-section-groeistrategie-ontwikkelen {
  width: 100%;
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.transformation-content-groeistrategie-ontwikkelen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

@media (min-width: 1024px) {
  .transformation-content-groeistrategie-ontwikkelen {
    flex-direction: row-reverse;
    align-items: center;
  }
}

.transformation-image-block-groeistrategie-ontwikkelen {
  flex: 1 1 100%;
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .transformation-image-block-groeistrategie-ontwikkelen {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.transformation-image-groeistrategie-ontwikkelen {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.transformation-text-block-groeistrategie-ontwikkelen {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .transformation-text-block-groeistrategie-ontwikkelen {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.transformation-title-groeistrategie-ontwikkelen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.transformation-text-groeistrategie-ontwikkelen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #4b5563;
}

.featured-quote-groeistrategie-ontwikkelen {
  padding: 2rem 2.5rem;
  border-left: 4px solid #059669;
  background: #d1fae5;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.quote-text-groeistrategie-ontwikkelen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #065f46;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-cite-groeistrategie-ontwikkelen {
  font-size: 0.875rem;
  color: #047857;
  font-style: normal;
  display: block;
  opacity: 0.8;
}

.cta-section-groeistrategie-ontwikkelen {
  width: 100%;
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.cta-box-groeistrategie-ontwikkelen {
  background: linear-gradient(135deg, #059669, #10b981);
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title-groeistrategie-ontwikkelen {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.cta-text-groeistrategie-ontwikkelen {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.5rem;
}

.cta-button-groeistrategie-ontwikkelen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #059669;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.cta-button-groeistrategie-ontwikkelen:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.disclaimer-section-groeistrategie-ontwikkelen {
  width: 100%;
  background: #f3f4f6;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.disclaimer-title-groeistrategie-ontwikkelen {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.disclaimer-text-groeistrategie-ontwikkelen {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
}

.related-section-groeistrategie-ontwikkelen {
  width: 100%;
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-groeistrategie-ontwikkelen {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.related-title-groeistrategie-ontwikkelen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.related-subtitle-groeistrategie-ontwikkelen {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

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

.related-card-groeistrategie-ontwikkelen {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-card-groeistrategie-ontwikkelen:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  border-color: #059669;
}

.related-card-image-groeistrategie-ontwikkelen {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f3f4f6;
}

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

.related-card-content-groeistrategie-ontwikkelen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.related-card-title-groeistrategie-ontwikkelen {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.related-card-text-groeistrategie-ontwikkelen {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
}

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

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

@media (max-width: 768px) {
  .hero-content-groeistrategie-ontwikkelen,
  .intro-content-groeistrategie-ontwikkelen,
  .implementation-content-groeistrategie-ontwikkelen,
  .transformation-content-groeistrategie-ontwikkelen {
    flex-direction: column;
  }

  .hero-text-block-groeistrategie-ontwikkelen,
  .intro-text-block-groeistrategie-ontwikkelen,
  .implementation-text-block-groeistrategie-ontwikkelen,
  .transformation-text-block-groeistrategie-ontwikkelen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-block-groeistrategie-ontwikkelen,
  .intro-image-block-groeistrategie-ontwikkelen,
  .implementation-image-block-groeistrategie-ontwikkelen,
  .transformation-image-block-groeistrategie-ontwikkelen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.main-motivatie-behouden {
  width: 100%;
}

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

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

.breadcrumbs-motivatie-behouden {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.9375rem);
}

.breadcrumbs-motivatie-behouden a {
  color: #059669;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-motivatie-behouden a:hover {
  color: #047857;
}

.breadcrumbs-motivatie-behouden span {
  color: #9ca3af;
}

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

.hero-text-block-motivatie-behouden {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-motivatie-behouden {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-motivatie-behouden {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-family: 'Playfair Display', serif;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.15;
}

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

.article-meta-motivatie-behouden {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.meta-badge-motivatie-behouden {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #d1fae5;
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-motivatie-behouden i {
  color: #059669;
}

.hero-image-motivatie-behouden {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

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

  .hero-text-block-motivatie-behouden,
  .hero-image-block-motivatie-behouden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

.intro-text-motivatie-behouden {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-motivatie-behouden {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-motivatie-behouden {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-description-motivatie-behouden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.intro-img-motivatie-behouden {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

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

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

.understanding-section-motivatie-behouden {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.section-header-motivatie-behouden {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-motivatie-behouden {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.understanding-title-motivatie-behouden {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  color: #111827;
  margin-bottom: 1rem;
}

.understanding-content-motivatie-behouden {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.understanding-text-motivatie-behouden {
  flex: 1 1 50%;
  max-width: 50%;
}

.understanding-image-motivatie-behouden {
  flex: 1 1 50%;
  max-width: 50%;
}

.understanding-description-motivatie-behouden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.components-list-motivatie-behouden {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.component-item-motivatie-behouden {
  background: #ffffff;
  padding: clamp(1rem, 3vw, 1.75rem);
  border-radius: 10px;
  border-left: 4px solid #059669;
}

.component-title-motivatie-behouden {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.component-text-motivatie-behouden {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.6;
}

.understanding-img-motivatie-behouden {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .understanding-content-motivatie-behouden {
    flex-direction: column;
  }

  .understanding-text-motivatie-behouden,
  .understanding-image-motivatie-behouden {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .section-header-motivatie-behouden {
    margin-bottom: 2rem;
  }
}

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

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

.strategies-title-motivatie-behouden {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  color: #111827;
  margin-bottom: 1rem;
}

.strategies-wrapper-motivatie-behouden {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 1.75rem);
}

.strategy-card-motivatie-behouden {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: 12px;
  align-items: flex-start;
}

.strategy-number-motivatie-behouden {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.strategy-content-motivatie-behouden {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.strategy-title-motivatie-behouden {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #111827;
}

.strategy-text-motivatie-behouden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .strategy-card-motivatie-behouden {
    flex-direction: column;
  }

  .strategy-number-motivatie-behouden {
    min-width: auto;
  }
}

.obstacles-section-motivatie-behouden {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.obstacles-content-motivatie-behouden {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.obstacles-text-motivatie-behouden {
  flex: 1 1 50%;
  max-width: 50%;
}

.obstacles-image-motivatie-behouden {
  flex: 1 1 50%;
  max-width: 50%;
}

.obstacles-title-motivatie-behouden {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  color: #111827;
  margin-bottom: 1.5rem;
}

.obstacles-description-motivatie-behouden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.obstacle-types-motivatie-behouden {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.obstacle-item-motivatie-behouden {
  background: #ffffff;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}

.obstacle-name-motivatie-behouden {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.obstacle-detail-motivatie-behouden {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.6;
}

.obstacles-img-motivatie-behouden {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .obstacles-content-motivatie-behouden {
    flex-direction: column;
  }

  .obstacles-text-motivatie-behouden,
  .obstacles-image-motivatie-behouden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.action-content-motivatie-behouden {
  flex: 1 1 50%;
  max-width: 50%;
}

.action-image-motivatie-behouden {
  flex: 1 1 50%;
  max-width: 50%;
}

.action-title-motivatie-behouden {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  color: #111827;
  margin-bottom: 1rem;
}

.action-intro-motivatie-behouden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.action-steps-motivatie-behouden {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.action-step-motivatie-behouden {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 10px;
  align-items: flex-start;
}

.action-step-icon-motivatie-behouden {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d1fae5;
  color: #059669;
  border-radius: 10px;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.action-step-text-motivatie-behouden {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.action-step-title-motivatie-behouden {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
}

.action-step-detail-motivatie-behouden {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.6;
}

.action-img-motivatie-behouden {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .action-step-motivatie-behouden {
    flex-direction: column;
  }

  .action-step-icon-motivatie-behouden {
    align-self: flex-start;
  }
}

.conclusion-section-motivatie-behouden {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.conclusion-content-motivatie-behouden {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-motivatie-behouden {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  color: #111827;
  margin-bottom: 2rem;
  text-align: center;
}

.featured-quote-motivatie-behouden {
  padding: 2rem 2.5rem;
  border-left: 4px solid #059669;
  background: #ffffff;
  margin: 2rem 0;
  border-radius: 8px;
}

.quote-text-motivatie-behouden {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-author-motivatie-behouden {
  font-size: 0.875rem;
  color: #4b5563;
  font-style: normal;
}

.conclusion-text-motivatie-behouden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.conclusion-cta-motivatie-behouden {
  text-align: center;
  margin-top: 2.5rem;
}

.cta-button-motivatie-behouden {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #059669;
  color: #ffffff;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button-motivatie-behouden:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(5, 150, 105, 0.2);
}

.disclaimer-section-motivatie-behouden {
  background: #ffffff;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.disclaimer-content-motivatie-behouden {
  max-width: 700px;
  margin: 0 auto;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}

.disclaimer-title-motivatie-behouden {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.disclaimer-text-motivatie-behouden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  color: #4b5563;
  line-height: 1.7;
}

.related-section-motivatie-behouden {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.related-header-motivatie-behouden {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-motivatie-behouden {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  color: #111827;
  margin-bottom: 0.5rem;
}

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

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

.related-card-motivatie-behouden {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-motivatie-behouden:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.related-card-image-motivatie-behouden {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-img-motivatie-behouden {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-motivatie-behouden {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-card-title-motivatie-behouden {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.related-card-text-motivatie-behouden {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.6;
}

.related-card-link-motivatie-behouden {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #059669;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
  margin-top: 0.5rem;
}

.related-card-link-motivatie-behouden:hover {
  color: #047857;
}

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

  .action-section-motivatie-behouden .container {
    display: flex;
    flex-direction: column;
  }

  .action-content-motivatie-behouden,
  .action-image-motivatie-behouden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .action-section-motivatie-behouden .container {
    display: flex;
    flex-direction: row;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
  }

  .action-content-motivatie-behouden {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .action-image-motivatie-behouden {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.main-voortgang-meten {
  width: 100%;
}

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

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

.breadcrumbs-voortgang-meten {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 2rem;
}

.breadcrumbs-voortgang-meten a {
  color: #059669;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-voortgang-meten a:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumbs-voortgang-meten span {
  color: #cbd5e1;
}

.hero-content-voortgang-meten {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text-wrapper-voortgang-meten {
  flex: 1 1 300px;
  max-width: 50%;
}

.hero-image-wrapper-voortgang-meten {
  flex: 1 1 300px;
  max-width: 50%;
}

.hero-title-voortgang-meten {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.15;
}

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

.hero-meta-voortgang-meten {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-voortgang-meten {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-voortgang-meten i {
  font-size: 0.875rem;
}

.hero-stats-voortgang-meten {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

.stat-item-voortgang-meten {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-voortgang-meten {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
  font-family: 'Playfair Display', serif;
}

.stat-label-voortgang-meten {
  font-size: 0.875rem;
  color: #64748b;
  opacity: 0.85;
}

.hero-image-voortgang-meten {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

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

  .hero-stats-voortgang-meten {
    gap: 1.5rem;
  }
}

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

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

.intro-content-voortgang-meten {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-wrapper-voortgang-meten {
  flex: 1 1 300px;
  max-width: 50%;
}

.intro-image-wrapper-voortgang-meten {
  flex: 1 1 300px;
  max-width: 50%;
}

.intro-title-voortgang-meten {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-description-voortgang-meten {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.intro-image-voortgang-meten {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .intro-content-voortgang-meten {
    flex-direction: column-reverse;
  }

  .intro-text-wrapper-voortgang-meten,
  .intro-image-wrapper-voortgang-meten {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.methodology-section-voortgang-meten {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.methodology-header-voortgang-meten {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-voortgang-meten {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.methodology-title-voortgang-meten {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.methodology-subtitle-voortgang-meten {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.steps-wrapper-voortgang-meten {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item-voortgang-meten {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-item-voortgang-meten:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.step-number-voortgang-meten {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
  font-family: 'Playfair Display', serif;
}

.step-content-voortgang-meten {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-voortgang-meten {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: #111827;
}

.step-description-voortgang-meten {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
}

.monitoring-tools-section-voortgang-meten {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.tools-content-wrapper-voortgang-meten {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.tools-text-block-voortgang-meten {
  flex: 1 1 300px;
  max-width: 50%;
}

.tools-image-block-voortgang-meten {
  flex: 1 1 300px;
  max-width: 50%;
}

.tools-title-voortgang-meten {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.tools-description-voortgang-meten {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.tools-list-voortgang-meten {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tools-item-voortgang-meten {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
  padding-left: 1.5rem;
  position: relative;
}

.tools-item-voortgang-meten::before {
  content: "";
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: bold;
}

.tools-image-voortgang-meten {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .tools-content-wrapper-voortgang-meten {
    flex-direction: column;
  }

  .tools-text-block-voortgang-meten,
  .tools-image-block-voortgang-meten {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.insights-section-voortgang-meten {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.insights-header-voortgang-meten {
  text-align: center;
  margin-bottom: 3rem;
}

.insights-title-voortgang-meten {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.insights-cards-wrapper-voortgang-meten {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.insight-card-voortgang-meten {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.insight-card-voortgang-meten:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.insight-card-icon-voortgang-meten {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(5, 150, 105, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  font-size: 1.5rem;
}

.insight-card-title-voortgang-meten {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.insight-card-text-voortgang-meten {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
}

@media (max-width: 768px) {
  .insight-card-voortgang-meten {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

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

.adjustment-wrapper-voortgang-meten {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.adjustment-image-block-voortgang-meten {
  flex: 1 1 300px;
  max-width: 50%;
}

.adjustment-text-block-voortgang-meten {
  flex: 1 1 300px;
  max-width: 50%;
}

.adjustment-image-voortgang-meten {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.adjustment-title-voortgang-meten {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.adjustment-description-voortgang-meten {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.adjustment-highlight-voortgang-meten {
  padding: 1rem 1.5rem;
  background: rgba(5, 150, 105, 0.08);
  border-left: 4px solid #059669;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.highlight-text-voortgang-meten {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #1a1a1a;
  margin: 0;
}

@media (max-width: 768px) {
  .adjustment-wrapper-voortgang-meten {
    flex-direction: column;
  }

  .adjustment-image-block-voortgang-meten,
  .adjustment-text-block-voortgang-meten {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.common-mistakes-section-voortgang-meten {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.mistakes-header-voortgang-meten {
  text-align: center;
  margin-bottom: 3rem;
}

.mistakes-title-voortgang-meten {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.mistakes-grid-voortgang-meten {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.mistake-card-voortgang-meten {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.mistake-card-voortgang-meten:hover {
  transform: translateY(-4px);
}

.mistake-card-title-voortgang-meten {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.mistake-card-text-voortgang-meten {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
}

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

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

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

.featured-quote-voortgang-meten {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #059669;
  background: rgba(5, 150, 105, 0.1);
  margin: 0;
  border-radius: 8px;
}

.quote-text-voortgang-meten {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.6;
  font-family: 'Playfair Display', serif;
}

.quote-author-voortgang-meten {
  font-size: 0.875rem;
  color: #cbd5e1;
  font-style: normal;
}

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

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

.action-content-wrapper-voortgang-meten {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.action-text-block-voortgang-meten {
  flex: 1 1 300px;
  max-width: 50%;
}

.action-image-block-voortgang-meten {
  flex: 1 1 300px;
  max-width: 50%;
}

.action-title-voortgang-meten {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.action-description-voortgang-meten {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.action-steps-voortgang-meten {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.action-step-voortgang-meten {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #1a1a1a;
  padding: 0.75rem 0 0.75rem 1.5rem;
  position: relative;
}

.action-step-voortgang-meten::before {
  content: "";
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: bold;
}

.action-image-voortgang-meten {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .action-content-wrapper-voortgang-meten {
    flex-direction: column-reverse;
  }

  .action-text-block-voortgang-meten,
  .action-image-block-voortgang-meten {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-voortgang-meten {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.conclusion-content-voortgang-meten {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-voortgang-meten {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-align: center;
}

.conclusion-text-voortgang-meten {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.conclusion-cta-voortgang-meten {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid #e5e7eb;
}

.btn-primary-voortgang-meten,
.btn-secondary-voortgang-meten {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary-voortgang-meten {
  background: #059669;
  color: #ffffff;
}

.btn-primary-voortgang-meten:hover {
  background: #047857;
  transform: translateY(-2px);
}

.btn-secondary-voortgang-meten {
  background: transparent;
  border: 2px solid #059669;
  color: #059669;
}

.btn-secondary-voortgang-meten:hover {
  background: rgba(5, 150, 105, 0.08);
  transform: translateY(-2px);
}

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

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

.disclaimer-box-voortgang-meten {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f3f4f6;
  border-radius: 8px;
  border-left: 4px solid #6b7280;
}

.disclaimer-title-voortgang-meten {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.disclaimer-text-voortgang-meten {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #4b5563;
  margin: 0;
}

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

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

.related-header-voortgang-meten {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-voortgang-meten {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.related-subtitle-voortgang-meten {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.6;
}

.related-cards-wrapper-voortgang-meten {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-voortgang-meten {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-card-voortgang-meten:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.related-card-image-voortgang-meten {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-voortgang-meten img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-title-voortgang-meten {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.related-card-description-voortgang-meten {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #4b5563;
  flex-grow: 1;
}

.related-card-link-voortgang-meten {
  font-size: 0.875rem;
  font-weight: 600;
  color: #059669;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

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

@media (min-width: 768px) {
  .intro-content-voortgang-meten {
    flex-direction: row-reverse;
  }

  .adjustment-wrapper-voortgang-meten {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-stats-voortgang-meten {
    gap: 3rem;
  }
}

.main-mindset-gewoonten {
  width: 100%;
  background: var(--color-bg-primary);
}

.hero-section-mindset-gewoonten {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.hero-text-block-mindset-gewoonten {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-mindset-gewoonten {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-description-mindset-gewoonten {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
}

.hero-meta-mindset-gewoonten {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.meta-badge-mindset-gewoonten {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-image-mindset-gewoonten {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

.breadcrumbs-mindset-gewoonten {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: var(--space-lg);
  font-size: 0.875rem;
}

.breadcrumbs-mindset-gewoonten a {
  color: var(--color-primary);
  font-weight: 500;
  transition: color var(--transition-base);
}

.breadcrumbs-mindset-gewoonten a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumbs-mindset-gewoonten span {
  color: var(--color-text-muted);
}

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

  .hero-text-block-mindset-gewoonten,
  .hero-image-block-mindset-gewoonten {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.intro-text-block-mindset-gewoonten {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-block-mindset-gewoonten {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-text-mindset-gewoonten {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.intro-image-mindset-gewoonten {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-md);
}

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

  .intro-text-block-mindset-gewoonten,
  .intro-image-block-mindset-gewoonten {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-one-mindset-gewoonten,
.content-section-two-mindset-gewoonten,
.content-section-three-mindset-gewoonten {
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-section-one-mindset-gewoonten {
  background: var(--color-bg-secondary);
}

.content-section-two-mindset-gewoonten {
  background: var(--color-bg-primary);
}

.content-section-three-mindset-gewoonten {
  background: var(--color-bg-secondary);
}

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

.content-text-one-mindset-gewoonten,
.content-text-two-mindset-gewoonten,
.content-text-three-mindset-gewoonten {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-one-mindset-gewoonten,
.content-image-two-mindset-gewoonten,
.content-image-three-mindset-gewoonten {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-one-mindset-gewoonten,
.content-title-two-mindset-gewoonten,
.content-title-three-mindset-gewoonten {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.content-section-one-mindset-gewoonten .content-title-one-mindset-gewoonten,
.content-section-three-mindset-gewoonten .content-title-three-mindset-gewoonten {
  color: var(--color-text-primary);
}

.content-section-two-mindset-gewoonten .content-title-two-mindset-gewoonten {
  color: var(--color-text-primary);
}

.content-text-mindset-gewoonten {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.content-image-mindset-gewoonten {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-md);
}

.featured-quote-mindset-gewoonten {
  padding: var(--space-lg) var(--space-lg) var(--space-lg) var(--space-xl);
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-tertiary);
  margin: var(--space-lg) 0;
  border-radius: var(--radius-md);
}

.quote-text-mindset-gewoonten {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.quote-author-mindset-gewoonten {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  font-style: normal;
}

.highlight-box-mindset-gewoonten {
  padding: var(--space-lg);
  background: var(--color-primary-light);
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
  border-left: 4px solid var(--color-primary);
}

.highlight-title-mindset-gewoonten {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.highlight-text-mindset-gewoonten {
  font-size: 0.9375rem;
  color: var(--color-primary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .content-wrapper-one-mindset-gewoonten,
  .content-wrapper-two-mindset-gewoonten,
  .content-wrapper-three-mindset-gewoonten {
    flex-direction: column;
  }

  .content-text-one-mindset-gewoonten,
  .content-text-two-mindset-gewoonten,
  .content-text-three-mindset-gewoonten,
  .content-image-one-mindset-gewoonten,
  .content-image-two-mindset-gewoonten,
  .content-image-three-mindset-gewoonten {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.section-header-mindset-gewoonten {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-tag-mindset-gewoonten {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
}

.section-title-mindset-gewoonten {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.section-subtitle-mindset-gewoonten {
  font-size: clamp(0.9rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.process-steps-mindset-gewoonten {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.process-step-mindset-gewoonten {
  display: flex;
  flex-direction: row;
  gap: var(--space-lg);
  align-items: flex-start;
  padding: var(--space-lg);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.process-step-number-mindset-gewoonten {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

.process-step-content-mindset-gewoonten {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.process-step-title-mindset-gewoonten {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.process-step-text-mindset-gewoonten {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

@media (max-width: 768px) {
  .process-step-mindset-gewoonten {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }

  .process-step-number-mindset-gewoonten {
    min-width: 50px;
  }
}

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

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

.features-card-mindset-gewoonten {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.features-card-mindset-gewoonten:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.features-card-icon-mindset-gewoonten {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.5rem;
}

.features-card-title-mindset-gewoonten {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.features-card-text-mindset-gewoonten {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

@media (max-width: 768px) {
  .features-card-mindset-gewoonten {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

.conclusion-content-mindset-gewoonten {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-mindset-gewoonten {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
}

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

.cta-box-mindset-gewoonten {
  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;
  color: #ffffff;
  margin: clamp(2rem, 5vw, 3.5rem) 0;
}

.cta-title-mindset-gewoonten {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--space-md);
}

.cta-text-mindset-gewoonten {
  font-size: clamp(0.9rem, 1.5vw, 1.0625rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.btn-cta-mindset-gewoonten {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: var(--color-primary);
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid #ffffff;
}

.btn-cta-mindset-gewoonten:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

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

.related-card-mindset-gewoonten {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  text-decoration: none;
  color: inherit;
}

.related-card-mindset-gewoonten:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.related-card-image-mindset-gewoonten {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--color-bg-tertiary);
}

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

.related-card-mindset-gewoonten:hover .related-card-image-mindset-gewoonten img {
  transform: scale(1.05);
}

.related-card-content-mindset-gewoonten {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg);
}

.related-card-title-mindset-gewoonten {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.4;
}

.related-card-text-mindset-gewoonten {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.related-card-meta-mindset-gewoonten {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: auto;
}

.meta-item-mindset-gewoonten {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
}

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

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

.disclaimer-content-mindset-gewoonten {
  display: flex;
  flex-direction: row;
  gap: var(--space-lg);
  align-items: flex-start;
  padding: var(--space-lg);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  border-left: 4px solid #f59e0b;
}

.disclaimer-icon-mindset-gewoonten {
  flex-shrink: 0;
  color: #f59e0b;
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.disclaimer-text-mindset-gewoonten {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.disclaimer-title-mindset-gewoonten {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

.disclaimer-body-mindset-gewoonten {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

@media (max-width: 768px) {
  .disclaimer-content-mindset-gewoonten {
    flex-direction: column;
    gap: var(--space-md);
  }

  .disclaimer-icon-mindset-gewoonten {
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  .hero-section-mindset-gewoonten,
  .intro-section-mindset-gewoonten,
  .content-section-one-mindset-gewoonten,
  .content-section-two-mindset-gewoonten,
  .content-section-three-mindset-gewoonten,
  .process-section-mindset-gewoonten,
  .features-section-mindset-gewoonten,
  .conclusion-section-mindset-gewoonten,
  .related-section-mindset-gewoonten,
  .disclaimer-section-mindset-gewoonten {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-mindset-gewoonten,
  .intro-section-mindset-gewoonten,
  .content-section-one-mindset-gewoonten,
  .content-section-two-mindset-gewoonten,
  .content-section-three-mindset-gewoonten,
  .process-section-mindset-gewoonten,
  .features-section-mindset-gewoonten,
  .conclusion-section-mindset-gewoonten,
  .related-section-mindset-gewoonten,
  .disclaimer-section-mindset-gewoonten {
    padding: clamp(5rem, 10vw, 6rem) 0;
  }
}

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

.features-card-mindset-gewoonten {
  animation: fadeInUp 0.6s ease-out backwards;
}

.features-card-mindset-gewoonten:nth-child(1) {
  animation-delay: 0.1s;
}

.features-card-mindset-gewoonten:nth-child(2) {
  animation-delay: 0.2s;
}

.features-card-mindset-gewoonten:nth-child(3) {
  animation-delay: 0.3s;
}

.features-card-mindset-gewoonten:nth-child(4) {
  animation-delay: 0.4s;
}

.features-card-mindset-gewoonten:nth-child(5) {
  animation-delay: 0.5s;
}

.features-card-mindset-gewoonten:nth-child(6) {
  animation-delay: 0.6s;
}

.features-card-mindset-gewoonten:nth-child(7) {
  animation-delay: 0.7s;
}

.features-card-mindset-gewoonten:nth-child(8) {
  animation-delay: 0.8s;
}

:root {
  --color-bg-primary: #f9fafb;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f3f4f6;
  --color-bg-card: #ffffff;
  --color-text-primary: #111827;
  --color-text-secondary: #4b5563;
  --color-text-muted: #9ca3af;
  --color-text-light: #6b7280;
  --color-primary: #059669;
  --color-primary-hover: #047857;
  --color-primary-light: #d1fae5;
  --color-secondary: #10b981;
  --color-accent-warm: #f59e0b;
  --color-accent-blue: #3b82f6;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
}

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
}

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

.goal-achievement-about {
  width: 100%;
}

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

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

.hero-title-about {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

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

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

.vision-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.vision-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.vision-description-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.vision-blocks-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.vision-block-about {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.vision-block-icon-about {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-light);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.vision-block-title-about {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.vision-block-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

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

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

.methodology-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

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

.methodology-step-about {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
}

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

.methodology-step-content-about {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.methodology-step-title-about {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.methodology-step-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

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

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

.values-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.values-cards-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.values-card-about {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  text-align: center;
}

.values-card-icon-about {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.75rem;
}

.values-card-title-about {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.values-card-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

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

.story-text-block-about {
  flex: 1 1 300px;
  min-width: 300px;
}

.story-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.story-text-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.story-text-about:last-of-type {
  margin-bottom: 0;
}

.story-visual-block-about {
  flex: 1 1 300px;
  min-width: 300px;
}

.story-image-about {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

.highlight-quote-about {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-accent-warm);
  background: var(--color-bg-secondary);
  margin: clamp(1.5rem, 3vw, 2rem) 0;
  border-radius: var(--radius-md);
}

.quote-text-about {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.quote-author-about {
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-style: normal;
}

.disclaimer-section-about {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background: var(--color-bg-tertiary);
  position: relative;
  overflow: hidden;
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent-blue);
}

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

.disclaimer-icon-about {
  font-size: 1.25rem;
  color: var(--color-accent-blue);
  flex-shrink: 0;
}

.disclaimer-title-about {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

.disclaimer-text-about {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

  .story-text-block-about,
  .story-visual-block-about {
    flex: 1 1 100%;
    min-width: auto;
  }

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

  .vision-block-about {
    flex: 1 1 100%;
    max-width: none;
  }

  .methodology-step-about {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (min-width: 768px) {
  .hero-section-about {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }

  .vision-section-about {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }

  .methodology-section-about {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }

  .values-section-about {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }

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

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

  .vision-section-about {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }

  .methodology-section-about {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }

  .values-section-about {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }

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

.legal-docs {
  width: 100%;
  font-family: var(--font-primary);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.legal-docs .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.legal-docs-hero {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-bottom: 1px solid #e5e7eb;
  overflow: hidden;
}

.legal-docs-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-docs-hero h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-docs-hero-meta {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-muted);
  font-style: italic;
}

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

.legal-docs-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 6vw, 4rem);
  max-width: 900px;
}

.legal-docs-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-docs-section h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-docs-section p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-docs-section ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-left: 1.5rem;
}

.legal-docs-section li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-docs-contact {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid #e5e7eb;
}

.legal-docs-contact-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
}

.legal-docs-contact h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-docs-contact-intro {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-docs-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.legal-docs-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-docs-contact-label {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.legal-docs-contact-value {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: var(--color-text-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .legal-docs-hero {
    padding: 5rem 0;
  }

  .legal-docs-content {
    padding: 5rem 0;
  }

  .legal-docs-contact {
    padding: 5rem 0;
  }

  .legal-docs-content-wrapper {
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .legal-docs-hero {
    padding: 6rem 0;
  }

  .legal-docs-content {
    padding: 6rem 0;
  }

  .legal-docs-contact {
    padding: 6rem 0;
  }

  .legal-docs-content-wrapper {
    gap: 4rem;
  }
}

.thank-you-page {
  width: 100%;
}

.thank-section {
  width: 100%;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

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

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  max-width: 650px;
  margin: 0 auto;
}

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(60px, 12vw, 100px);
  height: clamp(60px, 12vw, 100px);
  background: var(--color-primary-light);
  border-radius: 50%;
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thank-icon i {
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--color-primary);
}

.thank-section h1 {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-subtitle {
  color: var(--color-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.thank-description {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin: 0;
  max-width: 550px;
}

.thank-checklist {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  width: 100%;
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.checklist-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.5;
}

.checklist-item i {
  flex-shrink: 0;
  color: var(--color-primary);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

.checklist-item span {
  text-align: left;
}

.thank-closing {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin: 0;
  max-width: 550px;
  font-style: italic;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  line-height: 1.5;
  white-space: nowrap;
}

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

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

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

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

@media (min-width: 768px) {
  .thank-section {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .thank-content {
    gap: clamp(2rem, 5vw, 3.5rem);
  }

  .thank-checklist {
    padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3rem);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: 6rem 0;
    min-height: 100vh;
  }

  .thank-content {
    gap: 3rem;
  }

  .thank-checklist {
    padding: 3rem;
    border-radius: var(--radius-xl);
  }
}

@media (min-width: 1440px) {
  .thank-section {
    padding: 8rem 0;
  }

  .thank-content {
    gap: 3.5rem;
  }
}

.main.error-page {
    width: 100%;
  }

  .error-section {
    width: 100%;
    background: var(--color-bg-primary);
    padding: clamp(2rem, 8vw, 4rem) 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
  }

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

  .error-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: clamp(1.5rem, 4vw, 3rem);
    width: 100%;
  }

  .error-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1rem, 3vw, 2rem);
    position: relative;
  }

  .error-code-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .error-code {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 15vw + 1rem, 8rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--color-primary);
    text-shadow: 0 4px 12px rgba(5, 150, 105, 0.15);
    margin: 0;
  }

  .error-illustration {
    font-size: clamp(3rem, 12vw, 6rem);
    color: var(--color-accent-warm);
    opacity: 0.8;
    animation: float-icon 3s ease-in-out infinite;
  }

  @keyframes float-icon {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-clamp(1rem, 3vw, 2rem));
    }
  }

  .error-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 5vw + 0.5rem, 3rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0;
    line-height: 1.15;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .error-subtitle {
    font-family: var(--font-primary);
    font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
    max-width: 540px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .error-suggestions {
    display: flex;
    flex-direction: column;
    gap: clamp(0.875rem, 2vw, 1.25rem);
    width: 100%;
    max-width: 500px;
  }

  .suggestion-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(0.75rem, 2vw, 1rem);
    padding: clamp(0.75rem, 2vw, 1rem);
    background: rgba(5, 150, 105, 0.08);
    border-radius: var(--radius-md);
    text-align: left;
  }

  .suggestion-item i {
    color: var(--color-primary);
    font-size: clamp(1rem, 2vw, 1.25rem);
    flex-shrink: 0;
  }

  .suggestion-item span {
    font-family: var(--font-primary);
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
    color: var(--color-text-primary);
    line-height: 1.5;
  }

  .error-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.25rem);
    white-space: nowrap;
  }

  .btn-primary {
    background: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
  }

  .btn-primary:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(5, 150, 105, 0.35);
  }

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

  .error-footer {
    font-family: var(--font-primary);
    font-size: clamp(0.8125rem, 1vw + 0.4rem, 0.9375rem);
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
    font-style: italic;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  @media (min-width: 768px) {
    .error-section {
      padding: clamp(3rem, 10vw, 6rem) 0;
    }

    .error-code {
      text-shadow: 0 6px 16px rgba(5, 150, 105, 0.2);
    }

    .suggestion-item {
      text-align: center;
      flex-direction: column;
    }

    .suggestion-item span {
      text-align: center;
    }
  }

  @media (min-width: 1024px) {
    .error-section {
      padding: clamp(4rem, 12vw, 8rem) 0;
    }

    .error-content {
      gap: clamp(2rem, 5vw, 4rem);
    }

    .error-visual {
      gap: clamp(1.5rem, 4vw, 2.5rem);
    }

    .btn {
      font-size: 1rem;
      padding: 1rem 2.25rem;
    }

    .btn:hover {
      transform: translateY(-3px);
    }
  }

  @media (max-width: 480px) {
    .error-code {
      letter-spacing: -0.01em;
    }

    .error-visual {
      margin-top: clamp(1rem, 2vw, 1.5rem);
    }
  }