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

:root {
  
  --color-bg-primary: #0c1929;
  --color-bg-secondary: #162d50;
  --color-bg-tertiary: #1e3a5f;
  --color-bg-card: rgba(59, 130, 246, 0.08);
  
  
  --color-text-primary: #ffffff;
  --color-text-secondary: #bfdbfe;
  --color-text-muted: #64748b;
  
  
  --color-primary: #3b82f6;
  --color-primary-hover: #60a5fa;
  --color-secondary: #06b6d4;
  --color-tertiary: #8b5cf6;
  
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(59, 130, 246, 0.15);
  --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.4);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
}

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

p, li, span {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.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;
  gap: var(--space-sm);
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: var(--color-primary-hover);
  color: var(--color-primary-hover);
}

.btn-secondary {
  background: var(--color-secondary);
  color: #000000;
  border: 2px solid var(--color-secondary);
}

.btn-secondary:hover {
  background: #06d4d4;
  border-color: #06d4d4;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
  transform: translateY(-2px);
}

.card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  background: var(--color-bg-card);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-xl);
  padding: clamp(1rem, 3vw, 2rem);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.card:hover {
  border-color: rgba(59, 130, 246, 0.5);
  background: rgba(59, 130, 246, 0.12);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

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

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

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

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

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

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

.flex {
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
}

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

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

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

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

label {
  color: var(--color-text-primary);
  font-weight: 500;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

input,
textarea,
select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-md);
  padding: clamp(0.625rem, 1vw, 1rem);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.3s ease;
}

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

input:focus,
textarea:focus,
select:focus {
  outline: none;
  background: rgba(59, 130, 246, 0.1);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

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

.form-submit-btn {
  background: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-lg);
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit-btn:hover {
  background: var(--color-primary-hover);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
}

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

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

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

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

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

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

.gradient-text {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.icon-box {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-primary);
  font-size: 1.75rem;
  transition: all 0.3s ease;
}

.card:hover .icon-box {
  background: rgba(59, 130, 246, 0.25);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none;
  }
  
  .flex {
    flex-direction: column;
  }
  
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .btn {
    width: 100%;
  }
}

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

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

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

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
  }
}

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

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

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

ul {
  list-style: none;
}

.list-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  color: var(--color-text-secondary);
}

.list-item i {
  color: var(--color-primary);
  margin-top: 2px;
  flex-shrink: 0;
}

.badge {
  display: inline-block;
  background: rgba(59, 130, 246, 0.2);
  color: var(--color-primary);
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quote-block {
  border-left: 4px solid var(--color-primary);
  padding: var(--space-md);
  padding-left: var(--space-lg);
  background: rgba(59, 130, 246, 0.05);
  border-radius: var(--radius-md);
  color: var(--color-text-secondary);
  font-style: italic;
}

.accent-line {
  width: 60px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 2px;
  margin: var(--space-md) 0;
}
.header-growth-navigator {
  background: var(--color-bg-primary);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  position: relative;
  z-index: 100;
  width: 100%;
}

.header-growth-navigator-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: clamp(60px, 10vw, 80px);
}

.header-growth-navigator-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 300ms ease;
}

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

.header-growth-navigator-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.header-growth-navigator-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.5px;
}

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

.header-growth-navigator-nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 300ms ease;
  position: relative;
}

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

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

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

.header-growth-navigator-cta-button {
  display: none;
  padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1.25rem, 3vw, 1.75rem);
  background: var(--color-primary);
  color: #0f172a;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.header-growth-navigator-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

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

.header-growth-navigator-toggle-icon {
  width: 24px;
  height: 2.5px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: all 300ms ease;
}

.header-growth-navigator-mobile-toggle.active .header-growth-navigator-toggle-icon:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

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

.header-growth-navigator-mobile-toggle.active .header-growth-navigator-toggle-icon:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.header-growth-navigator-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: var(--color-bg-secondary);
  padding-top: clamp(60px, 10vw, 80px);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 300ms ease;
  z-index: 99;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

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

.header-growth-navigator-mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.header-growth-navigator-mobile-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

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

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

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

.header-growth-navigator-mobile-link {
  padding: 1rem 1.5rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.05);
  transition: all 300ms ease;
  display: block;
}

.header-growth-navigator-mobile-link:hover {
  background: rgba(59, 130, 246, 0.08);
  color: var(--color-primary);
  padding-left: 2rem;
}

.header-growth-navigator-mobile-cta {
  padding: 1rem 1.5rem;
  margin: 1.5rem;
  background: var(--color-primary);
  color: #0f172a;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-align: center;
  transition: all 300ms ease;
  display: block;
}

.header-growth-navigator-mobile-cta:active {
  transform: scale(0.98);
}

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

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

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

  .header-growth-navigator-mobile-menu {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .header-growth-navigator-logo-text {
    font-size: 1.5rem;
  }

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

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

    .growth-portal {
width: 100%;
}

.hero-section {
position: relative;
padding: clamp(4rem, 10vw, 8rem) 0;
background: var(--color-bg-primary);
overflow: hidden;
}

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

.hero-gradient-mesh {
position: absolute;
top: 50%;
right: -150px;
width: 500px;
height: 500px;
background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
filter: blur(100px);
z-index: 1;
pointer-events: none;
}

.hero-floating-shape-1 {
position: absolute;
bottom: 10%;
left: 10%;
width: 250px;
height: 250px;
background: rgba(139, 92, 246, 0.06);
border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
z-index: 2;
pointer-events: none;
}

.hero-floating-orb {
position: absolute;
top: 20%;
right: 5%;
width: 200px;
height: 200px;
background: rgba(34, 211, 238, 0.08);
border-radius: 50%;
filter: blur(40px);
z-index: 1;
pointer-events: none;
}

.hero-accent-line {
position: absolute;
top: 40%;
right: 20%;
width: 200px;
height: 2px;
background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
z-index: 2;
pointer-events: none;
}

.hero-corner-spark {
position: absolute;
bottom: 5%;
right: 3%;
width: 150px;
height: 150px;
background: rgba(248, 113, 113, 0.05);
border-radius: 45%;
z-index: 1;
pointer-events: none;
}

.hero-wave-element {
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 100%;
height: 80px;
background: rgba(255, 255, 255, 0.02);
border-radius: 50% 50% 0 0;
z-index: 2;
pointer-events: none;
}

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

.hero-title {
font-size: clamp(2rem, 6vw + 0.5rem, 3.75rem);
font-weight: 800;
color: #ffffff;
margin-bottom: 1rem;
line-height: 1.1;
}

.hero-subtitle {
font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
color: #bfdbfe;
margin-bottom: 2rem;
line-height: 1.6;
}

.hero-cta-buttons {
display: flex;
flex-wrap: wrap;
gap: 1rem;
justify-content: center;
margin-bottom: 3rem;
}

.hero-stats {
display: flex;
flex-wrap: wrap;
gap: clamp(2rem, 4vw, 3rem);
justify-content: center;
margin-top: 3rem;
padding-top: 3rem;
border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.hero-stat-item {
flex: 0 1 auto;
text-align: center;
}

.hero-stat-number {
display: block;
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 800;
color: var(--color-primary);
margin-bottom: 0.5rem;
}

.hero-stat-label {
display: block;
font-size: clamp(0.75rem, 1vw, 0.875rem);
color: #94a3b8;
font-weight: 500;
}

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

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

.about-floating-panel {
position: absolute;
bottom: 15%;
left: 5%;
width: 180px;
height: 140px;
background: rgba(139, 92, 246, 0.04);
border: 1px solid rgba(139, 92, 246, 0.1);
border-radius: 12px;
transform: rotate(-8deg);
z-index: 1;
pointer-events: none;
}

.about-accent-shape {
position: absolute;
top: 50%;
left: 3%;
width: 200px;
height: 200px;
background: rgba(34, 211, 238, 0.05);
border-radius: 50% 40% 60% 45%;
z-index: 2;
pointer-events: none;
}

.about-side-glow {
position: absolute;
bottom: 10%;
right: 5%;
width: 300px;
height: 300px;
background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
filter: blur(70px);
z-index: 1;
pointer-events: none;
}

.about-organic-form {
position: absolute;
top: 10%;
right: -80px;
width: 280px;
height: 280px;
background: rgba(248, 113, 113, 0.04);
border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
z-index: 1;
pointer-events: none;
}

.about-content {
position: relative;
z-index: 10;
display: flex;
flex-wrap: wrap;
gap: 3rem;
align-items: center;
}

.about-text-block {
flex: 1 1 300px;
}

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

.about-description {
font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
color: #475569;
line-height: 1.8;
margin-bottom: 2rem;
}

.about-benefits {
list-style: none;
display: flex;
flex-direction: column;
gap: 1rem;
}

.about-benefit-item {
display: flex;
align-items: flex-start;
gap: 1rem;
color: #334155;
font-size: clamp(0.875rem, 1vw, 1rem);
line-height: 1.6;
}

.about-benefit-item i {
color: var(--color-primary);
margin-top: 2px;
flex-shrink: 0;
}

.about-benefit-text {
flex: 1;
}

.about-image-block {
flex: 1 1 300px;
min-height: 350px;
position: relative;
}

.about-image {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 16px;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

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

.about-image-block {
order: -1;
}
}

.methodology-section {
position: relative;
padding: clamp(4rem, 8vw, 6rem) 0;
background: var(--color-bg-primary);
overflow: hidden;
}

.methodology-top-glow {
position: absolute;
top: -100px;
left: 10%;
width: 350px;
height: 350px;
background: radial-gradient(circle, rgba(34, 211, 238, 0.1) 0%, transparent 70%);
filter: blur(80px);
z-index: 1;
pointer-events: none;
}

.methodology-line-accent {
position: absolute;
top: 30%;
right: 10%;
width: 250px;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.3), transparent);
z-index: 2;
pointer-events: none;
}

.methodology-floating-element {
position: absolute;
bottom: 20%;
left: 5%;
width: 200px;
height: 200px;
background: rgba(139, 92, 246, 0.07);
border-radius: 40% 60% 70% 30%;
z-index: 1;
pointer-events: none;
}

.methodology-corner-shape {
position: absolute;
bottom: 5%;
right: 3%;
width: 180px;
height: 180px;
background: rgba(248, 113, 113, 0.05);
border-radius: 50%;
filter: blur(40px);
z-index: 1;
pointer-events: none;
}

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

.methodology-header {
text-align: center;
margin-bottom: 4rem;
}

.methodology-tag {
display: inline-block;
padding: 0.375rem 1rem;
background: rgba(59, 130, 246, 0.15);
color: var(--color-primary);
border-radius: 20px;
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 1rem;
}

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

.methodology-subtitle {
font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
color: #94a3b8;
max-width: 600px;
margin: 0 auto;
}

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

