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

:root {
  
  
  
  --color-bg-dark-primary: #0f172a;
  --color-bg-dark-secondary: #1e293b;
  --color-bg-dark-tertiary: #0d1526;
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-light-tertiary: #f1f5f9;
  
  
  --color-bg-card-dark: rgba(255, 255, 255, 0.05);
  --color-bg-card-light: #ffffff;
  
  
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #e2e8f0;
  --color-text-dark-muted: #94a3b8;
  
  
  --color-text-light-primary: #0f172a;
  --color-text-light-secondary: #334155;
  --color-text-light-muted: #64748b;
  
  
  --color-primary: #06b6d4;
  --color-primary-hover: #0891b2;
  --color-secondary: #0ea5e9;
  --color-accent-warm: #f59e0b;
  
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', 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;
  --space-4xl: 8rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
}

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

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

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

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

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

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

p {
  line-height: 1.8;
}

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

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

.dark-section {
  background: var(--color-bg-dark-primary);
  padding: clamp(2.5rem, 6vw, 6rem) 0;
}

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

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

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

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

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

.dark-section a:not(.btn) {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.dark-section a:not(.btn):hover {
  color: var(--color-primary-hover);
}

.light-section {
  background: var(--color-bg-light-primary);
  padding: clamp(2.5rem, 6vw, 6rem) 0;
}

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

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

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

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

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

.light-section a:not(.btn) {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.light-section a:not(.btn):hover {
  color: var(--color-primary-hover);
}

.light-accent-section {
  background: var(--color-bg-light-secondary);
  padding: clamp(2.5rem, 6vw, 6rem) 0;
}

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

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

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

.light-accent-section p {
  color: var(--color-text-light-secondary);
}

.light-accent-section a:not(.btn) {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.light-accent-section a:not(.btn):hover {
  color: var(--color-primary-hover);
}

.dark-accent-section {
  background: var(--color-bg-dark-secondary);
  padding: clamp(2.5rem, 6vw, 6rem) 0;
}

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

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

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

.dark-accent-section p {
  color: var(--color-text-dark-muted);
}

.dark-accent-section a:not(.btn) {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.dark-accent-section a:not(.btn):hover {
  color: var(--color-primary-hover);
}

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

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

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

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

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

.dark-section .btn-outline {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

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

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

.btn-secondary:hover {
  background: #0284c7;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.dark-section .card {
  background: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-section .card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.light-section .card {
  background: var(--color-bg-card-light);
  box-shadow: var(--shadow-md);
}

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

.card-icon {
  width: clamp(2.5rem, 5vw, 4rem);
  height: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: var(--radius-lg);
  color: #ffffff;
  font-size: clamp(1.25rem, 3vw, 2rem);
}

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

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

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

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(clamp(15rem, 40vw, 25rem), 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(clamp(12rem, 30vw, 20rem), 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(clamp(10rem, 25vw, 18rem), 1fr));
}

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

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 2rem);
}

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

.accent-line {
  width: clamp(2rem, 8vw, 4rem);
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
}

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

.glow-effect {
  position: relative;
}

.glow-effect::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: var(--radius-lg);
  opacity: 0.15;
  filter: blur(8px);
  z-index: -1;
}

input, textarea, select {
  width: 100%;
  padding: clamp(0.625rem, 2vw, 1rem);
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.dark-section input,
.dark-section textarea,
.dark-section select {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--color-text-dark-primary);
}

.dark-section input:focus,
.dark-section textarea:focus,
.dark-section select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
  background: rgba(255, 255, 255, 0.12);
}

.light-section input,
.light-section textarea,
.light-section select {
  background: var(--color-bg-light-secondary);
  border-color: #e2e8f0;
  color: var(--color-text-light-primary);
}

.light-section input:focus,
.light-section textarea:focus,
.light-section select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
  background: var(--color-bg-light-primary);
}

input::placeholder, textarea::placeholder {
  opacity: 0.6;
}

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

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

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

  .flex-between {
    flex-direction: column;
    align-items: flex-start;
  }
}

a:focus, button:focus, input:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

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

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

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

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

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

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

.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-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }

.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
:root {
  --color-bg-dark-primary: #0f172a;
  --color-bg-dark-secondary: #1e293b;
  --color-bg-dark-tertiary: #0d1526;
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-light-tertiary: #f1f5f9;
  --color-bg-card-dark: rgba(255, 255, 255, 0.05);
  --color-bg-card-light: #ffffff;
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #e2e8f0;
  --color-text-dark-muted: #94a3b8;
  --color-text-light-primary: #0f172a;
  --color-text-light-secondary: #334155;
  --color-text-light-muted: #64748b;
  --color-primary: #06b6d4;
  --color-primary-hover: #0891b2;
  --color-secondary: #0ea5e9;
  --color-accent-warm: #f59e0b;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 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;
  --space-4xl: 8rem;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
}

.header-usabi-gateway {
  background: var(--color-bg-dark-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

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

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

.header-usabi-gateway-brand:hover {
  opacity: 0.8;
}

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

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

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

.header-usabi-gateway-nav-link {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 300ms ease;
  position: relative;
}

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

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

.header-usabi-gateway-nav-link:hover::after {
  width: 100%;
}

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

.header-usabi-gateway-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
}

.header-usabi-gateway-cta-button:active {
  transform: translateY(0);
}

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

.header-usabi-gateway-hamburger {
  width: 24px;
  height: 2px;
  background: var(--color-text-dark-primary);
  border-radius: 1px;
  transition: all 300ms ease;
}

.header-usabi-gateway-mobile-toggle[aria-expanded="true"] .header-usabi-gateway-hamburger:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.header-usabi-gateway-mobile-toggle[aria-expanded="true"] .header-usabi-gateway-hamburger:nth-child(2) {
  opacity: 0;
}

.header-usabi-gateway-mobile-toggle[aria-expanded="true"] .header-usabi-gateway-hamburger:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.header-usabi-gateway-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg-dark-primary);
  z-index: 99;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 300ms ease;
  overflow-y: auto;
}

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

