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

:root {
  
  
  
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #0d1526;
  --color-bg-tertiary: #111d2f;
  --color-bg-card: rgba(255, 255, 255, 0.05);
  --color-bg-card-hover: rgba(255, 255, 255, 0.08);
  
  
  --color-text-primary: #ffffff;
  --color-text-secondary: #94a3b8;
  --color-text-muted: #64748b;
  
  
  --color-primary: #f59e0b;
  --color-primary-hover: #d97706;
  --color-primary-light: #fbbf24;
  --color-secondary: #3b82f6;
  --color-secondary-hover: #2563eb;
  
  
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-info: #06b6d4;
  
  
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Space Grotesk', 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;
  --radius-2xl: 20px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.25);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 20px rgba(245, 158, 11, 0.15);
  
  
  --transition-fast: 150ms ease-in-out;
  --transition-base: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;
  
  
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal: 1040;
}

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

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

body {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.01em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-lg);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  margin-bottom: var(--space-md);
}

h4 {
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}

h5 {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
}

h6 {
  font-size: 1rem;
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-secondary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.flex {
  display: flex;
}

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

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

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

.grid {
  display: grid;
}

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

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

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

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

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

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

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

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

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

.mx-auto { margin-left: auto; margin-right: auto; }
.my-auto { margin-top: auto; margin-bottom: auto; }

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

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

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

.btn-primary {
  background: var(--color-primary);
  color: #1f2937;
  font-weight: 700;
}

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

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

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

.btn-secondary:hover {
  background: var(--color-bg-card-hover);
  border-color: var(--color-secondary-hover);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.1);
}

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

.btn-ghost:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: var(--color-primary-light);
}

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

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