.methodology-step {
display: flex;
align-items: flex-start;
gap: 2rem;
padding: 2rem;
background: rgba(59, 130, 246, 0.08);
border: 1px solid rgba(59, 130, 246, 0.15);
border-radius: 12px;
transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.methodology-step:hover {
background: rgba(59, 130, 246, 0.12);
border-color: rgba(59, 130, 246, 0.3);
transform: translateX(8px);
}

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

.methodology-step-content {
display: flex;
flex-direction: column;
gap: 0.75rem;
}

.methodology-step-title {
font-size: clamp(1.125rem, 2vw, 1.375rem);
font-weight: 600;
color: #ffffff;
}

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

@media (max-width: 768px) {
.methodology-step {
flex-direction: column;
align-items: center;
text-align: center;
gap: 1rem;
}

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

.features-section {
position: relative;
padding: clamp(4rem, 8vw, 6rem) 0;
background: #f8fafc;
overflow: hidden;
}

.features-ambient-glow-1 {
position: absolute;
top: 10%;
left: -80px;
width: 350px;
height: 350px;
background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
filter: blur(80px);
z-index: 1;
pointer-events: none;
}

.features-ambient-glow-2 {
position: absolute;
bottom: 5%;
right: -100px;
width: 400px;
height: 400px;
background: radial-gradient(circle, rgba(139, 92, 246, 0.07) 0%, transparent 70%);
filter: blur(90px);
z-index: 1;
pointer-events: none;
}

.features-accent-orb {
position: absolute;
top: 50%;
left: 5%;
width: 200px;
height: 200px;
background: rgba(34, 211, 238, 0.06);
border-radius: 50%;
filter: blur(50px);
z-index: 1;
pointer-events: none;
}

.features-line-decoration {
position: absolute;
top: 25%;
right: 15%;
width: 200px;
height: 1.5px;
background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.25), transparent);
z-index: 2;
pointer-events: none;
}

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

.features-header {
text-align: center;
margin-bottom: 4rem;
}

.features-tag {
display: inline-block;
padding: 0.375rem 1rem;
background: rgba(59, 130, 246, 0.15);
color: var(--color-primary);
border-radius: 20px;
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
margin-bottom: 1rem;
}

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

.features-subtitle {
font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
color: #64748b;
max-width: 600px;
margin: 0 auto;
}

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

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

.features-card:hover {
border-color: rgba(59, 130, 246, 0.3);
background: #ffffff;
box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
transform: translateY(-6px);
}

.features-card-icon {
width: 56px;
height: 56px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(59, 130, 246, 0.12);
border-radius: 12px;
color: var(--color-primary);
font-size: 1.5rem;
transition: all 350ms ease;
}

.features-card:hover .features-card-icon {
background: rgba(59, 130, 246, 0.18);
transform: scale(1.1);
}

.features-card-title {
font-size: clamp(1.125rem, 2vw, 1.25rem);
font-weight: 600;
color: #1e293b;
}

.features-card-text {
font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
color: #64748b;
line-height: 1.6;
flex-grow: 1;
}

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

.featured-posts-section {
position: relative;
padding: clamp(4rem, 8vw, 6rem) 0;
background: #ffffff;
overflow: hidden;
}

.posts-gradient-mesh {
position: absolute;
top: 0;
right: -150px;
width: 450px;
height: 450px;
background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
filter: blur(90px);
z-index: 1;
pointer-events: none;
}

.posts-accent-shape-1 {
position: absolute;
bottom: 10%;
left: 3%;
width: 250px;
height: 250px;
background: rgba(34, 211, 238, 0.05);
border-radius: 40% 60% 50% 50%;
z-index: 1;
pointer-events: none;
}

.posts-accent-shape-2 {
position: absolute;
top: 20%;
left: 8%;
width: 180px;
height: 180px;
background: rgba(59, 130, 246, 0.06);
border-radius: 50%;
filter: blur(40px);
z-index: 1;
pointer-events: none;
}

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

.posts-header {
text-align: center;
margin-bottom: 4rem;
}

.posts-tag {
display: inline-block;
padding: 0.375rem 1rem;
background: rgba(59, 130, 246, 0.15);
color: var(--color-primary);
border-radius: 20px;
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
margin-bottom: 1rem;
}

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

.posts-subtitle {
font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
color: #64748b;
max-width: 600px;
margin: 0 auto;
}

.posts-grid {
display: flex;
flex-wrap: wrap;
gap: clamp(1.5rem, 3vw, 2rem);
margin-bottom: 3rem;
}

.posts-card {
flex: 1 1 300px;
max-width: 380px;
display: flex;
flex-direction: column;
background: #ffffff;
border: 1px solid #e2e8f0;
border-radius: 12px;
overflow: hidden;
transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.posts-card:hover {
border-color: rgba(59, 130, 246, 0.3);
box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
transform: translateY(-6px);
}

.posts-card-image {
width: 100%;
height: 220px;
overflow: hidden;
background: linear-gradient(135deg, #f0f4f8, #e2e8f0);
}

.posts-image {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 400ms ease;
}

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

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

.posts-card-title {
font-size: clamp(1.125rem, 2vw, 1.25rem);
font-weight: 600;
color: #1e293b;
line-height: 1.3;
}

.posts-card-description {
font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
color: #64748b;
line-height: 1.6;
flex-grow: 1;
}

.posts-card-link {
display: inline-flex;
align-items: center;
color: var(--color-primary);
font-weight: 600;
font-size: clamp(0.875rem, 1vw, 0.9375rem);
transition: all 300ms ease;
text-decoration: none;
}

.posts-card-link:hover {
color: var(--color-primary-hover);
gap: 0.5rem;
}

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

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

.testimonials-section {
position: relative;
padding: clamp(4rem, 8vw, 6rem) 0;
background: var(--color-bg-primary);
overflow: hidden;
}

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

.testimonials-floating-shape {
position: absolute;
bottom: 20%;
left: 5%;
width: 220px;
height: 220px;
background: rgba(248, 113, 113, 0.05);
border-radius: 50% 40% 60% 50%;
z-index: 1;
pointer-events: none;
}

.testimonials-accent-line {
position: absolute;
top: 35%;
left: 15%;
width: 200px;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.25), transparent);
z-index: 2;
pointer-events: none;
}

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

.testimonials-header {
text-align: center;
margin-bottom: 4rem;
}

.testimonials-tag {
display: inline-block;
padding: 0.375rem 1rem;
background: rgba(59, 130, 246, 0.15);
color: var(--color-primary);
border-radius: 20px;
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
margin-bottom: 1rem;
}

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

.testimonials-subtitle {
font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
color: #94a3b8;
max-width: 600px;
margin: 0 auto;
}

.testimonials-grid {
display: flex;
flex-wrap: wrap;
gap: clamp(1.5rem, 3vw, 2rem);
}

