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

:root {
  
  --color-bg-primary: #0c1929;
  --color-bg-secondary: #162d50;
  --color-bg-tertiary: #1e3a5f;
  --color-bg-card: rgba(59, 130, 246, 0.08);
  
  
  --color-text-primary: #ffffff;
  --color-text-secondary: #bfdbfe;
  --color-text-muted: #93c5fd;
  
  
  --color-primary: #3b82f6;
  --color-primary-hover: #2563eb;
  --color-secondary: #60a5fa;
  --color-accent-warm: #fbbf24;
  
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 10px 25px rgba(59, 130, 246, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

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

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

h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

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

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

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

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

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

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

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

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

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

.btn-secondary {
  background: rgba(96, 165, 250, 0.1);
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.btn-secondary:hover {
  background: rgba(96, 165, 250, 0.2);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: rgba(59, 130, 246, 0.1);
  transform: translateY(-2px);
}

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

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

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

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

.card-text {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
}

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

.form-label {
  color: var(--color-text-primary);
  font-weight: 500;
  font-size: 0.95rem;
}

.form-input,
.form-textarea,
.form-select {
  background: rgba(22, 45, 80, 0.6);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: var(--color-text-primary);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

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

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

.form-submit-btn {
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

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

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

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

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

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

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

.flex {
  display: flex;
}

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

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

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

ul, ol {
  color: var(--color-text-secondary);
  padding-left: 1.5rem;
}

li {
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.icon-small {
  font-size: 1rem;
}

.icon-large {
  font-size: 2.5rem;
}

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

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

.icon-accent {
  color: var(--color-accent-warm);
}

.badge {
  display: inline-block;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-secondary);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.badge-primary {
  background: rgba(59, 130, 246, 0.2);
  color: var(--color-primary);
}

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

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(59, 130, 246, 0.3), transparent);
  margin: var(--space-2xl) 0;
}

.dot-pattern {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(59, 130, 246, 0.2);
  border-radius: 50%;
}

.glow-element {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
  
  .grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .flex-between {
    flex-direction: column;
    gap: var(--space-md);
  }
}

@media (max-width: 480px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .card {
    padding: var(--space-md);
  }
}

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

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

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

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }

.gap-1 { gap: var(--space-sm); }
.gap-2 { gap: var(--space-md); }
.gap-3 { gap: var(--space-lg); }
.gap-4 { gap: var(--space-xl); }

.opacity-75 { opacity: 0.75; }
.opacity-50 { opacity: 0.5; }
.opacity-25 { opacity: 0.25; }

.hidden {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

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

@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 pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

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

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

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

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

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

.animate-float {
  animation: float 3s ease-in-out infinite;
}
:root {
  --color-bg-primary: #0c1929;
  --color-bg-secondary: #162d50;
  --color-bg-tertiary: #1e3a5f;
  --color-bg-card: rgba(59, 130, 246, 0.08);
  --color-text-primary: #ffffff;
  --color-text-secondary: #bfdbfe;
  --color-text-muted: #93c5fd;
  --color-primary: #3b82f6;
  --color-primary-hover: #2563eb;
  --color-secondary: #60a5fa;
  --color-accent-warm: #fbbf24;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 10px 25px rgba(59, 130, 246, 0.15);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
}

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

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

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

.header-tempo-vault {
  position: static;
  background: var(--color-bg-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-md) 0;
  z-index: 100;
  width: 100%;
}

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

.header-tempo-vault-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: var(--space-xs);
  flex-shrink: 0;
  transition: opacity 300ms ease-in-out;
}

.header-tempo-vault-brand:hover {
  opacity: 0.85;
}

.header-tempo-vault-brand:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

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

.header-tempo-vault-logo-text {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
}

.header-tempo-vault-desktop-nav {
  display: none;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex: 1;
  justify-content: center;
}

.header-tempo-vault-nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 300ms ease-in-out;
  position: relative;
  padding: 0.5rem 0;
}

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

.header-tempo-vault-nav-link:hover {
  color: var(--color-text-primary);
}

.header-tempo-vault-nav-link:hover::after {
  width: 100%;
}

.header-tempo-vault-nav-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

.header-tempo-vault-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: #0f172a;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 300ms ease-in-out;
  white-space: nowrap;
  flex-shrink: 0;
}

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

.header-tempo-vault-cta-button:active {
  transform: translateY(0);
}

.header-tempo-vault-cta-button:focus-visible {
  outline: 2px solid var(--color-accent-warm);
  outline-offset: 2px;
}

.header-tempo-vault-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-shrink: 0;
  transition: all 300ms ease-in-out;
}

.header-tempo-vault-mobile-toggle:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.header-tempo-vault-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: var(--radius-sm);
  transition: all 300ms ease-in-out;
}

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

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

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

.header-tempo-vault-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-primary);
  display: flex;
  flex-direction: column;
  padding-top: 70px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 300ms ease-in-out;
  z-index: 99;
  overflow-y: auto;
}

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

.header-tempo-vault-mobile-header {
  display: flex;
  justify-content: flex-end;
  padding: var(--space-md) var(--space-md) 0 var(--space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: var(--space-lg);
}

.header-tempo-vault-mobile-close {
  background: transparent;
  border: none;
  color: var(--color-text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 300ms ease-in-out;
}

.header-tempo-vault-mobile-close:hover {
  color: var(--color-primary);
}

.header-tempo-vault-mobile-close:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.header-tempo-vault-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 var(--space-md);
}

.header-tempo-vault-mobile-link {
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 300ms ease-in-out;
}

.header-tempo-vault-mobile-link:hover {
  color: var(--color-primary);
}

.header-tempo-vault-mobile-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: -2px;
  color: var(--color-primary);
}

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

.header-tempo-vault-mobile-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.header-tempo-vault-mobile-cta:active {
  transform: translateY(0);
}

.header-tempo-vault-mobile-cta:focus-visible {
  outline: 2px solid var(--color-accent-warm);
  outline-offset: 2px;
}

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

  .header-tempo-vault-cta-button {
    display: inline-block;
  }

  .header-tempo-vault-mobile-toggle {
    display: none;
  }

  .header-tempo-vault-mobile-menu {
    display: none;
  }
}

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

    .time-mastery-hub {
  width: 100%;
}

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

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

.hero-glow-orb-index {
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(96, 165, 250, 0.08);
  border-radius: 50%;
  filter: blur(60px);
  top: 20%;
  right: -100px;
  z-index: 1;
  pointer-events: none;
}

.hero-accent-shape-index {
  position: absolute;
  width: 250px;
  height: 300px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}

.hero-floating-element-index {
  position: absolute;
  width: 180px;
  height: 140px;
  background: rgba(96, 165, 250, 0.04);
  border: 1px solid rgba(96, 165, 250, 0.08);
  border-radius: 16px;
  transform: rotate(-15deg);
  top: 15%;
  left: 10%;
  z-index: 1;
  pointer-events: none;
}

.hero-secondary-glow-index {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  bottom: -150px;
  right: 10%;
  z-index: 1;
  pointer-events: none;
}

.hero-line-accent-index {
  position: absolute;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.25), transparent);
  bottom: 25%;
  right: 15%;
  z-index: 2;
  pointer-events: none;
}

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

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

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

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

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

.hero-stat-number-index {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #3b82f6;
  display: block;
}

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

.hero-buttons-index {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.25rem);
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-primary);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background: #3b82f6;
  color: #0f172a;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  background: #2563eb;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-primary:active {
  transform: translateY(-1px);
  transition-duration: 150ms;
}

.btn-secondary {
  background: transparent;
  color: #60a5fa;
  border-color: #60a5fa;
}

.btn-secondary:hover {
  background: rgba(96, 165, 250, 0.1);
  border-color: #93c5fd;
  color: #93c5fd;
  transform: translateY(-3px);
}

.methodology-section-index {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: #162d50;
}

.methodology-accent-glow-index {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  top: -150px;
  right: -100px;
  z-index: 1;
  pointer-events: none;
}

.methodology-shape-left-index {
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
  bottom: 50px;
  left: -80px;
  z-index: 2;
  pointer-events: none;
}

.methodology-shape-right-index {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(96, 165, 250, 0.05);
  border-radius: 70% 30% 60% 40% / 30% 70% 40% 60%;
  top: 40%;
  right: 5%;
  z-index: 1;
  pointer-events: none;
}

.methodology-corner-accent-index {
  position: absolute;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.2), transparent);
  top: 20%;
  left: 10%;
  z-index: 2;
  pointer-events: none;
}

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

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

.methodology-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

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

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

.methodology-step-index {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 12px;
  transition: all 350ms ease;
}

.methodology-step-index:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(96, 165, 250, 0.4);
  transform: translateY(-3px);
}

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

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

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

.methodology-step-text-index {
  color: #93c5fd;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
}

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

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

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

.features-organic-shape-index {
  position: absolute;
  width: 300px;
  height: 320px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
}

.features-floating-accent-index {
  position: absolute;
  width: 180px;
  height: 140px;
  background: rgba(96, 165, 250, 0.03);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 14px;
  transform: rotate(8deg);
  bottom: 15%;
  left: 5%;
  z-index: 1;
  pointer-events: none;
}

.features-line-element-index {
  position: absolute;
  width: 250px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.15), transparent);
  top: 30%;
  left: 8%;
  z-index: 2;
  pointer-events: none;
}

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

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

.features-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

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

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

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

.features-card-index:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.3);
}

.features-card-icon-index {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  font-size: 1.5rem;
}

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

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

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

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

.featured-mesh-glow-index {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  top: -100px;
  right: -150px;
  z-index: 1;
  pointer-events: none;
}

.featured-accent-orb-index {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 50%;
  filter: blur(60px);
  bottom: -100px;
  left: 10%;
  z-index: 1;
  pointer-events: none;
}

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