.header-usabi-gateway-mobile-header {
  display: flex;
  justify-content: flex-end;
  padding: 1rem clamp(1rem, 5vw, 2rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

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

.header-usabi-gateway-mobile-close:hover {
  color: var(--color-primary);
}

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

.header-usabi-gateway-mobile-link {
  padding: 1rem clamp(1rem, 5vw, 2rem);
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 300ms ease;
}

.header-usabi-gateway-mobile-link:hover {
  background: rgba(6, 182, 212, 0.1);
  color: var(--color-primary);
  padding-left: clamp(1.5rem, 7vw, 2.5rem);
}

.header-usabi-gateway-mobile-cta {
  margin: 1rem clamp(1rem, 5vw, 2rem);
  padding: 1rem 1.5rem;
  background: var(--color-primary);
  color: #0f172a;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 300ms ease;
  display: block;
  flex-shrink: 0;
}

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

@media (min-width: 768px) {
  .header-usabi-gateway-mobile-toggle {
    display: none;
  }

  .header-usabi-gateway-desktop-nav {
    display: flex;
  }

  .header-usabi-gateway-cta-button {
    display: inline-block;
  }

  .header-usabi-gateway-mobile-menu {
    display: none !important;
  }
}

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

  .header-usabi-gateway-logo-text {
    font-size: 1.125rem;
  }
}

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

    

.ux-design-hub {
  width: 100%;
}

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

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

.hero-gradient-mesh {
  position: absolute;
  top: 10%;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

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

.hero-accent-orb-right {
  position: absolute;
  top: 20%;
  right: 5%;
  width: 250px;
  height: 250px;
  background: rgba(249, 115, 22, 0.04);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-card {
  position: absolute;
  bottom: 15%;
  right: 10%;
  width: 180px;
  height: 140px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transform: rotate(-8deg);
  z-index: 1;
  pointer-events: none;
}

.hero-line-accent {
  position: absolute;
  top: 25%;
  left: 15%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-corner-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 150px;
  background: rgba(6, 182, 212, 0.03);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 1;
  pointer-events: none;
}

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

.hero-title-index {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-subtitle-index {
  color: var(--color-text-dark-muted);
  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: 2rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

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

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

.hero-stat-label-index {
  color: var(--color-text-dark-secondary);
  font-size: 0.875rem;
  font-weight: 500;
}

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

.btn-primary-index {
  background: var(--color-primary);
  color: #000000;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
}

.btn-primary-index:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

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

.btn-secondary-index:hover {
  background: var(--color-primary);
  color: #000000;
  transform: translateY(-3px);
}

@media (min-width: 768px) {
  .hero-section-index {
    padding: 5rem 0;
  }
}

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

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

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

.principles-glow-right {
  position: absolute;
  bottom: 5%;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.07) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.principles-shape-accent {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  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: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.principles-title-index {
  color: var(--color-text-light-primary);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.principles-subtitle-index {
  color: var(--color-text-light-secondary);
  font-size: clamp(1rem, 2vw, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.principles-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card-light);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.principles-card-icon-index {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  border-radius: 10px;
  color: #ffffff;
  font-size: 1.5rem;
}

.principles-card-title-index {
  color: var(--color-text-light-primary);
  font-size: 1.125rem;
  font-weight: 600;
}

.principles-card-text-index {
  color: var(--color-text-light-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .principles-section-index {
    padding: 5rem 0;
  }
}

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

.process-glow-ambient {
  position: absolute;
  top: 20%;
  left: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.process-shape-background {
  position: absolute;
  bottom: 10%;
  right: -120px;
  width: 400px;
  height: 300px;
  background: rgba(139, 92, 246, 0.04);
  border-radius: 40% 60% 30% 70% / 60% 40% 70% 30%;
  z-index: 1;
  pointer-events: none;
}

.process-accent-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(6, 182, 212, 0.1), transparent);
  z-index: 0;
  pointer-events: none;
}

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

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

.process-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

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

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

.process-step-index {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 300ms ease;
}

.process-step-index:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(6, 182, 212, 0.3);
}

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

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

.process-step-title-index {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
}

.process-step-text-index {
  color: var(--color-text-dark-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .process-section-index {
    padding: 5rem 0;
  }
}

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

.featured-glow-subtle {
  position: absolute;
  top: -50px;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.07) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.featured-accent-corner {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: rgba(34, 211, 238, 0.03);
  border-radius: 0 100px 0 0;
  z-index: 1;
  pointer-events: none;
}

.featured-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(34, 197, 94, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

.featured-subtitle-index {
  color: var(--color-text-light-secondary);
  font-size: clamp(1rem, 2vw, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

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

.featured-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--color-bg-card-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.featured-card-image-index {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #e2e8f0;
}

.featured-card-image-index img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

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

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

.featured-card-title-index {
  color: var(--color-text-light-primary);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
}

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

.featured-card-link-index {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 300ms ease;
}

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

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

@media (min-width: 768px) {
  .featured-posts-section-index {
    padding: 5rem 0;
  }
}

.insight-section-index {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-light-tertiary);
}

.insight-shape-left {
  position: absolute;
  top: 20%;
  left: -80px;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 50% 30% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

.insight-shape-right {
  position: absolute;
  bottom: 15%;
  right: -60px;
  width: 250px;
  height: 250px;
  background: rgba(34, 197, 94, 0.04);
  border-radius: 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.insight-line-accent {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.15), transparent);
  z-index: 0;
  pointer-events: none;
}

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

.insight-text-block-index {
  flex: 1 1 400px;
}

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

.insight-paragraph-index {
  color: var(--color-text-light-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.insight-quote-index {
  padding: 2rem;
  border-left: 4px solid var(--color-primary);
  background: rgba(59, 130, 246, 0.05);
  border-radius: 4px;
  margin: 2rem 0;
}

.insight-quote-text-index {
  color: var(--color-text-light-primary);
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.insight-quote-author-index {
  color: var(--color-text-light-secondary);
  font-size: 0.875rem;
  font-style: normal;
}

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

.insight-image-block-index img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  max-height: 400px;
}

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

  .insight-image-block-index {
    flex: 1 1 100%;
  }
}

@media (min-width: 768px) {
  .insight-section-index {
    padding: 5rem 0;
  }
}

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

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

.benefits-glow-secondary {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.benefits-shape-accent {
  position: absolute;
  top: 50%;
  left: -100px;
  width: 280px;
  height: 280px;
  background: rgba(139, 92, 246, 0.04);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.benefits-floating-element {
  position: absolute;
  bottom: 20%;
  right: 15%;
  width: 120px;
  height: 120px;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

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

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

.benefits-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.benefits-title-index {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
}

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

.benefits-item-index {
  flex: 1 1 300px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.benefits-item-index:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(6, 182, 212, 0.3);
  transform: translateY(-5px);
}

.benefits-item-icon-index {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(34, 211, 238, 0.1));
  border-radius: 10px;
  color: var(--color-primary);
  font-size: 1.5rem;
}

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

.benefits-item-title-index {
  color: var(--color-text-dark-primary);
  font-size: 1.125rem;
  font-weight: 600;
}

.benefits-item-text-index {
  color: var(--color-text-dark-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .benefits-section-index {
    padding: 5rem 0;
  }
}

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

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

.contact-glow-right {
  position: absolute;
  bottom: 15%;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.contact-accent-element {
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 180px;
  background: rgba(34, 197, 94, 0.03);
  border-radius: 0 0 0 100%;
  z-index: 1;
  pointer-events: none;
}

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

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

.contact-title-index {
  color: var(--color-text-light-primary);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-subtitle-index {
  color: var(--color-text-light-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

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

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

.contact-label-index {
  color: var(--color-text-light-primary);
  font-size: 0.875rem;
  font-weight: 500;
}

.contact-input-index,
.contact-textarea-index {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--color-bg-light-secondary);
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: var(--color-text-light-primary);
  transition: all 300ms ease;
}

.contact-input-index:focus,
.contact-textarea-index:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

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

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

.contact-submit-index:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

.contact-submit-index:active {
  transform: translateY(-1px);
}

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

.contact-info-title-index {
  color: var(--color-text-light-primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.contact-faq-item-index {
  margin-bottom: 1.5rem;
}

.contact-faq-question-index {
  color: var(--color-text-light-primary);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-faq-answer-index {
  color: var(--color-text-light-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.cookie-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}

.cookie-link:hover {
  text-decoration: underline;
}

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

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

@media (min-width: 768px) {
  .contact-section-index {
    padding: 5rem 0;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: var(--color-bg-dark-secondary);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

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

.cookie-banner-text {
  color: var(--color-text-dark-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
  flex: 1 1 auto;
  min-width: 250px;
}

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

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

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

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(6, 182, 212, 0.3);
}

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

.cookie-btn-decline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

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

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

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

@media (min-width: 768px) {
  .hero-title-index {
    font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  }

  .hero-subtitle-index {
    font-size: clamp(1.125rem, 2vw + 0.5rem, 1.25rem);
  }

  .principles-title-index,
  .process-title-index,
  .featured-title-index,
  .benefits-title-index {
    font-size: clamp(2rem, 4vw, 2.5rem);
  }
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

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

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

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

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

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

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

.footer-about-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  color: var(--color-text-dark-secondary);
  font-family: var(--font-body);
}

.footer-navigation-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.footer-nav-section,
.footer-legal-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 0 1 auto;
}

.footer-nav-title,
.footer-legal-title,
.footer-contact-title {
  font-size: clamp(0.9375rem, 2vw, 1rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.footer-nav,
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-nav-link,
.footer-legal-link {
  font-size: clamp(0.8125rem, 1vw + 0.5rem, 0.9375rem);
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  font-family: var(--font-body);
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: inline-block;
  width: fit-content;
}

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

.footer-nav-link::after,
.footer-legal-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-nav-link:hover::after,
.footer-legal-link:hover::after {
  width: 100%;
}

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

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

.footer-contact-phone,
.footer-contact-email,
.footer-contact-address {
  font-size: clamp(0.8125rem, 1vw + 0.5rem, 0.9375rem);
  color: var(--color-text-dark-secondary);
  font-family: var(--font-body);
  line-height: 1.6;
  margin: 0;
}

.footer-bottom {
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: clamp(1rem, 3vw, 2rem);
}

.footer-copyright {
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  color: var(--color-text-dark-muted);
  font-family: var(--font-body);
  margin: 0;
  text-align: center;
  letter-spacing: 0.01em;
}

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

  .footer-navigation-wrapper {
    gap: clamp(3rem, 6vw, 4.5rem);
  }

  .footer-nav-section,
  .footer-legal-section {
    flex: 0 1 180px;
  }
}

@media (min-width: 1024px) {
  .footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 8vw, 5rem);
    align-items: start;
  }

  .footer-about {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }

  .footer-navigation-wrapper {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    flex-direction: row;
    gap: clamp(3rem, 8vw, 5rem);
  }

  .footer-contact {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    align-self: flex-start;
  }

  .footer-bottom {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1440px) {
  .footer-content {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    align-items: start;
  }

  .footer-about {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  .footer-navigation-wrapper {
    grid-column: 2 / 4;
    grid-row: 1 / 2;
  }

  .footer-contact {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
  }

  .footer-bottom {
    grid-column: 1 / -1;
  }
}

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

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

.category-page-webdesign-usability {
  width: 100%;
}

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

.decoration-glow-primary {
  position: absolute;
  top: 5%;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.decoration-shape-accent {
  position: absolute;
  bottom: -50px;
  left: 5%;
  width: 300px;
  height: 350px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.decoration-mesh-gradient {
  position: absolute;
  top: 50%;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.1) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

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

.hero-title-webdesign-usability {
  color: var(--color-text-dark-primary);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.hero-description-webdesign-usability {
  color: var(--color-text-dark-muted);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-stats-webdesign-usability {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3rem);
  justify-content: center;
  margin: 3rem 0 2.5rem;
}

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

.stat-number-webdesign-usability {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  font-family: var(--font-heading);
}

.stat-label-webdesign-usability {
  font-size: 0.875rem;
  color: var(--color-text-dark-muted);
  opacity: 0.9;
}

.hero-cta-webdesign-usability {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.hero-section-webdesign-usability .btn {
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.hero-section-webdesign-usability .btn-primary {
  background: var(--color-primary);
  color: #0f172a;
}

.hero-section-webdesign-usability .btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-3px);
}

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

.hero-section-webdesign-usability .btn-outline:hover {
  background: var(--color-primary);
  color: #0f172a;
}

.posts-section-webdesign-usability {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.posts-header-webdesign-usability {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag-webdesign-usability {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.posts-title-webdesign-usability {
  color: var(--color-text-light-primary);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.posts-subtitle-webdesign-usability {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

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

.card-webdesign-usability {
  flex: 1 1 clamp(280px, 35vw, 380px);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-webdesign-usability:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

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

.card-title-webdesign-usability {
  color: var(--color-text-light-primary);
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.3;
  font-family: var(--font-heading);
}

.card-description-webdesign-usability {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
  flex-grow: 1;
}

.card-meta-webdesign-usability {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0.5rem 0;
}

.meta-badge-webdesign-usability {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.375rem 0.875rem;
  background: rgba(6, 182, 212, 0.1);
  color: var(--color-primary);
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 500;
}

.meta-badge-webdesign-usability i {
  font-size: 0.75rem;
}

.card-webdesign-usability .btn {
  align-self: flex-start;
  padding: 0.65rem 1.5rem;
  font-size: 0.875rem;
}

.card-webdesign-usability .btn-secondary {
  background: var(--color-primary);
  color: #ffffff;
  border: none;
}

.card-webdesign-usability .btn-secondary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

.methodology-section-webdesign-usability {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.decoration-glow-secondary {
  position: absolute;
  top: 20%;
  left: -120px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.decoration-shape-secondary {
  position: absolute;
  bottom: -80px;
  right: 5%;
  width: 280px;
  height: 320px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  z-index: 1;
  pointer-events: none;
}

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

.methodology-title-webdesign-usability {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin: 0.75rem 0 1rem;
  font-family: var(--font-heading);
}

.methodology-subtitle-webdesign-usability {
  color: var(--color-text-dark-muted);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  max-width: 650px;
  margin: 0 auto;
}

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

.methodology-step-webdesign-usability {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.methodology-step-webdesign-usability:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(8px);
}

.methodology-step-number-webdesign-usability {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
  font-family: var(--font-heading);
}

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

.methodology-step-title-webdesign-usability {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  font-weight: 600;
  font-family: var(--font-heading);
}

.methodology-step-text-webdesign-usability {
  color: var(--color-text-dark-muted);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.7;
}

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

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

.principles-section-webdesign-usability {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.principles-header-webdesign-usability {
  text-align: center;
  margin-bottom: 2.5rem;
}

.principles-title-webdesign-usability {
  color: var(--color-text-light-primary);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}

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

.featured-quote-webdesign-usability {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-light-secondary);
  margin: 2.5rem auto;
  max-width: 750px;
  border-radius: var(--radius-md);
}

.quote-text-webdesign-usability {
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  font-style: italic;
  color: var(--color-text-light-primary);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.quote-author-webdesign-usability {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-light-secondary);
  font-style: normal;
}

.principles-content-webdesign-usability {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(250px, 45vw, 320px), 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 3rem;
}

.principle-item-webdesign-usability {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.principle-item-webdesign-usability:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.principle-name-webdesign-usability {
  color: var(--color-text-light-primary);
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}

.principle-description-webdesign-usability {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero-stats-webdesign-usability {
    gap: clamp(1.5rem, 4vw, 2rem);
  }

  .stat-item-webdesign-usability {
    min-width: 100px;
  }

  .posts-grid-webdesign-usability {
    flex-direction: column;
    align-items: center;
  }

  .card-webdesign-usability {
    flex: 1 1 100%;
    max-width: 500px;
  }

  .principles-content-webdesign-usability {
    grid-template-columns: 1fr;
  }
}

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

  .posts-section-webdesign-usability {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .methodology-section-webdesign-usability {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .principles-section-webdesign-usability {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .card-webdesign-usability {
    flex: 1 1 clamp(300px, 30vw, 400px);
  }

  .methodology-step-webdesign-usability {
    padding: 2.5rem;
  }

  .featured-quote-webdesign-usability {
    padding: 3rem 3.5rem;
  }
}

.main-user-centered-design-principes {
  width: 100%;
}

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

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

.hero-section-user-centered-design-principes {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.breadcrumbs-user-centered-design-principes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumb-link-user-centered-design-principes {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-user-centered-design-principes:hover {
  color: #06b6d4;
}

.breadcrumb-separator-user-centered-design-principes {
  color: #475569;
}

.breadcrumb-current-user-centered-design-principes {
  color: #06b6d4;
  font-weight: 500;
}

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

.hero-text-wrapper-user-centered-design-principes {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-user-centered-design-principes {
  color: #ffffff;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-subtitle-user-centered-design-principes {
  color: #cbd5e1;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-meta-user-centered-design-principes {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-user-centered-design-principes {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-user-centered-design-principes i {
  font-size: 0.875rem;
}

.hero-stats-user-centered-design-principes {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3rem);
  margin-top: 2rem;
}

.stat-item-user-centered-design-principes {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-user-centered-design-principes {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
  display: block;
}

.stat-label-user-centered-design-principes {
  font-size: 0.875rem;
  color: #94a3b8;
  opacity: 0.9;
}

.hero-image-user-centered-design-principes {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-featured-image-user-centered-design-principes {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.intro-section-user-centered-design-principes {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.intro-text-wrapper-user-centered-design-principes {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-description-user-centered-design-principes {
  color: #334155;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-image-user-centered-design-principes {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-featured-image-user-centered-design-principes {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.principles-section-user-centered-design-principes {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.section-header-user-centered-design-principes {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.section-tag-user-centered-design-principes {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.principles-title-user-centered-design-principes {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
}

.principles-subtitle-user-centered-design-principes {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.principles-steps-user-centered-design-principes {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.principles-step-user-centered-design-principes {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.25rem, 2vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.principles-step-user-centered-design-principes:hover {
  background: rgba(6, 182, 212, 0.1);
  border-color: rgba(6, 182, 212, 0.4);
}

.principles-step-number-user-centered-design-principes {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.principles-step-content-user-centered-design-principes {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.principles-step-title-user-centered-design-principes {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
}

.principles-step-text-user-centered-design-principes {
  color: #94a3b8;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

.research-section-user-centered-design-principes {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.research-content-user-centered-design-principes {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.research-image-user-centered-design-principes {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.research-featured-image-user-centered-design-principes {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.research-text-wrapper-user-centered-design-principes {
  flex: 1 1 50%;
  max-width: 50%;
}

.research-title-user-centered-design-principes {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.research-description-user-centered-design-principes {
  color: #334155;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.research-methods-user-centered-design-principes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.method-card-user-centered-design-principes {
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.method-title-user-centered-design-principes {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.method-text-user-centered-design-principes {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.implementation-section-user-centered-design-principes {
  background: #0d1526;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.implementation-content-user-centered-design-principes {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.implementation-text-wrapper-user-centered-design-principes {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-title-user-centered-design-principes {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.implementation-subtitle-user-centered-design-principes {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
}

.implementation-description-user-centered-design-principes {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.featured-quote-user-centered-design-principes {
  padding: 2rem 2.5rem;
  border-left: 4px solid #06b6d4;
  background: rgba(6, 182, 212, 0.1);
  margin: 2rem 0;
  border-radius: 8px;
}

.quote-text-user-centered-design-principes {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #ffffff;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-author-user-centered-design-principes {
  font-size: 0.875rem;
  color: #94a3b8;
  font-style: normal;
}

.implementation-image-user-centered-design-principes {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-featured-image-user-centered-design-principes {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.benefits-section-user-centered-design-principes {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.benefits-title-user-centered-design-principes {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
}

.benefits-subtitle-user-centered-design-principes {
  color: #334155;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.benefits-cards-user-centered-design-principes {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: 2rem;
}

.benefits-card-user-centered-design-principes {
  flex: 1 1 250px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.benefits-card-user-centered-design-principes:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefits-card-icon-user-centered-design-principes {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
  border-radius: 12px;
  font-size: 1.75rem;
}

.benefits-card-title-user-centered-design-principes {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 600;
}

.benefits-card-text-user-centered-design-principes {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.conclusion-section-user-centered-design-principes {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.conclusion-content-user-centered-design-principes {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-user-centered-design-principes {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.conclusion-description-user-centered-design-principes {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.cta-box-user-centered-design-principes {
  background: linear-gradient(135deg, #06b6d4, #0284c7);
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 12px;
  text-align: center;
  color: #ffffff;
  margin-top: 2rem;
}

.cta-title-user-centered-design-principes {
  color: #ffffff;
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.cta-description-user-centered-design-principes {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  margin-bottom: 1.5rem;
}

.btn-primary-user-centered-design-principes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  background: #ffffff;
  color: #06b6d4;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary-user-centered-design-principes:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  background: #f0f9ff;
}

.related-section-user-centered-design-principes {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.related-subtitle-user-centered-design-principes {
  color: #334155;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.related-cards-user-centered-design-principes {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: 2rem;
}

.related-card-user-centered-design-principes {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  overflow: hidden;
}

.related-card-user-centered-design-principes:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #06b6d4;
}

.related-card-image-user-centered-design-principes {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.related-card-title-user-centered-design-principes {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
}

.related-card-text-user-centered-design-principes {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.disclaimer-section-user-centered-design-principes {
  background: #0f172a;
  padding: clamp(2rem, 5vw, 4rem) 0;
  border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.disclaimer-content-user-centered-design-principes {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(6, 182, 212, 0.05);
  border-left: 3px solid #06b6d4;
  border-radius: 8px;
}

.disclaimer-title-user-centered-design-principes {
  color: #06b6d4;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-user-centered-design-principes {
  color: #cbd5e1;
  font-size: 0.9375rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero-content-user-centered-design-principes,
  .intro-content-user-centered-design-principes,
  .research-content-user-centered-design-principes,
  .implementation-content-user-centered-design-principes {
    flex-direction: column;
  }

  .hero-text-wrapper-user-centered-design-principes,
  .hero-image-user-centered-design-principes,
  .intro-text-wrapper-user-centered-design-principes,
  .intro-image-user-centered-design-principes,
  .research-image-user-centered-design-principes,
  .research-text-wrapper-user-centered-design-principes,
  .implementation-text-wrapper-user-centered-design-principes,
  .implementation-image-user-centered-design-principes {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .research-image-user-centered-design-principes {
    order: 0;
  }

  .benefits-cards-user-centered-design-principes,
  .related-cards-user-centered-design-principes {
    flex-direction: column;
  }

  .benefits-card-user-centered-design-principes,
  .related-card-user-centered-design-principes {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .research-methods-user-centered-design-principes {
    grid-template-columns: 1fr;
  }

  .hero-stats-user-centered-design-principes {
    justify-content: flex-start;
    gap: 2rem;
  }
}

@media (max-width: 1024px) {
  .principles-step-user-centered-design-principes {
    padding: 1rem;
  }

  .stat-item-user-centered-design-principes {
    flex: 0 1 auto;
  }
}

.main-navigatie-structuren-webdesign {
  width: 100%;
}

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

.hero-section-navigatie-structuren-webdesign {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

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

.breadcrumb-link-navigatie-strukturen-webdesign {
  color: #06b6d4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-navigatie-strukturen-webdesign:hover {
  color: #0891b2;
}

.breadcrumb-separator-navigatie-strukturen-webdesign {
  color: #64748b;
  margin: 0 0.25rem;
}

.breadcrumb-current-navigatie-strukturen-webdesign {
  color: #94a3b8;
}

.hero-content-navigatie-strukturen-webdesign {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.hero-text-block-navigatie-strukturen-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.hero-meta-navigatie-strukturen-webdesign {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.meta-badge-navigatie-strukturen-webdesign {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #06b6d4;
}

.meta-badge-navigatie-strukturen-webdesign i {
  font-size: 0.875rem;
}

.hero-image-block-navigatie-strukturen-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-navigatie-strukturen-webdesign {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.hero-stats-navigatie-strukturen-webdesign {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item-navigatie-strukturen-webdesign {
  flex: 1 1 auto;
  text-align: center;
}

.stat-number-navigatie-strukturen-webdesign {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
  margin-bottom: 0.5rem;
}

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

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

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

.intro-text-navigatie-strukturen-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-navigatie-strukturen-webdesign {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-description-navigatie-strukturen-webdesign {
  color: #334155;
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.intro-image-navigatie-strukturen-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-img-navigatie-strukturen-webdesign {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.principles-section-navigatie-strukturen-webdesign {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.section-header-navigatie-strukturen-webdesign {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-tag-navigatie-strukturen-webdesign {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 500;
  margin-bottom: 1rem;
}

.principles-title-navigatie-strukturen-webdesign {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle-navigatie-strukturen-webdesign {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  max-width: 600px;
  margin: 0 auto;
}

.principles-steps-navigatie-strukturen-webdesign {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.principle-step-navigatie-strukturen-webdesign {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 12px;
}

.principle-number-navigatie-strukturen-webdesign {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.principle-content-navigatie-strukturen-webdesign {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.principle-title-navigatie-strukturen-webdesign {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
}

.principle-text-navigatie-strukturen-webdesign {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  line-height: 1.6;
}

.patterns-section-navigatie-strukturen-webdesign {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.patterns-content-navigatie-strukturen-webdesign {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.patterns-text-navigatie-strukturen-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.patterns-title-navigatie-strukturen-webdesign {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.patterns-description-navigatie-strukturen-webdesign {
  color: #334155;
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.patterns-highlight-navigatie-strukturen-webdesign {
  background: #ffffff;
  border-left: 4px solid #06b6d4;
  padding: 1.25rem;
  border-radius: 8px;
  margin: clamp(1rem, 2vw, 1.5rem) 0;
}

.patterns-highlight-text-navigatie-strukturen-webdesign {
  color: #1e293b;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  line-height: 1.7;
  margin: 0;
}

.patterns-image-navigatie-strukturen-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.patterns-image-img-navigatie-strukturen-webdesign {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.implementation-section-navigatie-strukturen-webdesign {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.implementation-image-navigatie-strukturen-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.implementation-image-img-navigatie-strukturen-webdesign {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.implementation-text-navigatie-strukturen-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-title-navigatie-strukturen-webdesign {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.implementation-description-navigatie-strukturen-webdesign {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.best-practices-list-navigatie-strukturen-webdesign {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1.5vw, 1.5rem);
}

.practice-item-navigatie-strukturen-webdesign {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.practice-icon-navigatie-strukturen-webdesign {
  color: #06b6d4;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.practice-text-navigatie-strukturen-webdesign {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  line-height: 1.6;
}

.features-section-navigatie-strukturen-webdesign {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.features-title-navigatie-strukturen-webdesign {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

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

.features-card-navigatie-strukturen-webdesign {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.features-card-navigatie-strukturen-webdesign:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.features-card-icon-navigatie-strukturen-webdesign {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  border-radius: 10px;
  color: #06b6d4;
  font-size: 1.5rem;
}

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

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

.quote-section-navigatie-strukturen-webdesign {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.featured-quote-navigatie-strukturen-webdesign {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #06b6d4;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
}

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

.quote-author-navigatie-strukturen-webdesign {
  display: block;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #94a3b8;
  font-style: normal;
}

.testing-section-navigatie-strukturen-webdesign {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.testing-content-navigatie-strukturen-webdesign {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.testing-text-navigatie-strukturen-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.testing-title-navigatie-strukturen-webdesign {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.testing-description-navigatie-strukturen-webdesign {
  color: #334155;
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.testing-image-navigatie-strukturen-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.testing-image-img-navigatie-strukturen-webdesign {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.conclusion-section-navigatie-strukturen-webdesign {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-navigatie-strukturen-webdesign {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-navigatie-strukturen-webdesign {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  text-align: center;
}

.conclusion-text-navigatie-strukturen-webdesign {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.cta-box-navigatie-strukturen-webdesign {
  background: linear-gradient(135deg, #06b6d4, #0284c7);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  text-align: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.cta-title-navigatie-strukturen-webdesign {
  color: #ffffff;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.cta-text-navigatie-strukturen-webdesign {
  color: #ffffff;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  line-height: 1.6;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  opacity: 0.95;
}

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

.cta-button-navigatie-strukturen-webdesign:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

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

.related-subtitle-navigatie-strukturen-webdesign {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

.related-card-navigatie-strukturen-webdesign {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.related-card-navigatie-strukturen-webdesign:hover {
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.related-card-title-navigatie-strukturen-webdesign {
  color: #1e293b;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.related-card-text-navigatie-strukturen-webdesign {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-navigatie-strukturen-webdesign {
  color: #06b6d4;
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  transition: color 0.3s ease;
  display: inline-block;
  margin-top: 0.5rem;
}

.related-card-link-navigatie-strukturen-webdesign:hover {
  color: #0891b2;
}

.disclaimer-section-navigatie-strukturen-webdesign {
  background: #f1f5f9;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-navigatie-strukturen-webdesign {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
}

.disclaimer-title-navigatie-strukturen-webdesign {
  color: #92400e;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-navigatie-strukturen-webdesign {
  color: #78350f;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-content-navigatie-strukturen-webdesign,
  .intro-content-navigatie-strukturen-webdesign,
  .patterns-content-navigatie-strukturen-webdesign,
  .implementation-content-navigatie-strukturen-webdesign,
  .testing-content-navigatie-strukturen-webdesign {
    flex-direction: column;
  }

  .hero-text-block-navigatie-strukturen-webdesign,
  .hero-image-block-navigatie-strukturen-webdesign,
  .intro-text-navigatie-strukturen-webdesign,
  .intro-image-navigatie-strukturen-webdesign,
  .patterns-text-navigatie-strukturen-webdesign,
  .patterns-image-navigatie-strukturen-webdesign,
  .implementation-image-navigatie-strukturen-webdesign,
  .implementation-text-navigatie-strukturen-webdesign,
  .testing-text-navigatie-strukturen-webdesign,
  .testing-image-navigatie-strukturen-webdesign {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .implementation-image-navigatie-strukturen-webdesign {
    order: 0;
  }

  .hero-stats-navigatie-strukturen-webdesign {
    gap: 1.5rem;
  }

  .stat-item-navigatie-strukturen-webdesign {
    flex: 1 1 auto;
    min-width: 120px;
  }

  .related-card-navigatie-strukturen-webdesign {
    flex: 1 1 100%;
    max-width: none;
  }

  .principle-step-navigatie-strukturen-webdesign {
    flex-direction: column;
    gap: 1rem;
  }

  .principle-number-navigatie-strukturen-webdesign {
    min-width: auto;
  }

  .breadcrumbs-navigatie-strukturen-webdesign {
    font-size: 0.75rem;
  }
}

@media (min-width: 768px) {
  .hero-section-navigatie-strukturen-webdesign {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }

  .principles-section-navigatie-strukturen-webdesign {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }
}

@media (min-width: 1024px) {
  .features-card-navigatie-strukturen-webdesign {
    flex: 1 1 calc(33.333% - 1.5rem);
    max-width: none;
  }
}

.main-toegankelijkheid-wcag-richtlijnen {
  width: 100%;
}

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

.breadcrumbs-toegankelijkheid-wcag-richtlijnen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
}

.breadcrumb-link-toegankelijkheid-wcag-richtlijnen {
  color: #06b6d4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-toegankelijkheid-wcag-richtlijnen:hover {
  color: #0891b2;
  text-decoration: underline;
}

.breadcrumb-separator-toegankelijkheid-wcag-richtlijnen {
  color: #475569;
}

.breadcrumb-current-toegankelijkheid-wcag-richtlijnen {
  color: #cbd5e1;
}

.hero-content-toegankelijkheid-wcag-richtlijnen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: 3rem;
}

.hero-text-block-toegankelijkheid-wcag-richtlijnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-toegankelijkheid-wcag-richtlijnen {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-toegankelijkheid-wcag-richtlijnen {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.hero-meta-toegankelijkheid-wcag-richtlijnen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-toegankelijkheid-wcag-richtlijnen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
}

.hero-image-block-toegankelijkheid-wcag-richtlijnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-toegankelijkheid-wcag-richtlijnen {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.hero-stats-toegankelijkheid-wcag-richtlijnen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: flex-start;
}

.stat-item-toegankelijkheid-wcag-richtlijnen {
  flex: 0 1 auto;
}

.stat-number-toegankelijkheid-wcag-richtlijnen {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-toegankelijkheid-wcag-richtlijnen {
  display: block;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #94a3b8;
}

@media (max-width: 768px) {
  .hero-content-toegankelijkheid-wcag-richtlijnen {
    flex-direction: column;
  }

  .hero-text-block-toegankelijkheid-wcag-richtlijnen,
  .hero-image-block-toegankelijkheid-wcag-richtlijnen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-toegankelijkheid-wcag-richtlijnen {
    justify-content: center;
    gap: clamp(1.5rem, 3vw, 2rem);
  }
}

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

.intro-wrapper-toegankelijkheid-wcag-richtlijnen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-text-toegankelijkheid-wcag-richtlijnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-toegankelijkheid-wcag-richtlijnen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-description-toegankelijkheid-wcag-richtlijnen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #334155;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.intro-image-toegankelijkheid-wcag-richtlijnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-toegankelijkheid-wcag-richtlijnen {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .intro-wrapper-toegankelijkheid-wcag-richtlijnen {
    flex-direction: column;
  }

  .intro-text-toegankelijkheid-wcag-richtlijnen,
  .intro-image-toegankelijkheid-wcag-richtlijnen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.principles-header-toegankelijkheid-wcag-richtlijnen {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-toegankelijkheid-wcag-richtlijnen {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  font-weight: 500;
  margin-bottom: 1rem;
}

.principles-title-toegankelijkheid-wcag-richtlijnen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

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

.principles-card-toegankelijkheid-wcag-richtlijnen {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.principles-card-toegankelijkheid-wcag-richtlijnen:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card-icon-toegankelijkheid-wcag-richtlijnen {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #06b6d4, #0ea5e9);
  color: #ffffff;
  border-radius: 10px;
  font-size: 1.5rem;
}

.card-title-toegankelijkheid-wcag-richtlijnen {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #1e293b;
  font-weight: 600;
}

.card-text-toegankelijkheid-wcag-richtlijnen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.7;
}

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

.guidelines-section-toegankelijkheid-wcag-richtlijnen {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.guidelines-wrapper-toegankelijkheid-wcag-richtlijnen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.guidelines-text-toegankelijkheid-wcag-richtlijnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.guidelines-title-toegankelijkheid-wcag-richtlijnen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.guidelines-intro-toegankelijkheid-wcag-richtlijnen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.guidelines-steps-toegankelijkheid-wcag-richtlijnen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item-toegankelijkheid-wcag-richtlijnen {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}

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

.step-content-toegankelijkheid-wcag-richtlijnen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-toegankelijkheid-wcag-richtlijnen {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #ffffff;
  font-weight: 600;
}

.step-text-toegankelijkheid-wcag-richtlijnen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #94a3b8;
  line-height: 1.7;
}

.guidelines-image-toegankelijkheid-wcag-richtlijnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.guidelines-image-toegankelijkheid-wcag-richtlijnen {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .guidelines-wrapper-toegankelijkheid-wcag-richtlijnen {
    flex-direction: column;
  }

  .guidelines-text-toegankelijkheid-wcag-richtlijnen,
  .guidelines-image-toegankelijkheid-wcag-richtlijnen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-item-toegankelijkheid-wcag-richtlijnen {
    gap: 1rem;
  }
}

.testing-section-toegankelijkheid-wcag-richtlijnen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.testing-header-toegankelijkheid-wcag-richtlijnen {
  text-align: center;
  margin-bottom: 3rem;
}

.testing-title-toegankelijkheid-wcag-richtlijnen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

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

.testing-card-toegankelijkheid-wcag-richtlijnen {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.testing-card-toegankelijkheid-wcag-richtlijnen:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.testing-card-title-toegankelijkheid-wcag-richtlijnen {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #1e293b;
  font-weight: 600;
}

.testing-card-text-toegankelijkheid-wcag-richtlijnen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.7;
}

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

.featured-quote-toegankelijkheid-wcag-richtlijnen {
  margin: clamp(3rem, 6vw, 5rem) auto;
  max-width: 900px;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 2.5rem);
  background: #f8fafc;
  border-left: 4px solid #06b6d4;
  border-radius: 8px;
}

.quote-text-toegankelijkheid-wcag-richtlijnen {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  color: #0f172a;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.quote-author-toegankelijkheid-wcag-richtlijnen {
  display: block;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  font-style: normal;
}

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

.implementation-wrapper-toegankelijkheid-wcag-richtlijnen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.implementation-image-toegankelijkheid-wcag-richtlijnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-image-toegankelijkheid-wcag-richtlijnen {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.implementation-text-toegankelijkheid-wcag-richtlijnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-title-toegankelijkheid-wcag-richtlijnen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.implementation-intro-toegankelijkheid-wcag-richtlijnen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #334155;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.implementation-list-toegankelijkheid-wcag-richtlijnen {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  list-style: none;
}

.list-item-toegankelijkheid-wcag-richtlijnen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #334155;
  line-height: 1.8;
  padding-left: 0;
}

.list-item-toegankelijkheid-wcag-richtlijnen strong {
  color: #0f172a;
}

@media (max-width: 768px) {
  .implementation-wrapper-toegankelijkheid-wcag-richtlijnen {
    flex-direction: column;
  }

  .implementation-image-toegankelijkheid-wcag-richtlijnen,
  .implementation-text-toegankelijkheid-wcag-richtlijnen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-toegankelijkheid-wcag-richtlijnen {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-toegankelijkheid-wcag-richtlijnen {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-toegankelijkheid-wcag-richtlijnen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.conclusion-text-toegankelijkheid-wcag-richtlijnen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-cta-toegankelijkheid-wcag-richtlijnen {
  margin-top: 2rem;
}

.cta-button-toegankelijkheid-wcag-richtlijnen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  font-weight: 600;
  background: #06b6d4;
  color: #0f172a;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button-toegankelijkheid-wcag-richtlijnen:hover {
  background: #0891b2;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
}

.cta-button-toegankelijkheid-wcag-richtlijnen:focus {
  outline: 2px solid #06b6d4;
  outline-offset: 2px;
}

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

.related-header-toegankelijkheid-wcag-richtlijnen {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-toegankelijkheid-wcag-richtlijnen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.related-subtitle-toegankelijkheid-wcag-richtlijnen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
}

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

.related-card-toegankelijkheid-wcag-richtlijnen {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.related-card-toegankelijkheid-wcag-richtlijnen:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.related-card-title-toegankelijkheid-wcag-richtlijnen {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #1e293b;
  font-weight: 600;
}

.related-card-text-toegankelijkheid-wcag-richtlijnen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.7;
}

.related-card-link-toegankelijkheid-wcag-richtlijnen {
  display: inline-flex;
  align-items: center;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #06b6d4;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: auto;
}

.related-card-link-toegankelijkheid-wcag-richtlijnen:hover {
  color: #0891b2;
  transform: translateX(4px);
}

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

.disclaimer-section-toegankelijkheid-wcag-richtlijnen {
  background: #f8fafc;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-toegankelijkheid-wcag-richtlijnen {
  max-width: 900px;
  margin: 0 auto;
}

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

.disclaimer-text-toegankelijkheid-wcag-richtlijnen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.7;
}

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

  .intro-section-toegankelijkheid-wcag-richtlijnen,
  .principles-section-toegankelijkheid-wcag-richtlijnen,
  .guidelines-section-toegankelijkheid-wcag-richtlijnen,
  .testing-section-toegankelijkheid-wcag-richtlijnen,
  .implementation-section-toegankelijkheid-wcag-richtlijnen,
  .conclusion-section-toegankelijkheid-wcag-richtlijnen,
  .related-section-toegankelijkheid-wcag-richtlijnen {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

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

  .intro-section-toegankelijkheid-wcag-richtlijnen,
  .principles-section-toegankelijkheid-wcag-richtlijnen,
  .guidelines-section-toegankelijkheid-wcag-richtlijnen,
  .testing-section-toegankelijkheid-wcag-richtlijnen,
  .implementation-section-toegankelijkheid-wcag-richtlijnen,
  .conclusion-section-toegankelijkheid-wcag-richtlijnen,
  .related-section-toegankelijkheid-wcag-richtlijnen {
    padding: 6rem 0;
  }
}

@media (max-width: 320px) {
  .hero-title-toegankelijkheid-wcag-richtlijnen,
  .intro-title-toegankelijkheid-wcag-richtlijnen,
  .principles-title-toegankelijkheid-wcag-richtlijnen,
  .guidelines-title-toegankelijkheid-wcag-richtlijnen,
  .testing-title-toegankelijkheid-wcag-richtlijnen,
  .implementation-title-toegankelijkheid-wcag-richtlijnen,
  .conclusion-title-toegankelijkheid-wcag-richtlijnen,
  .related-title-toegankelijkheid-wcag-richtlijnen {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
}

.main-usability-testing-methoden {
  width: 100%;
}

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

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

.hero-section-usability-testing-methoden {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.hero-text-block-usability-testing-methoden {
  flex: 1 1 300px;
  max-width: 50%;
}

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

.hero-subtitle-usability-testing-methoden {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #e2e8f0;
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.stat-item-usability-testing-methoden {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-usability-testing-methoden {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
}

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

.hero-meta-usability-testing-methoden {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.meta-badge-usability-testing-methoden {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #06b6d4;
}

.meta-badge-usability-testing-methoden i {
  font-size: 0.875rem;
}

.hero-image-block-usability-testing-methoden {
  flex: 1 1 300px;
  max-width: 50%;
}

.hero-image-usability-testing-methoden {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  max-height: 400px;
  display: block;
}

.breadcrumbs-usability-testing-methoden {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  font-size: clamp(0.8rem, 1vw, 0.875rem);
}

.breadcrumb-link-usability-testing-methoden {
  color: #06b6d4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-usability-testing-methoden:hover {
  color: #0891b2;
  text-decoration: underline;
}

.breadcrumb-separator-usability-testing-methoden {
  color: #475569;
  margin: 0 0.25rem;
}

.breadcrumb-current-usability-testing-methoden {
  color: #cbd5e1;
}

.introduction-section-usability-testing-methoden {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.intro-wrapper-usability-testing-methoden {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  flex-wrap: wrap;
}

.intro-text-usability-testing-methoden {
  flex: 1 1 300px;
  max-width: 50%;
}

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

.intro-description-usability-testing-methoden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #334155;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.intro-image-usability-testing-methoden {
  flex: 1 1 300px;
  max-width: 50%;
}

.intro-image-item-usability-testing-methoden {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  max-height: 350px;
  display: block;
}

.methodology-section-usability-testing-methoden {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.section-header-usability-testing-methoden {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-usability-testing-methoden {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.2);
  color: #06b6d4;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.methodology-subtitle-usability-testing-methoden {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

.steps-container-usability-testing-methoden {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item-usability-testing-methoden {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.step-item-usability-testing-methoden:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(6, 182, 212, 0.3);
  transform: translateX(8px);
}

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

.step-content-usability-testing-methoden {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-usability-testing-methoden {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: #ffffff;
}

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

.methods-section-usability-testing-methoden {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.methods-header-usability-testing-methoden {
  text-align: center;
  margin-bottom: 3rem;
}

.methods-title-usability-testing-methoden {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: 1rem;
  font-weight: 700;
}

.methods-subtitle-usability-testing-methoden {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

.method-card-usability-testing-methoden {
  flex: 1 1 250px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}

.method-card-usability-testing-methoden:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.method-icon-usability-testing-methoden {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #06b6d4, #0ea5e9);
  border-radius: 10px;
  color: #ffffff;
  font-size: 1.5rem;
}

.method-card-title-usability-testing-methoden {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #0f172a;
}

.method-card-text-usability-testing-methoden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.7;
}

.insights-section-usability-testing-methoden {
  background: #f1f5f9;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.insights-wrapper-usability-testing-methoden {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: clamp(2rem, 5vw, 4rem);
  flex-wrap: wrap;
}

.insights-text-usability-testing-methoden {
  flex: 1 1 300px;
  max-width: 50%;
}

.insights-title-usability-testing-methoden {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: 1rem;
  font-weight: 700;
}

.insights-description-usability-testing-methoden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #334155;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.tips-list-usability-testing-methoden {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tip-item-usability-testing-methoden {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.tip-icon-usability-testing-methoden {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.15);
  border-radius: 8px;
  color: #06b6d4;
  font-size: 1rem;
  flex-shrink: 0;
}

.tip-content-usability-testing-methoden {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tip-title-usability-testing-methoden {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #0f172a;
}

.tip-text-usability-testing-methoden {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

.insights-image-usability-testing-methoden {
  flex: 1 1 300px;
  max-width: 50%;
}

.insights-image-item-usability-testing-methoden {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  max-height: 350px;
  display: block;
}

.quote-section-usability-testing-methoden {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.featured-quote-usability-testing-methoden {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #06b6d4;
  background: rgba(6, 182, 212, 0.08);
  margin: 0;
  text-align: center;
  border-radius: 4px;
}

.quote-text-usability-testing-methoden {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: #ffffff;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-author-usability-testing-methoden {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #cbd5e1;
  font-style: normal;
  font-weight: 500;
}

.challenges-section-usability-testing-methoden {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.challenges-wrapper-usability-testing-methoden {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  flex-wrap: wrap;
}

.challenges-image-usability-testing-methoden {
  flex: 1 1 300px;
  max-width: 50%;
  order: -1;
}

.challenges-image-item-usability-testing-methoden {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  max-height: 350px;
  display: block;
}

.challenges-text-usability-testing-methoden {
  flex: 1 1 300px;
  max-width: 50%;
}

.challenges-title-usability-testing-methoden {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: 1rem;
  font-weight: 700;
}

.challenges-description-usability-testing-methoden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #334155;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.challenges-list-usability-testing-methoden {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.challenge-block-usability-testing-methoden {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.challenge-block-usability-testing-methoden:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.challenge-heading-usability-testing-methoden {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.challenge-text-usability-testing-methoden {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: #64748b;
  line-height: 1.7;
}

.implementation-section-usability-testing-methoden {
  background: #f1f5f9;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.implementation-title-usability-testing-methoden {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: 2rem;
  font-weight: 700;
}

.implementation-checklist-usability-testing-methoden {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checklist-item-usability-testing-methoden {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.checklist-item-usability-testing-methoden:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.checklist-number-usability-testing-methoden {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
}

.checklist-content-usability-testing-methoden {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.checklist-title-usability-testing-methoden {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #0f172a;
}

.checklist-text-usability-testing-methoden {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: #64748b;
  line-height: 1.7;
}

.conclusion-section-usability-testing-methoden {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.conclusion-content-usability-testing-methoden {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-usability-testing-methoden {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.conclusion-text-usability-testing-methoden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.cta-box-usability-testing-methoden {
  background: linear-gradient(135deg, #06b6d4, #0ea5e9);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 16px;
  text-align: center;
  margin-top: 2rem;
}

.cta-title-usability-testing-methoden {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.cta-text-usability-testing-methoden {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.btn-cta-usability-testing-methoden:hover {
  background: #f0f9ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.related-section-usability-testing-methoden {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.related-title-usability-testing-methoden {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.related-subtitle-usability-testing-methoden {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #64748b;
  margin-bottom: 2rem;
}

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

.related-card-usability-testing-methoden {
  flex: 1 1 280px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}

.related-card-usability-testing-methoden:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.related-card-image-usability-testing-methoden {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-img-usability-testing-methoden {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-title-usability-testing-methoden {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #0f172a;
  padding: 0 1rem;
  padding-top: 0.5rem;
}

.related-card-text-usability-testing-methoden {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  padding: 0 1rem;
}

.related-card-link-usability-testing-methoden {
  display: inline-flex;
  align-items: center;
  color: #06b6d4;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  padding: 0 1rem 1rem 1rem;
  transition: all 0.3s ease;
}

.related-card-link-usability-testing-methoden:hover {
  color: #0891b2;
  gap: 0.5rem;
}

.disclaimer-section-usability-testing-methoden {
  background: #f8fafc;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-box-usability-testing-methoden {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.disclaimer-title-usability-testing-methoden {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-usability-testing-methoden {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: #64748b;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .hero-content-usability-testing-methoden,
  .intro-wrapper-usability-testing-methoden,
  .insights-wrapper-usability-testing-methoden,
  .challenges-wrapper-usability-testing-methoden {
    flex-direction: column;
  }

  .hero-text-block-usability-testing-methoden,
  .hero-image-block-usability-testing-methoden,
  .intro-text-usability-testing-methoden,
  .intro-image-usability-testing-methoden,
  .insights-text-usability-testing-methoden,
  .insights-image-usability-testing-methoden,
  .challenges-text-usability-testing-methoden,
  .challenges-image-usability-testing-methoden {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .challenges-image-usability-testing-methoden {
    order: 1;
  }

  .method-card-usability-testing-methoden {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-card-usability-testing-methoden {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-usability-testing-methoden {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (min-width: 768px) {
  .section-header-usability-testing-methoden {
    margin-bottom: 4rem;
  }

  .step-item-usability-testing-methoden {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .related-card-usability-testing-methoden {
    flex: 1 1 300px;
    max-width: 360px;
  }
}

.main-responsive-design-alle-apparaten {
  width: 100%;
}

.hero-section-responsive-design-alle-apparaten {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

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

.hero-text-block-responsive-design-alle-apparaten {
  flex: 1 1 45%;
  max-width: 50%;
}

.hero-image-block-responsive-design-alle-apparaten {
  flex: 1 1 45%;
  max-width: 50%;
}

.hero-featured-image-responsive-design-alle-apparaten {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

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

.hero-subtitle-responsive-design-alle-apparaten {
  color: #cbd5e1;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.breadcrumbs-responsive-design-alle-apparaten {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.9375rem;
}

.breadcrumb-link-responsive-design-alle-apparaten {
  color: #06b6d4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-responsive-design-alle-apparaten:hover {
  color: #0891b2;
}

.breadcrumb-separator-responsive-design-alle-apparaten {
  color: #64748b;
}

.breadcrumb-current-responsive-design-alle-apparaten {
  color: #94a3b8;
}

.article-meta-responsive-design-alle-apparaten {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-responsive-design-alle-apparaten {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  border-radius: 20px;
  font-size: 0.875rem;
}

.meta-badge-responsive-design-alle-apparaten i {
  font-size: 0.875rem;
}

.hero-stats-responsive-design-alle-apparaten {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item-responsive-design-alle-apparaten {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-responsive-design-alle-apparaten {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #06b6d4;
  line-height: 1;
}

.stat-label-responsive-design-alle-apparaten {
  font-size: 0.875rem;
  color: #94a3b8;
}

@media (max-width: 768px) {
  .hero-content-responsive-design-alle-apparaten {
    flex-direction: column;
  }

  .hero-text-block-responsive-design-alle-apparaten,
  .hero-image-block-responsive-design-alle-apparaten {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-responsive-design-alle-apparaten {
    gap: 1.5rem;
  }
}

.introduction-section-responsive-design-alle-apparaten {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.introduction-wrapper-responsive-design-alle-apparaten {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.introduction-text-responsive-design-alle-apparaten {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-image-responsive-design-alle-apparaten {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-visual-responsive-design-alle-apparaten {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.introduction-title-responsive-design-alle-apparaten {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.introduction-paragraph-responsive-design-alle-apparaten {
  color: #374151;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .introduction-wrapper-responsive-design-alle-apparaten {
    flex-direction: column;
  }

  .introduction-text-responsive-design-alle-apparaten,
  .introduction-image-responsive-design-alle-apparaten {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.section-header-responsive-design-alle-apparaten {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-responsive-design-alle-apparaten {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.principles-title-responsive-design-alle-apparaten {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

.principles-steps-responsive-design-alle-apparaten {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.principles-step-responsive-design-alle-apparaten {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease;
}

.principles-step-responsive-design-alle-apparaten:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.principles-step-number-responsive-design-alle-apparaten {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.principles-step-content-responsive-design-alle-apparaten {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.principles-step-title-responsive-design-alle-apparaten {
  color: #1e293b;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}

.principles-step-text-responsive-design-alle-apparaten {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .principles-step-responsive-design-alle-apparaten {
    flex-direction: column;
  }

  .principles-step-number-responsive-design-alle-apparaten {
    font-size: 2rem;
  }
}

.implementation-section-responsive-design-alle-apparaten {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.implementation-wrapper-responsive-design-alle-apparaten {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.implementation-text-responsive-design-alle-apparaten {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-image-responsive-design-alle-apparaten {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-visual-responsive-design-alle-apparaten {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.implementation-title-responsive-design-alle-apparaten {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.implementation-paragraph-responsive-design-alle-apparaten {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.featured-quote-responsive-design-alle-apparaten {
  padding: 2rem 2.5rem;
  border-left: 4px solid #06b6d4;
  background: rgba(6, 182, 212, 0.1);
  margin: 2rem 0;
  border-radius: 8px;
}

.quote-text-responsive-design-alle-apparaten {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #ffffff;
  font-style: italic;
  margin-bottom: 1rem;
  margin: 0 0 1rem 0;
  line-height: 1.6;
}

.quote-author-responsive-design-alle-apparaten {
  font-size: 0.875rem;
  color: #94a3b8;
  font-style: normal;
  display: block;
}

@media (max-width: 768px) {
  .implementation-wrapper-responsive-design-alle-apparaten {
    flex-direction: column;
  }

  .implementation-text-responsive-design-alle-apparaten,
  .implementation-image-responsive-design-alle-apparaten {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.best-practices-section-responsive-design-alle-apparaten {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.best-practices-title-responsive-design-alle-apparaten {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.best-practices-grid-responsive-design-alle-apparaten {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.best-practices-card-responsive-design-alle-apparaten {
  flex: 1 1 calc(33.333% - 1.67rem);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.best-practices-card-responsive-design-alle-apparaten:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.best-practices-card-icon-responsive-design-alle-apparaten {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  border-radius: 10px;
  font-size: 1.5rem;
}

.best-practices-card-title-responsive-design-alle-apparaten {
  color: #1e293b;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}

.best-practices-card-text-responsive-design-alle-apparaten {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .best-practices-card-responsive-design-alle-apparaten {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  .best-practices-card-responsive-design-alle-apparaten {
    flex: 1 1 100%;
    min-width: unset;
  }
}

.breakpoints-section-responsive-design-alle-apparaten {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.breakpoints-wrapper-responsive-design-alle-apparaten {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.breakpoints-text-responsive-design-alle-apparaten {
  flex: 1 1 50%;
  max-width: 50%;
}

.breakpoints-image-responsive-design-alle-apparaten {
  flex: 1 1 50%;
  max-width: 50%;
}

.breakpoints-visual-responsive-design-alle-apparaten {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.breakpoints-title-responsive-design-alle-apparaten {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.breakpoints-intro-responsive-design-alle-apparaten {
  color: #374151;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.breakpoints-list-responsive-design-alle-apparaten {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.breakpoints-list-item-responsive-design-alle-apparaten {
  color: #374151;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.breakpoints-list-item-responsive-design-alle-apparaten::before {
  content: "";
  position: absolute;
  left: 0;
  color: #06b6d4;
  font-weight: bold;
}

.breakpoints-note-responsive-design-alle-apparaten {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  padding: 1rem;
  background: rgba(6, 182, 212, 0.05);
  border-left: 3px solid #06b6d4;
  border-radius: 4px;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .breakpoints-wrapper-responsive-design-alle-apparaten {
    flex-direction: column;
  }

  .breakpoints-text-responsive-design-alle-apparaten,
  .breakpoints-image-responsive-design-alle-apparaten {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-responsive-design-alle-apparaten {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-responsive-design-alle-apparaten {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-responsive-design-alle-apparaten {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.conclusion-text-responsive-design-alle-apparaten {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.cta-box-responsive-design-alle-apparaten {
  background: linear-gradient(135deg, #06b6d4, #0ea5e9);
  padding: 3rem;
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
  margin-top: 2.5rem;
}

.cta-title-responsive-design-alle-apparaten {
  color: #ffffff;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.cta-text-responsive-design-alle-apparaten {
  color: #ffffff;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

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

.cta-button-responsive-design-alle-apparaten:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.disclaimer-section-responsive-design-alle-apparaten {
  background: #f8fafc;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.disclaimer-content-responsive-design-alle-apparaten {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.disclaimer-title-responsive-design-alle-apparaten {
  color: #1e293b;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-responsive-design-alle-apparaten {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
}

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

.related-header-responsive-design-alle-apparaten {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

.related-cards-responsive-design-alle-apparaten {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.related-card-responsive-design-alle-apparaten {
  flex: 1 1 calc(33.333% - 1.67rem);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.related-card-responsive-design-alle-apparaten:hover {
  border-color: #06b6d4;
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.1);
}

.related-card-title-responsive-design-alle-apparaten {
  color: #1e293b;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}

.related-card-description-responsive-design-alle-apparaten {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.related-card-link-responsive-design-alle-apparaten {
  color: #06b6d4;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.related-card-link-responsive-design-alle-apparaten:hover {
  color: #0891b2;
}

@media (max-width: 1024px) {
  .related-card-responsive-design-alle-apparaten {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  .related-card-responsive-design-alle-apparaten {
    flex: 1 1 100%;
    min-width: unset;
  }
}

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

@media (max-width: 768px) {
  .breadcrumbs-responsive-design-alle-apparaten {
    font-size: 0.8125rem;
  }

  .hero-stats-responsive-design-alle-apparaten {
    gap: 1rem;
  }
}

:root {
  --color-bg-dark-primary: #0f172a;
  --color-bg-dark-secondary: #1e293b;
  --color-bg-dark-tertiary: #0d1526;
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-light-tertiary: #f1f5f9;
  --color-bg-card-dark: rgba(255, 255, 255, 0.05);
  --color-bg-card-light: #ffffff;
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #e2e8f0;
  --color-text-dark-muted: #94a3b8;
  --color-text-light-primary: #0f172a;
  --color-text-light-secondary: #334155;
  --color-text-light-muted: #64748b;
  --color-primary: #06b6d4;
  --color-primary-hover: #0891b2;
  --color-secondary: #0ea5e9;
  --color-accent-warm: #f59e0b;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 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-body), sans-serif;
  line-height: 1.6;
}

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

.ux-design-story-about {
  width: 100%;
}

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

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

.hero-foundation-text-about {
  max-width: 800px;
}

.hero-foundation-title-about {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 6vw + 0.5rem, 3.75rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-foundation-subtitle-about {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-light-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-stats-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-bg-light-tertiary);
}

.stat-item-about {
  flex: 0 1 auto;
}

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

.stat-label-about {
  font-size: 0.875rem;
  color: var(--color-text-light-muted);
  font-weight: 500;
}

.hero-visual-about {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: 0 auto;
}

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

  .hero-foundation-content-about {
    flex-direction: row;
    align-items: center;
    gap: clamp(2rem, 6vw, 4rem);
  }

  .hero-foundation-text-about {
    flex: 1;
  }
}

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

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

.journey-header-about {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(2rem, 5vw, 3rem);
}

.journey-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.journey-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: 1rem;
}

.journey-subtitle-about {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-light-secondary);
}

.journey-timeline-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item-about {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.timeline-year-about {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 800;
  color: var(--color-primary);
  flex-shrink: 0;
  min-width: 70px;
}

.timeline-description-about {
  flex: 1;
}

.timeline-subtitle-about {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-light-primary);
  margin-bottom: 0.5rem;
}

.timeline-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-light-muted);
  line-height: 1.6;
}

.journey-image-about {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: 2rem auto 0;
}

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

.philosophy-core-section-about {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.philosophy-header-about {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(2rem, 5vw, 3rem);
}

.philosophy-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.philosophy-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: 1rem;
}

.philosophy-subtitle-about {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-light-secondary);
}

.principles-grid-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 3vw, 2rem);
  margin-top: 2rem;
}

.principle-card-about {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-bg-light-tertiary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.principle-icon-about {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.principle-title-about {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-light-primary);
}

.principle-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-light-muted);
  line-height: 1.6;
}

.philosophy-quote-about {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-light-secondary);
  margin: clamp(2rem, 4vw, 3rem) 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.quote-text-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-light-primary);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-author-about {
  font-size: 0.875rem;
  color: var(--color-text-light-muted);
  font-style: normal;
}

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

  .principle-card-about {
    flex: 1 1 300px;
  }
}

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

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

.approach-header-about {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(2rem, 5vw, 3rem);
}

.approach-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.approach-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: 1rem;
}

.approach-subtitle-about {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-light-secondary);
}

.methodology-steps-about {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 900px;
  margin: 2rem auto 0;
}

.step-item-about {
  display: flex;
  gap: 1.5rem;
  padding: 1.75rem;
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-bg-light-tertiary);
  align-items: flex-start;
}

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

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

.step-title-about {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-light-primary);
}

.step-description-about {
  font-size: 0.9375rem;
  color: var(--color-text-light-muted);
  line-height: 1.6;
}

.approach-visual-about {
  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: 2rem auto 0;
}

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

.impact-focus-section-about {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.impact-header-about {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(2rem, 5vw, 3rem);
}

.impact-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.impact-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: 1rem;
}

.impact-subtitle-about {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-light-secondary);
}

.impact-benefits-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 3vw, 2rem);
  margin-top: 2rem;
}

.benefit-item-about {
  flex: 1 1 260px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--color-primary);
}

.benefit-title-about {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-light-primary);
}

.benefit-text-about {
  font-size: 0.875rem;
  color: var(--color-text-light-muted);
  line-height: 1.6;
}

.impact-image-about {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: 2rem auto 0;
}

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

  .benefit-item-about {
    flex: 1 1 280px;
  }
}

.commitment-transparency-section-about {
  background: var(--color-bg-light-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.commitment-content-about {
  max-width: 800px;
}

.commitment-header-about {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.commitment-icon-about {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.commitment-title-about {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.3;
}

.commitment-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-light-muted);
  line-height: 1.8;
}

.commitment-text-about strong {
  color: var(--color-text-light-primary);
  font-weight: 600;
}

@media (min-width: 768px) {
  .commitment-transparency-section-about {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }
}

.legal-portal {
  width: 100%;
  background: var(--color-bg-light-primary);
}

.legal-portal .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 5vw, 2rem);
  padding-right: clamp(1rem, 5vw, 2rem);
}

.legal-portal-hero {
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-light-secondary);
  overflow: hidden;
}

.legal-portal-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-portal-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-portal-hero p {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: 1.6;
}

.legal-portal-updated {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-text-light-muted);
  font-style: italic;
}

.legal-portal-content {
  width: 100%;
  padding: clamp(2rem, 6vw, 4rem) 0;
  background: var(--color-bg-light-primary);
  overflow: hidden;
}

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

.legal-portal-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-portal-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.2;
}

.legal-portal-section p {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
}

.legal-portal-section ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-left: 1.5rem;
}

.legal-portal-section li {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
}

.legal-portal-contact {
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-light-secondary);
  overflow: hidden;
}

.legal-portal-contact-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.legal-portal-contact h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.2;
}

.legal-portal-contact-intro {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
}

.legal-portal-contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.legal-portal-contact-item {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: 1.6;
}

.legal-portal-contact-label {
  font-weight: 600;
  color: var(--color-text-light-primary);
}

@media (min-width: 768px) {
  .legal-portal-hero {
    padding: clamp(4rem, 8vw, 8rem) 0;
  }

  .legal-portal-content {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

  .legal-portal-contact {
    padding: clamp(4rem, 8vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .legal-portal-hero {
    padding: 6rem 0;
  }

  .legal-portal-content {
    padding: 6rem 0;
  }

  .legal-portal-contact {
    padding: 6rem 0;
  }
}

.thank-page {
  width: 100%;
}

.thank-section {
  background: var(--color-bg-dark-primary);
  width: 100%;
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 100vh;
}

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

.thank-icon {
  width: clamp(5rem, 15vw, 8rem);
  height: clamp(5rem, 15vw, 8rem);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 50%;
  animation: icon-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.thank-icon i {
  font-size: clamp(2.5rem, 8vw, 4rem);
  color: var(--color-primary);
}

.thank-section h1 {
  color: var(--color-text-dark-primary);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.5px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-subtitle {
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
  letter-spacing: 0.3px;
}

.thank-description {
  color: var(--color-text-dark-secondary);
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  margin: 0;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-next-steps {
  color: var(--color-text-dark-muted);
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  margin: 0;
  max-width: 550px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  letter-spacing: 0.3px;
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

.btn-primary {
  background: var(--color-primary);
  color: #000000;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(6, 182, 212, 0.2);
}

@keyframes icon-pop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (min-width: 768px) {
  .thank-section {
    padding: clamp(5rem, 10vw, 8rem) 0;
    min-height: 100vh;
  }

  .thank-content {
    gap: clamp(1.75rem, 3vw, 3rem);
  }

  .btn {
    margin-top: clamp(1rem, 2vw, 1.5rem);
  }
}

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

  .thank-content {
    gap: 2.5rem;
  }

  .btn:hover {
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
  }
}

@media (min-width: 1440px) {
  .thank-section {
    padding: 8rem 0;
  }

  .thank-icon {
    width: 8rem;
    height: 8rem;
  }

  .thank-icon i {
    font-size: 4rem;
  }
}

.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.error-section {
  width: 100%;
  background: linear-gradient(135deg, var(--color-bg-dark-primary) 0%, var(--color-bg-dark-secondary) 100%);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;

}

.error-content {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  padding: clamp(1rem, 4vw, 2rem);
  max-width: 600px;
}

.error-code-wrapper {
  position: relative;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin: 0;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(6, 182, 212, 0.15);
}

.error-decoration {
  position: absolute;
  top: -20px;
  right: -40px;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-secondary);
  opacity: 0.3;
  animation: spin 20s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: var(--color-text-dark-primary);
  margin: 0;
  line-height: 1.2;
  font-weight: 600;
}

.error-description {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: var(--color-text-dark-secondary);
  margin: 0;
  line-height: 1.6;
  padding: 0 clamp(0.5rem, 2vw, 1rem);
}

.error-suggestions {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 3vw, 1.5rem);
  width: 100%;
  margin: clamp(1rem, 2vw, 1.5rem) 0;
  backdrop-filter: blur(10px);
}

.error-hint {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-primary);
  margin: 0 0 clamp(0.75rem, 2vw, 1rem) 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.error-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1.5vw, 0.75rem);
}

.error-list li {
  font-family: var(--font-body);
  font-size: clamp(0.8125rem, 1.2vw, 0.9375rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.5;
  position: relative;
  padding-left: clamp(1.5rem, 3vw, 2rem);
}

.error-list li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.2em;
}

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

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

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(6, 182, 212, 0.3);
}

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

.error-icon-decoration {
  font-size: clamp(3rem, 8vw, 4.5rem);
  color: var(--color-secondary);
  opacity: 0.15;
  margin-top: clamp(0.5rem, 2vw, 1rem);
  animation: float 6s ease-in-out infinite;
}

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

@media (min-width: 768px) {
  .error-section {
    padding: 4rem 0;
  }

  .error-code-wrapper {
    margin-bottom: 2rem;
  }

  .error-suggestions {
    padding: 2rem;
  }

  .error-decoration {
    right: -60px;
  }
}

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

  .error-content {
    gap: 2.5rem;
  }

  .error-code-wrapper {
    margin-bottom: 2.5rem;
  }

  .error-suggestions {
    padding: 2.5rem;
  }
}

@media (min-width: 1440px) {
  .error-section {
    padding: 8rem 0;
  }

  .error-code {
    font-size: 8rem;
  }

  .error-title {
    font-size: 2.75rem;
  }
}

.main-navigatie-structuren-webdesign {
  width: 100%;
}

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

.hero-section-navigatie-structuren-webdesign {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

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

.breadcrumb-link-navigatie-structuren-webdesign {
  color: #06b6d4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-navigatie-structuren-webdesign:hover {
  color: #0891b2;
}

.breadcrumb-separator-navigatie-structuren-webdesign {
  color: #64748b;
  margin: 0 0.25rem;
}

.breadcrumb-current-navigatie-structuren-webdesign {
  color: #94a3b8;
}

.hero-content-navigatie-structuren-webdesign {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.hero-text-block-navigatie-structuren-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.hero-meta-navigatie-structuren-webdesign {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.meta-badge-navigatie-structuren-webdesign {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #06b6d4;
}

.meta-badge-navigatie-structuren-webdesign i {
  font-size: 0.875rem;
}

.hero-image-block-navigatie-structuren-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-navigatie-structuren-webdesign {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.hero-stats-navigatie-structuren-webdesign {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item-navigatie-structuren-webdesign {
  flex: 1 1 auto;
  text-align: center;
}

.stat-number-navigatie-structuren-webdesign {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
  margin-bottom: 0.5rem;
}

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

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

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

.intro-text-navigatie-structuren-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-navigatie-structuren-webdesign {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-description-navigatie-structuren-webdesign {
  color: #334155;
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.intro-image-navigatie-structuren-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-img-navigatie-structuren-webdesign {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.principles-section-navigatie-structuren-webdesign {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.section-header-navigatie-structuren-webdesign {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-tag-navigatie-structuren-webdesign {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 500;
  margin-bottom: 1rem;
}

.principles-title-navigatie-structuren-webdesign {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle-navigatie-structuren-webdesign {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  max-width: 600px;
  margin: 0 auto;
}

.principles-steps-navigatie-structuren-webdesign {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.principle-step-navigatie-structuren-webdesign {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 12px;
}

.principle-number-navigatie-structuren-webdesign {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.principle-content-navigatie-structuren-webdesign {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.principle-title-navigatie-structuren-webdesign {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
}

.principle-text-navigatie-structuren-webdesign {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  line-height: 1.6;
}

.patterns-section-navigatie-structuren-webdesign {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.patterns-content-navigatie-structuren-webdesign {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.patterns-text-navigatie-structuren-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.patterns-title-navigatie-structuren-webdesign {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.patterns-description-navigatie-structuren-webdesign {
  color: #334155;
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.patterns-highlight-navigatie-structuren-webdesign {
  background: #ffffff;
  border-left: 4px solid #06b6d4;
  padding: 1.25rem;
  border-radius: 8px;
  margin: clamp(1rem, 2vw, 1.5rem) 0;
}

.patterns-highlight-text-navigatie-structuren-webdesign {
  color: #1e293b;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  line-height: 1.7;
  margin: 0;
}

.patterns-image-navigatie-structuren-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.patterns-image-img-navigatie-structuren-webdesign {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.implementation-section-navigatie-structuren-webdesign {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.implementation-image-navigatie-structuren-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.implementation-image-img-navigatie-structuren-webdesign {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.implementation-text-navigatie-structuren-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-title-navigatie-structuren-webdesign {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.implementation-description-navigatie-structuren-webdesign {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.best-practices-list-navigatie-structuren-webdesign {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1.5vw, 1.5rem);
}

.practice-item-navigatie-structuren-webdesign {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.practice-icon-navigatie-structuren-webdesign {
  color: #06b6d4;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.practice-text-navigatie-structuren-webdesign {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  line-height: 1.6;
}

.features-section-navigatie-structuren-webdesign {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.features-title-navigatie-structuren-webdesign {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

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

.features-card-navigatie-structuren-webdesign {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.features-card-navigatie-structuren-webdesign:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.features-card-icon-navigatie-structuren-webdesign {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  border-radius: 10px;
  color: #06b6d4;
  font-size: 1.5rem;
}

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

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

.quote-section-navigatie-structuren-webdesign {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.featured-quote-navigatie-structuren-webdesign {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #06b6d4;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
}

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

.quote-author-navigatie-structuren-webdesign {
  display: block;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #94a3b8;
  font-style: normal;
}

.testing-section-navigatie-structuren-webdesign {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.testing-content-navigatie-structuren-webdesign {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.testing-text-navigatie-structuren-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.testing-title-navigatie-structuren-webdesign {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.testing-description-navigatie-structuren-webdesign {
  color: #334155;
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.testing-image-navigatie-structuren-webdesign {
  flex: 1 1 50%;
  max-width: 50%;
}

.testing-image-img-navigatie-structuren-webdesign {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.conclusion-section-navigatie-structuren-webdesign {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-navigatie-structuren-webdesign {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-navigatie-structuren-webdesign {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  text-align: center;
}

.conclusion-text-navigatie-structuren-webdesign {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.cta-box-navigatie-structuren-webdesign {
  background: linear-gradient(135deg, #06b6d4, #0284c7);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  text-align: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.cta-title-navigatie-structuren-webdesign {
  color: #ffffff;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.cta-text-navigatie-structuren-webdesign {
  color: #ffffff;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  line-height: 1.6;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  opacity: 0.95;
}

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

.cta-button-navigatie-structuren-webdesign:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

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

.related-subtitle-navigatie-structuren-webdesign {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

.related-card-navigatie-structuren-webdesign {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.related-card-navigatie-structuren-webdesign:hover {
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.related-card-title-navigatie-structuren-webdesign {
  color: #1e293b;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.related-card-text-navigatie-structuren-webdesign {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-navigatie-structuren-webdesign {
  color: #06b6d4;
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  transition: color 0.3s ease;
  display: inline-block;
  margin-top: 0.5rem;
}

.related-card-link-navigatie-structuren-webdesign:hover {
  color: #0891b2;
}

.disclaimer-section-navigatie-structuren-webdesign {
  background: #f1f5f9;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-navigatie-structuren-webdesign {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
}

.disclaimer-title-navigatie-structuren-webdesign {
  color: #92400e;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-navigatie-structuren-webdesign {
  color: #78350f;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-content-navigatie-structuren-webdesign,
  .intro-content-navigatie-structuren-webdesign,
  .patterns-content-navigatie-structuren-webdesign,
  .implementation-content-navigatie-structuren-webdesign,
  .testing-content-navigatie-structuren-webdesign {
    flex-direction: column;
  }

  .hero-text-block-navigatie-structuren-webdesign,
  .hero-image-block-navigatie-structuren-webdesign,
  .intro-text-navigatie-structuren-webdesign,
  .intro-image-navigatie-structuren-webdesign,
  .patterns-text-navigatie-structuren-webdesign,
  .patterns-image-navigatie-structuren-webdesign,
  .implementation-image-navigatie-structuren-webdesign,
  .implementation-text-navigatie-structuren-webdesign,
  .testing-text-navigatie-structuren-webdesign,
  .testing-image-navigatie-structuren-webdesign {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .implementation-image-navigatie-structuren-webdesign {
    order: 0;
  }

  .hero-stats-navigatie-structuren-webdesign {
    gap: 1.5rem;
  }

  .stat-item-navigatie-structuren-webdesign {
    flex: 1 1 auto;
    min-width: 120px;
  }

  .related-card-navigatie-structuren-webdesign {
    flex: 1 1 100%;
    max-width: none;
  }

  .principle-step-navigatie-structuren-webdesign {
    flex-direction: column;
    gap: 1rem;
  }

  .principle-number-navigatie-structuren-webdesign {
    min-width: auto;
  }

  .breadcrumbs-navigatie-structuren-webdesign {
    font-size: 0.75rem;
  }
}

@media (min-width: 768px) {
  .hero-section-navigatie-structuren-webdesign {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }

  .principles-section-navigatie-structuren-webdesign {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }
}

@media (min-width: 1024px) {
  .features-card-navigatie-structuren-webdesign {
    flex: 1 1 calc(33.333% - 1.5rem);
    max-width: none;
  }
}