.btn-block {
  width: 100%;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.card {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

.card:hover {
  background: var(--color-bg-card-hover);
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-header {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-body {
  margin-bottom: var(--space-md);
}

.card-footer {
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.card-subtitle {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-xs) var(--space-md);
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

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

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

.badge-error {
  background: rgba(239, 68, 68, 0.15);
  color: var(--color-error);
  border-color: rgba(239, 68, 68, 0.3);
}

input,
textarea,
select {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-bg-tertiary);
  color: var(--color-text-primary);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all var(--transition-base);
}

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

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  background: rgba(245, 158, 11, 0.05);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

input:disabled,
textarea:disabled,
select:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

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

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

li::marker {
  color: var(--color-primary);
  font-weight: 600;
}

code {
  background: var(--color-bg-tertiary);
  color: var(--color-primary);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  font-family: 'Courier New', monospace;
  font-size: 0.875em;
}

pre {
  background: var(--color-bg-tertiary);
  color: var(--color-text-secondary);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  margin-bottom: var(--space-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

blockquote {
  border-left: 4px solid var(--color-primary);
  padding-left: var(--space-md);
  margin: var(--space-lg) 0;
  color: var(--color-text-secondary);
  font-style: italic;
  font-size: 1.125rem;
}

hr {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: var(--space-lg) 0;
}

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

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

th {
  padding: var(--space-md);
  text-align: left;
  font-weight: 600;
  color: var(--color-text-primary);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

td {
  padding: var(--space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-secondary);
}

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

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

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

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

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

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

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

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

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

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

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

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

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.2);
  }
  50% {
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
  }
}

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

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

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

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

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

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

.animate-glow {
  animation: glow 2s ease-in-out infinite;
}

@media (max-width: 1024px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.875rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.875rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .grid-2 {
    grid-template-columns: 1fr;
  }
  
  .btn {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.25rem;
  }
  
  h3 {
    font-size: 1.125rem;
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
  
  .card {
    padding: var(--space-md);
  }
  
  .btn-block {
    width: 100%;
  }
}

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

@media (prefers-color-scheme: dark) {
  body {
    background: var(--color-bg-primary);
    color: var(--color-text-primary);
  }
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.header-objective-nav {
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-bg-tertiary);
  position: static;
  z-index: var(--z-sticky);
  width: 100%;
}

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

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

.header-objective-nav-brand:hover {
  opacity: 0.8;
}

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

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

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

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

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

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

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

.header-objective-nav-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.header-objective-nav-mobile-toggle:hover {
  opacity: 0.7;
}

.header-objective-nav-hamburger {
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 1px;
  transition: all var(--transition-base);
}

.header-objective-nav-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg-primary);
  z-index: calc(var(--z-sticky) - 1);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

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

.header-objective-nav-mobile-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid var(--color-bg-tertiary);
}

.header-objective-nav-mobile-close {
  background: transparent;
  border: none;
  color: var(--color-text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: all var(--transition-base);
}

.header-objective-nav-mobile-close:hover {
  opacity: 0.7;
}

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

.header-objective-nav-mobile-link {
  padding: 1rem 1.5rem;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: all var(--transition-base);
  border-bottom: 1px solid var(--color-bg-tertiary);
}

.header-objective-nav-mobile-link:hover {
  color: var(--color-primary);
  background: var(--color-bg-secondary);
}

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

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

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

  .header-objective-nav-cta-button {
    display: block;
  }

  .header-objective-nav-mobile-toggle {
    display: none;
  }

  .header-objective-nav-mobile-menu {
    display: none;
  }
}

@media (max-width: 767px) {
  .header-objective-nav-container {
    padding: 0.75rem clamp(1rem, 4vw, 2rem);
  }

  .header-objective-nav-logo-text {
    font-size: 1.1rem;
  }
}

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

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

.goals-hub p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

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

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

.hero-stats-index {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

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

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

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

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

.hero-buttons-index .btn {
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 2.5vw, 2rem);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
}

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

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

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

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

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

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

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

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

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

  .hero-image-index {
    max-height: 280px;
  }
}

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

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

.benefits-header-index {
  text-align: center;
}

.section-tag-index {
  display: inline-block;
  padding: 0.4rem 1.25rem;
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

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

.benefits-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

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

.benefit-card-index {
  flex: 1 1 clamp(250px, 30vw, 330px);
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all var(--transition-base);
}

.benefit-card-index:hover {
  background: var(--color-bg-card-hover);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-icon-index {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--color-primary);
  height: 60px;
  display: flex;
  align-items: center;
}

.card-title-index {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.3;
}

.card-text-index {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

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

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

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

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

.process-header-index {
  text-align: center;
}

.process-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.process-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

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

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

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

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

.step-title-index {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

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

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

  .step-number-index {
    text-align: center;
  }

  .step-content-index {
    text-align: center;
  }
}

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

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

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

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

.featured-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

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

.featured-card-index {
  flex: 1 1 clamp(280px, 32vw, 380px);
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

.featured-card-index:hover {
  background: var(--color-bg-card-hover);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-image-wrapper-index {
  width: 100%;
  height: auto;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.card-image-index {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform var(--transition-base);
}

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

.card-content-index {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex: 1;
}

.card-title-featured-index {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.card-description-index {
  font-size: clamp(0.85rem, 0.95vw, 0.975rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.read-more-link-index {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  transition: all var(--transition-base);
  text-decoration: none;
  margin-top: auto;
}

.read-more-link-index:hover {
  color: var(--color-primary-light);
  transform: translateX(4px);
}

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

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

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

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

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

.stats-header-index {
  text-align: center;
}

.stats-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.stats-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

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

.stat-card-index {
  flex: 1 1 clamp(240px, 22vw, 300px);
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: all var(--transition-base);
}

.stat-card-index:hover {
  background: var(--color-bg-card-hover);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-4px);
}

.stat-value-index {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
  line-height: 1;
}

.stat-name-index {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.3;
}

.stat-desc-index {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin: 0;
}

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

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

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

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

.faq-header-index {
  text-align: center;
}

.faq-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.faq-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

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

.faq-item-index {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-question-index {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--color-primary);
  font-weight: 700;
  margin: 0;
}

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

@media (max-width: 768px) {
  .faq-items-index {
    gap: var(--space-md);
  }

  .faq-item-index {
    padding: var(--space-md);
  }
}

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

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

.cta-box-index {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(59, 130, 246, 0.1));
  border: 1.5px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3.5rem);
  text-align: center;
  max-width: 700px;
  width: 100%;
}

.cta-title-index {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.cta-text-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.cta-box-index .btn {
  margin: 0 auto;
}

@media (max-width: 768px) {
  .cta-box-index {
    padding: var(--space-lg);
  }

  .cta-box-index .btn {
    width: 100%;
  }
}

.cookie-banner-index {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-tertiary);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 2vw, 1.5rem);
  backdrop-filter: blur(10px);
}

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

.cookie-banner-text-index {
  color: var(--color-text-secondary);
  margin: 0;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  line-height: 1.5;
  flex: 1 1 auto;
}

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

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: 0.6rem 1.25rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: clamp(0.8rem, 0.95vw, 0.9rem);
  transition: all var(--transition-base);
  white-space: nowrap;
}

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

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

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

.cookie-btn-decline-index:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--color-text-primary);
}

@media (max-width: 768px) {
  .cookie-banner-index {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

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

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

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

@media (max-width: 480px) {
  .cookie-banner-index {
    padding: var(--space-sm);
    gap: var(--space-sm);
  }

  .cookie-btn-accept-index,
  .cookie-btn-decline-index {
    flex: 1 1 100%;
    padding: 0.5rem 1rem;
  }
}

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

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

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

.footer-about,
.footer-nav,
.footer-contact,
.footer-legal {
  display: block;
}

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

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

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

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

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

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

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

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

.footer-contact p + p {
  margin-top: 0.5rem;
}

.footer-copyright {
  border-top: 1px solid var(--color-bg-card);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}

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

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

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

  .footer-nav,
  .footer-contact,
  .footer-legal {
    flex: 1 1 200px;
  }

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

@media (max-width: 767px) {
  .footer-nav-list,
  .footer-legal-list {
    flex-direction: column;
    gap: clamp(0.5rem, 1vw, 0.75rem);
  }

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

.category-page-project-management {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  overflow: hidden;
}

.hero-section-project-management {
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(245, 158, 11, 0.1);
}

.hero-content-project-management {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 900px;
}

.hero-header-project-management {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-title-project-management {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-subtitle-project-management {
  font-size: clamp(1rem, 2vw + 0.3rem, 1.25rem);
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero-accent-project-management {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(245, 158, 11, 0.08);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
}

.hero-description-project-management {
  font-size: clamp(0.95rem, 1.5vw + 0.3rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: 0;
}

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

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

.posts-header-project-management {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.posts-title-project-management {
  font-size: clamp(1.75rem, 4vw + 0.3rem, 2.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.posts-subtitle-project-management {
  font-size: clamp(0.95rem, 1.5vw + 0.3rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

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

.card-project-management {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1 1 clamp(280px, 100%, 380px);
  background: var(--color-bg-card);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: var(--radius-xl);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
  overflow: hidden;
}

.card-project-management:hover {
  background: var(--color-bg-card-hover);
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.1);
  transform: translateY(-4px);
}

.card-image-project-management {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.card-body-project-management {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.card-title-project-management {
  font-size: clamp(1.1rem, 2vw + 0.3rem, 1.35rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.35;
  margin: 0;
}

.card-description-project-management {
  font-size: clamp(0.9rem, 1.5vw + 0.2rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.card-meta-project-management {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 0 0.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.card-reading-time-project-management,
.card-level-project-management,
.card-date-project-management {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-muted);
}

.card-reading-time-project-management i,
.card-level-project-management i,
.card-date-project-management i {
  color: var(--color-primary);
  font-size: 0.9rem;
}

.card-link-project-management {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-base);
  text-decoration: none;
  border: 1px solid rgba(245, 158, 11, 0.25);
  width: fit-content;
}

.card-link-project-management:hover {
  background: rgba(245, 158, 11, 0.25);
  border-color: var(--color-primary);
  color: var(--color-primary-light);
  text-decoration: none;
}

.insights-section-project-management {
  background: var(--color-bg-secondary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(245, 158, 11, 0.1);
  border-bottom: 1px solid rgba(245, 158, 11, 0.1);
}

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

.insights-header-project-management {
  text-align: center;
}

.insights-title-project-management {
  font-size: clamp(1.5rem, 3.5vw + 0.3rem, 2.25rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.3;
  max-width: 800px;
  margin: 0 auto;
}

.insights-body-project-management {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.insights-text-project-management {
  font-size: clamp(0.95rem, 1.5vw + 0.2rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: 0;
}

.insights-highlight-project-management {
  font-size: clamp(0.95rem, 1.5vw + 0.2rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: 1.8;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(245, 158, 11, 0.1);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  margin: 0.5rem 0;
  font-weight: 500;
}

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

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

.framework-header-project-management {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.framework-title-project-management {
  font-size: clamp(1.75rem, 4vw + 0.3rem, 2.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.framework-subtitle-project-management {
  font-size: clamp(0.95rem, 1.5vw + 0.3rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

.framework-steps-project-management {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.step-item-project-management {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}

.step-item-project-management:hover {
  background: var(--color-bg-card-hover);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-2px);
}

.step-number-project-management {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(2.5rem, 5vw, 3rem);
  height: clamp(2.5rem, 5vw, 3rem);
  background: var(--color-primary);
  color: #1f2937;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  flex-shrink: 0;
}

.step-title-project-management {
  font-size: clamp(1.1rem, 2vw + 0.2rem, 1.35rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.3;
  margin: 0;
}

.step-text-project-management {
  font-size: clamp(0.9rem, 1.5vw + 0.2rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1024px) {
  .posts-grid-project-management {
    gap: clamp(1.25rem, 3vw, 2rem);
  }

  .card-project-management {
    flex: 1 1 clamp(280px, 48%, 380px);
  }

  .framework-steps-project-management {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-section-project-management {
    padding: clamp(2.5rem, 8vw, 4rem) 0;
  }

  .posts-grid-project-management {
    gap: 1.25rem;
  }

  .card-project-management {
    flex: 1 1 100%;
  }

  .insights-body-project-management {
    gap: 1.25rem;
  }

  .framework-steps-project-management {
    grid-template-columns: 1fr;
  }

  .posts-section-project-management,
  .insights-section-project-management,
  .framework-section-project-management {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
  }
}

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

  .posts-title-project-management,
  .framework-title-project-management {
    font-size: 1.5rem;
  }

  .card-project-management {
    padding: 1rem;
    gap: 1rem;
  }

  .card-title-project-management {
    font-size: 1.1rem;
  }

  .card-meta-project-management {
    gap: 0.75rem;
    font-size: 0.8rem;
  }

  .step-number-project-management {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1rem;
  }
}

.main-weekplanning-strategie {
  width: 100%;
  background: #ffffff;
  overflow: hidden;
}

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

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

.hero-text-weekplanning-strategie {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-weekplanning-strategie {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-description-weekplanning-strategie {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-weekplanning-strategie {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.meta-item-weekplanning-strategie {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

.meta-divider-weekplanning-strategie {
  color: #cbd5e1;
}

.hero-image-weekplanning-strategie {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-weekplanning-strategie {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

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

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

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

.intro-text-weekplanning-strategie {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-weekplanning-strategie {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-weekplanning-strategie {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.intro-image-weekplanning-strategie {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-weekplanning-strategie img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: block;
}

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

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

.principles-header-weekplanning-strategie {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.principles-title-weekplanning-strategie {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.principles-subtitle-weekplanning-strategie {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #64748b;
  line-height: 1.6;
}

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

.principle-card-weekplanning-strategie {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: all 0.3s ease;
}

.principle-card-weekplanning-strategie:hover {
  border-color: #059669;
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.1);
  transform: translateY(-4px);
}

.principle-number-weekplanning-strategie {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #059669;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.principle-title-weekplanning-strategie {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.principle-text-weekplanning-strategie {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .principles-grid-weekplanning-strategie {
    flex-direction: column;
  }
  
  .principle-card-weekplanning-strategie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.process-title-weekplanning-strategie {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.process-subtitle-weekplanning-strategie {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #64748b;
  line-height: 1.6;
}

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

.step-wrapper-weekplanning-strategie {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.step-wrapper-weekplanning-strategie:nth-child(even) {
  flex-direction: row-reverse;
}

.step-content-weekplanning-strategie {
  flex: 1 1 50%;
  max-width: 50%;
}

.step-number-weekplanning-strategie {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.step-title-weekplanning-strategie {
  font-size: clamp(1.1rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.step-text-weekplanning-strategie {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.8;
}

.step-image-weekplanning-strategie {
  flex: 1 1 50%;
  max-width: 50%;
}

.step-image-weekplanning-strategie img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: block;
}

@media (max-width: 768px) {
  .step-wrapper-weekplanning-strategie,
  .step-wrapper-weekplanning-strategie:nth-child(even) {
    flex-direction: column;
  }
  
  .step-content-weekplanning-strategie,
  .step-image-weekplanning-strategie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.obstacles-section-weekplanning-strategie {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.obstacles-header-weekplanning-strategie {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.obstacles-title-weekplanning-strategie {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.obstacles-subtitle-weekplanning-strategie {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #64748b;
  line-height: 1.6;
}

.obstacle-wrapper-weekplanning-strategie {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.obstacle-wrapper-weekplanning-strategie:nth-child(odd) {
  flex-direction: row-reverse;
}

.obstacle-text-weekplanning-strategie {
  flex: 1 1 50%;
  max-width: 50%;
}

.obstacle-title-weekplanning-strategie {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.obstacle-text-body-weekplanning-strategie {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.8;
}

.obstacle-image-weekplanning-strategie {
  flex: 1 1 50%;
  max-width: 50%;
}

.obstacle-image-weekplanning-strategie img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: block;
}

@media (max-width: 768px) {
  .obstacle-wrapper-weekplanning-strategie,
  .obstacle-wrapper-weekplanning-strategie:nth-child(odd) {
    flex-direction: column;
  }
  
  .obstacle-text-weekplanning-strategie,
  .obstacle-image-weekplanning-strategie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.summary-header-weekplanning-strategie {
  text-align: center;
}

.summary-title-weekplanning-strategie {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.summary-text-weekplanning-strategie {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #475569;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.summary-callout-weekplanning-strategie {
  background: linear-gradient(135deg, #e0f2fe 0%, #ecfdf5 100%);
  border: 1px solid #a7f3d0;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.callout-title-weekplanning-strategie {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.callout-text-weekplanning-strategie {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

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

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

.disclaimer-section-weekplanning-strategie {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-content-weekplanning-strategie {
  background: #ffffff;
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.disclaimer-title-weekplanning-strategie {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.disclaimer-text-weekplanning-strategie {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.8;
}

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

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

.related-title-weekplanning-strategie {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-subtitle-weekplanning-strategie {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #64748b;
  line-height: 1.6;
}

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

.related-card-weekplanning-strategie {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-weekplanning-strategie:hover {
  border-color: #2563eb;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
  transform: translateY(-4px);
}

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

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

.related-card-title-weekplanning-strategie {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  font-weight: 700;
  color: #0f172a;
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem) 0.5rem;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-text-weekplanning-strategie {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: #64748b;
  padding: 0 clamp(1rem, 2vw, 1.5rem) 1rem;
  line-height: 1.6;
}

.related-link-weekplanning-strategie {
  display: inline-block;
  padding: 0 clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem);
  color: #2563eb;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  transition: color 0.3s ease;
  text-decoration: none;
}

.related-link-weekplanning-strategie:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

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

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

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

.main-smart-doelen-opstellen {
  background: #0a0f1e;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

a {
  color: #f59e0b;
  text-decoration: none;
  transition: color 300ms ease-in-out;
}

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

.breadcrumbs-smart-doelen-opstellen {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: #94a3b8;
}

.breadcrumbs-smart-doelen-opstellen a {
  color: #f59e0b;
  font-weight: 500;
  transition: color 300ms ease-in-out;
}

.breadcrumbs-smart-doelen-opstellen a:hover {
  color: #fbbf24;
}

.breadcrumbs-smart-doelen-opstellen span {
  color: #64748b;
}

.hero-section-smart-doelen-opstellen {
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1526 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.hero-meta-smart-doelen-opstellen {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.hero-title-smart-doelen-opstellen {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle-smart-doelen-opstellen {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-stats-smart-doelen-opstellen {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  flex-wrap: wrap;
}

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

.stat-number-smart-doelen-opstellen {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #f59e0b;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.02em;
}

.stat-label-smart-doelen-opstellen {
  font-size: 0.875rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.hero-image-wrapper-smart-doelen-opstellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-smart-doelen-opstellen {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  max-height: 500px;
  object-fit: cover;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero-content-smart-doelen-opstellen {
    flex-direction: column;
  }
  
  .hero-text-wrapper-smart-doelen-opstellen,
  .hero-image-wrapper-smart-doelen-opstellen {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .hero-stats-smart-doelen-opstellen {
    gap: 1.5rem;
  }
}

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

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

.intro-text-smart-doelen-oostellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-smart-doelen-oostellen {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-paragraph-smart-doelen-oostellen {
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.8;
}

.intro-image-smart-doelen-oostellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-smart-doelen-oostellen {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  max-height: 400px;
  object-fit: cover;
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.25);
}

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

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

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

.understanding-text-smart-doelen-oostellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.understanding-title-smart-doelen-oostellen {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.understanding-paragraph-smart-doelen-oostellen {
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.8;
}

.smart-box-smart-doelen-oostellen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.smart-item-smart-doelen-oostellen {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 300ms ease-in-out;
}

.smart-item-smart-doelen-oostellen:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.4);
  transform: translateY(-2px);
}

.smart-letter-smart-doelen-oostellen {
  font-size: 1.75rem;
  color: #f59e0b;
  font-weight: 800;
  margin-bottom: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
}

.smart-word-smart-doelen-oostellen {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.smart-text-smart-doelen-oostellen {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.7;
}

.understanding-image-smart-doelen-oostellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.understanding-image-smart-doelen-oostellen {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  max-height: 450px;
  object-fit: cover;
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.25);
}

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

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

.practical-content-smart-doelen-oostellen {
  display: flex;
  flex-direction: column;
}

.practical-title-smart-doelen-oostellen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin-bottom: 3rem;
  line-height: 1.2;
  text-align: center;
}

.steps-wrapper-smart-doelen-oostellen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-card-smart-doelen-oostellen {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
  transition: all 300ms ease-in-out;
}

.step-card-smart-doelen-oostellen:hover {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateX(8px);
}

.step-number-smart-doelen-oostellen {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #f59e0b;
  font-family: 'Space Grotesk', sans-serif;
  flex-shrink: 0;
  min-width: 60px;
}

.step-body-smart-doelen-oostellen {
  flex: 1;
}

.step-title-smart-doelen-oostellen {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.step-text-smart-doelen-oostellen {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .step-card-smart-doelen-oostellen {
    flex-direction: column;
    gap: 1rem;
  }
}

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

.examples-content-smart-doelen-oostellen {
  display: flex;
  flex-direction: column;
}

.examples-title-smart-doelen-oostellen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin-bottom: 3rem;
  line-height: 1.2;
  text-align: center;
}

.example-wrapper-smart-doelen-oostellen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.example-text-smart-doelen-oostellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.example-heading-smart-doelen-oostellen {
  font-size: 1.25rem;
  color: #f59e0b;
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
  font-weight: 700;
}

.example-heading-smart-doelen-oostellen:first-child {
  margin-top: 0;
}

.example-intro-smart-doelen-oostellen {
  color: #cbd5e1;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.example-text-smart-doelen-oostellen p:not(.example-intro-smart-doelen-oostellen) {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.example-image-smart-doelen-oostellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.example-image-smart-doelen-oostellen {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  max-height: 450px;
  object-fit: cover;
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.25);
}

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

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

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

.mistakes-text-smart-doelen-oostellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.mistakes-intro-smart-doelen-oostellen {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  margin-bottom: 2rem;
  line-height: 1.8;
  font-style: italic;
}

.mistake-item-smart-doelen-oostellen {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mistake-item-smart-doelen-oostellen:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.mistake-heading-smart-doelen-oostellen {
  font-size: 1.125rem;
  color: #f59e0b;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.mistake-text-smart-doelen-oostellen {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.7;
}

.mistakes-image-smart-doelen-oostellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.mistakes-image-smart-doelen-oostellen {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  max-height: 450px;
  object-fit: cover;
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.25);
}

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

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

.tracking-content-smart-doelen-oostellen {
  display: flex;
  flex-direction: column;
}

.tracking-title-smart-doelen-oostellen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-align: center;
}

.tracking-intro-smart-doelen-oostellen {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tracking-methods-smart-doelen-oostellen {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.method-card-smart-doelen-oostellen {
  flex: 1 1 calc(50% - 0.75rem);
  min-width: 250px;
  max-width: 350px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 300ms ease-in-out;
}

.method-card-smart-doelen-oostellen:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.4);
  transform: translateY(-4px);
}

.method-title-smart-doelen-oostellen {
  font-size: 1.125rem;
  color: #f59e0b;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.method-text-smart-doelen-oostellen {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.7;
}

.tracking-tip-smart-doelen-oostellen {
  background: rgba(245, 158, 11, 0.1);
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.tracking-tip-text-smart-doelen-oostellen {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.tracking-tip-text-smart-doelen-oostellen strong {
  color: #f59e0b;
  font-weight: 700;
}

@media (max-width: 768px) {
  .tracking-methods-smart-doelen-oostellen {
    flex-direction: column;
  }
  
  .method-card-smart-doelen-oostellen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.conclusion-content-smart-doelen-oostellen {
  display: flex;
  flex-direction: column;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-smart-doelen-oostellen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.conclusion-text-smart-doelen-oostellen {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-box-smart-doelen-oostellen {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05));
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2rem;
}

.conclusion-box-title-smart-doelen-oostellen {
  font-size: 1.25rem;
  color: #f59e0b;
  margin-bottom: 1rem;
  font-weight: 700;
}

.conclusion-box-text-smart-doelen-oostellen {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

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

.related-content-smart-doelen-oostellen {
  display: flex;
  flex-direction: column;
}

.related-title-smart-doelen-oostellen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  text-align: center;
}

.related-subtitle-smart-doelen-oostellen {
  color: #94a3b8;
  font-size: 1rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

.related-cards-smart-doelen-oostellen {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.related-card-smart-doelen-oostellen {
  flex: 1 1 calc(33.333% - 1.33rem);
  min-width: 280px;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 300ms ease-in-out;
}

.related-card-smart-doelen-oostellen:hover {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(245, 158, 11, 0.15);
}

.related-image-smart-doelen-oostellen {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-smart-doelen-oostellen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 300ms ease-in-out;
}

.related-card-smart-doelen-oostellen:hover .related-card-image-smart-doelen-oostellen {
  transform: scale(1.05);
}

.related-card-body-smart-doelen-oostellen {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-card-title-smart-doelen-oostellen {
  font-size: 1.125rem;
  color: #ffffff;
  margin: 0;
  font-weight: 700;
  line-height: 1.4;
}

.related-card-text-smart-doelen-oostellen {
  color: #94a3b8;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.related-card-link-smart-doelen-oostellen {
  color: #f59e0b;
  font-weight: 600;
  transition: color 300ms ease-in-out;
  align-self: flex-start;
}

.related-card-link-smart-doelen-oostellen:hover {
  color: #fbbf24;
}

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

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

.disclaimer-section-smart-doelen-oostellen {
  background: #0d1526;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-content-smart-doelen-oostellen {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-smart-doelen-oostellen {
  font-size: 1.25rem;
  color: #f59e0b;
  margin-bottom: 1rem;
  font-weight: 700;
}

.disclaimer-text-smart-doelen-oostellen {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-section-smart-doelen-oostellen {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }
  
  .intro-section-smart-doelen-oostellen,
  .understanding-section-smart-doelen-oostellen,
  .practical-section-smart-doelen-oostellen,
  .examples-section-smart-doelen-oostellen,
  .mistakes-section-smart-doelen-oostellen,
  .tracking-section-smart-doelen-oostellen,
  .conclusion-section-smart-doelen-oostellen,
  .related-section-smart-doelen-oostellen,
  .disclaimer-section-smart-doelen-oostellen {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }
  
  .hero-title-smart-doelen-oostellen {
    font-size: 1.75rem;
  }
  
  .hero-subtitle-smart-doelen-oostellen {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-stats-smart-doelen-oostellen {
    gap: 1.5rem;
  }
  
  .stat-number-smart-doelen-oostellen {
    font-size: 1.5rem;
  }
  
  .step-card-smart-doelen-oostellen {
    padding: 1.5rem;
    gap: 1rem;
  }
  
  .tracking-methods-smart-doelen-oostellen {
    gap: 1rem;
  }
  
  .method-card-smart-doelen-oostellen {
    flex: 1 1 100%;
  }
}

.main-voortgang-volgen-simpel {
  width: 100%;
  background: #0a0f1e;
}

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

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

.hero-text-voortgang-volgen-simpel {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-subtitle-voortgang-volgen-simpel {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #cbd5e1;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.6;
}

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

.meta-item-voortgang-volgen-simpel {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.meta-item-voortgang-volgen-simpel i {
  color: #f59e0b;
}

.hero-image-voortgang-volgen-simpel {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-voortgang-volgen-simpel {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(245, 158, 11, 0.15);
}

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

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

  .hero-meta-voortgang-volgen-simpel {
    flex-direction: column;
    gap: 1rem;
  }
}

.breadcrumbs-voortgang-volgen-simpel {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-voortgang-volgen-simpel a {
  color: #f59e0b;
  text-decoration: none;
  transition: color 300ms ease-in-out;
}

.breadcrumbs-voortgang-volgen-simpel a:hover {
  color: #fbbf24;
  text-decoration: underline;
}

.breadcrumbs-voortgang-volgen-simpel span {
  color: #64748b;
}

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

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

.intro-text-voortgang-volgen-simpel {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-voortgang-volgen-simpel {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0a0f1e;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.intro-description-voortgang-volgen-simpel {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-voortgang-volgen-simpel {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-voortgang-volgen-simpel {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

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

.method-section-voortgang-volgen-simpel {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.method-content-voortgang-volgen-simpel {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.method-header-voortgang-volgen-simpel {
  text-align: center;
}

.method-title-voortgang-volgen-simpel {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  line-height: 1.2;
}

.method-subtitle-voortgang-volgen-simpel {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #cbd5e1;
}

.method-grid-voortgang-volgen-simpel {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.method-text-voortgang-volgen-simpel {
  flex: 1 1 50%;
  max-width: 50%;
}

.method-description-voortgang-volgen-simpel {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.method-highlight-voortgang-volgen-simpel {
  background: rgba(245, 158, 11, 0.1);
  border-left: 4px solid #f59e0b;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.highlight-title-voortgang-volgen-simpel {
  color: #fbbf24;
  display: block;
  margin-bottom: 0.5rem;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.highlight-text-voortgang-volgen-simpel {
  color: #cbd5e1;
  font-size: clamp(0.8rem, 0.95vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

.method-image-voortgang-volgen-simpel {
  flex: 1 1 50%;
  max-width: 50%;
}

.method-img-voortgang-volgen-simpel {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(245, 158, 11, 0.15);
}

@media (max-width: 768px) {
  .method-grid-voortgang-volgen-simpel {
    flex-direction: column;
  }

  .method-text-voortgang-volgen-simpel,
  .method-image-voortgang-volgen-simpel {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.tracking-section-voortgang-volgen-simpel {
  background: #f8f9fa;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.tracking-image-voortgang-volgen-simpel {
  flex: 1 1 50%;
  max-width: 50%;
}

.tracking-img-voortgang-volgen-simpel {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.tracking-text-voortgang-volgen-simpel {
  flex: 1 1 50%;
  max-width: 50%;
}

.tracking-title-voortgang-volgen-simpel {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0a0f1e;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.tracking-description-voortgang-volgen-simpel {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.tracking-cards-voortgang-volgen-simpel {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.tracking-card-voortgang-volgen-simpel {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 12px;
}

.card-text-voortgang-volgen-simpel {
  color: #374151;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

.card-label-voortgang-volgen-simpel {
  color: #0a0f1e;
  display: block;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .tracking-content-voortgang-volgen-simpel {
    flex-direction: column;
  }

  .tracking-image-voortgang-volgen-simpel,
  .tracking-text-voortgang-volgen-simpel {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.progress-section-voortgang-volgen-simpel {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.progress-content-voortgang-volgen-simpel {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.progress-header-voortgang-volgen-simpel {
  text-align: center;
}

.progress-title-voortgang-volgen-simpel {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  line-height: 1.2;
}

.progress-subtitle-voortgang-volgen-simpel {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #cbd5e1;
}

.progress-grid-voortgang-volgen-simpel {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.progress-text-voortgang-volgen-simpel {
  flex: 1 1 50%;
  max-width: 50%;
}

.progress-description-voortgang-volgen-simpel {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.progress-note-voortgang-volgen-simpel {
  background: rgba(59, 130, 246, 0.1);
  border-left: 4px solid #3b82f6;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.note-text-voortgang-volgen-simpel {
  color: #bfdbfe;
  font-size: clamp(0.8rem, 0.95vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

.progress-image-voortgang-volgen-simpel {
  flex: 1 1 50%;
  max-width: 50%;
}

.progress-img-voortgang-volgen-simpel {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(245, 158, 11, 0.15);
}

@media (max-width: 768px) {
  .progress-grid-voortgang-volgen-simpel {
    flex-direction: column;
  }

  .progress-text-voortgang-volgen-simpel,
  .progress-image-voortgang-volgen-simpel {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.tools-content-voortgang-volgen-simpel {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.tools-header-voortgang-volgen-simpel {
  text-align: center;
}

.tools-title-voortgang-volgen-simpel {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0a0f1e;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  line-height: 1.2;
}

.tools-subtitle-voortgang-volgen-simpel {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #6b7280;
}

.tools-list-voortgang-volgen-simpel {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

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

.item-number-voortgang-volgen-simpel {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #f59e0b;
  min-width: clamp(2.5rem, 5vw, 3.5rem);
}

.item-content-voortgang-volgen-simpel {
  flex: 1;
}

.item-title-voortgang-volgen-simpel {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #0a0f1e;
  margin-bottom: 0.5rem;
}

.item-text-voortgang-volgen-simpel {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .tools-item-voortgang-volgen-simpel {
    gap: 1rem;
  }

  .item-number-voortgang-volgen-simpel {
    min-width: 2.5rem;
  }
}

.conclusion-section-voortgang-volgen-simpel {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.conclusion-text-voortgang-volgen-simpel {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-title-voortgang-volgen-simpel {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.conclusion-description-voortgang-volgen-simpel {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-cta-voortgang-volgen-simpel {
  background: rgba(245, 158, 11, 0.1);
  border-left: 4px solid #f59e0b;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.cta-text-voortgang-volgen-simpel {
  color: #fbbf24;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: 1.6;
  margin: 0;
}

.conclusion-image-voortgang-volgen-simpel {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-img-voortgang-volgen-simpel {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(245, 158, 11, 0.15);
}

@media (max-width: 768px) {
  .conclusion-content-voortgang-volgen-simpel {
    flex-direction: column;
  }

  .conclusion-text-voortgang-volgen-simpel,
  .conclusion-image-voortgang-volgen-simpel {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.related-section-voortgang-volgen-simpel {
  background: #f8f9fa;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.related-header-voortgang-volgen-simpel {
  text-align: center;
}

.related-title-voortgang-volgen-simpel {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0a0f1e;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  line-height: 1.2;
}

.related-subtitle-voortgang-volgen-simpel {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #6b7280;
}

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

.related-card-voortgang-volgen-simpel {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 300ms ease-in-out;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.related-card-voortgang-volgen-simpel:hover {
  border-color: #f59e0b;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
  transform: translateY(-4px);
}

.related-card-image-voortgang-volgen-simpel {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-voortgang-volgen-simpel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-voortgang-volgen-simpel {
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.related-card-title-voortgang-volgen-simpel {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: #0a0f1e;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.related-card-description-voortgang-volgen-simpel {
  font-size: clamp(0.8rem, 0.95vw, 1rem);
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
}

@media (max-width: 1024px) {
  .related-card-voortgang-volgen-simpel {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

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

.disclaimer-section-voortgang-volgen-simpel {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-content-voortgang-volgen-simpel {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-voortgang-volgen-simpel {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.disclaimer-text-voortgang-volgen-simpel {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
}

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

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

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

body {
  margin: 0;
  padding: 0;
}

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

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

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

.main-terugkeren-na-tegenslag {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  overflow: hidden;
}

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

.hero-section-terugkeren-na-tegenslag .container {
  display: block;
}

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

.hero-text-terugkeren-na-tegenslag {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-terugkeren-na-tegenslag {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-terugkeren-na-tegenslag {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

.breadcrumbs-terugkeren-na-tegenslag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.breadcrumbs-terugkeren-na-tegenslag a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

.breadcrumbs-terugkeren-na-tegenslag a:hover {
  color: var(--color-primary-light);
  text-decoration: underline;
}

.breadcrumbs-terugkeren-na-tegenslag span {
  color: var(--color-text-secondary);
}

.badge-terugkeren-na-tegenslag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(245, 158, 11, 0.3);
  margin-bottom: 1rem;
}

.hero-title-terugkeren-na-tegenslag {
  font-size: clamp(1.875rem, 5vw, 3.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-subtitle-terugkeren-na-tegenslag {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hero-meta-terugkeren-na-tegenslag {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.meta-item-terugkeren-na-tegenslag {
  color: var(--color-text-secondary);
}

.meta-divider-terugkeren-na-tegenslag {
  color: var(--color-primary);
}

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

  .hero-text-terugkeren-na-tegenslag,
  .hero-image-terugkeren-na-tegenslag {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-img-terugkeren-na-tegenslag {
    max-height: 300px;
  }
}

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

.intro-section-terugkeren-na-tegenslag .container {
  display: block;
}

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

.intro-text-terugkeren-na-tegenslag {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-terugkeren-na-tegenslag {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-terugkeren-na-tegenslag img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

.intro-title-terugkeren-na-tegenslag {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-description-terugkeren-na-tegenslag {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.intro-highlight-terugkeren-na-tegenslag {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-primary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .intro-content-terugkeren-na-tegenslag {
    flex-direction: column;
  }

  .intro-text-terugkeren-na-tegenslag,
  .intro-image-terugkeren-na-tegenslag {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.strategies-section-terugkeren-na-tegenslag .container {
  display: block;
}

.strategies-header-terugkeren-na-tegenslag {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.strategies-title-terugkeren-na-tegenslag {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.strategies-subtitle-terugkeren-na-tegenslag {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.strategies-grid-terugkeren-na-tegenslag {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.strategy-card-terugkeren-na-tegenslag {
  flex: 1 1 calc(50% - 1rem);
  min-width: 280px;
  max-width: 450px;
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

.strategy-card-terugkeren-na-tegenslag:hover {
  background: var(--color-bg-card-hover);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-number-terugkeren-na-tegenslag {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  font-family: var(--font-heading);
}

.card-title-terugkeren-na-tegenslag {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.card-text-terugkeren-na-tegenslag {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.card-text-terugkeren-na-tegenslag:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .strategy-card-terugkeren-na-tegenslag {
    flex: 1 1 100%;
  }
}

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

.prevention-section-terugkeren-na-tegenslag .container {
  display: block;
}

.prevention-content-terugkeren-na-tegenslag {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.prevention-image-terugkeren-na-tegenslag {
  flex: 1 1 50%;
  max-width: 50%;
}

.prevention-image-terugkeren-na-tegenslag img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

.prevention-text-terugkeren-na-tegenslag {
  flex: 1 1 50%;
  max-width: 50%;
}

.prevention-title-terugkeren-na-tegenslag {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.prevention-description-terugkeren-na-tegenslag {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.prevention-list-terugkeren-na-tegenslag {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.list-item-terugkeren-na-tegenslag {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.list-marker-terugkeren-na-tegenslag {
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.list-content-terugkeren-na-tegenslag {
  flex: 1;
}

.list-title-terugkeren-na-tegenslag {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.list-text-terugkeren-na-tegenslag {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .prevention-content-terugkeren-na-tegenslag {
    flex-direction: column;
  }

  .prevention-image-terugkeren-na-tegenslag,
  .prevention-text-terugkeren-na-tegenslag {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.reality-section-terugkeren-na-tegenslag .container {
  display: block;
}

.reality-content-terugkeren-na-tegenslag {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.reality-text-terugkeren-na-tegenslag {
  flex: 1 1 50%;
  max-width: 50%;
}

.reality-image-terugkeren-na-tegenslag {
  flex: 1 1 50%;
  max-width: 50%;
}

.reality-image-terugkeren-na-tegenslag img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

.reality-title-terugkeren-na-tegenslag {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.reality-description-terugkeren-na-tegenslag {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.reality-quote-terugkeren-na-tegenslag {
  border-left: 4px solid var(--color-primary);
  padding-left: clamp(1rem, 3vw, 1.5rem);
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
  background: transparent;
}

.quote-text-terugkeren-na-tegenslag {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  color: var(--color-text-primary);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .reality-content-terugkeren-na-tegenslag {
    flex-direction: column;
  }

  .reality-text-terugkeren-na-tegenslag,
  .reality-image-terugkeren-na-tegenslag {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.next-steps-section-terugkeren-na-tegenslag {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.next-steps-section-terugkeren-na-tegenslag .container {
  display: block;
}

.next-steps-header-terugkeren-na-tegenslag {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.next-steps-title-terugkeren-na-tegenslag {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.next-steps-subtitle-terugkeren-na-tegenslag {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.next-steps-content-terugkeren-na-tegenslag {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.action-cards-terugkeren-na-tegenslag {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.action-card-terugkeren-na-tegenslag {
  flex: 1 1 calc(33.333% - 0.67px);
  min-width: 250px;
  background: var(--color-bg-card);
  border-right: 1px solid rgba(245, 158, 11, 0.2);
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-base);
}

.action-card-terugkeren-na-tegenslag:nth-child(3n) {
  border-right: none;
}

.action-card-terugkeren-na-tegenslag:hover {
  background: var(--color-bg-card-hover);
}

.action-number-terugkeren-na-tegenslag {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  font-family: var(--font-heading);
}

.action-title-terugkeren-na-tegenslag {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.action-text-terugkeren-na-tegenslag {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .action-card-terugkeren-na-tegenslag {
    flex: 1 1 calc(50% - 0.5px);
  }

  .action-card-terugkeren-na-tegenslag:nth-child(2n) {
    border-right: none;
  }

  .action-card-terugkeren-na-tegenslag:nth-child(3n) {
    border-right: 1px solid rgba(245, 158, 11, 0.2);
  }
}

@media (max-width: 768px) {
  .action-card-terugkeren-na-tegenslag {
    flex: 1 1 100%;
    border-right: none;
  }

  .action-card-terugkeren-na-tegenslag:nth-child(2n) {
    border-right: none;
  }
}

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

.related-section-terugkeren-na-tegenslag .container {
  display: block;
}

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

.related-title-terugkeren-na-tegenslag {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.related-subtitle-terugkeren-na-tegenslag {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.related-cards-terugkeren-na-tegenslag {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: flex-start;
}

.related-card-terugkeren-na-tegenslag {
  flex: 1 1 calc(33.333% - 1.67rem);
  min-width: 280px;
  max-width: 400px;
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
  text-decoration: none;
  cursor: pointer;
}

.related-card-terugkeren-na-tegenslag:hover {
  background: var(--color-bg-card-hover);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.related-image-terugkeren-na-tegenslag {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-image-terugkeren-na-tegenslag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.related-card-terugkeren-na-tegenslag:hover .related-image-terugkeren-na-tegenslag img {
  transform: scale(1.05);
}

.related-card-text-terugkeren-na-tegenslag {
  padding: clamp(1rem, 3vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-terugkeren-na-tegenslag {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.3;
  margin: 0;
}

.related-card-description-terugkeren-na-tegenslag {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .related-card-terugkeren-na-tegenslag {
    flex: 1 1 calc(50% - 1.25rem);
  }
}

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

.disclaimer-section-terugkeren-na-tegenslag {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.disclaimer-section-terugkeren-na-tegenslag .container {
  display: block;
}

.disclaimer-content-terugkeren-na-tegenslag {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.disclaimer-title-terugkeren-na-tegenslag {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.disclaimer-text-terugkeren-na-tegenslag {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 800px;
}

@media (max-width: 480px) {
  .breadcrumbs-terugkeren-na-tegenslag {
    flex-wrap: wrap;
    font-size: 0.75rem;
  }

  .card-number-terugkeren-na-tegenslag {
    font-size: 2rem;
  }

  .action-number-terugkeren-na-tegenslag {
    font-size: 1.75rem;
  }
}

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

.goal-mastery-about {
  background: #ffffff;
  color: #1e293b;
  font-family: var(--font-primary);
  overflow: hidden;
}

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

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

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

.hero-title-about {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #1e293b;
  line-height: 1.2;
}

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

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

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

.stat-card-about {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: var(--radius-md);
}

.stat-number-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #2563eb;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label-about {
  font-size: 0.9rem;
  color: #64748b;
  display: block;
}

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

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

.section-header-about {
  text-align: center;
  margin-bottom: 1rem;
}

.section-tag-about {
  display: inline-block;
  padding: 0.35rem 1.2rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-description-about {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #64748b;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

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

.foundation-item-about {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid #2563eb;
  box-shadow: var(--shadow-sm);
}

.foundation-item-about h3 {
  font-size: clamp(1.2rem, 2vw + 0.5rem, 1.5rem);
  color: #1e293b;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.foundation-item-about p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
}

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

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

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

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

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

.step-content-about {
  flex: 1;
  padding-top: 0.25rem;
}

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

.step-text-about {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

.approach-visual-about {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: 2rem auto;
  box-shadow: var(--shadow-sm);
}

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

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

.values-grid-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 2vw, 2rem);
  justify-content: center;
}

.value-card-about {
  flex: 1 1 280px;
  max-width: 350px;
  background: #ffffff;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

.value-icon-about {
  width: 50px;
  height: 50px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.75rem;
  color: #2563eb;
}

.value-card-about h4 {
  font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.3rem);
  color: #1e293b;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.value-card-about p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
}

.impact-section-about {
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.impact-header-about {
  text-align: center;
  margin-bottom: 1rem;
}

.impact-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.impact-text-about {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.impact-quote-about {
  background: #ffffff;
  border-left: 4px solid #2563eb;
  padding: clamp(1.5rem, 2vw, 2.5rem);
  border-radius: var(--radius-lg);
  margin: 2rem auto;
  max-width: 700px;
  box-shadow: var(--shadow-sm);
}

.quote-text-about {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #1e293b;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.quote-author-about {
  font-size: 0.9rem;
  color: #64748b;
  display: block;
  font-style: normal;
}

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

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.disclaimer-title-about {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  font-weight: 700;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-icon-about {
  color: #2563eb;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.disclaimer-text-about {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.7;
  max-width: 900px;
}

@media (max-width: 768px) {
  .hero-content-about {
    text-align: center;
  }

  .process-step-about {
    flex-direction: column;
    gap: 1rem;
  }

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

  .stats-grid-about {
    gap: 1rem;
  }

  .stat-card-about {
    flex: 1 1 150px;
    max-width: none;
    padding: 1rem;
  }
}

@media (min-width: 768px) {
  .hero-content-about {
    padding: 0 2rem;
  }

  .stats-grid-about {
    margin-top: 3rem;
  }

  .values-grid-about {
    justify-content: space-between;
  }

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

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

  .step-number-about {
    min-width: 80px;
  }

  .values-grid-about {
    gap: 2rem;
  }
}

.faq-page {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  overflow: hidden;
}

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

.faq-hero__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.faq-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.2;
}

.faq-hero__subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.5;
}

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

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

.faq-content {
  background-color: var(--color-bg-secondary);
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
}

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

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-base);
}

.faq-item:hover {
  background-color: var(--color-bg-card-hover);
  border-color: rgba(245, 158, 11, 0.2);
}

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

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

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

.faq-item__question {
  flex: 1;
  line-height: 1.4;
}

.faq-item__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-color: var(--color-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-base);
  position: relative;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background-color: var(--color-bg-primary);
}

.faq-item__icon::before {
  width: 2px;
  height: 10px;
}

.faq-item__icon::after {
  width: 10px;
  height: 2px;
}

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

.faq-item__content {
  padding: 0 var(--space-md) var(--space-md) var(--space-md);
  overflow: hidden;
  animation: slideDown var(--transition-base) ease-out;
}

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

.faq-item__answer {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

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

  .faq-item__trigger {
    padding: var(--space-lg);
  }

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

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

.faq-cta {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
}

.faq-cta__container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.faq-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.3;
}

.faq-cta__text {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.5;
}

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

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

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

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

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

.services-page {
  width: 100%;
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

.services-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.services-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  letter-spacing: -0.02em;
}

.services-hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
  max-width: 600px;
}

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

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

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

.services-card {
  background-color: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.services-card:hover {
  background-color: var(--color-bg-card-hover);
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.services-card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(59, 130, 246, 0.2));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.services-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  letter-spacing: -0.01em;
}

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

.services-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.services-card-features li {
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  color: var(--color-text-muted);
  padding-left: var(--space-md);
  position: relative;
}

.services-card-features li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: bold;
}

.services-cta {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.services-cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.services-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  letter-spacing: -0.01em;
}

.services-cta-text {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.6;
}

.services-cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
  cursor: pointer;
  letter-spacing: 0.01em;
}

.services-cta-button:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

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

  .services-content {
    padding: var(--space-3xl) var(--space-lg);
  }

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

  .services-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

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

  .services-content {
    padding: var(--space-3xl) 0;
  }

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

  .services-card {
    padding: var(--space-xl);
  }

  .services-cta {
    padding: var(--space-3xl) 0;
  }
}

.legal-docs {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

.legal-docs .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.legal-docs .content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-lg) 0;
}

.legal-docs h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.legal-docs .updated {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  font-style: italic;
}

.legal-docs h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-primary);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  line-height: 1.4;
}

.legal-docs p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.legal-docs ul,
.legal-docs ol {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.legal-docs li {
  margin-bottom: var(--space-sm);
}

.legal-docs strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

.legal-docs .contact-section {
  background-color: var(--color-bg-secondary);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-lg);
  margin-top: var(--space-2xl);
  border-radius: var(--radius-md);
}

.legal-docs .contact-section h2 {
  margin-top: 0;
  color: var(--color-primary);
}

.legal-docs .contact-section p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}

.legal-docs .contact-section p:last-child {
  margin-bottom: 0;
}

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

  .legal-docs .content {
    padding: var(--space-2xl) 0;
  }
}

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

  .legal-docs .content {
    padding: var(--space-3xl) 0;
  }
}

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

html {
  scroll-behavior: smooth;
}

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

.thank-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.thank-section {
  width: 100%;
  padding: var(--space-lg) var(--space-sm);
  background-color: var(--color-bg-primary);
  overflow: hidden;
  position: relative;
}

.thank-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.thank-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.02) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.content {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.thank-wrapper {
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.thank-icon {
  margin-bottom: var(--space-lg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thank-icon svg {
  width: 120px;
  height: 120px;
  filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.2));
}

.thank-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.5px;
}

.thank-lead {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.thank-description {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.thank-next-steps {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding: var(--space-lg);
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.1);
}

.thank-btn {
  display: inline-block;
  margin-top: var(--space-lg);
}

.btn {
  padding: 0.875rem 2.5rem;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: var(--font-primary);
  transition: all var(--transition-base);
  display: inline-block;
  text-align: center;
  letter-spacing: 0.3px;
}

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

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 640px) {
  .thank-section {
    padding: var(--space-2xl) var(--space-md);
  }

  .thank-icon svg {
    width: 140px;
    height: 140px;
  }

  .thank-title {
    margin-bottom: var(--space-md);
  }
}

@media (min-width: 768px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-lg);
    min-height: 100vh;
  }

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

  .thank-wrapper {
    padding: var(--space-xl) 0;
  }

  .thank-icon svg {
    width: 160px;
    height: 160px;
  }

  .thank-next-steps {
    padding: var(--space-2xl);
    margin-bottom: var(--space-2xl);
  }

  .btn {
    padding: 1rem 3rem;
    font-size: 1.1rem;
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-2xl);
  }

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

  .thank-icon svg {
    width: 180px;
    height: 180px;
  }

  .thank-title {
    margin-bottom: var(--space-lg);
  }

  .thank-lead {
    margin-bottom: var(--space-lg);
  }

  .thank-description {
    margin-bottom: var(--space-lg);
  }

  .thank-next-steps {
    margin-bottom: var(--space-2xl);
  }
}

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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  overflow-x: hidden;
}

.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  background-color: var(--color-bg-primary);
}

.error-section {
  width: 100%;
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  position: relative;
}

.error-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.error-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

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

.error-visual {
  margin-bottom: var(--space-3xl);
  perspective: 1000px;
}

.error-code-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  letter-spacing: -0.02em;
  animation: float 3s ease-in-out infinite;
  margin-bottom: var(--space-lg);
}

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

.floating-element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  animation: drift 6s ease-in-out infinite;
}

.element-1 {
  width: 100px;
  height: 100px;
  background: var(--color-primary);
  top: -30px;
  left: 10%;
  animation: drift 8s ease-in-out infinite;
  opacity: 0.08;
}

.element-2 {
  width: 150px;
  height: 150px;
  background: var(--color-secondary);
  bottom: -50px;
  right: 5%;
  animation: drift 10s ease-in-out infinite reverse;
  opacity: 0.06;
}

.element-3 {
  width: 80px;
  height: 80px;
  background: var(--color-info);
  top: 50%;
  right: 10%;
  animation: drift 7s ease-in-out infinite;
  opacity: 0.07;
}

@keyframes drift {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(30px, -30px) rotate(180deg);
  }
}

.error-message {
  position: relative;
  z-index: 2;
}

.error-message h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.error-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  line-height: 1.8;
  font-weight: 500;
}

.error-description {
  background-color: var(--color-bg-card);
  border: 1px solid rgba(245, 158, 11, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
  backdrop-filter: blur(10px);
}

.error-description p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.error-reasons {
  list-style: none;
  text-align: left;
  display: inline-block;
}

.error-reasons li {
  font-size: clamp(0.85rem, 0.95vw + 0.4rem, 0.95rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
  padding-left: var(--space-md);
  position: relative;
  line-height: 1.6;
}

.error-reasons li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.error-actions {
  margin-bottom: var(--space-xl);
}

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  font-family: var(--font-primary);
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #000000;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left var(--transition-base);
}

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

.btn-primary:hover::before {
  left: 100%;
}

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

.error-footer {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(245, 158, 11, 0.1);
}

.error-footer p {
  font-size: clamp(0.85rem, 0.9vw + 0.4rem, 0.95rem);
  color: var(--color-text-muted);
  font-style: italic;
  line-height: 1.7;
}

@media (min-width: 640px) {
  .error-section {
    padding: var(--space-xl) var(--space-lg);
  }

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

  .error-code {
    margin-bottom: var(--space-2xl);
  }

  .error-message h1 {
    margin-bottom: var(--space-lg);
  }

  .error-subtitle {
    margin-bottom: var(--space-2xl);
  }

  .error-description {
    padding: var(--space-xl);
    margin-bottom: var(--space-2xl);
  }

  .error-actions {
    margin-bottom: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-2xl) var(--space-xl);
    min-height: 100vh;
  }

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

  .error-code {
    margin-bottom: var(--space-3xl);
  }

  .error-message h1 {
    margin-bottom: var(--space-xl);
  }

  .error-subtitle {
    margin-bottom: var(--space-3xl);
    font-size: clamp(1rem, 1.2vw, 1.2rem);
  }

  .error-description {
    padding: var(--space-2xl);
    margin-bottom: var(--space-3xl);
  }

  .error-actions {
    margin-bottom: var(--space-3xl);
  }

  .btn {
    padding: calc(var(--space-md) + 0.25rem) calc(var(--space-xl) + 0.5rem);
    font-size: 1.05rem;
  }
}

@media (max-width: 639px) {
  .error-section::before {
    width: 400px;
    height: 400px;
    top: -30%;
    right: -30%;
  }

  .error-section::after {
    width: 350px;
    height: 350px;
    bottom: -20%;
    left: -20%;
  }

  .element-1 {
    width: 70px;
    height: 70px;
    left: 5%;
  }

  .element-2 {
    width: 100px;
    height: 100px;
    right: 0%;
  }

  .element-3 {
    width: 60px;
    height: 60px;
    right: 5%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-code {
    animation: none;
  }

  .floating-element {
    animation: none;
  }

  .btn-primary::before {
    animation: none;
  }

  .btn-primary:hover {
    transform: none;
  }
}

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

.contact-support-hero {
  background-color: var(--color-bg-primary);
  padding: 3rem 1rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-support-hero-content {
  text-align: center;
}

.contact-support-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 1rem 0;
  letter-spacing: -0.5px;
}

.contact-support-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .contact-support-hero {
    padding: 5rem 2rem;
  }
}

@media (min-width: 1024px) {
  .contact-support-hero {
    padding: 6rem 2rem;
  }
}

.contact-support-main {
  background-color: var(--color-bg-primary);
  padding: 3rem 1rem;
  overflow: hidden;
}

.contact-support-main-content {
  width: 100%;
}

.contact-support-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.contact-support-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-support-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .contact-support-form-wrapper {
    flex: 1 1 45%;
  }

  .contact-support-info-wrapper {
    flex: 1 1 45%;
  }
}

@media (min-width: 1024px) {
  .contact-support-main {
    padding: 5rem 2rem;
  }
}

.contact-support-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 2rem 0;
}

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

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

.contact-support-label {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-weight: 500;
  color: var(--color-text-secondary);
  letter-spacing: 0.3px;
}

.contact-support-input,
.contact-support-textarea {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  color: var(--color-text-primary);
  transition: all var(--transition-base);
}

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

.contact-support-input:focus,
.contact-support-textarea:focus {
  outline: none;
  background-color: var(--color-bg-card-hover);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

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

.contact-support-form-privacy {
  padding: 1rem;
  background-color: rgba(245, 158, 11, 0.05);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--color-primary);
}

.contact-support-privacy-text {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.contact-support-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-base);
}

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

.contact-support-submit {
  width: 100%;
  padding: 1.125rem 2rem;
  background-color: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-md);
}

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

.contact-support-submit:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.contact-support-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.contact-support-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 2rem 0;
}

.contact-support-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.contact-support-info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact-support-info-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(245, 158, 11, 0.1);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  font-size: 1.25rem;
}

.contact-support-info-content {
  flex: 1;
}

.contact-support-info-label {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 0.5rem 0;
}

.contact-support-info-value {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.contact-support-info-extra {
  padding: 1.75rem;
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-support-info-extra-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 1rem 0;
}

.contact-support-info-extra-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .contact-support-grid {
    gap: 4rem;
  }

  .contact-support-form-wrapper {
    flex: 1 1 calc(50% - 2rem);
  }

  .contact-support-info-wrapper {
    flex: 1 1 calc(50% - 2rem);
  }
}

@media (max-width: 767px) {
  .contact-support-hero {
    padding: 2.5rem 1rem;
  }

  .contact-support-main {
    padding: 2.5rem 1rem;
  }

  .contact-support-hero-title {
    margin-bottom: 0.75rem;
  }

  .contact-support-form-title,
  .contact-support-info-title {
    margin-bottom: 1.5rem;
  }
}
.intro-text-smart-doelen-opstellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-smart-doelen-opstellen {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-paragraph-smart-doelen-opstellen {
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.8;
}

.intro-image-smart-doelen-opstellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-smart-doelen-opstellen {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  max-height: 400px;
  object-fit: cover;
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.25);
}

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

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

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

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

.understanding-text-smart-doelen-opstellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.understanding-title-smart-doelen-opstellen {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.understanding-paragraph-smart-doelen-opstellen {
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.8;
}

.smart-box-smart-doelen-opstellen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.smart-item-smart-doelen-opstellen {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 300ms ease-in-out;
}

.smart-item-smart-doelen-opstellen:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.4);
  transform: translateY(-2px);
}

.smart-letter-smart-doelen-opstellen {
  font-size: 1.75rem;
  color: #f59e0b;
  font-weight: 800;
  margin-bottom: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
}

.smart-word-smart-doelen-opstellen {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.smart-text-smart-doelen-opstellen {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.7;
}

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

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

.practical-content-smart-doelen-opstellen {
  display: flex;
  flex-direction: column;
}

.practical-title-smart-doelen-opstellen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin-bottom: 3rem;
  line-height: 1.2;
  text-align: center;
}

.steps-wrapper-smart-doelen-opstellen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-card-smart-doelen-opstellen {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
  transition: all 300ms ease-in-out;
}

.step-card-smart-doelen-opstellen:hover {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateX(8px);
}

.step-number-smart-doelen-opstellen {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #f59e0b;
  font-family: 'Space Grotesk', sans-serif;
  flex-shrink: 0;
  min-width: 60px;
}

.step-body-smart-doelen-opstellen {
  flex: 1;
}

.step-title-smart-doelen-opstellen {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.step-text-smart-doelen-opstellen {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .step-card-smart-doelen-opstellen {
    flex-direction: column;
    gap: 1rem;
  }
}

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

.examples-content-smart-doelen-opstellen {
  display: flex;
  flex-direction: column;
}

.examples-title-smart-doelen-opstellen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin-bottom: 3rem;
  line-height: 1.2;
  text-align: center;
}

.example-wrapper-smart-doelen-opstellen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.example-text-smart-doelen-opstellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.example-heading-smart-doelen-opstellen {
  font-size: 1.25rem;
  color: #f59e0b;
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
  font-weight: 700;
}

.example-heading-smart-doelen-opstellen:first-child {
  margin-top: 0;
}

.example-intro-smart-doelen-opstellen {
  color: #cbd5e1;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.example-text-smart-doelen-opstellen p:not(.example-intro-smart-doelen-opstellen) {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.example-image-smart-doelen-opstellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.example-image-smart-doelen-opstellen {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  max-height: 450px;
  object-fit: cover;
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.25);
}

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

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

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

.mistakes-title-smart-doelen-opstellen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.mistakes-text-smart-doelen-opstellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.mistakes-intro-smart-doelen-opstellen {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  margin-bottom: 2rem;
  line-height: 1.8;
  font-style: italic;
}

.mistake-item-smart-doelen-opstellen {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mistake-item-smart-doelen-opstellen:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.mistake-heading-smart-doelen-opstellen {
  font-size: 1.125rem;
  color: #f59e0b;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.mistake-text-smart-doelen-opstellen {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.7;
}

.mistakes-image-smart-doelen-opstellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.mistakes-image-smart-doelen-opstellen {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  max-height: 450px;
  object-fit: cover;
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.25);
}

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

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

.tracking-content-smart-doelen-opstellen {
  display: flex;
  flex-direction: column;
}

.tracking-title-smart-doelen-opstellen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-align: center;
}

.tracking-intro-smart-doelen-opstellen {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tracking-methods-smart-doelen-opstellen {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.method-card-smart-doelen-opstellen {
  flex: 1 1 calc(50% - 0.75rem);
  min-width: 250px;
  max-width: 350px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 300ms ease-in-out;
}

.method-card-smart-doelen-opstellen:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.4);
  transform: translateY(-4px);
}

.method-title-smart-doelen-opstellen {
  font-size: 1.125rem;
  color: #f59e0b;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.method-text-smart-doelen-opstellen {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.7;
}

.tracking-tip-smart-doelen-opstellen {
  background: rgba(245, 158, 11, 0.1);
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.tracking-tip-text-smart-doelen-opstellen {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.tracking-tip-text-smart-doelen-opstellen strong {
  color: #f59e0b;
  font-weight: 700;
}

@media (max-width: 768px) {
  .tracking-methods-smart-doelen-opstellen {
    flex-direction: column;
  }
  
  .method-card-smart-doelen-opstellen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.conclusion-content-smart-doelen-opstellen {
  display: flex;
  flex-direction: column;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-smart-doelen-opstellen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.conclusion-text-smart-doelen-opstellen {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-box-smart-doelen-opstellen {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05));
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2rem;
}

.conclusion-box-title-smart-doelen-opstellen {
  font-size: 1.25rem;
  color: #f59e0b;
  margin-bottom: 1rem;
  font-weight: 700;
}

.conclusion-box-text-smart-doelen-opstellen {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

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

.related-content-smart-doelen-opstellen {
  display: flex;
  flex-direction: column;
}

.related-title-smart-doelen-opstellen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  text-align: center;
}

.related-subtitle-smart-doelen-opstellen {
  color: #94a3b8;
  font-size: 1rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

.related-cards-smart-doelen-opstellen {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.related-card-smart-doelen-opstellen {
  flex: 1 1 calc(33.333% - 1.33rem);
  min-width: 280px;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 300ms ease-in-out;
}

.related-card-smart-doelen-opstellen:hover {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(245, 158, 11, 0.15);
}

.related-image-smart-doelen-opstellen {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-smart-doelen-opstellen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 300ms ease-in-out;
}

.related-card-smart-doelen-opstellen:hover .related-card-image-smart-doelen-opstellen {
  transform: scale(1.05);
}

.related-card-body-smart-doelen-opstellen {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-card-title-smart-doelen-opstellen {
  font-size: 1.125rem;
  color: #ffffff;
  margin: 0;
  font-weight: 700;
  line-height: 1.4;
}

.related-card-text-smart-doelen-opstellen {
  color: #94a3b8;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.related-card-link-smart-doelen-opstellen {
  color: #f59e0b;
  font-weight: 600;
  transition: color 300ms ease-in-out;
  align-self: flex-start;
}

.related-card-link-smart-doelen-opstellen:hover {
  color: #fbbf24;
}

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

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

.disclaimer-section-smart-doelen-opstellen {
  background: #0d1526;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-content-smart-doelen-opstellen {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-smart-doelen-opstellen {
  font-size: 1.25rem;
  color: #f59e0b;
  margin-bottom: 1rem;
  font-weight: 700;
}

.disclaimer-text-smart-doelen-opstellen {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
}