.featured-header-index {
  text-align: center;
  margin-bottom: 3rem;
}

.featured-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

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

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

.featured-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.featured-card-image-index {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

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

.featured-card-title-index {
  color: #1e293b;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  margin: 0;
}

.featured-card-description-index {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  line-height: 1.6;
  margin: 0;
}

.featured-card-link-index {
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
  transition: color 300ms ease;
  display: inline-block;
}

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

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

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

.insights-section-index {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: #0c1929;
}

.insights-glow-left-index {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  top: 50%;
  left: -150px;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

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

.insights-shape-accent-index {
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  top: 20%;
  right: 5%;
  z-index: 2;
  pointer-events: none;
}

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

.insights-text-block-index {
  flex: 1 1 400px;
  min-width: 0;
}

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

.insights-description-index {
  color: #bfdbfe;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.insights-quote-block-index {
  padding: 1.75rem 2rem;
  border-left: 4px solid #3b82f6;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 4px;
  margin: 2rem 0;
}

.insights-quote-text-index {
  color: #ffffff;
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-style: italic;
  margin-bottom: 1rem;
}

.insights-quote-author-index {
  color: #93c5fd;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  font-style: normal;
}

.insights-additional-text-index {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  line-height: 1.7;
}

.insights-visual-block-index {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.insights-stat-card-index {
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 10px;
  text-align: center;
  transition: all 350ms ease;
}

.insights-stat-card-index:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(96, 165, 250, 0.4);
  transform: translateY(-3px);
}

.insights-stat-number-index {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 800;
  color: #3b82f6;
  margin-bottom: 0.5rem;
}

.insights-stat-label-index {
  color: #93c5fd;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
}

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

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

.principles-glow-accent-index {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  top: -100px;
  left: -100px;
  z-index: 1;
  pointer-events: none;
}

.principles-organic-form-index {
  position: absolute;
  width: 300px;
  height: 280px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 70% 30% 60% 40% / 30% 70% 40% 60%;
  bottom: 10%;
  right: 5%;
  z-index: 2;
  pointer-events: none;
}

.principles-floating-element-index {
  position: absolute;
  width: 160px;
  height: 120px;
  background: rgba(96, 165, 250, 0.03);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  transform: rotate(-12deg);
  top: 25%;
  left: 8%;
  z-index: 1;
  pointer-events: none;
}

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

.principles-header-index {
  text-align: center;
  margin-bottom: 3rem;
}

.principles-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.principles-title-index {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
}

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

.principles-item-index {
  flex: 1 1 280px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: all 350ms ease;
}

.principles-item-index:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.2);
}

.principles-item-icon-index {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  font-size: 1.5rem;
  margin: 0 auto;
}

.principles-item-title-index {
  color: #1e293b;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
}

.principles-item-text-index {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  line-height: 1.6;
}

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

.contact-section-index {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: #162d50;
}

.contact-glow-primary-index {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  top: -150px;
  right: -100px;
  z-index: 1;
  pointer-events: none;
}

.contact-accent-shape-index {
  position: absolute;
  width: 280px;
  height: 320px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
  bottom: 10%;
  left: 5%;
  z-index: 2;
  pointer-events: none;
}

.contact-floating-element-index {
  position: absolute;
  width: 200px;
  height: 150px;
  background: rgba(96, 165, 250, 0.04);
  border: 1px solid rgba(96, 165, 250, 0.08);
  border-radius: 16px;
  transform: rotate(18deg);
  top: 20%;
  right: 10%;
  z-index: 1;
  pointer-events: none;
}

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

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

.contact-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

.contact-subtitle-index {
  color: #bfdbfe;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.contact-wrapper-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2.5rem, 5vw, 3.5rem);
  margin-top: 2.5rem;
}

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

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

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

.contact-label-index {
  color: #e2e8f0;
  font-size: 0.875rem;
  font-weight: 500;
}

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

.contact-input-index:focus,
.contact-textarea-index:focus {
  outline: none;
  border-color: #3b82f6;
  background: rgba(59, 130, 246, 0.15);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.contact-submit-btn-index {
  width: 100%;
  padding: 1rem 2rem;
  background: #3b82f6;
  color: #0f172a;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

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

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

.contact-privacy-notice-index {
  color: #93c5fd;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  text-align: center;
  margin-top: 0.5rem;
}

.contact-privacy-link-index {
  color: #60a5fa;
  text-decoration: none;
  transition: color 300ms ease;
}

.contact-privacy-link-index:hover {
  color: #93c5fd;
  text-decoration: underline;
}

.contact-info-wrapper-index {
  flex: 1 1 350px;
  min-width: 0;
}

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

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

.contact-faq-item-index {
  padding: 1.25rem;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 8px;
  transition: all 300ms ease;
}

.contact-faq-item-index:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(96, 165, 250, 0.4);
}

.contact-faq-question-index {
  color: #ffffff;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

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

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

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

.cookie-banner-text {
  color: #cbd5e1;
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  margin: 0;
  text-align: center;
  flex: 1 1 300px;
}

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

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

.cookie-btn-accept {
  background: #3b82f6;
  color: #0f172a;
}

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

.cookie-btn-decline {
  background: transparent;
  color: #cbd5e1;
  border: 1px solid rgba(96, 165, 250, 0.3);
}

.cookie-btn-decline:hover {
  border-color: rgba(96, 165, 250, 0.6);
  color: #e2e8f0;
}

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

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

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

    :root {
  --color-bg-primary: #0c1929;
  --color-bg-secondary: #162d50;
  --color-bg-tertiary: #1e3a5f;
  --color-bg-card: rgba(59, 130, 246, 0.08);
  --color-text-primary: #ffffff;
  --color-text-secondary: #bfdbfe;
  --color-text-muted: #93c5fd;
  --color-primary: #3b82f6;
  --color-primary-hover: #2563eb;
  --color-secondary: #60a5fa;
  --color-accent-warm: #fbbf24;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 10px 25px rgba(59, 130, 246, 0.15);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
}

.footer {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  border-top: 1px solid rgba(59, 130, 246, 0.15);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -200px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.footer::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -150px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.06) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

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

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

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

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

.footer-about-text {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  font-weight: 400;
}

.footer-sections {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
}

.footer-navigation,
.footer-contact,
.footer-legal {
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.footer-nav-title,
.footer-contact-title,
.footer-legal-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary);
  letter-spacing: -0.3px;
}

.footer-nav-links,
.footer-legal-links {
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, 1.5vw, 0.875rem);
}

.footer-nav-link,
.footer-legal-link {
  font-family: var(--font-primary);
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 400;
}

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

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

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

.footer-contact-item {
  font-family: var(--font-primary);
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0;
  font-weight: 400;
}

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

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

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
  width: 100%;
}

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

.footer-copyright {
  font-family: var(--font-primary);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-muted);
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.3px;
}

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

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

  .footer-nav-links,
  .footer-legal-links {
    gap: 1rem;
  }
}

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

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

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

.main.category-page-time-management {
  width: 100%;
  background: #0c1929;
}

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

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

.hero-deco-glow-2 {
  position: absolute;
  bottom: 10%;
  right: -150px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-shape-1 {
  position: absolute;
  top: 20%;
  right: 5%;
  width: 280px;
  height: 280px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  z-index: 1;
  pointer-events: none;
}

.hero-deco-shape-2 {
  position: absolute;
  bottom: 15%;
  left: 8%;
  width: 250px;
  height: 250px;
  background: rgba(96, 165, 250, 0.04);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.hero-deco-line {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.3), transparent);
  z-index: 1;
  pointer-events: none;
}

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

.hero-tag-time-management {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(96, 165, 250, 0.15);
  color: #60a5fa;
  border-radius: 24px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(96, 165, 250, 0.3);
}