.testimonials-card {
flex: 1 1 300px;
max-width: 350px;
display: flex;
flex-direction: column;
gap: 1.5rem;
padding: clamp(1.5rem, 3vw, 2rem);
background: rgba(59, 130, 246, 0.08);
border: 1px solid rgba(59, 130, 246, 0.15);
border-radius: 12px;
transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials-card:hover {
background: rgba(59, 130, 246, 0.12);
border-color: rgba(59, 130, 246, 0.3);
transform: translateY(-4px);
}

.testimonials-quote {
display: flex;
flex-direction: column;
}

.testimonials-quote-text {
font-size: clamp(1rem, 1.5vw, 1.125rem);
color: #ffffff;
line-height: 1.7;
font-style: italic;
margin: 0;
}

.testimonials-author {
display: flex;
flex-direction: column;
gap: 0.5rem;
}

.testimonials-author-name {
font-weight: 600;
color: #f1f5f9;
font-size: clamp(0.9375rem, 1vw, 1rem);
margin: 0;
}

.testimonials-author-role {
font-size: clamp(0.8125rem, 0.9vw, 0.875rem);
color: #cbd5e1;
margin: 0;
}

.testimonials-badge {
display: inline-block;
align-self: flex-start;
padding: 0.25rem 0.75rem;
background: rgba(34, 211, 238, 0.2);
color: #38bdf8;
border-radius: 12px;
font-size: 0.75rem;
font-weight: 600;
}

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

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

.cta-glow-primary {
position: absolute;
top: -50px;
left: 10%;
width: 300px;
height: 300px;
background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
filter: blur(80px);
z-index: 1;
pointer-events: none;
}

.cta-glow-secondary {
position: absolute;
bottom: -50px;
right: 5%;
width: 350px;
height: 350px;
background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
filter: blur(90px);
z-index: 1;
pointer-events: none;
}

.cta-accent-shape {
position: absolute;
top: 50%;
left: -100px;
width: 250px;
height: 250px;
background: rgba(34, 211, 238, 0.05);
border-radius: 50% 60% 40% 50%;
z-index: 1;
pointer-events: none;
}

.cta-corner-element {
position: absolute;
bottom: 10%;
right: 3%;
width: 150px;
height: 150px;
background: rgba(248, 113, 113, 0.04);
border-radius: 45%;
z-index: 1;
pointer-events: none;
}

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

.cta-title {
font-size: clamp(2rem, 5vw + 0.5rem, 3rem);
font-weight: 800;
color: #0f172a;
margin-bottom: 1.5rem;
}

.cta-description {
font-size: clamp(1rem, 2vw + 0.5rem, 1.1875rem);
color: #475569;
line-height: 1.7;
margin-bottom: 2.5rem;
}

.cta-buttons {
display: flex;
flex-wrap: wrap;
gap: 1rem;
justify-content: center;
}

.contact-section {
position: relative;
padding: clamp(4rem, 8vw, 6rem) 0;
background: var(--color-bg-primary);
overflow: hidden;
}

.contact-gradient-field {
position: absolute;
top: 0;
right: -100px;
width: 400px;
height: 400px;
background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
filter: blur(90px);
z-index: 1;
pointer-events: none;
}

.contact-floating-accent {
position: absolute;
bottom: 15%;
left: 5%;
width: 200px;
height: 200px;
background: rgba(139, 92, 246, 0.06);
border-radius: 60% 40% 50% 60%;
z-index: 1;
pointer-events: none;
}

.contact-corner-glow {
position: absolute;
top: 10%;
left: 3%;
width: 250px;
height: 250px;
background: radial-gradient(circle, rgba(248, 113, 113, 0.08) 0%, transparent 70%);
filter: blur(70px);
z-index: 1;
pointer-events: none;
}

.contact-header {
position: relative;
z-index: 10;
text-align: center;
margin-bottom: 3rem;
}

.contact-title {
font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
font-weight: 700;
color: #ffffff;
margin-bottom: 0.75rem;
}

.contact-subtitle {
font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
color: #94a3b8;
}

.contact-content {
position: relative;
z-index: 10;
display: flex;
flex-wrap: wrap;
gap: 3rem;
}

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

.contact-form {
width: 100%;
display: flex;
flex-direction: column;
gap: 1.5rem;
}

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

.contact-label {
font-size: clamp(0.875rem, 1vw, 0.9375rem);
font-weight: 500;
color: #e2e8f0;
}

.contact-input,
.contact-textarea {
width: 100%;
padding: clamp(0.75rem, 1.5vw, 1rem);
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(59, 130, 246, 0.3);
border-radius: 8px;
color: #ffffff;
font-size: clamp(0.875rem, 1vw, 1rem);
font-family: var(--font-primary);
transition: all 300ms ease;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
color: #64748b;
}

.contact-input:focus,
.contact-textarea:focus {
outline: none;
background: rgba(59, 130, 246, 0.12);
border-color: var(--color-primary);
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

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

.contact-privacy {
margin-top: 1rem;
}

.contact-privacy-text {
font-size: clamp(0.75rem, 1vw, 0.875rem);
color: #94a3b8;
}

.contact-privacy-link {
color: var(--color-primary);
text-decoration: none;
transition: color 300ms ease;
}

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

.contact-submit-btn {
width: 100%;
padding: clamp(0.875rem, 1.5vw, 1rem);
background: var(--color-primary);
color: #0f172a;
border: none;
border-radius: 8px;
font-size: clamp(0.875rem, 1vw, 1rem);
font-weight: 600;
cursor: pointer;
transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-submit-btn:hover {
background: var(--color-primary-hover);
box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
transform: translateY(-2px);
}

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

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

.contact-info-block {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

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

.contact-faq {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.contact-faq-item {
display: flex;
flex-direction: column;
gap: 0.75rem;
}

.contact-faq-question {
font-size: clamp(0.9375rem, 1vw, 1.0625rem);
font-weight: 600;
color: #f1f5f9;
margin: 0;
}

.contact-faq-answer {
font-size: clamp(0.875rem, 1vw, 0.9375rem);
color: #cbd5e1;
line-height: 1.6;
margin: 0;
}

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

.contact-form-wrapper,
.contact-info {
flex: 1 1 100%;
}
}

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

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

.cookie-banner-text {
color: #e2e8f0;
margin: 0;
font-size: clamp(0.875rem, 1vw, 0.9375rem);
line-height: 1.5;
max-width: 600px;
text-align: center;
}

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

.cookie-btn-accept,
.cookie-btn-decline {
padding: clamp(0.625rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.25rem);
border-radius: 6px;
font-size: clamp(0.8125rem, 0.9vw, 0.875rem);
font-weight: 600;
cursor: pointer;
transition: all 300ms ease;
border: none;
}

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

.cookie-btn-accept:hover {
background: var(--color-primary-hover);
box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
transform: translateY(-1px);
}

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

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

@media (min-width: 768px) {
.hero-section {
padding: clamp(5rem, 12vw, 8rem) 0;
}

.about-section,
.methodology-section,
.features-section,
.featured-posts-section,
.testimonials-section,
.cta-section,
.contact-section {
padding: clamp(4.5rem, 10vw, 7rem) 0;
}

.methodology-step {
padding: 2.5rem;
}

.hero-cta-buttons {
gap: 1.5rem;
}

.cta-buttons {
gap: 1.5rem;
}

.cookie-banner {
padding: 1.5rem 2rem;
gap: 2rem;
}

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

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

.hero-cta-buttons,
.cta-buttons,
.cookie-banner-buttons {
width: 100%;
}

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

.methodology-step {
padding: 1.5rem;
gap: 1rem;
}

.methodology-step-number {
min-width: 60px;
}

.contact-content {
gap: 2rem;
}

.cookie-banner {
flex-direction: column;
gap: 1rem;
}

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

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

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

    
    

.category-page-personal-growth {
  width: 100%;
}

.hero-section-personal-growth {
  position: relative;
  overflow: hidden;
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
}

.hero-ambient-glow-personal-growth {
  position: absolute;
  top: 10%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-gradient-field-personal-growth {
  position: absolute;
  top: 50%;
  right: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 75%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-accent-personal-growth {
  position: absolute;
  bottom: 5%;
  left: 15%;
  width: 200px;
  height: 200px;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-light-burst-personal-growth {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 150px;
  height: 150px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-shape-element-personal-growth {
  position: absolute;
  bottom: 15%;
  right: 8%;
  width: 250px;
  height: 250px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 20% 80% 30% 70% / 60% 20% 80% 40%;
  z-index: 1;
  pointer-events: none;
}

.hero-corner-glow-personal-growth {
  position: absolute;
  top: 5%;
  right: 5%;
  width: 120px;
  height: 120px;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.hero-accent-line-personal-growth {
  position: absolute;
  top: 30%;
  left: 5%;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-panel-personal-growth {
  position: absolute;
  bottom: 20%;
  left: 10%;
  width: 180px;
  height: 140px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  transform: rotate(-8deg);
  z-index: 1;
  pointer-events: none;
}

.hero-content-personal-growth {
  position: relative;
  z-index: 10;
  text-align: center;
}

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

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

.hero-stats-personal-growth {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  justify-content: center;
  margin-top: 2.5rem;
}

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

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

.stat-label-personal-growth {
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  color: #94a3b8;
  font-weight: 500;
}

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

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

.posts-section-personal-growth {
  position: relative;
  overflow: hidden;
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
}

.posts-shape-one-personal-growth {
  position: absolute;
  top: 5%;
  right: -60px;
  width: 280px;
  height: 280px;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 50% 30% 40% 60% / 60% 40% 30% 50%;
  z-index: 1;
  pointer-events: none;
}

.posts-glow-accent-personal-growth {
  position: absolute;
  top: 50%;
  left: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.posts-line-decoration-personal-growth {
  position: absolute;
  bottom: 30%;
  right: 5%;
  width: 200px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.25), transparent);
  z-index: 1;
  pointer-events: none;
}

.posts-floating-element-personal-growth {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 160px;
  height: 160px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  z-index: 1;
  pointer-events: none;
}

.posts-corner-shape-personal-growth {
  position: absolute;
  top: 10%;
  left: 8%;
  width: 120px;
  height: 120px;
  background: rgba(6, 182, 212, 0.06);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.posts-gradient-mesh-personal-growth {
  position: absolute;
  bottom: 0;
  right: 15%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.posts-header-personal-growth {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.posts-tag-personal-growth {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.posts-subtitle-personal-growth {
  color: #bfdbfe;
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.card-personal-growth {
  flex: 1 1 320px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 14px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.card-personal-growth:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-6px);
}

.card-image-personal-growth {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.card-title-personal-growth {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  line-height: 1.3;
}

.card-description-personal-growth {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  line-height: 1.7;
  flex-grow: 1;
}

.card-meta-personal-growth {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.meta-badge-personal-growth {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 16px;
  font-size: 0.75rem;
  color: #93c5fd;
  font-weight: 500;
}

.meta-badge-personal-growth i {
  font-size: 0.75rem;
  color: #60a5fa;
}

.card-link-personal-growth {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #3b82f6;
  color: #000000;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  width: fit-content;
}

.card-link-personal-growth:hover {
  background: #60a5fa;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
  transform: translateY(-2px);
}

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

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

.methodology-section-personal-growth {
  position: relative;
  overflow: hidden;
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
}

.methodology-shape-backdrop-personal-growth {
  position: absolute;
  top: 15%;
  right: -100px;
  width: 320px;
  height: 320px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.methodology-glow-primary-personal-growth {
  position: absolute;
  bottom: 20%;
  left: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  filter: blur(85px);
  z-index: 1;
  pointer-events: none;
}

.methodology-accent-detail-personal-growth {
  position: absolute;
  top: 40%;
  left: 5%;
  width: 2px;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.2), transparent);
  z-index: 1;
  pointer-events: none;
}

.methodology-floating-form-personal-growth {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 150px;
  height: 150px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.methodology-edge-accent-personal-growth {
  position: absolute;
  bottom: 5%;
  right: 10%;
  width: 200px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.2), transparent);
  z-index: 1;
  pointer-events: none;
}

.methodology-content-personal-growth {
  position: relative;
  z-index: 10;
}

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

.methodology-tag-personal-growth {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

.methodology-step-personal-growth {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.methodology-step-personal-growth:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.methodology-step-number-personal-growth {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.methodology-step-content-personal-growth {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.methodology-step-title-personal-growth {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
}

.methodology-step-text-personal-growth {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .methodology-section-personal-growth {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }
}

.benefits-section-personal-growth {
  position: relative;
  overflow: hidden;
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
}

.benefits-mesh-one-personal-growth {
  position: absolute;
  top: -50px;
  left: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.benefits-glow-secondary-personal-growth {
  position: absolute;
  top: 40%;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  filter: blur(85px);
  z-index: 1;
  pointer-events: none;
}

.benefits-shape-two-personal-growth {
  position: absolute;
  bottom: 15%;
  left: -60px;
  width: 250px;
  height: 250px;
  background: rgba(59, 130, 246, 0.07);
  border-radius: 40% 60% 50% 50% / 50% 50% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

.benefits-line-accent-personal-growth {
  position: absolute;
  top: 30%;
  right: 8%;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.25), transparent);
  z-index: 1;
  pointer-events: none;
}

.benefits-floating-panel-personal-growth {
  position: absolute;
  bottom: 30%;
  right: 5%;
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 10px;
  transform: rotate(15deg);
  z-index: 1;
  pointer-events: none;
}

.benefits-corner-element-personal-growth {
  position: absolute;
  top: 5%;
  right: 3%;
  width: 100px;
  height: 100px;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 50%;
  filter: blur(45px);
  z-index: 1;
  pointer-events: none;
}

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

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

.benefits-tag-personal-growth {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.benefits-subtitle-personal-growth {
  color: #bfdbfe;
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.benefits-cards-personal-growth {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.benefit-card-personal-growth {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
  text-align: center;
}

.benefit-card-personal-growth:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px);
}

.benefit-icon-personal-growth {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  color: #60a5fa;
  font-size: 1.75rem;
  transition: all 0.3s ease;
}

.benefit-card-personal-growth:hover .benefit-icon-personal-growth {
  background: rgba(59, 130, 246, 0.25);
  transform: scale(1.1);
}

.benefit-title-personal-growth {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
}

.benefit-text-personal-growth {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  line-height: 1.7;
}

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

@media (min-width: 768px) {
  .benefits-section-personal-growth {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }
}

.cta-section-personal-growth {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0c1929 0%, #162d50 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
}

.cta-glow-main-personal-growth {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.cta-shape-accent-personal-growth {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: rgba(139, 92, 246, 0.08);
  border-radius: 50% 40% 60% 40% / 40% 50% 40% 60%;
  z-index: 1;
  pointer-events: none;
}

.cta-floating-element-personal-growth {
  position: absolute;
  bottom: 5%;
  right: 8%;
  width: 180px;
  height: 180px;
  background: rgba(6, 182, 212, 0.06);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

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

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

.cta-description-personal-growth {
  color: #bfdbfe;
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  line-height: 1.7;
}

.cta-button-personal-growth {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: clamp(0.875rem, 2vw, 1.25rem) clamp(1.75rem, 4vw, 2.5rem);
  background: #3b82f6;
  color: #000000;
  border-radius: 10px;
  font-weight: 700;
  font-size: clamp(0.9375rem, 1.2vw, 1.125rem);
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.cta-button-personal-growth:hover {
  background: #60a5fa;
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
  transform: translateY(-3px);
}

.cta-button-personal-growth:after {
  content: "";
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  .cta-section-personal-growth {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }
}

@media (max-width: 768px) {
  .hero-stats-personal-growth {
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .stat-item-personal-growth {
    flex: 1 1 45%;
  }
}

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

.card-link-personal-growth:focus-visible,
.cta-button-personal-growth:focus-visible {
  outline: 2px solid #60a5fa;
  outline-offset: 3px;
}

.main-smart-doelstellingen-formuleren {
  width: 100%;
  background: #0c1929;
}

.hero-section-smart-doelstellingen-formuleren {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.hero-text-wrapper-smart-doelstellingen-formuleren {
  flex: 1 1 50%;
  max-width: 50%;
}

.breadcrumbs-smart-doelstellingen-formuleren {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumb-link-smart-doelstellingen-formuleren {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-smart-doelstellingen-formuleren:hover {
  color: #93c5fd;
}

.breadcrumb-separator-smart-doelstellingen-formuleren {
  color: #64748b;
}

.breadcrumb-current-smart-doelstellingen-formuleren {
  color: #94a3b8;
}

.hero-title-smart-doelstellingen-formuleren {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-smart-doelstellingen-formuleren {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #38bdf8;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero-description-smart-doelstellingen-formuleren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-meta-smart-doelstellingen-formuleren {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.meta-badge-smart-doelstellingen-formuleren {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #bfdbfe;
}

.meta-badge-smart-doelstellingen-formuleren i {
  color: #3b82f6;
}

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

.stat-item-smart-doelstellingen-formuleren {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-smart-doelstellingen-formuleren {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
}

.stat-label-smart-doelstellingen-formuleren {
  font-size: 0.875rem;
  color: #94a3b8;
}

.hero-image-smart-doelstellingen-formuleren {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-smart-doelstellingen-formuleren {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

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

  .hero-text-wrapper-smart-doelstellingen-formuleren,
  .hero-image-smart-doelstellingen-formuleren {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-smart-doelstellingen-formuleren {
    gap: 2rem;
  }
}

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

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

.intro-text-smart-doelstellingen-formuleren {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-smart-doelstellingen-formuleren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-description-smart-doelstellingen-formuleren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.intro-image-smart-doelstellingen-formuleren {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-smart-doelstellingen-formuleren {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .intro-content-smart-doelstellingen-formuleren {
    flex-direction: column;
  }

  .intro-text-smart-doelstellingen-formuleren,
  .intro-image-smart-doelstellingen-formuleren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.criteria-section-smart-doelstellingen-formuleren {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.criteria-header-smart-doelstellingen-formuleren {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-smart-doelstellingen-formuleren {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.2);
  color: #38bdf8;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.criteria-title-smart-doelstellingen-formuleren {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.criteria-subtitle-smart-doelstellingen-formuleren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

.criteria-steps-smart-doelstellingen-formuleren {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.criteria-step-smart-doelstellingen-formuleren {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.step-number-smart-doelstellingen-formuleren {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.step-content-smart-doelstellingen-formuleren {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-smart-doelstellingen-formuleren {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
}

.step-text-smart-doelstellingen-formuleren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .criteria-step-smart-doelstellingen-formuleren {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-smart-doelstellingen-formuleren {
    min-width: auto;
  }
}

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

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

.implementation-text-smart-doelstellingen-formuleren {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.implementation-description-smart-doelstellingen-formuleren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.highlight-box-smart-doelstellingen-formuleren {
  background: #eff6ff;
  border-left: 4px solid #3b82f6;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.highlight-title-smart-doelstellingen-formuleren {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.highlight-text-smart-doelstellingen-formuleren {
  font-size: 0.9375rem;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.highlight-text-smart-doelstellingen-formuleren:last-child {
  margin-bottom: 0;
}

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

.implementation-image-smart-doelstellingen-formuleren {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-img-smart-doelstellingen-formulieren {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .implementation-content-smart-doelstellingen-formuleren {
    flex-direction: column;
  }

  .implementation-text-smart-doelstellingen-formuleren,
  .implementation-image-smart-doelstellingen-formuleren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.tools-section-smart-doelstellingen-formuleren {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tools-header-smart-doelstellingen-formuleren {
  text-align: center;
  margin-bottom: 3rem;
}

.tools-title-smart-doelstellingen-formuleren {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.tools-grid-smart-doelstellingen-formuleren {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.tool-card-smart-doelstellingen-formuleren {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
}

.tool-card-smart-doelstellingen-formuleren:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
}

.tool-icon-smart-doelstellingen-formuleren {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  color: #3b82f6;
  font-size: 1.5rem;
}

.tool-card-title-smart-doelstellingen-formuleren {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
}

.tool-card-text-smart-doelstellingen-formuleren {
  font-size: 0.9375rem;
  color: #bfdbfe;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .tool-card-smart-doelstellingen-formuleren {
    flex: 1 1 100%;
    max-width: none;
  }
}

.challenges-section-smart-doelstellingen-formuleren {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.challenges-content-smart-doelstellingen-formuleren {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.challenges-image-smart-doelstellingen-formuleren {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenges-img-smart-doelstellingen-formulieren {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.challenges-text-smart-doelstellingen-formuleren {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.challenges-description-smart-doelstellingen-formuleren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.challenges-list-smart-doelstellingen-formuleren {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.list-item-smart-doelstellingen-formuleren {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.list-item-smart-doelstellingen-formuleren i {
  color: #3b82f6;
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.list-content-smart-doelstellingen-formulieren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.6;
}

.list-content-smart-doelstellingen-formulieren strong {
  color: #0f172a;
}

@media (max-width: 768px) {
  .challenges-content-smart-doelstellingen-formuleren {
    flex-direction: column;
  }

  .challenges-image-smart-doelstellingen-formulieren,
  .challenges-text-smart-doelstellingen-formuleren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-smart-doelstellingen-formuleren {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-smart-doelstellingen-formuleren {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-smart-doelstellingen-formuleren {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 2rem;
}

.conclusion-text-wrapper-smart-doelstellingen-formuleren {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.conclusion-text-smart-doelstellingen-formuleren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.7;
  text-align: center;
}

.conclusion-quote-smart-doelstellingen-formulieren {
  border-left: 4px solid #3b82f6;
  padding: 2rem;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 8px;
  margin: 1.5rem 0;
}

.quote-text-smart-doelstellingen-formulieren {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #ffffff;
  font-style: italic;
  text-align: center;
  line-height: 1.6;
}

.cta-box-smart-doelstellingen-formuleren {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
  margin-top: 2rem;
}

.cta-title-smart-doelstellingen-formuleren {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-text-smart-doelstellingen-formulieren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.btn-primary-smart-doelstellingen-formuleren {
  display: inline-block;
  background: #ffffff;
  color: #3b82f6;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.btn-primary-smart-doelstellingen-formuleren:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.conclusion-image-smart-doelstellingen-formulieren {
  margin-top: 2rem;
}

.conclusion-img-smart-doelstellingen-formulieren {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .conclusion-text-wrapper-smart-doelstellingen-formulieren {
    text-align: center;
  }
}

.disclaimer-section-smart-doelstellingen-formuleren {
  background: #f8fafc;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-smart-doelstellingen-formuleren {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #eff6ff;
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
}

.disclaimer-icon-smart-doelstellingen-formuleren {
  color: #3b82f6;
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.disclaimer-text-wrapper-smart-doelstellingen-formuleren {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.disclaimer-title-smart-doelstellingen-formuleren {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.disclaimer-text-smart-doelstellingen-formulieren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #334155;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .disclaimer-content-smart-doelstellingen-formuleren {
    flex-direction: column;
  }

  .disclaimer-icon-smart-doelstellingen-formulieren {
    margin-top: 0;
  }
}

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

.related-header-smart-doelstellingen-formuleren {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-smart-doelstellingen-formuleren {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.related-subtitle-smart-doelstellingen-formuleren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
}

.related-cards-smart-doelstellingen-formuleren {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.related-card-smart-doelstellingen-formuleren {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-smart-doelstellingen-formuleren:hover {
  border-color: rgba(59, 130, 246, 0.5);
  background: rgba(59, 130, 246, 0.12);
  transform: translateY(-4px);
}

.related-card-image-smart-doelstellingen-formuleren {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

.related-card-content-smart-doelstellingen-formuleren {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
}

.related-card-title-smart-doelstellingen-formuleren {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.related-card-text-smart-doelstellingen-formuleren {
  font-size: 0.9375rem;
  color: #bfdbfe;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-smart-doelstellingen-formulieren {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #38bdf8;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.related-card-link-smart-doelstellingen-formulieren:hover {
  color: #93c5fd;
  gap: 0.75rem;
}

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

@media (min-width: 768px) {
  .hero-section-smart-doelstellingen-formuleren,
  .intro-section-smart-doelstellingen-formuleren,
  .criteria-section-smart-doelstellingen-formuleren,
  .implementation-section-smart-doelstellingen-formuleren,
  .tools-section-smart-doelstellingen-formuleren,
  .challenges-section-smart-doelstellingen-formuleren,
  .conclusion-section-smart-doelstellingen-formuleren {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-smart-doelstellingen-formuleren,
  .intro-section-smart-doelstellingen-formuleren,
  .criteria-section-smart-doelstellingen-formuleren,
  .implementation-section-smart-doelstellingen-formulieren,
  .tools-section-smart-doelstellingen-formuleren,
  .challenges-section-smart-doelstellingen-formuleren,
  .conclusion-section-smart-doelstellingen-formulieren {
    padding: 6rem 0;
  }
}

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

::-moz-selection {
  background: #3b82f6;
  color: #ffffff;
}

::selection {
  background: #3b82f6;
  color: #ffffff;
}

html {
  scroll-behavior: smooth;
}

.main-motivatie-duurzaam-opbouwen {
  width: 100%;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

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

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

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

.breadcrumb-link-motivatie-duurzaam-opbouwen {
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.2s ease;
}

.breadcrumb-link-motivatie-duurzaam-opbouwen:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumb-separator-motivatie-duurzaam-opbouwen {
  color: var(--color-text-secondary);
}

.breadcrumb-current-motivatie-duurzaam-opbouwen {
  color: var(--color-text-secondary);
}

.hero-section-motivatie-duurzaam-opbouwen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

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

.hero-text-wrapper-motivatie-duurzaam-opbouwen {
  flex: 1 1 100%;
  min-width: 300px;
}

@media (min-width: 1024px) {
  .hero-text-wrapper-motivatie-duurzaam-opbouwen {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.hero-title-motivatie-duurzaam-opbouwen {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.1;
  word-wrap: break-word;
}

.hero-subtitle-motivatie-duurzaam-opbouwen {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.hero-meta-motivatie-duurzaam-opbouwen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.meta-badge-motivatie-duurzaam-opbouwen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 20px;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.meta-badge-motivatie-duurzaam-opbouwen i {
  color: var(--color-primary);
}

.hero-stats-motivatie-duurzaam-opbouwen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 2rem;
}

.stat-item-motivatie-duurzaam-opbouwen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-motivatie-duurzaam-opbouwen {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label-motivatie-duurzaam-opbouwen {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  opacity: 0.9;
}

.hero-image-wrapper-motivatie-duurzaam-opbouwen {
  flex: 1 1 100%;
  min-width: 300px;
}

@media (min-width: 1024px) {
  .hero-image-wrapper-motivatie-duurzaam-opbouwen {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.hero-image-motivatie-duurzaam-opbouwen {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

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

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

.intro-text-motivatie-duurzaam-opbouwen {
  flex: 1 1 100%;
  min-width: 300px;
}

@media (min-width: 1024px) {
  .intro-text-motivatie-duurzaam-opbouwen {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.intro-title-motivatie-duurzaam-opbouwen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

.intro-image-wrapper-motivatie-duurzaam-opbouwen {
  flex: 1 1 100%;
  min-width: 300px;
}

@media (min-width: 1024px) {
  .intro-image-wrapper-motivatie-duurzaam-opbouwen {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.intro-image-motivatie-duurzaam-opbouwen {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

.principles-section-motivatie-duurzaam-opbouwen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.section-tag-motivatie-duurzaam-opbouwen {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.principles-title-motivatie-duurzaam-opbouwen {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

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

.principles-grid-motivatie-duurzaam-opbouwen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.principles-step-motivatie-duurzaam-opbouwen {
  flex: 1 1 calc(50% - 1rem);
  min-width: 280px;
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
}

@media (max-width: 768px) {
  .principles-step-motivatie-duurzaam-opbouwen {
    flex: 1 1 100%;
    min-width: unset;
  }
}

.principles-number-motivatie-duurzaam-opbouwen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.principles-content-motivatie-duurzaam-opbouwen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.principles-step-title-motivatie-duurzaam-opbouwen {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.principles-step-text-motivatie-duurzaam-opbouwen {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.methods-section-motivatie-duurzaam-opbouwen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.methods-wrapper-motivatie-duurzaam-opbouwen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.methods-text-motivatie-duurzaam-opbouwen {
  flex: 1 1 100%;
  min-width: 300px;
}

@media (min-width: 1024px) {
  .methods-text-motivatie-duurzaam-opbouwen {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.methods-title-motivatie-duurzaam-opbouwen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.methods-description-motivatie-duurzaam-opbouwen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.method-card-motivatie-duurzaam-opbouwen {
  padding: 1.5rem;
  background: #ffffff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  transition: all 0.2s ease;
}

.method-card-motivatie-duurzaam-opbouwen:hover {
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.method-card-title-motivatie-duurzaam-opbouwen {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.method-card-text-motivatie-duurzaam-opbouwen {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.6;
}

.methods-image-motivatie-duurzaam-opbouwen {
  flex: 1 1 100%;
  min-width: 300px;
}

@media (min-width: 1024px) {
  .methods-image-motivatie-duurzaam-opbouwen {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.methods-image-file-motivatie-duurzaam-opbouwen {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

.obstacles-section-motivatie-duurzaam-opbouwen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.obstacles-wrapper-motivatie-duurzaam-opbouwen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.obstacles-image-motivatie-duurzaam-opbouwen {
  flex: 1 1 100%;
  min-width: 300px;
}

@media (min-width: 1024px) {
  .obstacles-image-motivatie-duurzaam-opbouwen {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.obstacles-image-file-motivatie-duurzaam-opbouwen {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

.obstacles-text-motivatie-duurzaam-opbouwen {
  flex: 1 1 100%;
  min-width: 300px;
}

@media (min-width: 1024px) {
  .obstacles-text-motivatie-duurzaam-opbouwen {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.obstacles-title-motivatie-duurzaam-opbouwen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.obstacles-description-motivatie-duurzaam-opbouwen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.obstacle-item-motivatie-duurzaam-opbouwen {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.obstacle-item-motivatie-duurzaam-opbouwen:last-child {
  border-bottom: none;
}

.obstacle-title-motivatie-duurzaam-opbouwen {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.obstacle-text-motivatie-duurzaam-opbouwen {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.consolidation-section-motivatie-duurzaam-opbouwen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.consolidation-content-motivatie-duurzaam-opbouwen {
  max-width: 800px;
  margin: 0 auto;
}

.consolidation-title-motivatie-duurzaam-opbouwen {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.consolidation-intro-motivatie-duurzaam-opbouwen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.quote-section-motivatie-duurzaam-opbouwen {
  margin: 2.5rem 0;
}

.featured-quote-motivatie-duurzaam-opbouwen {
  border-left: 4px solid var(--color-primary);
  padding: 2rem;
  padding-left: 2.5rem;
  background: #f8fafc;
  border-radius: var(--radius-md);
  font-style: italic;
}

.quote-text-motivatie-duurzaam-opbouwen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.quote-cite-motivatie-duurzaam-opbouwen {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

.action-steps-motivatie-duurzaam-opbouwen {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem 0;
}

.action-week-motivatie-duurzaam-opbouwen {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 240px;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: var(--radius-md);
}

@media (max-width: 768px) {
  .action-week-motivatie-duurzaam-opbouwen {
    flex: 1 1 100%;
    min-width: unset;
  }
}

.action-week-title-motivatie-duurzaam-opbouwen {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.action-list-motivatie-duurzaam-opbouwen {
  list-style: none;
}

.action-list-item-motivatie-duurzaam-opbouwen {
  display: flex;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.5;
}

.action-list-item-motivatie-duurzaam-opbouwen::before {
  content: "";
  color: var(--color-primary);
  font-weight: 700;
  flex-shrink: 0;
}

.cta-box-motivatie-duurzaam-opbouwen {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
  text-align: center;
  color: #ffffff;
  margin-top: 3rem;
}

.cta-title-motivatie-duurzaam-opbouwen {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-text-motivatie-duurzaam-opbouwen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.cta-button-motivatie-duurzaam-opbouwen:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.disclaimer-section-motivatie-duurzaam-opbouwen {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.disclaimer-content-motivatie-duurzaam-opbouwen {
  background: rgba(59, 130, 246, 0.05);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.disclaimer-title-motivatie-duurzaam-opbouwen {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.disclaimer-text-motivatie-duurzaam-opbouwen {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.related-section-motivatie-duurzaam-opbouwen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.related-title-motivatie-duurzaam-opbouwen {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.related-subtitle-motivatie-duurzaam-opbouwen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
}

.related-cards-motivatie-duurzaam-opbouwen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: 2rem;
}

.related-card-motivatie-duurzaam-opbouwen {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 250px;
  padding: 1.5rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.2s ease;
}

@media (max-width: 768px) {
  .related-card-motivatie-duurzaam-opbouwen {
    flex: 1 1 100%;
    min-width: unset;
  }
}

.related-card-motivatie-duurzaam-opbouwen:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
  transform: translateY(-4px);
}

.related-card-content-motivatie-duurzaam-opbouwen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
}

.related-card-title-motivatie-duurzaam-opbouwen {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.related-card-description-motivatie-duurzaam-opbouwen {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-arrow-motivatie-duurzaam-opbouwen {
  color: var(--color-primary);
  font-weight: 700;
  transition: transform 0.2s ease;
}

.related-card-motivatie-duurzaam-opbouwen:hover .related-card-arrow-motivatie-duurzaam-opbouwen {
  transform: translateX(4px);
}

@media (min-width: 768px) {
  .hero-section-motivatie-duurzaam-opbouwen {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .intro-section-motivatie-duurzaam-opbouwen {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .principles-section-motivatie-duurzaam-opbouwen {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .methods-section-motivatie-duurzaam-opbouwen {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .obstacles-section-motivatie-duurzaam-opbouwen {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .consolidation-section-motivatie-duurzaam-opbouwen {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .related-section-motivatie-duurzaam-opbouwen {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }
}

@media (max-width: 480px) {
  .hero-stats-motivatie-duurzaam-opbouwen {
    gap: 1.5rem;
  }

  .stat-number-motivatie-duurzaam-opbouwen {
    font-size: 1.75rem;
  }

  .principles-step-motivatie-duurzaam-opbouwen {
    flex-direction: column;
    gap: 1rem;
  }

  .principles-number-motivatie-duurzaam-opbouwen {
    min-width: auto;
  }

  .action-steps-motivatie-duurzaam-opbouwen {
    flex-direction: column;
  }

  .action-week-motivatie-duurzaam-opbouwen {
    flex: 1 1 100%;
  }
}

.main-gemeenschappelijke-doelen-bereiken {
  width: 100%;
}

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

.hero-section-gemeenschappelijke-doelen-bereiken {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.breadcrumbs-gemeenschappelijke-doelen-bereiken {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumb-link-gemeenschappelijke-doelen-bereiken {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-gemeenschappelijke-doelen-bereiken:hover {
  color: #93c5fd;
}

.breadcrumb-separator-gemeenschappelijke-doelen-bereiken {
  color: #475569;
}

.breadcrumb-current-gemeenschappelijke-doelen-bereiken {
  color: #bfdbfe;
}

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

.hero-text-block-gemeenschappelijke-doelen-bereiken {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title-gemeenschappelijke-doelen-bereiken {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-gemeenschappelijke-doelen-bereiken {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #bfdbfe;
  line-height: 1.6;
}

.hero-meta-gemeenschappelijke-doelen-bereiken {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.meta-badge-gemeenschappelijke-doelen-bereiken {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #93c5fd;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 500;
}

.meta-badge-gemeenschappelijke-doelen-bereiken i {
  color: #3b82f6;
}

.hero-stats-gemeenschappelijke-doelen-bereiken {
  display: flex;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 1rem;
}

.stat-item-gemeenschappelijke-doelen-bereiken {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-gemeenschappelijke-doelen-bereiken {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #3b82f6;
  line-height: 1;
}

.stat-label-gemeenschappelijke-doelen-bereiken {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #94a3b8;
}

.hero-image-gemeenschappelijke-doelen-bereiken {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-gemeenschappelijke-doelen-bereiken img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

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

  .hero-text-block-gemeenschappelijke-doelen-bereiken,
  .hero-image-gemeenschappelijke-doelen-bereiken {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-gemeenschappelijke-doelen-bereiken {
    flex-direction: row;
    gap: 1.5rem;
  }
}

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

.introduction-content-gemeenschappelijke-doelen-bereiken {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.introduction-text-gemeenschappelijke-doelen-bereiken {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.introduction-title-gemeenschappelijke-doelen-bereiken {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.introduction-paragraph-gemeenschappelijke-doelen-bereiken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.introduction-image-gemeenschappelijke-doelen-bereiken {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-image-gemeenschappelijke-doelen-bereiken img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .introduction-content-gemeenschappelijke-doelen-bereiken {
    flex-direction: column;
  }

  .introduction-text-gemeenschappelijke-doelen-bereiken,
  .introduction-image-gemeenschappelijke-doelen-bereiken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-1-gemeenschappelijke-doelen-bereiken {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-1-gemeenschappelijke-doelen-bereiken {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-1-gemeenschappelijke-doelen-bereiken {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.content-text-1-paragraph-gemeenschappelijke-doelen-bereiken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.process-steps-gemeenschappelijke-doelen-bereiken {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step-gemeenschappelijke-doelen-bereiken {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
  align-items: flex-start;
}

.step-number-gemeenschappelijke-doelen-bereiken {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.step-content-gemeenschappelijke-doelen-bereiken {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-gemeenschappelijke-doelen-bereiken {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.step-text-gemeenschappelijke-doelen-bereiken {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

.content-image-1-gemeenschappelijke-doelen-bereiken {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-1-gemeenschappelijke-doelen-bereiken img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .content-wrapper-1-gemeenschappelijke-doelen-bereiken {
    flex-direction: column;
  }

  .content-text-1-gemeenschappelijke-doelen-bereiken,
  .content-image-1-gemeenschappelijke-doelen-bereiken {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .process-step-gemeenschappelijke-doelen-bereiken {
    gap: 1rem;
  }
}

.content-section-2-gemeenschappelijke-doelen-bereiken {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-image-2-gemeenschappelijke-doelen-bereiken {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.content-image-2-gemeenschappelijke-doelen-bereiken img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.content-text-2-gemeenschappelijke-doelen-bereiken {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-2-gemeenschappelijke-doelen-bereiken {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-text-2-paragraph-gemeenschappelijke-doelen-bereiken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.features-cards-gemeenschappelijke-doelen-bereiken {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.feature-card-gemeenschappelijke-doelen-bereiken {
  flex: 1 1 300px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.feature-icon-gemeenschappelijke-doelen-bereiken {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dbeafe;
  color: #3b82f6;
  border-radius: 10px;
  font-size: 1.5rem;
}

.feature-card-title-gemeenschappelijke-doelen-bereiken {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.feature-card-text-gemeenschappelijke-doelen-bereiken {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .content-wrapper-2-gemeenschappelijke-doelen-bereiken {
    flex-direction: column;
  }

  .content-text-2-gemeenschappelijke-doelen-bereiken,
  .content-image-2-gemeenschappelijke-doelen-bereiken {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }

  .features-cards-gemeenschappelijke-doelen-bereiken {
    flex-direction: column;
  }

  .feature-card-gemeenschappelijke-doelen-bereiken {
    flex: 1 1 100%;
  }
}

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

.content-wrapper-3-gemeenschappelijke-doelen-bereiken {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-3-gemeenschappelijke-doelen-bereiken {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-3-gemeenschappelijke-doelen-bereiken {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-text-3-paragraph-gemeenschappelijke-doelen-bereiken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.highlight-box-gemeenschappelijke-doelen-bereiken {
  padding: 1.5rem;
  background: #ffffff;
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
  margin: 2rem 0;
}

.highlight-text-gemeenschappelijke-doelen-bereiken {
  font-size: 1.0625rem;
  color: #0f172a;
  font-style: italic;
  line-height: 1.6;
}

.content-list-gemeenschappelijke-doelen-bereiken {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.list-item-gemeenschappelijke-doelen-bereiken {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.6;
}

.list-item-gemeenschappelijke-doelen-bereiken i {
  color: #3b82f6;
  margin-top: 2px;
  flex-shrink: 0;
}

.content-image-3-gemeenschappelijke-doelen-bereiken {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-3-gemeenschappelijke-doelen-bereiken img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .content-wrapper-3-gemeenschappelijke-doelen-bereiken {
    flex-direction: column;
  }

  .content-text-3-gemeenschappelijke-doelen-bereiken,
  .content-image-3-gemeenschappelijke-doelen-bereiken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-4-gemeenschappelijke-doelen-bereiken {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-image-4-gemeenschappelijke-doelen-bereiken {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-4-gemeenschappelijke-doelen-bereiken img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.content-text-4-gemeenschappelijke-doelen-bereiken {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-4-gemeenschappelijke-doelen-bereiken {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-text-4-paragraph-gemeenschappelijke-doelen-bereiken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .content-wrapper-4-gemeenschappelijke-doelen-bereiken {
    flex-direction: column;
  }

  .content-text-4-gemeenschappelijke-doelen-bereiken,
  .content-image-4-gemeenschappelijke-doelen-bereiken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-gemeenschappelijke-doelen-bereiken {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-gemeenschappelijke-doelen-bereiken {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-gemeenschappelijke-doelen-bereiken {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  line-height: 1.2;
}

.conclusion-text-gemeenschappelijke-doelen-bereiken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.7;
  text-align: center;
}

.cta-box-gemeenschappelijke-doelen-bereiken {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.cta-title-gemeenschappelijke-doelen-bereiken {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #ffffff;
}

.cta-text-gemeenschappelijke-doelen-bereiken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #ffffff;
  max-width: 500px;
}

.cta-box-gemeenschappelijke-doelen-bereiken .btn {
  margin-top: 1rem;
  background: #ffffff;
  color: #0f172a;
  font-weight: 600;
}

.cta-box-gemeenschappelijke-doelen-bereiken .btn:hover {
  background: #f1f5f9;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .conclusion-content-gemeenschappelijke-doelen-bereiken {
    text-align: center;
  }
}

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

.related-header-gemeenschappelijke-doelen-bereiken {
  text-align: center;
  margin-bottom: 3rem;
}

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

.related-subtitle-gemeenschappelijke-doelen-bereiken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

.related-cards-gemeenschappelijke-doelen-bereiken {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.related-card-gemeenschappelijke-doelen-bereiken {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-gemeenschappelijke-doelen-bereiken:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.related-card-title-gemeenschappelijke-doelen-bereiken {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.related-card-text-gemeenschappelijke-doelen-bereiken {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-gemeenschappelijke-doelen-bereiken {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  display: inline-block;
  margin-top: 0.5rem;
}

.related-card-link-gemeenschappelijke-doelen-bereiken:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

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

.disclaimer-section-gemeenschappelijke-doelen-bereiken {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-top: 1px solid #e2e8f0;
  overflow: hidden;
}

.disclaimer-content-gemeenschappelijke-doelen-bereiken {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-gemeenschappelijke-doelen-bereiken {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-gemeenschappelijke-doelen-bereiken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

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

.btn-primary {
  background: #3b82f6;
  color: #0f172a;
  border-color: #3b82f6;
}

.btn-primary:hover {
  background: #2563eb;
  border-color: #2563eb;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .btn {
    width: 100%;
  }
}

.main-voortgang-meten-bijstellen {
    width: 100%;
    background: #0c1929;
    color: #ffffff;
  }

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

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

  .breadcrumbs-voortgang-meten-bijstellen {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: clamp(0.75rem, 1vw, 0.875rem);
  }

  .breadcrumb-link-voortgang-meten-bijstellen {
    color: #60a5fa;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .breadcrumb-link-voortgang-meten-bijstellen:hover {
    color: #93c5fd;
    text-decoration: underline;
  }

  .breadcrumb-separator-voortgang-meten-bijstellen {
    color: #64748b;
  }

  .breadcrumb-current-voortgang-meten-bijstellen {
    color: #bfdbfe;
  }

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

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

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

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

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

  .meta-badge-voortgang-meten-bijstellen {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    font-size: clamp(0.75rem, 1vw, 0.875rem);
    color: #bfdbfe;
  }

  .meta-badge-voortgang-meten-bijstellen i {
    color: #3b82f6;
  }

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

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

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

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

  
  .introduction-section-voortgang-meten-bijstellen {
    width: 100%;
    background: #162d50;
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .introduction-content-voortgang-meten-bijstellen {
    display: flex;
    flex-direction: row;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
  }

  .introduction-text-voortgang-meten-bijstellen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .introduction-paragraph-voortgang-meten-bijstellen {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }

  .introduction-image-voortgang-meten-bijstellen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .introduction-img-voortgang-meten-bijstellen {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    object-fit: cover;
  }

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

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

  
  .measurement-section-voortgang-meten-bijstellen {
    width: 100%;
    background: #0c1929;
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .section-header-voortgang-meten-bijstellen {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
  }

  .section-tag-voortgang-meten-bijstellen {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border-radius: 20px;
    font-size: clamp(0.75rem, 1vw, 0.875rem);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

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

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

  .measurement-cards-voortgang-meten-bijstellen {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1rem, 3vw, 2rem);
  }

  .measurement-card-voortgang-meten-bijstellen {
    flex: 1 1 280px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: clamp(1.25rem, 3vw, 2rem);
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
  }

  .measurement-card-voortgang-meten-bijstellen:hover {
    border-color: rgba(59, 130, 246, 0.5);
    background: rgba(59, 130, 246, 0.12);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  }

  .card-icon-voortgang-meten-bijstellen {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 12px;
    color: #3b82f6;
    font-size: 1.75rem;
  }

  .card-title-voortgang-meten-bijstellen {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 600;
    color: #ffffff;
  }

  .card-text-voortgang-meten-bijstellen {
    font-size: clamp(0.875rem, 1vw, 1rem);
    color: #cbd5e1;
    line-height: 1.7;
  }

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

  
  .framework-section-voortgang-meten-bijstellen {
    width: 100%;
    background: #162d50;
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .framework-content-voortgang-meten-bijstellen {
    display: flex;
    flex-direction: row;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: flex-start;
  }

  .framework-text-voortgang-meten-bijstellen {
    flex: 1 1 50%;
    max-width: 50%;
  }

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

  .framework-paragraph-voortgang-meten-bijstellen {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 2rem;
  }

  .framework-steps-voortgang-meten-bijstellen {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .framework-step-voortgang-meten-bijstellen {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 10px;
    border-left: 4px solid #3b82f6;
  }

  .step-number-voortgang-meten-bijstellen {
    font-size: 2rem;
    font-weight: 800;
    color: #3b82f6;
    flex-shrink: 0;
    min-width: 50px;
    line-height: 1;
  }

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

  .step-title-voortgang-meten-bijstellen {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    font-weight: 600;
    color: #ffffff;
  }

  .step-text-voortgang-meten-bijstellen {
    font-size: clamp(0.875rem, 1vw, 1rem);
    color: #94a3b8;
    line-height: 1.6;
  }

  .framework-image-voortgang-meten-bijstellen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .framework-img-voortgang-meten-bijstellen {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    object-fit: cover;
  }

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

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

    .framework-step-voortgang-meten-bijstellen {
      flex-direction: column;
      gap: 1rem;
    }

    .step-number-voortgang-meten-bijstellen {
      font-size: 1.75rem;
    }
  }

  
  .adaptation-section-voortgang-meten-bijstellen {
    width: 100%;
    background: #0c1929;
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .adaptation-header-voortgang-meten-bijstellen {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
  }

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

  .adaptation-subtitle-voortgang-meten-bijstellen {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    color: #94a3b8;
  }

  .adaptation-content-voortgang-meten-bijstellen {
    display: flex;
    flex-direction: row;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
  }

  .adaptation-text-voortgang-meten-bijstellen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .adaptation-paragraph-voortgang-meten-bijstellen {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }

  .featured-quote-voortgang-meten-bijstellen {
    border-left: 4px solid #3b82f6;
    padding: clamp(1.5rem, 3vw, 2rem);
    padding-left: clamp(1.5rem, 3vw, 2.5rem);
    background: rgba(59, 130, 246, 0.05);
    border-radius: 8px;
    margin: 2rem 0;
  }

  .quote-text-voortgang-meten-bijstellen {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: #bfdbfe;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
  }

  .quote-author-voortgang-meten-bijstellen {
    font-size: clamp(0.875rem, 1vw, 1rem);
    color: #94a3b8;
    font-style: normal;
  }

  .adaptation-image-voortgang-meten-bijstellen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .adaptation-img-voortgang-meten-bijstellen {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    object-fit: cover;
  }

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

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

  
  .tools-section-voortgang-meten-bijstellen {
    width: 100%;
    background: #162d50;
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .tools-header-voortgang-meten-bijstellen {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
  }

  .tools-tag-voortgang-meten-bijstellen {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border-radius: 20px;
    font-size: clamp(0.75rem, 1vw, 0.875rem);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

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

  .tools-subtitle-voortgang-meten-bijstellen {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
  }

  .tools-grid-voortgang-meten-bijstellen {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .tools-item-voortgang-meten-bijstellen {
    flex: 1 1 280px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: clamp(1.5rem, 3vw, 2rem);
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
  }

  .tools-item-title-voortgang-meten-bijstellen {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 600;
    color: #ffffff;
  }

  .tools-item-text-voortgang-meten-bijstellen {
    font-size: clamp(0.875rem, 1vw, 1rem);
    color: #cbd5e1;
    line-height: 1.7;
  }

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

  
  .conclusion-section-voortgang-meten-bijstellen {
    width: 100%;
    background: #0c1929;
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .conclusion-content-voortgang-meten-bijstellen {
    display: flex;
    flex-direction: row;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
  }

  .conclusion-text-voortgang-meten-bijstellen {
    flex: 1 1 50%;
    max-width: 50%;
  }

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

  .conclusion-paragraph-voortgang-meten-bijstellen {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }

  .conclusion-cta-voortgang-meten-bijstellen {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
  }

  .cta-button-voortgang-meten-bijstellen {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
    background: #3b82f6;
    color: #0f172a;
    border-radius: 10px;
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .cta-button-voortgang-meten-bijstellen:hover {
    background: #60a5fa;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
  }

  .cta-button-secondary-voortgang-meten-bijstellen {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
    border-radius: 10px;
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .cta-button-secondary-voortgang-meten-bijstellen:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: #60a5fa;
    color: #60a5fa;
  }

  .conclusion-image-voortgang-meten-bijstellen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .conclusion-img-voortgang-meten-bijstellen {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    object-fit: cover;
  }

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

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

    .conclusion-cta-voortgang-meten-bijstellen {
      flex-direction: column;
    }

    .cta-button-voortgang-meten-bijstellen,
    .cta-button-secondary-voortgang-meten-bijstellen {
      width: 100%;
    }
  }

  
  .related-section-voortgang-meten-bijstellen {
    width: 100%;
    background: #162d50;
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .related-header-voortgang-meten-bijstellen {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
  }

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

  .related-subtitle-voortgang-meten-bijstellen {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    color: #94a3b8;
  }

  .related-cards-voortgang-meten-bijstellen {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .related-card-voortgang-meten-bijstellen {
    flex: 1 1 280px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: clamp(1.5rem, 3vw, 2rem);
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
  }

  .related-card-voortgang-meten-bijstellen:hover {
    border-color: rgba(59, 130, 246, 0.5);
    background: rgba(59, 130, 246, 0.12);
    transform: translateY(-4px);
  }

  .related-card-title-voortgang-meten-bijstellen {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 600;
    color: #ffffff;
  }

  .related-card-text-voortgang-meten-bijstellen {
    font-size: clamp(0.875rem, 1vw, 1rem);
    color: #cbd5e1;
    line-height: 1.7;
    flex-grow: 1;
  }

  .related-link-voortgang-meten-bijstellen {
    display: inline-flex;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
    margin-top: 0.5rem;
  }

  .related-link-voortgang-meten-bijstellen:hover {
    color: #60a5fa;
    text-decoration: underline;
  }

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

  
  .disclaimer-section-voortgang-meten-bijstellen {
    width: 100%;
    background: #0c1929;
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
  }

  .disclaimer-content-voortgang-meten-bijstellen {
    padding: clamp(1.5rem, 3vw, 2rem);
    background: rgba(59, 130, 246, 0.05);
    border-left: 4px solid #3b82f6;
    border-radius: 8px;
  }

  .disclaimer-title-voortgang-meten-bijstellen {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
  }

  .disclaimer-text-voortgang-meten-bijstellen {
    font-size: clamp(0.875rem, 1vw, 1rem);
    color: #cbd5e1;
    line-height: 1.7;
  }

  @media (max-width: 768px) {
    .disclaimer-content-voortgang-meten-bijstellen {
      border-left-width: 3px;
    }
  }

  
  @media (max-width: 768px) {
    .breadcrumbs-voortgang-meten-bijstellen {
      gap: 0.5rem;
      font-size: 0.75rem;
    }
  }

.main-mindfulness-doelbereiking {
  width: 100%;
  font-family: var(--font-primary);
  color: var(--color-text-primary);
}

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

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

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

.breadcrumbs-mindfulness-doelbereiking a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-mindfulness-doelbereiking a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumb-separator-mindfulness-doelbereiking {
  color: var(--color-text-muted);
}

.breadcrumb-current-mindfulness-doelbereiking {
  color: var(--color-text-secondary);
}

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

.hero-text-block-mindfulness-doelbereiking {
  flex: 1 1 45%;
  max-width: 50%;
}

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

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

.article-meta-mindfulness-doelbereiking {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-mindfulness-doelbereiking {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.2);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #bfdbfe;
}

.meta-badge-mindfulness-doelbereiking i {
  color: var(--color-primary);
  font-size: 0.875rem;
}

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

.stat-item-mindfulness-doelbereiking {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-mindfulness-doelbereiking {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

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

.hero-image-block-mindfulness-doelbereiking {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-mindfulness-doelbereiking {
  width: 100%;
  height: auto;
  max-height: 450px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-xl);
}

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

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

  .hero-stats-mindfulness-doelbereiking {
    gap: 1rem;
  }
}

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

.introduction-content-mindfulness-doelbereiking {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-mindfulness-doelbereiking {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-mindfulness-doelbereiking {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-description-mindfulness-doelbereiking {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #334155;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-text-mindfulness-doelbereiking {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

.intro-image-mindfulness-doelbereiking {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-mindfulness-doelbereiking {
  width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .introduction-content-mindfulness-doelbereiking {
    flex-direction: column;
  }

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

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

.concept-header-mindfulness-doelbereiking {
  text-align: center;
  margin-bottom: 3rem;
}

.concept-tag-mindfulness-doelbereiking {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.2);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

.concept-subtitle-mindfulness-doelbereiking {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

.concept-cards-mindfulness-doelbereiking {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.concept-card-mindfulness-doelbereiking {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.concept-card-mindfulness-doelbereiking:hover {
  border-color: rgba(59, 130, 246, 0.5);
  background: rgba(59, 130, 246, 0.12);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
  transform: translateY(-4px);
}

.concept-card-icon-mindfulness-doelbereiking {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  font-size: 1.75rem;
}

.concept-card-title-mindfulness-doelbereiking {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

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

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

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

.practice-wrapper-mindfulness-doelbereiking {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.practice-text-mindfulness-doelbereiking {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-title-mindfulness-doelbereiking {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.practice-steps-mindfulness-doelbereiking {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.practice-step-mindfulness-doelbereiking {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
}

.practice-step-mindfulness-doelbereiking:hover {
  border-color: var(--color-primary);
  box-shadow: 0 5px 20px rgba(59, 130, 246, 0.1);
}

.practice-step-number-mindfulness-doelbereiking {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
}

.practice-step-content-mindfulness-doelbereiking {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.practice-step-title-mindfulness-doelbereiking {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.practice-step-text-mindfulness-doelbereiking {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.7;
}

.practice-image-mindfulness-doelbereiking {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-img-mindfulness-doelbereiking {
  width: 100%;
  height: auto;
  max-height: 450px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .practice-wrapper-mindfulness-doelbereiking {
    flex-direction: column;
  }

  .practice-text-mindfulness-doelbereiking,
  .practice-image-mindfulness-doelbereiking {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .practice-step-mindfulness-doelbereiking {
    padding: 1rem;
  }

  .practice-step-number-mindfulness-doelbereiking {
    font-size: 1.75rem;
    min-width: 45px;
  }
}

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

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

.benefits-image-mindfulness-doelbereiking {
  flex: 1 1 50%;
  max-width: 50%;
}

.benefits-img-mindfulness-doelbereiking {
  width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-xl);
}

.benefits-text-mindfulness-doelbereiking {
  flex: 1 1 50%;
  max-width: 50%;
}

.benefits-title-mindfulness-doelbereiking {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.benefits-quote-mindfulness-doelbereiking {
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  padding-left: 2rem;
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
}

.quote-text-mindfulness-doelbereiking {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: #ffffff;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.quote-cite-mindfulness-doelbereiking {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  font-style: normal;
}

.benefits-list-mindfulness-doelbereiking {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item-mindfulness-doelbereiking {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.benefit-item-mindfulness-doelbereiking i {
  color: var(--color-primary);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.benefit-text-mindfulness-doelbereiking {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  line-height: 1.7;
}

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

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

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

.implementation-header-mindfulness-doelbereiking {
  text-align: center;
  margin-bottom: 3rem;
}

.implementation-title-mindfulness-doelbereiking {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.implementation-subtitle-mindfulness-doelbereiking {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.implementation-grid-mindfulness-doelbereiking {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.implementation-card-mindfulness-doelbereiking {
  flex: 1 1 280px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.implementation-card-mindfulness-doelbereiking:hover {
  border-color: var(--color-primary);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
  transform: translateY(-4px);
}

.implementation-time-mindfulness-doelbereiking {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.implementation-card-title-mindfulness-doelbereiking {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.implementation-card-text-mindfulness-doelbereiking {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.7;
}

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

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

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

.conclusion-title-mindfulness-doelbereiking {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.conclusion-text-mindfulness-doelbereiking {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.cta-box-mindfulness-doelbereiking {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
  text-align: center;
  margin-top: 2rem;
}

.cta-title-mindfulness-doelbereiking {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.cta-text-mindfulness-doelbereiking {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

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

.cta-button-mindfulness-doelbereiking:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

.related-header-mindfulness-doelbereiking {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-mindfulness-doelbereiking {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.related-subtitle-mindfulness-doelbereiking {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.related-cards-mindfulness-doelbereiking {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.related-card-mindfulness-doelbereiking {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.related-card-mindfulness-doelbereiking:hover {
  border-color: var(--color-primary);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
  transform: translateY(-4px);
}

.related-card-content-mindfulness-doelbereiking {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.related-card-title-mindfulness-doelbereiking {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.related-card-description-mindfulness-doelbereiking {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.7;
  flex-grow: 1;
}

.related-card-link-mindfulness-doelbereiking {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.2s ease;
  width: fit-content;
}

.related-card-link-mindfulness-doelbereiking:hover {
  color: var(--color-primary-hover);
  gap: 0.75rem;
}

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

.disclaimer-section-mindfulness-doelbereiking {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  overflow: hidden;
}

.disclaimer-content-mindfulness-doelbereiking {
  max-width: 900px;
  margin: 0 auto;
}

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

.disclaimer-text-mindfulness-doelbereiking {
  font-size: clamp(0.75rem, 1vw + 0.4rem, 0.9375rem);
  color: #94a3b8;
  line-height: 1.8;
}

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

  .stat-item-mindfulness-doelbereiking {
    text-align: center;
  }

  .practice-step-mindfulness-doelbereiking {
    flex-direction: column;
  }

  .practice-step-number-mindfulness-doelbereiking {
    align-self: flex-start;
  }
}

@media (max-width: 480px) {
  .article-meta-mindfulness-doelbereiking {
    flex-direction: column;
    gap: 0.5rem;
  }

  .meta-badge-mindfulness-doelbereiking {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-stats-mindfulness-doelbereiking {
    justify-content: space-between;
    gap: 1rem;
  }

  .stat-number-mindfulness-doelbereiking {
    font-size: 1.5rem;
  }

  .stat-label-mindfulness-doelbereiking {
    font-size: 0.7rem;
  }
}

:root {
  --color-bg-primary: #0c1929;
  --color-bg-secondary: #162d50;
  --color-bg-tertiary: #1e3a5f;
  --color-bg-card: rgba(59, 130, 246, 0.08);
  --color-text-primary: #ffffff;
  --color-text-secondary: #bfdbfe;
  --color-text-muted: #64748b;
  --color-primary: #3b82f6;
  --color-primary-hover: #60a5fa;
  --color-secondary: #06b6d4;
  --color-tertiary: #8b5cf6;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(59, 130, 246, 0.15);
  --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.4);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

* {
  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);
}

.doelbereik-about-main {
  width: 100%;
  background: var(--color-bg-primary);
}

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

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

.origin-hero-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.origin-stats-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3.5rem);
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

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

.origin-stat-number-about {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.origin-stat-label-about {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

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

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

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

.transformation-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.transformation-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.transformation-subtitle-about {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.journey-phase-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.journey-year-about {
  font-size: 0.875rem;
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.journey-title-about {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.journey-description-about {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

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

.methodology-intro-about {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.methodology-intro-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.methodology-intro-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.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-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.1);
  transition: all 0.3s ease;
}

.methodology-step-about:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.2);
  transform: translateX(4px);
}

.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-body-about {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.methodology-step-title-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 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.7;
}

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

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

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

.principles-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.principles-subtitle-about {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.principles-grid-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.principle-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.15);
  transition: all 0.3s ease;
}

.principle-card-about:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: var(--color-primary);
  transform: translateY(-4px);
}

.principle-icon-about {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.principle-title-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.principle-text-about {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

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

.commitment-intro-about {
  max-width: 750px;
}

.commitment-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.commitment-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.commitment-quote-about {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-secondary);
  background: rgba(6, 182, 212, 0.08);
  border-radius: var(--radius-md);
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.commitment-quote-text-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-style: italic;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.commitment-quote-author-about {
  font-size: 0.875rem;
  color: var(--color-secondary);
  font-weight: 600;
}

.disclaimer-section-about {
  background: var(--color-bg-primary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  overflow: hidden;
}

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

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

.disclaimer-icon-about {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.disclaimer-title-about {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

.disclaimer-text-about {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .origin-hero-about {
    padding: 5rem 0;
  }

  .transformation-section-about {
    padding: 5rem 0;
  }

  .methodology-section-about {
    padding: 5rem 0;
  }

  .principles-section-about {
    padding: 5rem 0;
  }

  .commitment-section-about {
    padding: 5rem 0;
  }

  .principle-card-about {
    flex: 1 1 300px;
  }
}

@media (min-width: 1024px) {
  .origin-hero-about {
    padding: 6rem 0;
  }

  .transformation-section-about {
    padding: 6rem 0;
  }

  .methodology-section-about {
    padding: 6rem 0;
  }

  .principles-section-about {
    padding: 6rem 0;
  }

  .commitment-section-about {
    padding: 6rem 0;
  }

  .methodology-step-about {
    flex-direction: row;
    align-items: flex-start;
  }
}

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

.growth-legal .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 5vw, 2rem);
  padding-right: clamp(1rem, 5vw, 2rem);
}

.growth-legal-hero {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.growth-legal-hero h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.growth-legal-hero-meta {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.growth-legal-section {
  background: var(--color-bg-primary);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

.growth-legal-section h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 600;
  line-height: 1.25;
  color: #ffffff;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.growth-legal-section h3 {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-secondary);
}

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

.growth-legal-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.growth-legal-section li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  padding-left: 1.5rem;
  position: relative;
}

.growth-legal-section li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: 600;
}

.growth-legal-contact {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.growth-legal-contact-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.growth-legal-contact h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 600;
  line-height: 1.25;
  color: #ffffff;
}

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

.growth-legal-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.growth-legal-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.growth-legal-contact-label {
  font-weight: 600;
  color: var(--color-secondary);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.growth-legal-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) {
  .growth-legal-hero {
    padding: 3rem 0;
  }

  .growth-legal-section {
    padding: 4rem 0;
  }

  .growth-legal-contact {
    padding: 4rem 0;
  }

  .growth-legal-section-content {
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .growth-legal-hero {
    padding: 4rem 0;
  }

  .growth-legal-section {
    padding: 5rem 0;
  }

  .growth-legal-contact {
    padding: 5rem 0;
  }

  .growth-legal-section-content {
    gap: 2.5rem;
  }
}

.thank-page {
  width: 100%;
}

.thank-section {
  background: var(--color-bg-primary);
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

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

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(4rem, 12vw, 7rem);
  height: clamp(4rem, 12vw, 7rem);
  background: rgba(6, 182, 212, 0.15);
  border-radius: var(--radius-xl);
  animation: iconBounce 0.6s ease-out;
}

.thank-icon i {
  font-size: clamp(2rem, 8vw, 4rem);
  color: var(--color-secondary);
}

@keyframes iconBounce {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.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;
  letter-spacing: -0.5px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.thank-lead {
  color: var(--color-secondary);
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2.5vw + 0.5rem, 1.375rem);
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-description {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  max-width: 550px;
  margin: 0 auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-checklist {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.checklist-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  padding: clamp(0.75rem, 2vw, 1rem);
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-primary);
}

.checklist-item i {
  color: var(--color-secondary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  flex-shrink: 0;
  margin-top: 2px;
}

.checklist-item span {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw + 0.3rem, 1rem);
  line-height: 1.6;
  text-align: left;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw + 0.3rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

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

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

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

@media (min-width: 768px) {
  .thank-section {
    min-height: 100vh;
    padding: 2rem 0;
  }

  .thank-content {
    gap: 2.5rem;
  }

  .checklist-item {
    padding: 1rem 1.25rem;
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: 3rem 0;
  }

  .thank-content {
    gap: 3rem;
  }

  .btn:hover {
    box-shadow: var(--shadow-lg);
  }
}

@media (min-width: 1440px) {
  .thank-section {
    padding: 4rem 0;
  }
}

.error-page {
  width: 100%;
  display: flex;
  align-items: stretch;
  min-height: 100vh;
}

.error-section {
  width: 100%;
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  min-height: 100vh;
  position: relative;
}

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

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw + 1rem, 10rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  margin: 0;
  text-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
  letter-spacing: -0.02em;
  animation: float-up 3s ease-in-out infinite;
}

@keyframes float-up {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.error-icon {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--color-secondary);
  opacity: 0.8;
  animation: rotate-gentle 4s linear infinite;
}

@keyframes rotate-gentle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0;
  max-width: 500px;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-subtext {
  margin: clamp(0.5rem, 2vw, 1rem) 0;
}

.error-hint {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-muted);
  margin: 0;
  font-style: italic;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin: clamp(1rem, 3vw, 2rem) 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn i {
  font-size: 1.125em;
  transition: transform 0.3s ease;
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover i {
  transform: translateX(3px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
}

.error-motivation {
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(139, 92, 246, 0.1);
  border-left: 4px solid var(--color-tertiary);
  border-radius: var(--radius-md);
  animation: slide-in 0.6s ease-out;
}

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

.motivation-text {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.motivation-text i {
  color: var(--color-tertiary);
  font-size: 1.25em;
  flex-shrink: 0;
}

.error-decoration {
  position: absolute;
  font-size: 8rem;
  color: rgba(59, 130, 246, 0.05);
  pointer-events: none;
  z-index: 0;
}

.error-message-wrapper {
  position: relative;
  z-index: 1;
}

.error-decoration-top {
  top: 10%;
  left: 5%;
  animation: float-decoration 5s ease-in-out infinite;
}

.error-decoration-bottom {
  bottom: 10%;
  right: 5%;
  animation: float-decoration 6s ease-in-out infinite reverse;
}

@keyframes float-decoration {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(20px) rotate(10deg);
  }
}

@media (min-width: 768px) {
  .error-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
    min-height: 100vh;
  }

  .error-code {
    animation: float-up 4s ease-in-out infinite;
  }

  .error-decoration {
    font-size: 12rem;
  }

  .error-motivation {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }

  .error-actions {
    flex-direction: row;
    gap: clamp(1rem, 3vw, 2rem);
  }

  .error-decoration-top {
    left: 8%;
    top: 15%;
  }

  .error-decoration-bottom {
    right: 8%;
    bottom: 15%;
  }
}

@media (min-width: 1440px) {
  .error-section {
    min-height: 100vh;
  }

  .error-code {
    font-size: 10rem;
  }

  .error-title {
    font-size: 2.75rem;
  }

  .error-description {
    font-size: 1.125rem;
  }
}

.btn:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

@media print {
  .error-section {
    min-height: auto;
    padding: 2rem 0;
  }

  .error-decoration {
    display: none;
  }

  .error-code {
    animation: none;
  }

  .error-icon {
    animation: none;
  }
}

.footer {
  position: relative;
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(1.5rem, 4vw, 2rem);
  overflow: hidden;
  border-top: 1px solid rgba(59, 130, 246, 0.1);
}

.footer-deco-glow-1 {
  position: absolute;
  top: -100px;
  left: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.footer-deco-glow-2 {
  position: absolute;
  bottom: -80px;
  right: 15%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.footer-deco-line {
  position: absolute;
  top: 40%;
  right: 5%;
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
  z-index: 1;
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

.footer-about-title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

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

.footer-navigation,
.footer-contact,
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.footer-nav-links,
.footer-legal-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link,
.footer-legal-link {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

.footer-link:hover,
.footer-legal-link:hover {
  color: var(--color-primary);
  padding-left: 4px;
}

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

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

.footer-bottom {
  position: relative;
  z-index: 10;
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(59, 130, 246, 0.1);
  text-align: center;
}

.footer-copyright {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
img{
  max-width: 100%;
}