.hero-title-time-management {
  font-size: clamp(2rem, 6vw, 3.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.25rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-subtitle-time-management {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #bfdbfe;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-stats-time-management {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
  justify-content: center;
  margin: 3rem 0;
  padding: 2rem 0;
}

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

.hero-stat-number {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #60a5fa;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: #93c5fd;
  font-weight: 500;
}

.hero-cta-group-time-management {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: #3b82f6;
  color: #0f172a;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(59, 130, 246, 0.5);
}

.btn-outline {
  background: transparent;
  color: #60a5fa;
  border-color: #60a5fa;
}

.btn-outline:hover {
  background: rgba(96, 165, 250, 0.1);
  border-color: #93c5fd;
  color: #93c5fd;
  transform: translateY(-2px);
}

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

.posts-deco-glow-1 {
  position: absolute;
  top: 20%;
  right: -120px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.posts-deco-shape-1 {
  position: absolute;
  bottom: 5%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(96, 165, 250, 0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

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

.posts-title-time-management {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.posts-subtitle-time-management {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.card-time-management {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1 1 320px;
  max-width: 420px;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  transition: all 0.35s ease;
  backdrop-filter: blur(10px);
}

.card-time-management:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(96, 165, 250, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
}

.card-image-time-management {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
}

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

.card-description-time-management {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #bfdbfe;
  line-height: 1.6;
  flex-grow: 1;
}

.card-meta-time-management {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(96, 165, 250, 0.15);
}

.card-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #93c5fd;
  font-weight: 500;
}

.card-meta-item i {
  color: #60a5fa;
  font-size: 0.875rem;
}

.card-link-time-management {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #60a5fa;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.card-link-time-management:hover {
  color: #93c5fd;
  gap: 0.75rem;
}

.card-link-time-management::after {
  content: '';
  transition: transform 0.3s ease;
}

.card-link-time-management:hover::after {
  transform: translateX(3px);
}

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

.insights-deco-glow {
  position: absolute;
  top: 10%;
  left: -120px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.insights-deco-shape {
  position: absolute;
  bottom: 15%;
  right: -100px;
  width: 280px;
  height: 280px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 35% 65% 65% 35% / 35% 35% 65% 65%;
  z-index: 1;
  pointer-events: none;
}

.insights-content-time-management {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}

.insights-quote-time-management {
  padding: 2.5rem;
  border-left: 4px solid #60a5fa;
  background: rgba(96, 165, 250, 0.1);
  margin-bottom: 2.5rem;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.insights-quote-text {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-style: italic;
  font-weight: 500;
}

.insights-quote-author {
  font-size: 0.9rem;
  color: #93c5fd;
  font-style: normal;
  font-weight: 500;
}

.insights-details-time-management {
  padding: 2rem;
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(96, 165, 250, 0.15);
  border-radius: 8px;
}

.insights-section-title {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.insights-text {
  font-size: clamp(0.95rem, 1.5vw, 1.0625rem);
  color: #bfdbfe;
  line-height: 1.7;
}

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

.process-deco-line-1 {
  position: absolute;
  top: 30%;
  left: 5%;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, rgba(96, 165, 250, 0.3), transparent);
  z-index: 1;
  pointer-events: none;
}

.process-deco-accent {
  position: absolute;
  bottom: 10%;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.process-header-time-management {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 3.5rem;
}

.process-title-time-management {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.process-subtitle-time-management {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #bfdbfe;
}

.process-steps-time-management {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.process-step-time-management {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 1.75rem;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(96, 165, 250, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.process-step-time-management:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(96, 165, 250, 0.3);
  transform: translateX(8px);
}

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

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

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

.process-step-text {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #bfdbfe;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-step-time-management {
    gap: 1.5rem;
    padding: 1.5rem;
  }

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

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

.cta-deco-glow-1 {
  position: absolute;
  top: 5%;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.cta-deco-glow-2 {
  position: absolute;
  bottom: 5%;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.cta-deco-shape {
  position: absolute;
  top: 40%;
  right: 8%;
  width: 250px;
  height: 250px;
  background: rgba(96, 165, 250, 0.04);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

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

.cta-title-time-management {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.cta-text-time-management {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: #bfdbfe;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.cta-button-time-management {
  display: inline-flex;
}

@media (max-width: 768px) {
  .hero-stats-time-management {
    gap: 2rem;
  }

  .hero-stat-item {
    min-width: 80px;
  }

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

  .card-time-management {
    flex: 1 1 100%;
    max-width: none;
  }

  .card-meta-time-management {
    gap: 0.75rem;
  }

  .card-meta-item {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero-cta-group-time-management {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .process-step-time-management {
    flex-direction: column;
    align-items: flex-start;
  }

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

.main-effectieve-dagplanning-technieken {
  width: 100%;
}

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

.breadcrumbs-effectieve-dagplanning-technieken {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs-effectieve-dagplanning-technieken a {
  color: #60a5fa;
  transition: color 0.3s ease;
}

.breadcrumbs-effectieve-dagplanning-technieken a:hover {
  color: #3b82f6;
}

.breadcrumbs-effectieve-dagplanning-technieken span {
  color: #93c5fd;
}

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

.hero-section-effectieve-dagplanning-technieken::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero-text-block-effectieve-dagplanning-technieken {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title-effectieve-dagplanning-technieken {
  color: #ffffff;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-subtitle-effectieve-dagplanning-technieken {
  color: #bfdbfe;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  font-weight: 400;
}

.hero-meta-effectieve-dagplanning-technieken {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.meta-badge-effectieve-dagplanning-technieken {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #93c5fd;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-effectieve-dagplanning-technieken i {
  color: #3b82f6;
}

.hero-stats-effectieve-dagplanning-technieken {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 1rem;
}

.stat-item-effectieve-dagplanning-technieken {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

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

.stat-label-effectieve-dagplanning-technieken {
  font-size: 0.875rem;
  color: #93c5fd;
  font-weight: 500;
}

.hero-image-block-effectieve-dagplanning-technieken {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-effectieve-dagplanning-technieken {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
  display: block;
}

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

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

.intro-text-effectieve-dagplanning-technieken {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-title-effectieve-dagplanning-technieken {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.intro-paragraph-effectieve-dagplanning-technieken {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

.intro-image-effectieve-dagplanning-technieken {
  flex: 1 1 50%;
}

.intro-image-effectieve-dagplanning-technieken img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: block;
}

.methods-section-effectieve-dagplanning-technieken {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.methods-section-effectieve-dagplanning-technieken::before {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.methods-header-effectieve-dagplanning-technieken {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-effectieve-dagplanning-technieken {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.methods-title-effectieve-dagplanning-technieken {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.methods-subtitle-effectieve-dagplanning-technieken {
  color: #bfdbfe;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.methods-steps-effectieve-dagplanning-technieken {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.methods-step-effectieve-dagplanning-technieken {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.methods-step-effectieve-dagplanning-technieken:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
}

.methods-step-number-effectieve-dagplanning-technieken {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

.methods-step-content-effectieve-dagplanning-technieken {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.methods-step-title-effectieve-dagplanning-technieken {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
}

.methods-step-text-effectieve-dagplanning-technieken {
  color: #bfdbfe;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
}

.implementation-section-effectieve-dagplanning-technieken {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.implementation-wrapper-effectieve-dagplanning-technieken {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.implementation-text-effectieve-dagplanning-technieken {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.implementation-title-effectieve-dagplanning-technieken {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.implementation-paragraph-effectieve-dagplanning-technieken {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

.implementation-quote-effectieve-dagplanning-technieken {
  padding: 1.5rem 2rem;
  border-left: 4px solid #3b82f6;
  background: #ffffff;
  border-radius: 8px;
  margin: 1rem 0;
}

.quote-text-effectieve-dagplanning-technieken {
  color: #0f172a;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.quote-author-effectieve-dagplanning-technieken {
  color: #64748b;
  font-size: 0.875rem;
  font-style: normal;
  display: block;
}

.implementation-tips-effectieve-dagplanning-technieken {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.implementation-tips-title-effectieve-dagplanning-technieken {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.implementation-tips-list-effectieve-dagplanning-technieken {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-left: 1.5rem;
}

.implementation-tip-item-effectieve-dagplanning-technieken {
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.implementation-image-effectieve-dagplanning-technieken {
  flex: 1 1 50%;
}

.implementation-image-effectieve-dagplanning-technieken img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: block;
}

.tools-section-effectieve-dagplanning-technieken {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.tools-header-effectieve-dagplanning-technieken {
  text-align: center;
  margin-bottom: 3rem;
}

.tools-title-effectieve-dagplanning-technieken {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.tools-subtitle-effectieve-dagplanning-technieken {
  color: #bfdbfe;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.tools-cards-effectieve-dagplanning-technieken {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.tools-card-effectieve-dagplanning-technieken {
  flex: 1 1 250px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.tools-card-effectieve-dagplanning-technieken:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
}

.tools-card-icon-effectieve-dagplanning-technieken {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 10px;
  color: #3b82f6;
  font-size: 1.5rem;
}

.tools-card-title-effectieve-dagplanning-technieken {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
}

.tools-card-text-effectieve-dagplanning-technieken {
  color: #bfdbfe;
  font-size: 0.9375rem;
  line-height: 1.6;
}

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

.conclusion-content-effectieve-dagplanning-technieken {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.conclusion-title-effectieve-dagplanning-technieken {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.conclusion-text-effectieve-dagplanning-technieken {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

.conclusion-cta-effectieve-dagplanning-technieken {
  margin-top: 1rem;
}

.btn-primary-effectieve-dagplanning-technieken {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #3b82f6;
  color: #ffffff;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

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

.conclusion-image-effectieve-dagplanning-technieken {
  flex: 1 1 50%;
  display: none;
}

.conclusion-image-effectieve-dagplanning-technieken img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: block;
}

.disclaimer-section-effectieve-dagplanning-technieken {
  background: #0f172a;
  padding: clamp(2rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.disclaimer-content-effectieve-dagplanning-technieken {
  padding: 1.5rem;
  border-left: 4px solid #3b82f6;
}

.disclaimer-title-effectieve-dagplanning-technieken {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-effectieve-dagplanning-technieken {
  color: #bfdbfe;
  font-size: 0.875rem;
  line-height: 1.7;
}

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

.related-header-effectieve-dagplanning-technieken {
  text-align: center;
  margin-bottom: 3rem;
}

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

.related-subtitle-effectieve-dagplanning-technieken {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
}

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

.related-card-effectieve-dagplanning-technieken {
  flex: 1 1 280px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.related-card-effectieve-dagplanning-technieken:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.related-card-image-effectieve-dagplanning-technieken {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-effectieve-dagplanning-technieken img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-effectieve-dagplanning-technieken:hover .related-card-image-effectieve-dagplanning-technieken img {
  transform: scale(1.05);
}

.related-card-content-effectieve-dagplanning-technieken {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
}

.related-card-title-effectieve-dagplanning-technieken {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
}

.related-card-text-effectieve-dagplanning-technieken {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-card-link-effectieve-dagplanning-technieken {
  color: #3b82f6;
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 0.3s ease;
  margin-top: 0.5rem;
}

.related-card-effectieve-dagplanning-technieken:hover .related-card-link-effectieve-dagplanning-technieken {
  color: #2563eb;
}

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

  .hero-text-block-effectieve-dagplanning-technieken,
  .hero-image-block-effectieve-dagplanning-technieken {
    flex: 1 1 100%;
  }

  .intro-content-effectieve-dagplanning-technieken,
  .implementation-wrapper-effectieve-dagplanning-technieken {
    flex-direction: column;
  }

  .intro-text-effectieve-dagplanning-technieken,
  .intro-image-effectieve-dagplanning-technieken,
  .implementation-text-effectieve-dagplanning-technieken,
  .implementation-image-effectieve-dagplanning-technieken {
    flex: 1 1 100%;
  }

  .methods-step-effectieve-dagplanning-technieken {
    flex-direction: column;
  }

  .methods-step-number-effectieve-dagplanning-technieken {
    min-width: auto;
  }

  .related-card-effectieve-dagplanning-technieken {
    flex: 1 1 100%;
    max-width: none;
  }

  .tools-card-effectieve-dagplanning-technieken {
    flex: 1 1 100%;
    max-width: none;
  }

  .conclusion-image-effectieve-dagplanning-technieken {
    display: none;
  }
}

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

  .stat-number-effectieve-dagplanning-technieken {
    font-size: 1.75rem;
  }

  .methods-step-effectieve-dagplanning-technieken {
    padding: 1rem;
  }

  .implementation-tips-list-effectieve-dagplanning-technieken {
    padding-left: 1.25rem;
  }

  .related-card-image-effectieve-dagplanning-technieken {
    height: 160px;
  }
}

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

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

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

.breadcrumbs-prioriteiten-stellen-meesterclass a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-prioriteiten-stellen-meesterclass a:hover {
  color: var(--color-primary);
}

.breadcrumbs-prioriteiten-stellen-meesterclass span {
  color: rgba(191, 219, 254, 0.5);
}

.breadcrumbs-prioriteiten-stellen-meesterclass span:last-child {
  color: var(--color-text-secondary);
}

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

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

.hero-text-block-prioriteiten-stellen-meesterclass {
  flex: 1 1 300px;
  max-width: 50%;
}

.hero-title-prioriteiten-stellen-meesterclass {
  font-size: clamp(2rem, 5vw + 1rem, 3.75rem);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero-subtitle-prioriteiten-stellen-meesterclass {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.7;
}

.hero-meta-prioriteiten-stellen-meesterclass {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.meta-badge-prioriteiten-stellen-meesterclass {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-secondary);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  font-weight: 500;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.meta-badge-prioriteiten-stellen-meesterclass i {
  color: var(--color-primary);
  font-size: 0.9rem;
}

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

.stat-item-prioriteiten-stellen-meesterclass {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

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

.stat-label-prioriteiten-stellen-meesterclass {
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  opacity: 0.85;
}

.hero-image-block-prioriteiten-stellen-meesterclass {
  flex: 1 1 300px;
  max-width: 50%;
}

.hero-image-prioriteiten-stellen-meesterclass {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
}

.introduction-section-prioriteiten-stellen-meesterclass {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-secondary);
  position: relative;
  overflow: hidden;
}

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

.introduction-text-prioriteiten-stellen-meesterclass {
  flex: 1 1 300px;
  max-width: 50%;
}

.introduction-title-prioriteiten-stellen-meesterclass {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.introduction-description-prioriteiten-stellen-meesterclass {
  font-size: clamp(0.9rem, 1.2vw + 0.4rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.introduction-image-prioriteiten-stellen-meesterclass {
  flex: 1 1 300px;
  max-width: 50%;
}

.introduction-img-prioriteiten-stellen-meesterclass {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
}

.framework-section-prioriteiten-stellen-meesterclass {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-primary);
  position: relative;
  overflow: hidden;
}

.framework-header-prioriteiten-stellen-meesterclass {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.framework-title-prioriteiten-stellen-meesterclass {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.framework-subtitle-prioriteiten-stellen-meesterclass {
  font-size: clamp(0.95rem, 1.5vw + 0.3rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.framework-text-prioriteiten-stellen-meesterclass {
  flex: 1 1 300px;
  max-width: 50%;
}

.framework-description-prioriteiten-stellen-meesterclass {
  font-size: clamp(0.9rem, 1.2vw + 0.4rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.framework-subheading-prioriteiten-stellen-meesterclass {
  font-size: clamp(1.2rem, 2vw + 0.3rem, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 1.5rem 0 1rem 0;
}

.framework-list-prioriteiten-stellen-meesterclass {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.framework-list-item-prioriteiten-stellen-meesterclass {
  font-size: clamp(0.9rem, 1.2vw + 0.4rem, 1.05rem);
  color: var(--color-text-secondary);
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.7;
}

.framework-list-item-prioriteiten-stellen-meesterclass::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.framework-list-item-prioriteiten-stellen-meesterclass strong {
  color: var(--color-text-primary);
}

.framework-image-prioriteiten-stellen-meesterclass {
  flex: 1 1 300px;
  max-width: 50%;
}

.framework-img-prioriteiten-stellen-meesterclass {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
}

.techniques-section-prioriteiten-stellen-meesterclass {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-secondary);
  position: relative;
  overflow: hidden;
}

.techniques-header-prioriteiten-stellen-meesterclass {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.techniques-tag-prioriteiten-stellen-meesterclass {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-secondary);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  font-weight: 500;
  margin-bottom: 1rem;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.techniques-title-prioriteiten-stellen-meesterclass {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.techniques-steps-prioriteiten-stellen-meesterclass {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.techniques-step-prioriteiten-stellen-meesterclass {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.techniques-step-prioriteiten-stellen-meesterclass:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.35);
  transform: translateX(4px);
}

.techniques-step-number-prioriteiten-stellen-meesterclass {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

.techniques-step-content-prioriteiten-stellen-meesterclass {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.techniques-step-title-prioriteiten-stellen-meesterclass {
  font-size: clamp(1.1rem, 2vw + 0.3rem, 1.35rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.techniques-step-text-prioriteiten-stellen-meesterclass {
  font-size: clamp(0.9rem, 1.2vw + 0.4rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.implementation-section-prioriteiten-stellen-meesterclass {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-primary);
  position: relative;
  overflow: hidden;
}

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

.implementation-text-prioriteiten-stellen-meesterclass {
  flex: 1 1 300px;
  max-width: 50%;
}

.implementation-title-prioriteiten-stellen-meesterclass {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.implementation-description-prioriteiten-stellen-meesterclass {
  font-size: clamp(0.9rem, 1.2vw + 0.4rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.implementation-quote-prioriteiten-stellen-meesterclass {
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(59, 130, 246, 0.08);
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
  border-radius: var(--radius-md);
}

.quote-text-prioriteiten-stellen-meesterclass {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-text-secondary);
  font-style: italic;
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.quote-author-prioriteiten-stellen-meesterclass {
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  color: var(--color-text-muted);
  font-style: normal;
  display: block;
}

.implementation-subheading-prioriteiten-stellen-meesterclass {
  font-size: clamp(1.2rem, 2vw + 0.3rem, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 1.5rem 0 1rem 0;
}

.implementation-image-prioriteiten-stellen-meesterclass {
  flex: 1 1 300px;
  max-width: 50%;
}

.implementation-img-prioriteiten-stellen-meesterclass {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
}

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

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

.benefits-title-prioriteiten-stellen-meesterclass {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.benefits-subtitle-prioriteiten-stellen-meesterclass {
  font-size: clamp(0.95rem, 1.5vw + 0.3rem, 1.125rem);
  color: var(--color-text-secondary);
}

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

.benefits-card-prioriteiten-stellen-meesterclass {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.benefits-card-prioriteiten-stellen-meesterclass:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.benefits-card-icon-prioriteiten-stellen-meesterclass {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  font-size: 1.75rem;
}

.benefits-card-title-prioriteiten-stellen-meesterclass {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.benefits-card-text-prioriteiten-stellen-meesterclass {
  font-size: clamp(0.9rem, 1.2vw + 0.4rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.conclusion-section-prioriteiten-stellen-meesterclass {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-primary);
  position: relative;
  overflow: hidden;
}

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

.conclusion-text-prioriteiten-stellen-meesterclass {
  flex: 1 1 300px;
  max-width: 50%;
}

.conclusion-title-prioriteiten-stellen-meesterclass {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.conclusion-description-prioriteiten-stellen-meesterclass {
  font-size: clamp(0.9rem, 1.2vw + 0.4rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-cta-box-prioriteiten-stellen-meesterclass {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(96, 165, 250, 0.1));
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-lg);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.cta-title-prioriteiten-stellen-meesterclass {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.cta-description-prioriteiten-stellen-meesterclass {
  font-size: clamp(0.9rem, 1.2vw + 0.4rem, 1.05rem);
  color: var(--color-text-secondary);
  margin-bottom: 1.25rem;
}

.cta-button-prioriteiten-stellen-meesterclass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--color-primary);
  color: #ffffff;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.cta-button-prioriteiten-stellen-meesterclass:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.conclusion-image-prioriteiten-stellen-meesterclass {
  flex: 1 1 300px;
  max-width: 50%;
}

.conclusion-img-prioriteiten-stellen-meesterclass {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
}

.disclaimer-section-prioriteiten-stellen-meesterclass {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background: rgba(59, 130, 246, 0.08);
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
  position: relative;
  overflow: hidden;
}

.disclaimer-content-prioriteiten-stellen-meesterclass {
  max-width: 900px;
}

.disclaimer-title-prioriteiten-stellen-meesterclass {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.disclaimer-text-prioriteiten-stellen-meesterclass {
  font-size: clamp(0.85rem, 1.1vw + 0.3rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.75;
}

.related-section-prioriteiten-stellen-meesterclass {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-secondary);
  position: relative;
  overflow: hidden;
}

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

.related-title-prioriteiten-stellen-meesterclass {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.related-subtitle-prioriteiten-stellen-meesterclass {
  font-size: clamp(0.95rem, 1.5vw + 0.3rem, 1.125rem);
  color: var(--color-text-secondary);
}

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

.related-card-prioriteiten-stellen-meesterclass {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--color-bg-card);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-prioriteiten-stellen-meesterclass:hover {
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(59, 130, 246, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.related-card-image-prioriteiten-stellen-meesterclass {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-card-image-prioriteiten-stellen-meesterclass img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-prioriteiten-stellen-meesterclass:hover .related-card-image-prioriteiten-stellen-meesterclass img {
  transform: scale(1.05);
}

.related-card-content-prioriteiten-stellen-meesterclass {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.related-card-title-prioriteiten-stellen-meesterclass {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.related-card-text-prioriteiten-stellen-meesterclass {
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.related-card-link-prioriteiten-stellen-meesterclass {
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: var(--color-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.related-card-link-prioriteiten-stellen-meesterclass:hover {
  color: var(--color-primary);
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .hero-content-prioriteiten-stellen-meesterclass,
  .introduction-content-prioriteiten-stellen-meesterclass,
  .framework-content-prioriteiten-stellen-meesterclass,
  .implementation-content-prioriteiten-stellen-meesterclass,
  .conclusion-content-prioriteiten-stellen-meesterclass {
    flex-direction: column;
  }

  .hero-text-block-prioriteiten-stellen-meesterclass,
  .hero-image-block-prioriteiten-stellen-meesterclass,
  .introduction-text-prioriteiten-stellen-meesterclass,
  .introduction-image-prioriteiten-stellen-meesterclass,
  .framework-text-prioriteiten-stellen-meesterclass,
  .framework-image-prioriteiten-stellen-meesterclass,
  .implementation-text-prioriteiten-stellen-meesterclass,
  .implementation-image-prioriteiten-stellen-meesterclass,
  .conclusion-text-prioriteiten-stellen-meesterclass,
  .conclusion-image-prioriteiten-stellen-meesterclass {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .techniques-step-prioriteiten-stellen-meesterclass {
    flex-direction: column;
    align-items: flex-start;
  }

  .techniques-step-number-prioriteiten-stellen-meesterclass {
    min-width: auto;
  }

  .hero-stats-prioriteiten-stellen-meesterclass {
    gap: 1.5rem;
  }

  .benefits-cards-prioriteiten-stellen-meesterclass {
    flex-direction: column;
  }

  .benefits-card-prioriteiten-stellen-meesterclass {
    flex: 1 1 100%;
    max-width: none;
  }

  .related-card-prioriteiten-stellen-meesterclass {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .hero-meta-prioriteiten-stellen-meesterclass {
    flex-direction: column;
    gap: 0.75rem;
  }

  .meta-badge-prioriteiten-stellen-meesterclass {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-stats-prioriteiten-stellen-meesterclass {
    flex-direction: column;
    gap: 1.25rem;
  }

  .cta-button-prioriteiten-stellen-meesterclass {
    width: 100%;
  }
}

.main-rust-en-herstel-in-schema {
  width: 100%;
}

.hero-section-rust-en-herstel-in-schema {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.hero-section-rust-en-herstel-in-schema .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.breadcrumbs-rust-en-herstel-in-schema {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-rust-en-herstel-in-schema a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-rust-en-herstel-in-schema a:hover {
  color: #93c5fd;
}

.breadcrumbs-rust-en-herstel-in-schema span {
  color: #475569;
}

.hero-content-rust-en-herstel-in-schema {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text-wrapper-rust-en-herstel-in-schema {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title-rust-en-herstel-in-schema {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.75rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-subtitle-rust-en-herstel-in-schema {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #bfdbfe;
  line-height: 1.4;
}

.hero-meta-rust-en-herstel-in-schema {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.meta-badge-rust-en-herstel-in-schema {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #bfdbfe;
  border-radius: 20px;
  font-size: 0.875rem;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.meta-badge-rust-en-herstel-in-schema i {
  color: #60a5fa;
}

.hero-stats-rust-en-herstel-in-schema {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.stat-item-rust-en-herstel-in-schema {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number-rust-en-herstel-in-schema {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #60a5fa;
  line-height: 1;
}

.stat-label-rust-en-herstel-in-schema {
  font-size: 0.75rem;
  color: #93c5fd;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-image-wrapper-rust-en-herstel-in-schema {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-rust-en-herstel-in-schema {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
}

@media (max-width: 1024px) {
  .hero-content-rust-en-herstel-in-schema {
    flex-direction: column;
  }

  .hero-text-wrapper-rust-en-herstel-in-schema,
  .hero-image-wrapper-rust-en-herstel-in-schema {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.introduction-section-rust-en-herstel-in-schema {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.introduction-section-rust-en-herstel-in-schema .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.intro-content-rust-en-herstel-in-schema {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-rust-en-herstel-in-schema {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-title-rust-en-herstel-in-schema {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.intro-description-rust-en-herstel-in-schema {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #475569;
}

.intro-image-rust-en-herstel-in-schema {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-rust-en-herstel-in-schema {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1024px) {
  .intro-content-rust-en-herstel-in-schema {
    flex-direction: column;
  }

  .intro-text-rust-en-herstel-in-schema,
  .intro-image-rust-en-herstel-in-schema {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.benefits-section-rust-en-herstel-in-schema {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.benefits-section-rust-en-herstel-in-schema .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.benefits-header-rust-en-herstel-in-schema {
  text-align: center;
  margin-bottom: 3rem;
}

.benefits-tag-rust-en-herstel-in-schema {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(96, 165, 250, 0.15);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.benefits-title-rust-en-herstel-in-schema {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

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

.benefits-card-rust-en-herstel-in-schema {
  flex: 1 1 280px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.benefits-card-rust-en-herstel-in-schema:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
}

.benefits-card-icon-rust-en-herstel-in-schema {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  color: #60a5fa;
  font-size: 1.75rem;
}

.benefits-card-title-rust-en-herstel-in-schema {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.benefits-card-text-rust-en-herstel-in-schema {
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  color: #bfdbfe;
}

@media (max-width: 768px) {
  .benefits-card-rust-en-herstel-in-schema {
    flex: 1 1 100%;
    max-width: none;
  }
}

.strategies-section-rust-en-herstel-in-schema {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.strategies-section-rust-en-herstel-in-schema .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.strategies-content-rust-en-herstel-in-schema {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.strategies-text-rust-en-herstel-in-schema {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.strategies-title-rust-en-herstel-in-schema {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.strategies-description-rust-en-herstel-in-schema {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #475569;
}

.strategies-list-rust-en-herstel-in-schema {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.strategy-item-rust-en-herstel-in-schema {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: #f8fafc;
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
}

.strategy-number-rust-en-herstel-in-schema {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.strategy-content-rust-en-herstel-in-schema {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.strategy-title-rust-en-herstel-in-schema {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.2;
}

.strategy-text-rust-en-herstel-in-schema {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

.featured-quote-rust-en-herstel-in-schema {
  padding: 2rem 2.5rem;
  border-left: 4px solid #3b82f6;
  background: #f1f5f9;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.quote-text-rust-en-herstel-in-schema {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-author-rust-en-herstel-in-schema {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

.strategies-image-rust-en-herstel-in-schema {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategies-img-rust-en-herstel-in-schema {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1024px) {
  .strategies-content-rust-en-herstel-in-schema {
    flex-direction: column;
  }

  .strategies-text-rust-en-herstel-in-schema,
  .strategies-image-rust-en-herstel-in-schema {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.implementation-section-rust-en-herstel-in-schema {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.implementation-section-rust-en-herstel-in-schema .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.implementation-header-rust-en-herstel-in-schema {
  text-align: center;
  margin-bottom: 3rem;
}

.implementation-title-rust-en-herstel-in-schema {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.implementation-subtitle-rust-en-herstel-in-schema {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
}

.implementation-wrapper-rust-en-herstel-in-schema {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.implementation-text-rust-en-herstel-in-schema {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.implementation-description-rust-en-herstel-in-schema {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #bfdbfe;
}

.implementation-list-rust-en-herstel-in-schema {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.implementation-list-item-rust-en-herstel-in-schema {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #cbd5e1;
  padding-left: 1.5rem;
  position: relative;
}

.implementation-list-item-rust-en-herstel-in-schema::before {
  content: "";
  position: absolute;
  left: 0;
  color: #60a5fa;
  font-weight: bold;
}

.implementation-list-item-rust-en-herstel-in-schema strong {
  color: #ffffff;
}

.implementation-image-rust-en-herstel-in-schema {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-img-rust-en-herstel-in-schema {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
}

@media (max-width: 1024px) {
  .implementation-wrapper-rust-en-herstel-in-schema {
    flex-direction: column;
  }

  .implementation-text-rust-en-herstel-in-schema,
  .implementation-image-rust-en-herstel-in-schema {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-rust-en-herstel-in-schema {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-section-rust-en-herstel-in-schema .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.conclusion-content-rust-en-herstel-in-schema {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  flex-direction: column;
}

.conclusion-title-rust-en-herstel-in-schema {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.conclusion-text-rust-en-herstel-in-schema {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #475569;
  margin-bottom: 1.5rem;
}

.conclusion-cta-rust-en-herstel-in-schema {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.cta-button-rust-en-herstel-in-schema {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: #3b82f6;
  color: #ffffff;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.cta-button-rust-en-herstel-in-schema:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.cta-button-secondary-rust-en-herstel-in-schema {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: transparent;
  color: #3b82f6;
  border: 2px solid #3b82f6;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button-secondary-rust-en-herstel-in-schema:hover {
  background: rgba(59, 130, 246, 0.1);
  transform: translateY(-2px);
}

.conclusion-image-rust-en-herstel-in-schema {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-img-rust-en-herstel-in-schema {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1024px) {
  .conclusion-content-rust-en-herstel-in-schema {
    flex-direction: column;
  }

  .conclusion-content-rust-en-herstel-in-schema > div {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.related-section-rust-en-herstel-in-schema {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-section-rust-en-herstel-in-schema .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.related-header-rust-en-herstel-in-schema {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-rust-en-herstel-in-schema {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.related-subtitle-rust-en-herstel-in-schema {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
}

.related-cards-rust-en-herstel-in-schema {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-rust-en-herstel-in-schema {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.related-card-rust-en-herstel-in-schema:hover {
  border-color: #3b82f6;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.12);
  transform: translateY(-4px);
}

.related-card-image-rust-en-herstel-in-schema {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.related-card-content-rust-en-herstel-in-schema {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
}

.related-card-title-rust-en-herstel-in-schema {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
}

.related-card-text-rust-en-herstel-in-schema {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

.related-card-link-rust-en-herstel-in-schema {
  font-size: 0.875rem;
  font-weight: 600;
  color: #3b82f6;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
  margin-top: 0.5rem;
}

.related-card-link-rust-en-herstel-in-schema:hover {
  color: #2563eb;
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .related-card-rust-en-herstel-in-schema {
    flex: 1 1 100%;
    max-width: none;
  }
}

.disclaimer-section-rust-en-herstel-in-schema {
  background: #f8fafc;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-section-rust-en-herstel-in-schema .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.disclaimer-content-rust-en-herstel-in-schema {
  background: #ffffff;
  padding: 2rem;
  border-left: 4px solid #64748b;
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-rust-en-herstel-in-schema {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.disclaimer-text-rust-en-herstel-in-schema {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #475569;
}

@media (max-width: 768px) {
  .strategy-item-rust-en-herstel-in-schema {
    flex-direction: column;
    gap: 1rem;
  }

  .strategy-number-rust-en-herstel-in-schema {
    min-width: auto;
  }

  .conclusion-cta-rust-en-herstel-in-schema {
    flex-direction: column;
  }

  .cta-button-rust-en-herstel-in-schema,
  .cta-button-secondary-rust-en-herstel-in-schema {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-stats-rust-en-herstel-in-schema {
    gap: 1.5rem;
  }

  .stat-number-rust-en-herstel-in-schema {
    font-size: 1.5rem;
  }

  .breadcrumbs-rust-en-herstel-in-schema {
    font-size: 0.75rem;
  }
}

.main-timeblocking-drukke-professionals {
  width: 100%;
}

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

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

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

.hero-text-block-timeblocking-drukke-professionals {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-timeblocking-drukke-professionals {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-timeblocking-drukke-professionals {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

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

.hero-meta-timeblocking-drukke-professionals {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-timeblocking-drukke-professionals {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #bfdbfe;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.meta-badge-timeblocking-drukke-professionals i {
  color: #3b82f6;
}

.hero-stats-timeblocking-drukke-professionals {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-top: 2rem;
}

.stat-item-timeblocking-drukke-professionals {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-timeblocking-drukke-professionals {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #3b82f6;
  display: block;
  line-height: 1;
}

.stat-label-timeblocking-drukke-professionals {
  font-size: 0.875rem;
  color: #93c5fd;
  opacity: 0.9;
}

.hero-image-timeblocking-drukke-professionals {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
}

.breadcrumbs-timeblocking-drukke-professionals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.breadcrumbs-timeblocking-drukke-professionals a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-timeblocking-drukke-professionals a:hover {
  color: #3b82f6;
  text-decoration: underline;
}

.breadcrumbs-timeblocking-drukke-professionals span {
  color: #475569;
}

.intro-section-timeblocking-drukke-professionals {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-timeblocking-drukke-professionals {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-timeblocking-drukke-professionals {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-timeblocking-drukke-professionals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.intro-description-timeblocking-drukke-professionals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.intro-text-timeblocking-drukke-professionals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #93c5fd;
  line-height: 1.7;
}

.intro-image-img-timeblocking-drukke-professionals {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15);
}

.principles-section-timeblocking-drukke-professionals {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.principles-header-timeblocking-drukke-professionals {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-timeblocking-drukke-professionals {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(59, 130, 246, 0.3);
  margin-bottom: 1rem;
}

.principles-title-timeblocking-drukke-professionals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.principles-subtitle-timeblocking-drukke-professionals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

.principles-grid-timeblocking-drukke-professionals {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.principle-card-timeblocking-drukke-professionals {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.principle-card-timeblocking-drukke-professionals:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15);
}

.principle-number-timeblocking-drukke-professionals {
  font-size: 2.5rem;
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
}

.principle-title-timeblocking-drukke-professionals {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #ffffff;
}

.principle-text-timeblocking-drukke-professionals {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #bfdbfe;
  line-height: 1.6;
}

.implementation-section-timeblocking-drukke-professionals {
  background: #1e3a5f;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.implementation-wrapper-timeblocking-drukke-professionals {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.implementation-text-timeblocking-drukke-professionals {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-image-timeblocking-drukke-professionals {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-title-timeblocking-drukke-professionals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.implementation-description-timeblocking-drukke-professionals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.implementation-steps-timeblocking-drukke-professionals {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-timeblocking-drukke-professionals {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.2s ease;
}

.step-timeblocking-drukke-professionals:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
}

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

.step-content-timeblocking-drukke-professionals {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-timeblocking-drukke-professionals {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
}

.step-text-timeblocking-drukke-professionals {
  font-size: 0.9375rem;
  color: #bfdbfe;
  line-height: 1.6;
}

.implementation-image-img-timeblocking-drukke-professionals {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15);
}

.challenges-section-timeblocking-drukke-professionals {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.challenges-header-timeblocking-drukke-professionals {
  text-align: center;
  margin-bottom: 3rem;
}

.challenges-title-timeblocking-drukke-professionals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.challenges-subtitle-timeblocking-drukke-professionals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
}

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

.challenges-text-timeblocking-drukke-professionals {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenges-image-timeblocking-drukke-professionals {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenge-item-timeblocking-drukke-professionals {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.challenge-item-timeblocking-drukke-professionals:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.challenge-title-timeblocking-drukke-professionals {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.challenge-text-timeblocking-drukke-professionals {
  font-size: 0.9375rem;
  color: #bfdbfe;
  line-height: 1.7;
}

.challenges-image-img-timeblocking-drukke-professionals {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15);
}

.tools-section-timeblocking-drukke-professionals {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tools-header-timeblocking-drukke-professionals {
  text-align: center;
  margin-bottom: 3rem;
}

.tools-title-timeblocking-drukke-professionals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.tools-subtitle-timeblocking-drukke-professionals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
}

.tools-grid-timeblocking-drukke-professionals {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.tool-card-timeblocking-drukke-professionals {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.tool-card-timeblocking-drukke-professionals:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15);
}

.tool-name-timeblocking-drukke-professionals {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.tool-description-timeblocking-drukke-professionals {
  font-size: 0.9375rem;
  color: #bfdbfe;
  line-height: 1.6;
}

.tool-features-timeblocking-drukke-professionals {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tool-features-timeblocking-drukke-professionals li {
  font-size: 0.875rem;
  color: #93c5fd;
  padding-left: 1.5rem;
  position: relative;
}

.tool-features-timeblocking-drukke-professionals li:before {
  content: "";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
}

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

.conclusion-content-timeblocking-drukke-professionals {
  max-width: 800px;
  margin: 0 auto;
}

.featured-quote-timeblocking-drukke-professionals {
  padding: 2.5rem;
  border-left: 4px solid #3b82f6;
  background: rgba(59, 130, 246, 0.08);
  margin: 2rem 0;
  border-radius: 8px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

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

.quote-author-timeblocking-drukke-professionals {
  font-size: 0.875rem;
  color: #93c5fd;
  font-style: normal;
}

.conclusion-title-timeblocking-drukke-professionals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.conclusion-text-timeblocking-drukke-professionals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-cta-timeblocking-drukke-professionals {
  background: rgba(59, 130, 246, 0.1);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  margin-top: 2rem;
  text-align: center;
}

.cta-title-timeblocking-drukke-professionals {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.cta-text-timeblocking-drukke-professionals {
  font-size: 0.9375rem;
  color: #bfdbfe;
  margin-bottom: 1.5rem;
}

.btn-cta-timeblocking-drukke-professionals {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #3b82f6;
  color: #0f172a;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 0.9375rem;
}

.btn-cta-timeblocking-drukke-professionals:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.related-section-timeblocking-drukke-professionals {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-timeblocking-drukke-professionals {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-timeblocking-drukke-professionals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

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

.related-cards-timeblocking-drukke-professionals {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

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

.related-card-timeblocking-drukke-professionals:hover {
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15);
}

.related-image-timeblocking-drukke-professionals {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: rgba(59, 130, 246, 0.05);
}

.related-card-img-timeblocking-drukke-professionals {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-timeblocking-drukke-professionals > div:not(.related-image-timeblocking-drukke-professionals) {
  padding: clamp(1rem, 3vw, 1.5rem);
}

.related-card-title-timeblocking-drukke-professionals {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  padding: clamp(1rem, 3vw, 1.5rem) clamp(1rem, 3vw, 1.5rem) 0;
}

.related-card-text-timeblocking-drukke-professionals {
  font-size: 0.875rem;
  color: #bfdbfe;
  line-height: 1.6;
  margin-bottom: 1rem;
  padding: 0 clamp(1rem, 3vw, 1.5rem);
}

.related-card-link-timeblocking-drukke-professionals {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0 clamp(1rem, 3vw, 1.5rem) clamp(1rem, 3vw, 1.5rem);
  transition: all 0.2s ease;
  display: inline-block;
}

.related-card-link-timeblocking-drukke-professionals:hover {
  color: #60a5fa;
  text-decoration: underline;
}

.disclaimer-section-timeblocking-drukke-professionals {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  overflow: hidden;
}

.disclaimer-content-timeblocking-drukke-professionals {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-timeblocking-drukke-professionals {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.disclaimer-text-timeblocking-drukke-professionals {
  font-size: 0.9375rem;
  color: #bfdbfe;
  line-height: 1.8;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.05);
  border-left: 3px solid rgba(59, 130, 246, 0.3);
  border-radius: 4px;
}

@media (max-width: 768px) {
  .hero-content-timeblocking-drukke-professionals,
  .intro-content-timeblocking-drukke-professionals,
  .implementation-wrapper-timeblocking-drukke-professionals,
  .challenges-wrapper-timeblocking-drukke-professionals {
    flex-direction: column;
  }

  .hero-text-block-timeblocking-drukke-professionals,
  .hero-image-block-timeblocking-drukke-professionals,
  .intro-text-timeblocking-drukke-professionals,
  .intro-image-timeblocking-drukke-professionals,
  .implementation-text-timeblocking-drukke-professionals,
  .implementation-image-timeblocking-drukke-professionals,
  .challenges-text-timeblocking-drukke-professionals,
  .challenges-image-timeblocking-drukke-professionals {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .principle-card-timeblocking-drukke-professionals,
  .tool-card-timeblocking-drukke-professionals,
  .related-card-timeblocking-drukke-professionals {
    flex: 1 1 100%;
    max-width: none;
  }

  .hero-stats-timeblocking-drukke-professionals {
    gap: 1rem;
  }

  .stat-number-timeblocking-drukke-professionals {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .hero-stats-timeblocking-drukke-professionals {
    flex-direction: column;
    gap: 1.5rem;
  }

  .meta-badge-timeblocking-drukke-professionals {
    font-size: 0.8rem;
  }

  .step-timeblocking-drukke-professionals {
    flex-direction: column;
  }

  .step-number-timeblocking-drukke-professionals {
    min-width: auto;
  }
}

.main-diepwerk-concentratie-mastery {
  width: 100%;
  font-family: var(--font-primary);
  color: var(--color-text-primary);
}

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

.breadcrumbs-diepwerk-concentratie-mastery {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
}

.breadcrumbs-diepwerk-concentratie-mastery a {
  color: var(--color-primary);
  transition: color 0.2s ease;
}

.breadcrumbs-diepwerk-concentratie-mastery a:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}

.breadcrumbs-diepwerk-concentratie-mastery span {
  color: var(--color-text-muted);
}

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

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

.hero-text-block-diepwerk-concentratie-mastery {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title-diepwerk-concentratie-mastery {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1.15;
}

.hero-subtitle-diepwerk-concentratie-mastery {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.hero-meta-diepwerk-concentratie-mastery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.meta-badge-diepwerk-concentratie-mastery {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: var(--color-secondary);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-diepwerk-concentratie-mastery i {
  color: var(--color-primary);
}

.hero-stats-diepwerk-concentratie-mastery {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 1rem;
}

.stat-item-diepwerk-concentratie-mastery {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-diepwerk-concentratie-mastery {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label-diepwerk-concentratie-mastery {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.hero-image-block-diepwerk-concentratie-mastery {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
}

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

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

  .hero-text-block-diepwerk-concentratie-mastery,
  .hero-image-block-diepwerk-concentratie-mastery {
    flex: 1 1 100%;
  }

  .hero-stats-diepwerk-concentratie-mastery {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.introduction-section-diepwerk-concentratie-mastery {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.intro-text-diepwerk-concentratie-mastery {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-title-diepwerk-concentratie-mastery {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.intro-description-diepwerk-concentratie-mastery {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

.intro-image-diepwerk-concentratie-mastery {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
}

.intro-image-img-diepwerk-concentratie-mastery {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .intro-content-diepwerk-concentratie-mastery {
    flex-direction: column;
  }

  .intro-text-diepwerk-concentratie-mastery,
  .intro-image-diepwerk-concentratie-mastery {
    flex: 1 1 100%;
  }
}

.concept-section-diepwerk-concentratie-mastery {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.concept-header-diepwerk-concentratie-mastery {
  margin-bottom: 3rem;
  text-align: center;
}

.concept-title-diepwerk-concentratie-mastery {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.concept-wrapper-diepwerk-concentratie-mastery {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.concept-text-diepwerk-concentratie-mastery {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.concept-description-diepwerk-concentratie-mastery {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

.concept-highlight-diepwerk-concentratie-mastery {
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.1);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.highlight-text-diepwerk-concentratie-mastery {
  color: var(--color-text-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

.concept-image-diepwerk-concentratie-mastery {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
}

.concept-image-img-diepwerk-concentratie-mastery {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .concept-wrapper-diepwerk-concentratie-mastery {
    flex-direction: column;
  }

  .concept-text-diepwerk-concentratie-mastery,
  .concept-image-diepwerk-concentratie-mastery {
    flex: 1 1 100%;
  }
}

.strategies-section-diepwerk-concentratie-mastery {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.strategies-header-diepwerk-concentratie-mastery {
  text-align: center;
  margin-bottom: 3rem;
}

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

.strategies-title-diepwerk-concentratie-mastery {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

.strategies-list-diepwerk-concentratie-mastery {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.strategy-item-diepwerk-concentratie-mastery {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
}

.strategy-number-diepwerk-concentratie-mastery {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.strategy-content-diepwerk-concentratie-mastery {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.strategy-title-diepwerk-concentratie-mastery {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.strategy-text-diepwerk-concentratie-mastery {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .strategy-item-diepwerk-concentratie-mastery {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .strategy-number-diepwerk-concentratie-mastery {
    min-width: auto;
  }
}

.obstacles-section-diepwerk-concentratie-mastery {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.obstacles-wrapper-diepwerk-concentratie-mastery {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.obstacles-text-diepwerk-concentratie-mastery {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.obstacles-title-diepwerk-concentratie-mastery {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.obstacles-intro-diepwerk-concentratie-mastery {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.obstacles-list-diepwerk-concentratie-mastery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.obstacle-item-diepwerk-concentratie-mastery {
  padding: 1rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-md);
}

.obstacle-name-diepwerk-concentratie-mastery {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.obstacle-solution-diepwerk-concentratie-mastery {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.obstacles-image-diepwerk-concentratie-mastery {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
}

.obstacles-image-img-diepwerk-concentratie-mastery {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .obstacles-wrapper-diepwerk-concentratie-mastery {
    flex-direction: column;
  }

  .obstacles-text-diepwerk-concentratie-mastery,
  .obstacles-image-diepwerk-concentratie-mastery {
    flex: 1 1 100%;
  }
}

.implementation-section-diepwerk-concentratie-mastery {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.implementation-header-diepwerk-concentratie-mastery {
  text-align: center;
  margin-bottom: 3rem;
}

.implementation-title-diepwerk-concentratie-mastery {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
}

.implementation-steps-diepwerk-concentratie-mastery {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.implementation-step-diepwerk-concentratie-mastery {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.implementation-step-diepwerk-concentratie-mastery:nth-child(even) {
  flex-direction: row-reverse;
}

.step-image-diepwerk-concentratie-mastery {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
}

.step-image-img-diepwerk-concentratie-mastery {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
}

.step-content-diepwerk-concentratie-mastery {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-title-diepwerk-concentratie-mastery {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #1e293b;
}

.step-text-diepwerk-concentratie-mastery {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #64748b;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .implementation-step-diepwerk-concentratie-mastery {
    flex-direction: column;
  }

  .implementation-step-diepwerk-concentratie-mastery:nth-child(even) {
    flex-direction: column;
  }

  .step-image-diepwerk-concentratie-mastery,
  .step-content-diepwerk-concentratie-mastery {
    flex: 1 1 100%;
  }
}

.quote-section-diepwerk-concentratie-mastery {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.featured-quote-diepwerk-concentratie-mastery {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 5vw, 3rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-lg);
  margin: 0 auto;
  max-width: 700px;
}

.quote-text-diepwerk-concentratie-mastery {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--color-text-primary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.quote-author-diepwerk-concentratie-mastery {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  font-style: normal;
  display: block;
}

.conclusion-section-diepwerk-concentratie-mastery {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.conclusion-content-diepwerk-concentratie-mastery {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.conclusion-title-diepwerk-concentratie-mastery {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
}

.conclusion-text-diepwerk-concentratie-mastery {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.8;
}

.conclusion-cta-diepwerk-concentratie-mastery {
  margin-top: 1rem;
}

.btn-primary-conclusion-diepwerk-concentratie-mastery {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-primary);
  color: #0f172a;
  border: none;
  border-radius: var(--radius-lg);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

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

.related-section-diepwerk-concentratie-mastery {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.related-header-diepwerk-concentratie-mastery {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-diepwerk-concentratie-mastery {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.related-subtitle-diepwerk-concentratie-mastery {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
}

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

.related-card-diepwerk-concentratie-mastery {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-diepwerk-concentratie-mastery:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15);
}

.related-card-image-diepwerk-concentratie-mastery {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.related-image-diepwerk-concentratie-mastery {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-title-diepwerk-concentratie-mastery {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.3;
}

.related-card-text-diepwerk-concentratie-mastery {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.related-card-link-diepwerk-concentratie-mastery {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
}

.related-card-link-diepwerk-concentratie-mastery:hover {
  color: var(--color-secondary);
  gap: 0.75rem;
}

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

.disclaimer-section-diepwerk-concentratie-mastery {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.disclaimer-content-diepwerk-concentratie-mastery {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
}

.disclaimer-title-diepwerk-concentratie-mastery {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.disclaimer-text-diepwerk-concentratie-mastery {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #64748b;
  line-height: 1.7;
}

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

  .introduction-section-diepwerk-concentratie-mastery,
  .concept-section-diepwerk-concentratie-mastery,
  .strategies-section-diepwerk-concentratie-mastery,
  .obstacles-section-diepwerk-concentratie-mastery,
  .implementation-section-diepwerk-concentratie-mastery,
  .quote-section-diepwerk-concentratie-mastery,
  .conclusion-section-diepwerk-concentratie-mastery,
  .related-section-diepwerk-concentratie-mastery {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-diepwerk-concentratie-mastery {
    padding: 8rem 0;
  }

  .introduction-section-diepwerk-concentratie-mastery,
  .concept-section-diepwerk-concentratie-mastery,
  .strategies-section-diepwerk-concentratie-mastery,
  .obstacles-section-diepwerk-concentratie-mastery,
  .implementation-section-diepwerk-concentratie-mastery,
  .quote-section-diepwerk-concentratie-mastery,
  .conclusion-section-diepwerk-concentratie-mastery,
  .related-section-diepwerk-concentratie-mastery {
    padding: 8rem 0;
  }
}

:root {
  --color-bg-primary: #0c1929;
  --color-bg-secondary: #162d50;
  --color-bg-tertiary: #1e3a5f;
  --color-bg-card: rgba(59, 130, 246, 0.08);
  --color-text-primary: #ffffff;
  --color-text-secondary: #bfdbfe;
  --color-text-muted: #93c5fd;
  --color-primary: #3b82f6;
  --color-primary-hover: #2563eb;
  --color-secondary: #60a5fa;
  --color-accent-warm: #fbbf24;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 10px 25px rgba(59, 130, 246, 0.15);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

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

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

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

.tijdwijs-about-main {
  width: 100%;
}

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

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

.hero-vision-content-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.hero-vision-intro-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #bfdbfe;
  line-height: 1.7;
  max-width: 700px;
}

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

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

.stat-item-vision-about {
  flex: 0 1 auto;
}

.stat-number-vision-about {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-accent-warm);
  display: block;
  line-height: 1;
}

.stat-label-vision-about {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #93c5fd;
  margin-top: 0.5rem;
  display: block;
}

.foundation-story-about {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.foundation-story-content-about {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.foundation-story-text-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.foundation-story-heading-about {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
}

.foundation-story-paragraph-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #bfdbfe;
  line-height: 1.8;
}

.foundation-story-highlight-about {
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.1);
  border-left: 4px solid var(--color-accent-warm);
  border-radius: var(--radius-md);
}

.foundation-story-highlight-text-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #e0e7ff;
  font-style: italic;
}

.foundation-image-about {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

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

.methodology-approach-content-about {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

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

.methodology-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-accent-warm);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  align-self: center;
}

.methodology-title-about {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
}

.methodology-description-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #93c5fd;
  line-height: 1.8;
}

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

.methodology-step-about {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.15);
}

.methodology-step-number-about {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-accent-warm);
  flex-shrink: 0;
  min-width: 70px;
  line-height: 1;
}

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

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

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

.values-pillars-about {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.values-pillars-content-about {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

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

.values-header-title-about {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
}

.values-header-text-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #93c5fd;
  line-height: 1.8;
}

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

.values-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
}

.values-card-icon-about {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-warm);
  border-radius: var(--radius-md);
  color: #0c1929;
  font-size: 1.75rem;
  flex-shrink: 0;
}

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

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

.commitment-quote-about {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.commitment-quote-content-about {
  max-width: 800px;
  margin: 0 auto;
}

.featured-quote-about {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 5px solid var(--color-accent-warm);
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.featured-quote-text-about {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.6;
  font-style: italic;
}

.featured-quote-author-about {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-accent-warm);
  font-weight: 500;
  font-style: normal;
}

.disclaimer-important-about {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.disclaimer-important-content-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.disclaimer-header-about {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.disclaimer-icon-about {
  font-size: 1.5rem;
  color: #fbbf24;
  flex-shrink: 0;
}

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

.disclaimer-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  color: #bfdbfe;
  line-height: 1.8;
}

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

  .foundation-story-about {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .methodology-approach-about {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .values-pillars-about {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .commitment-quote-about {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .disclaimer-important-about {
    padding: clamp(3rem, 6vw, 4rem) 0;
  }
}

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

  .methodology-step-about {
    flex-direction: column;
  }

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

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

.info-hub .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 5vw, 2rem);
  padding-right: clamp(1rem, 5vw, 2rem);
}

.info-hub-hero {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.info-hub-hero .container {
  position: relative;
  z-index: 1;
}

.info-hub-hero-content {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 2rem);
  max-width: 800px;
}

.info-hub-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.info-hub-hero-subtitle {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.info-hub-hero-meta {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-muted);
}

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

.info-hub-content .container {
  max-width: 900px;
}

.info-hub-content-inner {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 6vw, 4rem);
}

.info-hub-section {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 1.5rem);
}

.info-hub-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.info-hub-section p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.info-hub-section ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-left: clamp(1.5rem, 4vw, 2rem);
}

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

.info-hub-section li::marker {
  color: var(--color-primary);
}

.info-hub-contact {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  margin-top: clamp(2rem, 6vw, 4rem);
}

.info-hub-contact .container {
  max-width: 900px;
}

.info-hub-contact-content {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.info-hub-contact h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.2;
}

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

.info-hub-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.info-hub-contact-label {
  font-weight: 600;
  color: var(--color-text-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.info-hub-contact-value {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
}

@media (min-width: 768px) {
  .info-hub-hero {
    padding: 5rem 0;
  }

  .info-hub-content {
    padding: 5rem 0;
  }

  .info-hub-contact {
    padding: 5rem 0;
  }

  .info-hub-section {
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .info-hub-hero {
    padding: 6rem 0;
  }

  .info-hub-content {
    padding: 6rem 0;
  }

  .info-hub-contact {
    padding: 6rem 0;
  }
}

.thank-you-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-section {
  width: 100%;
  background: var(--color-bg-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

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

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.thank-icon {
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(4rem, 12vw, 6rem);
  color: var(--color-primary);
  animation: pulse-scale 0.6s ease-out;
}

@keyframes pulse-scale {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-section h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-lead {
  font-family: var(--font-primary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 500;
  line-height: 1.4;
}

.thank-message {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}

.thank-message p {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-message strong {
  color: var(--color-primary);
  font-weight: 600;
}

.thank-list {
  list-style: none;
  padding: 0;
  margin: clamp(1.5rem, 4vw, 2.5rem) 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.875rem, 2vw, 1.25rem);
}

.thank-list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.thank-list i {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-primary);
  flex-shrink: 0;
}

.thank-list span {
  text-align: left;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-closing {
  margin-top: clamp(1.5rem, 4vw, 2rem);
  padding-top: clamp(1.5rem, 4vw, 2rem);
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  font-style: italic;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

@media (min-width: 768px) {
  .thank-section {
    padding: 4rem 0;
    min-height: 100vh;
  }

  .thank-content {
    padding: 2rem;
  }

  .thank-icon {
    margin-bottom: 2.5rem;
  }

  .thank-message {
    margin-bottom: 3rem;
  }

  .thank-list {
    margin: 2rem 0;
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: 6rem 0;
    min-height: 100vh;
  }

  .thank-content {
    padding: 3rem 2rem;
  }

  .thank-message {
    margin-bottom: 3.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .thank-icon {
    animation: none;
    opacity: 1;
  }

  .btn {
    transition: none;
  }

  .btn:hover {
    transform: none;
  }
}

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

.main.error-page {
  width: 100%;
}

.error-section {
  background: var(--color-bg-primary);
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  position: relative;
}

.error-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float-animation 6s ease-in-out infinite;
}

.error-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float-animation 8s ease-in-out infinite reverse;
}

@keyframes float-animation {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(30px);
  }
}

.error-section .container {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  width: 100%;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.error-code-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 15vw + 1rem, 8rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin: 0;
  letter-spacing: -0.05em;
  animation: pulse-scale 3s ease-in-out infinite;
}

@keyframes pulse-scale {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.error-decoration {
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--color-accent-warm);
  animation: spin-animation 4s linear infinite;
}

@keyframes spin-animation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 0.5rem, 3rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-subtitle {
  font-size: clamp(1rem, 2.5vw + 0.25rem, 1.375rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-description {
  font-size: clamp(0.875rem, 1.5vw + 0.25rem, 1.125rem);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
  max-width: 550px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-suggestions {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  width: 100%;
  max-width: 500px;
  margin: clamp(1rem, 3vw, 2rem) 0;
}

.suggestion-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  padding: clamp(0.875rem, 2vw, 1.25rem);
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.suggestion-item:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(96, 165, 250, 0.35);
  transform: translateX(8px);
}

.suggestion-item i {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--color-primary);
  flex-shrink: 0;
}

.suggestion-item span {
  font-size: clamp(0.875rem, 1.5vw + 0.25rem, 1rem);
  color: var(--color-text-secondary);
  text-align: left;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.75rem, 4vw, 3rem);
  font-size: clamp(0.875rem, 1.5vw + 0.25rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-family: var(--font-primary);
  cursor: pointer;
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

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

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

.error-footer {
  font-size: clamp(0.8125rem, 1.25vw + 0.25rem, 0.95rem);
  color: var(--color-text-muted);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .error-section {
    padding: 4rem 0;
  }

  .error-code {
    animation: pulse-scale 3s ease-in-out infinite;
  }

  .suggestion-item {
    padding: 1.25rem 1.5rem;
  }

  .suggestion-item:hover {
    transform: translateX(12px);
  }

  .error-content {
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: 6rem 0;
    min-height: 100vh;
  }

  .error-section::before {
    width: 800px;
    height: 800px;
    top: -30%;
    right: -5%;
  }

  .error-section::after {
    width: 600px;
    height: 600px;
    bottom: -20%;
    left: 0;
  }

  .error-content {
    gap: 3rem;
  }

  .error-suggestions {
    margin: 2rem 0 3rem 0;
  }

  .suggestion-item:hover {
    transform: translateX(16px);
  }
}

@media (min-width: 1440px) {
  .error-section {
    padding: 8rem 0;
  }

  .error-code-wrapper {
    gap: 2.5rem;
  }

  .error-content {
    gap: 3.5rem;
  }
}