
    @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.04);
  --color-bg-card-light: #ffffff;
  
  
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #cbd5e1;
  --color-text-dark-muted: #94a3b8;
  
  
  --color-text-light-primary: #0f172a;
  --color-text-light-secondary: #475569;
  --color-text-light-muted: #64748b;
  
  
  --color-accent-primary: #06b6d4;
  --color-accent-primary-hover: #0891b2;
  --color-accent-secondary: #22d3ee;
  --color-accent-dark: #0e7490;
  
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --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.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  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);
  line-height: 1.6;
}

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

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

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

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

.btn-primary {
  background: var(--color-accent-primary);
  color: #ffffff;
  border-color: var(--color-accent-primary);
}

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

.btn-outline-light {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

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

.btn-outline-dark:hover {
  background: rgba(15, 23, 42, 0.05);
  transform: translateY(-2px);
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: var(--space-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-accent-primary);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

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

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

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

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

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

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

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

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

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

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

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

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

.card-dark:hover {
  border-color: var(--color-accent-primary);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.15);
}

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

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

.icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.icon-wrapper-dark {
  background: rgba(6, 182, 212, 0.1);
  color: var(--color-accent-primary);
}

.icon-wrapper-light {
  background: rgba(6, 182, 212, 0.1);
  color: var(--color-accent-primary);
}

.icon-wrapper i {
  font-size: 24px;
}

@media (max-width: 1440px) {
  .container {
    max-width: 1200px;
  }
}

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

@media (max-width: 768px) {
  .container {
    max-width: 100%;
  }
  
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .flex-mobile-column {
    flex-direction: column;
  }
}

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

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

.opacity-75 { opacity: 0.75; }
.opacity-50 { opacity: 0.5; }
: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.04);
  --color-bg-card-light: #ffffff;
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #cbd5e1;
  --color-text-dark-muted: #94a3b8;
  --color-text-light-primary: #0f172a;
  --color-text-light-secondary: #475569;
  --color-text-light-muted: #64748b;
  --color-accent-primary: #06b6d4;
  --color-accent-primary-hover: #0891b2;
  --color-accent-secondary: #22d3ee;
  --color-accent-dark: #0e7490;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  --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;
}

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

html {
  scroll-behavior: smooth;
}

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

header {
  width: 100%;
}

.header-design-vault {
  background: var(--color-bg-dark-primary);
  padding: clamp(0.875rem, 2vw, 1.25rem) 0;
  position: static;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

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

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

.header-design-vault-logo-text {
  font-weight: 700;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-dark-primary);
  letter-spacing: -0.5px;
}

.header-design-vault-desktop-nav {
  display: none;
  gap: clamp(1rem, 2vw, 2.5rem);
  align-items: center;
}

.header-design-vault-nav-link {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  transition: color 300ms ease;
  font-weight: 500;
  white-space: nowrap;
}

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

.header-design-vault-cta-button {
  display: none;
  padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1.25rem, 2.5vw, 1.75rem);
  background: var(--color-accent-primary);
  color: var(--color-bg-dark-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 300ms ease;
  white-space: nowrap;
}

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

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

.header-design-vault-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  color: var(--color-text-dark-primary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 300ms ease;
  padding: 0;
}

.header-design-vault-mobile-toggle:hover {
  color: var(--color-accent-primary);
}

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

.header-design-vault-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-dark-secondary);
  padding-top: clamp(3.5rem, 12vw, 5rem);
  padding-left: clamp(1rem, 4vw, 2rem);
  padding-right: clamp(1rem, 4vw, 2rem);
  padding-bottom: 2rem;
  overflow-y: auto;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.header-design-vault-mobile-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem;
  margin-right: -1rem;
}

.header-design-vault-mobile-close {
  background: transparent;
  border: none;
  color: var(--color-text-dark-primary);
  font-size: 1.75rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  transition: color 300ms ease;
}

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

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

.header-design-vault-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.header-design-vault-mobile-link {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 300ms ease;
}

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

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

.header-design-vault-mobile-cta {
  display: inline-block;
  margin-top: 1.5rem;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: var(--color-accent-primary);
  color: var(--color-bg-dark-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  transition: all 300ms ease;
  text-align: center;
}

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

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

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

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

  .header-design-vault-desktop-nav {
    display: flex;
    flex: 1;
    justify-content: center;
  }

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

@media (min-width: 1024px) {
  .header-design-vault-logo-text {
    font-size: 1.375rem;
  }

  .header-design-vault-nav-link {
    font-size: 1rem;
  }

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

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

    .design-concepts-hub {
  position: relative;
  width: 100%;
}

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

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

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

.hero-glow-orb-1 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 50%;
  filter: blur(60px);
  top: 10%;
  right: -100px;
  z-index: 1;
  pointer-events: none;
}

.hero-floating-shape-1 {
  position: absolute;
  width: 250px;
  height: 280px;
  background: rgba(34, 211, 238, 0.04);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  bottom: 50px;
  left: 5%;
  z-index: 2;
  pointer-events: none;
}

.hero-glow-orb-2 {
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 50%;
  filter: blur(70px);
  bottom: -100px;
  right: 10%;
  z-index: 1;
  pointer-events: none;
}

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

.hero-organic-form-1 {
  position: absolute;
  width: 320px;
  height: 320px;
  background: rgba(249, 115, 22, 0.04);
  border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%;
  top: 20%;
  left: -80px;
  z-index: 2;
  pointer-events: none;
}

.hero-floating-panel-1 {
  position: absolute;
  width: 180px;
  height: 140px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 12px;
  transform: rotate(-15deg);
  bottom: 15%;
  right: 5%;
  z-index: 1;
  pointer-events: none;
}

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

.hero-text-block-index {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.hero-subtitle-index {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  line-height: 1.6;
  max-width: 500px;
}

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

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

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

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

.hero-cta-group-index {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.hero-image-block-index {
  flex: 1 1 400px;
  min-height: 400px;
}

.hero-featured-image-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero-content-index {
    flex-direction: column;
    gap: 2rem;
  }
  
  .hero-text-block-index {
    flex: 1 1 100%;
  }
  
  .hero-image-block-index {
    flex: 1 1 100%;
    min-height: 300px;
  }
}

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

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

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

.principles-shape-accent-2 {
  position: absolute;
  width: 280px;
  height: 320px;
  background: rgba(34, 197, 94, 0.04);
  border-radius: 55% 45% 50% 50% / 50% 50% 45% 55%;
  top: 15%;
  left: -100px;
  z-index: 2;
  pointer-events: none;
}

.principles-floating-element-1 {
  position: absolute;
  width: 200px;
  height: 160px;
  background: rgba(59, 130, 246, 0.03);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  transform: rotate(12deg);
  bottom: 20%;
  right: 8%;
  z-index: 1;
  pointer-events: none;
}

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

.principles-corner-glow-1 {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(249, 115, 22, 0.04);
  border-radius: 50%;
  filter: blur(50px);
  top: 5%;
  right: 5%;
  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(6, 182, 212, 0.1);
  color: #0891b2;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

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

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

.principles-step-index {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #06b6d4;
}

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

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

.principles-step-title-index {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

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

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

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

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

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

.featured-shape-1 {
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(168, 85, 247, 0.04);
  border-radius: 50% 40% 60% 40% / 40% 60% 40% 60%;
  top: 15%;
  left: 5%;
  z-index: 2;
  pointer-events: none;
}

.featured-accent-2 {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 50%;
  filter: blur(50px);
  bottom: 20%;
  right: 5%;
  z-index: 1;
  pointer-events: none;
}

.featured-line-accent-1 {
  position: absolute;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.25), transparent);
  top: 35%;
  left: 20%;
  z-index: 2;
  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(6, 182, 212, 0.15);
  color: #22d3ee;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

.featured-subtitle-index {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.featured-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 12px;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-card-index:hover {
  background: rgba(6, 182, 212, 0.08);
  border-color: #06b6d4;
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(6, 182, 212, 0.15);
}

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

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

.featured-card-text-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  flex-grow: 1;
}

.featured-card-link-index {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: #06b6d4;
  transition: all 300ms ease;
  text-decoration: none;
  margin-top: 0.5rem;
}

.featured-card-link-index:hover {
  color: #22d3ee;
  transform: translateX(4px);
}

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

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

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

.benefits-glow-mesh-1 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  top: -150px;
  left: -200px;
  z-index: 1;
  pointer-events: none;
}

.benefits-accent-orb-1 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 50%;
  filter: blur(60px);
  top: 30%;
  right: -100px;
  z-index: 1;
  pointer-events: none;
}

.benefits-shape-float-1 {
  position: absolute;
  width: 280px;
  height: 320px;
  background: rgba(251, 146, 60, 0.04);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  bottom: 50px;
  right: 5%;
  z-index: 2;
  pointer-events: none;
}

.benefits-glow-orb-2 {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(168, 85, 247, 0.05);
  border-radius: 50%;
  filter: blur(50px);
  bottom: -100px;
  left: 8%;
  z-index: 1;
  pointer-events: none;
}

.benefits-line-element-1 {
  position: absolute;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.2), transparent);
  top: 25%;
  right: 15%;
  z-index: 2;
  pointer-events: none;
}

.benefits-floating-panel-1 {
  position: absolute;
  width: 180px;
  height: 140px;
  background: rgba(6, 182, 212, 0.04);
  border: 1px solid rgba(6, 182, 212, 0.1);
  border-radius: 12px;
  transform: rotate(-8deg);
  top: 20%;
  left: 8%;
  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(34, 197, 94, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

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

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

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

.benefits-card-index:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-6px);
}

.benefits-card-icon-index {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 12px;
  color: #0891b2;
  font-size: 1.5rem;
}

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

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

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

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

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

.methodology-glow-1 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(34, 211, 238, 0.06);
  border-radius: 50%;
  filter: blur(60px);
  top: 20%;
  left: -150px;
  z-index: 1;
  pointer-events: none;
}

.methodology-shape-1 {
  position: absolute;
  width: 280px;
  height: 320px;
  background: rgba(249, 115, 22, 0.04);
  border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%;
  top: 50%;
  right: 5%;
  z-index: 2;
  pointer-events: none;
}

.methodology-accent-1 {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 50%;
  filter: blur(50px);
  top: 10%;
  right: 10%;
  z-index: 1;
  pointer-events: none;
}

.methodology-line-1 {
  position: absolute;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.25), transparent);
  bottom: 30%;
  left: 20%;
  z-index: 2;
  pointer-events: none;
}

.methodology-panel-1 {
  position: absolute;
  width: 180px;
  height: 140px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(6, 182, 212, 0.15);
  border-radius: 12px;
  transform: rotate(12deg);
  bottom: 15%;
  left: 5%;
  z-index: 1;
  pointer-events: none;
}

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

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

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

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

.methodology-subtitle-index {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.methodology-image-block-index {
  margin: 3rem 0;
}

.methodology-image-index {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.methodology-steps-index {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: 2rem;
}

.methodology-step-item-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(6, 182, 212, 0.15);
  border-radius: 12px;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.methodology-step-item-index:hover {
  background: rgba(6, 182, 212, 0.08);
  border-color: #06b6d4;
}

.methodology-step-num-index {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
}

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

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

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

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

.quote-glow-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 50%;
  filter: blur(80px);
  top: -100px;
  left: -200px;
  z-index: 1;
  pointer-events: none;
}

.quote-shape-1 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  bottom: 50px;
  right: 5%;
  z-index: 2;
  pointer-events: none;
}

.quote-accent-1 {
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(34, 197, 94, 0.04);
  border-radius: 50%;
  filter: blur(50px);
  bottom: -100px;
  left: 10%;
  z-index: 1;
  pointer-events: none;
}

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

.quote-content-index {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}

.featured-quote-index {
  padding: 3rem 2.5rem;
  border-left: 4px solid #06b6d4;
  background: #f8fafc;
  margin: 0 0 2rem 0;
  border-radius: 8px;
}

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

.quote-attribution-index {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  font-style: normal;
  font-weight: 500;
}

.quote-explanation-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote-heading-index {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.quote-body-index {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

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

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

.cta-glow-1 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 50%;
  filter: blur(60px);
  bottom: -100px;
  left: -150px;
  z-index: 1;
  pointer-events: none;
}

.cta-shape-1 {
  position: absolute;
  width: 280px;
  height: 320px;
  background: rgba(249, 115, 22, 0.04);
  border-radius: 50% 40% 60% 40% / 40% 60% 40% 60%;
  top: 20%;
  left: 5%;
  z-index: 2;
  pointer-events: none;
}

.cta-accent-1 {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 50%;
  filter: blur(50px);
  bottom: 15%;
  right: 8%;
  z-index: 1;
  pointer-events: none;
}

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

.cta-content-index {
  position: relative;
  z-index: 10;
  text-align: center;
}

.cta-title-index {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-subtitle-index {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

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

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

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

.contact-shape-1 {
  position: absolute;
  width: 280px;
  height: 320px;
  background: rgba(34, 197, 94, 0.04);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  bottom: 50px;
  left: 5%;
  z-index: 2;
  pointer-events: none;
}

.contact-accent-1 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(249, 115, 22, 0.05);
  border-radius: 50%;
  filter: blur(50px);
  bottom: -100px;
  right: 10%;
  z-index: 1;
  pointer-events: none;
}

.contact-line-1 {
  position: absolute;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.2), transparent);
  top: 30%;
  left: 15%;
  z-index: 2;
  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-form-title-index {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.contact-form-intro-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

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

.contact-label-index {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  font-weight: 600;
  color: #1e293b;
}

.contact-input-index,
.contact-textarea-index {
  padding: clamp(0.75rem, 2vw, 1rem);
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: 1rem;
  color: #1e293b;
  transition: all 300ms ease;
}

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

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

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

.contact-submit-btn-index:hover {
  background: #0891b2;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.2);
}

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

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

.contact-info-title-index {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.contact-faq-item-index {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.contact-faq-item-index:last-child {
  border-bottom: none;
  margin-bottom: 1rem;
  padding-bottom: 0;
}

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

.contact-faq-answer-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

.contact-info-note-index {
  margin-top: 2rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 4px solid #06b6d4;
}

.contact-privacy-note-index {
  font-size: clamp(0.8rem, 1vw, 0.875rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.contact-privacy-link-index {
  color: #0891b2;
  text-decoration: underline;
  transition: color 300ms ease;
}

.contact-privacy-link-index:hover {
  color: #06b6d4;
}

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

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

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

.cookie-banner-text-index {
  color: #cbd5e1;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  margin: 0;
  line-height: 1.5;
  flex: 1 1 250px;
  min-width: 200px;
}

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

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  border: none;
  border-radius: 6px;
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 300ms ease;
  white-space: nowrap;
}

.cookie-btn-accept-index {
  background: #06b6d4;
  color: #0f172a;
}

.cookie-btn-accept-index:hover {
  background: #0891b2;
  transform: translateY(-1px);
}

.cookie-btn-decline-index {
  background: transparent;
  color: #cbd5e1;
  border: 1px solid rgba(203, 213, 225, 0.3);
}

.cookie-btn-decline-index:hover {
  border-color: #cbd5e1;
  color: #ffffff;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cookie-banner-text-index {
    flex: 1 1 100%;
    text-align: center;
  }
  
  .cookie-banner-buttons-index {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn-accept-index,
  .cookie-btn-decline-index {
    flex: 1 1 120px;
  }
}

@media (min-width: 768px) {
  .hero-section-index {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }
  
  .principles-section-index,
  .featured-posts-section-index,
  .benefits-section-index,
  .methodology-section-index,
  .quote-section-index,
  .contact-section-index {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-index {
    padding: clamp(6rem, 15vw, 10rem) 0;
  }
  
  .principles-section-index,
  .featured-posts-section-index,
  .benefits-section-index,
  .methodology-section-index,
  .quote-section-index,
  .contact-section-index {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }
}

    .footer {
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem) 0;
  position: relative;
  overflow: hidden;
}

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

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

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

.footer-about-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.footer-about-text {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  color: #cbd5e1;
  max-width: 400px;
}

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

.footer-nav-title {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  text-decoration: none;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  width: fit-content;
}

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

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

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

.footer-contact-title {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.footer-contact-item {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  color: #cbd5e1;
  margin: 0;
}

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

.footer-legal-title {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-legal-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-legal-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  text-decoration: none;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  width: fit-content;
}

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

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

.footer-copyright {
  border-top: 1px solid rgba(203, 213, 225, 0.1);
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.footer-copyright-text {
  font-family: var(--font-primary);
  font-size: clamp(0.8125rem, 1vw + 0.5rem, 0.9375rem);
  color: #94a3b8;
  margin: 0;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(3rem, 6vw, 4.5rem);
    align-items: start;
  }

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

  .footer-about-text {
    max-width: 500px;
  }

  .footer-navigation,
  .footer-contact,
  .footer-legal {
    gap: 1.25rem;
  }

  .footer-copyright {
    grid-column: 1 / -1;
    margin-top: clamp(1.5rem, 3vw, 2rem);
  }
}

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

  .footer-about {
    grid-column: 1 / 2;
    gap: 1.25rem;
  }

  .footer-navigation {
    grid-column: 2 / 3;
  }

  .footer-contact {
    grid-column: 3 / 4;
  }

  .footer-legal {
    grid-column: 4 / 5;
  }

  .footer-copyright {
    grid-column: 1 / -1;
    margin-top: clamp(2rem, 4vw, 2.5rem);
  }

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

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

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

.hero-section-webdesign-effectief {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: linear-gradient(135deg, #0f172a 0%, #1a2a4a 100%);
}

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

.hero-deco-gradient-webdesign {
  position: absolute;
  bottom: -50px;
  left: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-shape-webdesign {
  position: absolute;
  top: 20%;
  left: -80px;
  width: 250px;
  height: 250px;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

.hero-deco-accent-webdesign {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: rgba(34, 211, 238, 0.03);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.hero-content-webdesign-effectief {
  position: relative;
  z-index: 10;
}

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

.hero-subtitle-webdesign-effectief {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #06b6d4;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-description-webdesign-effectief {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: #cbd5e1;
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

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

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

.stat-label-webdesign {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-cta-webdesign-effectief {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

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

.posts-header-webdesign-effectief {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.posts-tag-webdesign {
  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;
}

.posts-title-webdesign-effectief {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.posts-subtitle-webdesign-effectief {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

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

.card-webdesign-effectief:hover {
  border-color: #06b6d4;
  box-shadow: 0 12px 30px rgba(6, 182, 212, 0.15);
  transform: translateY(-6px);
}

.card-image-webdesign {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  background: #f1f5f9;
}

.card-title-webdesign-effectief {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

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

.card-meta-webdesign-effectief {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

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

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

.card-link-webdesign {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #06b6d4;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.card-link-webdesign:hover {
  color: #0891b2;
  gap: 0.75rem;
}

.card-link-webdesign::after {
  content: "";
  transition: transform 0.3s ease;
}

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

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

.principles-deco-glow-webdesign {
  position: absolute;
  top: 15%;
  left: -150px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.principles-deco-shape-webdesign {
  position: absolute;
  bottom: 10%;
  right: -80px;
  width: 280px;
  height: 280px;
  background: rgba(34, 211, 238, 0.04);
  border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

.principles-header-webdesign-effectief {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
  position: relative;
  z-index: 10;
}

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

.principles-subtitle-webdesign-effectief {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.principles-steps-webdesign-effectief {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 10;
}

.principle-step-webdesign-effectief {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

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

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

.principle-step-title-webdesign {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.principle-step-text-webdesign {
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  color: #64748b;
  line-height: 1.7;
}

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

.concepts-deco-glow-webdesign {
  position: absolute;
  top: 20%;
  right: -120px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

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

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

.concepts-subtitle-webdesign-effectief {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.featured-quote-webdesign-effectief {
  padding: clamp(2rem, 4vw, 2.5rem);
  border-left: 4px solid #06b6d4;
  background: #f8fafc;
  margin: clamp(2rem, 4vw, 3rem) 0;
  border-radius: 8px;
  position: relative;
  z-index: 10;
}

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

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

.concepts-grid-webdesign-effectief {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 3vw, 2rem);
  position: relative;
  z-index: 10;
}

.concept-card-webdesign-effectief {
  flex: 1 1 280px;
  max-width: 350px;
  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.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.concept-card-webdesign-effectief:hover {
  background: #ffffff;
  border-color: #06b6d4;
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.12);
  transform: translateY(-4px);
}

.concept-card-icon-webdesign {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 10px;
  color: #06b6d4;
  font-size: 1.5rem;
}

.concept-card-title-webdesign {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #0f172a;
}

.concept-card-text-webdesign {
  font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
  color: #64748b;
  line-height: 1.6;
}

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

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

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

  .posts-grid-webdesign-effectief {
    gap: 1rem;
  }

  .card-webdesign-effectief {
    flex: 1 1 100%;
    max-width: none;
  }

  .concepts-grid-webdesign-effectief {
    gap: 1rem;
  }

  .concept-card-webdesign-effectief {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .hero-cta-webdesign-effectief {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-webdesign-effectief a {
    width: 100%;
    text-align: center;
  }

  .stat-item-webdesign {
    flex: 1 1 auto;
  }
}

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

.btn-primary {
  background: #06b6d4;
  color: #ffffff;
  border-color: #06b6d4;
}

.btn-primary:hover {
  background: #0891b2;
  border-color: #0891b2;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
}

.btn-outline-light {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
}

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

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

.main-wireframing-eenvoudige-websites {
  width: 100%;
}

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

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

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

.hero-text-wrapper-wireframing-eenvoudige-websites {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.hero-subtitle-wireframing-eenvoudige-websites {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  line-height: 1.6;
}

.hero-meta-wireframing-eenvoudige-websites {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
}

.meta-badge-wireframing-eenvoudige-websites {
  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: #22d3ee;
}

.meta-badge-wireframing-eenvoudige-websites i {
  color: #06b6d4;
}

.hero-stats-wireframing-eenvoudige-websites {
  display: flex;
  gap: clamp(2rem, 5vw, 3rem);
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item-wireframing-eenvoudige-websites {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-wireframing-eenvoudige-websites {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #06b6d4;
  line-height: 1;
}

.stat-label-wireframing-eenvoudige-websites {
  font-size: 0.875rem;
  color: #94a3b8;
}

.hero-image-wrapper-wireframing-eenvoudige-websites {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wireframing-eenvoudige-websites {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-height: 450px;
  object-fit: cover;
}

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

.breadcrumb-link-wireframing-eenvoudige-websites {
  color: #22d3ee;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-wireframing-eenvoudige-websites:hover {
  color: #06b6d4;
}

.breadcrumb-separator-wireframing-eenvoudige-websites {
  color: #64748b;
}

.breadcrumb-current-wireframing-eenvoudige-websites {
  color: #cbd5e1;
}

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

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

.intro-text-wireframing-eenvoudige-websites {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.intro-description-wireframing-eenvoudige-websites {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.8;
}

.intro-image-wireframing-eenvoudige-websites {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-image-tag-wireframing-eenvoudige-websites {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-height: 400px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.principles-header-wireframing-eenvoudige-websites {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-wireframing-eenvoudige-websites {
  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-wireframing-eenvoudige-websites {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.principles-subtitle-wireframing-eenvoudige-websites {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

.principles-steps-wireframing-eenvoudige-websites {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.principles-step-wireframing-eenvoudige-websites {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.principles-step-wireframing-eenvoudige-websites:hover {
  background: rgba(6, 182, 212, 0.1);
  border-color: rgba(6, 182, 212, 0.4);
}

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

.principles-step-content-wireframing-eenvoudige-websites {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.principles-step-title-wireframing-eenvoudige-websites {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

.principles-step-text-wireframing-eenvoudige-websites {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

.methods-section-wireframing-eenvoudige-websites {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.methods-text-wireframing-eenvoudige-websites {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.methods-title-wireframing-eenvoudige-websites {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.methods-description-wireframing-eenvoudige-websites {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.8;
}

.featured-quote-wireframing-eenvoudige-websites {
  padding: 2rem 2.5rem;
  border-left: 4px solid #06b6d4;
  background: #ffffff;
  margin: 1.5rem 0;
  border-radius: 8px;
}

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

.quote-author-wireframing-eenvoudige-websites {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

.methods-image-wireframing-eenvoudige-websites {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.methods-image-tag-wireframing-eenvoudige-websites {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-height: 400px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tools-section-wireframing-eenvoudige-websites {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tools-header-wireframing-eenvoudige-websites {
  text-align: center;
  margin-bottom: 3rem;
}

.tools-title-wireframing-eenvoudige-websites {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.tools-cards-wireframing-eenvoudige-websites {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.tools-card-wireframing-eenvoudige-websites {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.tools-card-wireframing-eenvoudige-websites:hover {
  background: rgba(6, 182, 212, 0.1);
  border-color: #06b6d4;
  transform: translateY(-4px);
}

.tools-card-icon-wireframing-eenvoudige-websites {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(6, 182, 212, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #06b6d4;
  font-size: 1.5rem;
}

.tools-card-title-wireframing-eenvoudige-websites {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
}

.tools-card-text-wireframing-eenvoudige-websites {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.best-practices-section-wireframing-eenvoudige-websites {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.best-practices-content-wireframing-eenvoudige-websites {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.best-practices-image-wireframing-eenvoudige-websites {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.best-practices-image-tag-wireframing-eenvoudige-websites {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-height: 400px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.best-practices-text-wireframing-eenvoudige-websites {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.best-practices-title-wireframing-eenvoudige-websites {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.best-practices-description-wireframing-eenvoudige-websites {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.8;
}

.best-practices-list-wireframing-eenvoudige-websites {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
}

.best-practices-item-wireframing-eenvoudige-websites {
  padding-left: 1.75rem;
  position: relative;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.6;
}

.best-practices-item-wireframing-eenvoudige-websites::before {
  content: "";
  position: absolute;
  left: 0;
  color: #06b6d4;
  font-weight: bold;
  font-size: 1.25rem;
}

.conclusion-section-wireframing-eenvoudige-websites {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-wireframing-eenvoudige-websites {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.conclusion-title-wireframing-eenvoudige-websites {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.conclusion-text-wireframing-eenvoudige-websites {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #cbd5e1;
  line-height: 1.8;
}

.conclusion-cta-wireframing-eenvoudige-websites {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

.cta-button-wireframing-eenvoudige-websites {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  font-weight: 600;
  background: #06b6d4;
  color: #0f172a;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #06b6d4;
}

.cta-button-wireframing-eenvoudige-websites:hover {
  background: #0891b2;
  border-color: #0891b2;
  transform: translateY(-2px);
}

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

.related-header-wireframing-eenvoudige-websites {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

.related-cards-wireframing-eenvoudige-websites {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

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

.related-card-wireframing-eenvoudige-websites:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.related-card-image-wireframing-eenvoudige-websites {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.related-card-content-wireframing-eenvoudige-websites {
  padding: clamp(1rem, 3vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-wireframing-eenvoudige-websites {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.related-card-text-wireframing-eenvoudige-websites {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.related-card-link-wireframing-eenvoudige-websites {
  color: #06b6d4;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.related-card-link-wireframing-eenvoudige-websites:hover {
  color: #0891b2;
}

.disclaimer-section-wireframing-eenvoudige-websites {
  background: #0f172a;
  padding: clamp(2rem, 6vw, 4rem) 0;
  border-top: 1px solid rgba(6, 182, 212, 0.2);
  overflow: hidden;
}

.disclaimer-content-wireframing-eenvoudige-websites {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-wireframing-eenvoudige-websites {
  font-size: 1.25rem;
  font-weight: 600;
  color: #06b6d4;
  margin-bottom: 1rem;
}

.disclaimer-text-wireframing-eenvoudige-websites {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  color: #94a3b8;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero-content-wireframing-eenvoudige-websites,
  .intro-content-wireframing-eenvoudige-websites,
  .methods-content-wireframing-eenvoudige-websites,
  .best-practices-content-wireframing-eenvoudige-websites {
    flex-direction: column;
  }

  .hero-text-wrapper-wireframing-eenvoudige-websites,
  .hero-image-wrapper-wireframing-eenvoudige-websites,
  .intro-text-wireframing-eenvoudige-websites,
  .intro-image-wireframing-eenvoudige-websites,
  .methods-text-wireframing-eenvoudige-websites,
  .methods-image-wireframing-eenvoudige-websites,
  .best-practices-text-wireframing-eenvoudige-websites,
  .best-practices-image-wireframing-eenvoudige-websites {
    flex: 1 1 100%;
    max-width: none;
  }

  .hero-stats-wireframing-eenvoudige-websites {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .tools-card-wireframing-eenvoudige-websites {
    flex: 1 1 100%;
    max-width: none;
  }

  .related-card-wireframing-eenvoudige-websites {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-wireframing-eenvoudige-websites {
    font-size: 0.75rem;
  }

  .hero-meta-wireframing-eenvoudige-websites {
    flex-direction: column;
    gap: 0.75rem;
  }

  .meta-badge-wireframing-eenvoudige-websites {
    flex: 1 1 100%;
  }

  .hero-stats-wireframing-eenvoudige-websites {
    flex-direction: column;
    gap: 1rem;
  }

  .best-practices-list-wireframing-eenvoudige-websites {
    gap: 0.5rem;
  }

  .cta-button-wireframing-eenvoudige-websites {
    width: 100%;
  }
}

.main-responsief-ontwerp-mobiel-først {
  width: 100%;
}

section {
  width: 100%;
  overflow: hidden;
}

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

.hero-section-responsief-ontwerp-mobiel-først {
  background: linear-gradient(135deg, #0f172a 0%, #1a2847 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.hero-content-responsief-ontwerp-mobiel-først {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-text-wrapper-responsief-ontwerp-mobiel-først {
  flex: 1 1 300px;
  min-width: 280px;
}

.hero-title-responsief-ontwerp-mobiel-først {
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.15;
  font-weight: 700;
}

.hero-subtitle-responsief-ontwerp-mobiel-først {
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  color: #cbd5e1;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.6;
}

.hero-meta-responsief-ontwerp-mobiel-først {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.meta-badge-responsief-ontwerp-mobiel-først {
  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: clamp(0.75rem, 1vw, 0.875rem);
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.meta-badge-responsief-ontwerp-mobiel-først i {
  color: #06b6d4;
}

.hero-stats-responsief-ontwerp-mobiel-først {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3.5rem);
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.stat-item-responsief-ontwerp-mobiel-først {
  flex: 0 1 auto;
}

.stat-number-responsief-ontwerp-mobiel-først {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-responsief-ontwerp-mobiel-først {
  display: block;
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  color: #94a3b8;
  font-weight: 500;
}

.hero-image-wrapper-responsief-ontwerp-mobiel-først {
  flex: 1 1 300px;
  min-width: 280px;
}

.hero-image-responsief-ontwerp-mobiel-først {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: clamp(12px, 2vw, 20px);
  display: block;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.breadcrumbs-responsief-ontwerp-mobiel-først {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumb-link-responsief-ontwerp-mobiel-først {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-responsief-ontwerp-mobiel-først:hover {
  color: #06b6d4;
}

.breadcrumb-separator-responsief-ontwerp-mobiel-først {
  color: #475569;
  margin: 0 0.25rem;
}

.breadcrumb-current-responsief-ontwerp-mobiel-først {
  color: #06b6d4;
  font-weight: 600;
}

.intro-section-responsief-ontwerp-mobiel-først {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
}

.intro-content-responsief-ontwerp-mobiel-først {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-text-responsief-ontwerp-mobiel-først {
  flex: 1 1 300px;
  min-width: 280px;
}

.intro-title-responsief-ontwerp-mobiel-først {
  font-size: clamp(1.75rem, 4vw + 0.25rem, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
}

.intro-paragraph-responsief-ontwerp-mobiel-først {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.intro-image-responsief-ontwerp-mobiel-først {
  flex: 1 1 300px;
  min-width: 280px;
}

.intro-image-img-responsief-ontwerp-mobiel-først {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: clamp(12px, 2vw, 20px);
  display: block;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.principles-section-responsief-ontwerp-mobiel-først {
  background: linear-gradient(135deg, #0d1526 0%, #1a2f47 100%);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.principles-header-responsief-ontwerp-mobiel-først {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.section-tag-responsief-ontwerp-mobiel-først {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
  border-radius: 25px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid rgba(6, 182, 212, 0.25);
}

.principles-title-responsief-ontwerp-mobiel-først {
  font-size: clamp(1.75rem, 4vw + 0.25rem, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.principles-subtitle-responsief-ontwerp-mobiel-først {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

.principles-steps-responsief-ontwerp-mobiel-først {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.principle-step-responsief-ontwerp-mobiel-først {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: clamp(12px, 2vw, 16px);
  backdrop-filter: blur(10px);
}

.principle-step-number-responsief-ontwerp-mobiel-først {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

.principle-step-content-responsief-ontwerp-mobiel-først {
  flex: 1;
}

.principle-step-title-responsief-ontwerp-mobiel-først {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  font-weight: 600;
}

.principle-step-text-responsief-ontwerp-mobiel-først {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.mobile-first-section-responsief-ontwerp-mobiel-først {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
}

.mobile-first-wrapper-responsief-ontwerp-mobiel-først {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.mobile-first-text-responsief-ontwerp-mobiel-først {
  flex: 1 1 300px;
  min-width: 280px;
}

.mobile-first-title-responsief-ontwerp-mobiel-først {
  font-size: clamp(1.75rem, 4vw + 0.25rem, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
}

.mobile-first-paragraph-responsief-ontwerp-mobiel-først {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.mobile-first-benefits-responsief-ontwerp-mobiel-først {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  margin-top: clamp(2rem, 3vw, 2.5rem);
}

.benefit-item-responsief-ontwerp-mobiel-først {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: clamp(0.95rem, 1.5vw, 1.0625rem);
  color: #1e293b;
}

.benefit-item-responsief-ontwerp-mobiel-først i {
  color: #06b6d4;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.benefit-text-responsief-ontwerp-mobiel-først {
  flex: 1;
}

.mobile-first-image-responsief-ontwerp-mobiel-først {
  flex: 1 1 300px;
  min-width: 280px;
}

.mobile-first-img-responsief-ontwerp-mobiel-først {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: clamp(12px, 2vw, 20px);
  display: block;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.implementation-section-responsief-ontwerp-mobiel-først {
  background: linear-gradient(135deg, #0f172a 0%, #1a2847 100%);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
}

.implementation-header-responsief-ontwerp-mobiel-først {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.implementation-title-responsief-ontwerp-mobiel-først {
  font-size: clamp(1.75rem, 4vw + 0.25rem, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.techniques-grid-responsief-ontwerp-mobiel-først {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.technique-card-responsief-ontwerp-mobiel-først {
  flex: 1 1 280px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(6, 182, 212, 0.15);
  border-radius: clamp(12px, 2vw, 16px);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.technique-card-responsief-ontwerp-mobiel-først:hover {
  border-color: rgba(6, 182, 212, 0.4);
  background: rgba(6, 182, 212, 0.08);
  transform: translateY(-4px);
}

.technique-icon-responsief-ontwerp-mobiel-først {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
  border-radius: clamp(8px, 1.5vw, 12px);
  font-size: 1.75rem;
}

.technique-title-responsief-ontwerp-mobiel-først {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: #ffffff;
  font-weight: 600;
}

.technique-text-responsief-ontwerp-mobiel-først {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.best-practices-section-responsief-ontwerp-mobiel-først {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
}

.best-practices-wrapper-responsief-ontwerp-mobiel-først {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.best-practices-text-responsief-ontwerp-mobiel-først {
  flex: 1 1 300px;
  min-width: 280px;
}

.best-practices-title-responsief-ontwerp-mobiel-først {
  font-size: clamp(1.75rem, 4vw + 0.25rem, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.featured-quote-responsief-ontwerp-mobiel-først {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #06b6d4;
  background: #f8fafc;
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
  border-radius: 8px;
}

.quote-text-responsief-ontwerp-mobiel-først {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #0f172a;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.quote-author-responsief-ontwerp-mobiel-først {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #64748b;
  font-style: normal;
}

.practices-list-responsief-ontwerp-mobiel-først {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.practice-item-responsief-ontwerp-mobiel-først {
  padding: clamp(1.25rem, 2.5vw, 2rem);
  background: #f1f5f9;
  border-radius: clamp(8px, 1.5vw, 12px);
  border-left: 3px solid #06b6d4;
}

.practice-title-responsief-ontwerp-mobiel-først {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #0f172a;
  margin-bottom: 0.75rem;
  display: block;
}

.practice-text-responsief-ontwerp-mobiel-først {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: #475569;
  line-height: 1.7;
}

.best-practices-image-responsief-ontwerp-mobiel-først {
  flex: 1 1 300px;
  min-width: 280px;
}

.best-practices-img-responsief-ontwerp-mobiel-først {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: clamp(12px, 2vw, 20px);
  display: block;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.conclusion-section-responsief-ontwerp-mobiel-først {
  background: linear-gradient(135deg, #0d1526 0%, #1a2f47 100%);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
}

.conclusion-content-responsief-ontwerp-mobiel-først {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-responsief-ontwerp-mobiel-først {
  font-size: clamp(1.75rem, 4vw + 0.25rem, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.conclusion-text-responsief-ontwerp-mobiel-først {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.cta-box-responsief-ontwerp-mobiel-først {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: clamp(12px, 2vw, 20px);
  text-align: center;
  margin-top: clamp(2.5rem, 4vw, 4rem);
}

.cta-title-responsief-ontwerp-mobiel-først {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: #0f172a;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-text-responsief-ontwerp-mobiel-først {
  font-size: clamp(0.95rem, 1.5vw, 1.0625rem);
  color: rgba(15, 23, 42, 0.85);
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.6;
}

.cta-button-responsief-ontwerp-mobiel-først {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.75rem, 4vw, 2.5rem);
  background: #0f172a;
  color: #06b6d4;
  text-decoration: none;
  border-radius: clamp(8px, 1.5vw, 12px);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.5vw, 1.0625rem);
  transition: all 0.3s ease;
  border: 2px solid #0f172a;
}

.cta-button-responsief-ontwerp-mobiel-først:hover {
  background: transparent;
  color: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.disclaimer-section-responsief-ontwerp-mobiel-først {
  background: #f8fafc;
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
}

.disclaimer-content-responsief-ontwerp-mobiel-først {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-left: 4px solid #94a3b8;
  border-radius: clamp(8px, 1.5vw, 12px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.disclaimer-title-responsief-ontwerp-mobiel-først {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
}

.disclaimer-text-responsief-ontwerp-mobiel-først {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: #64748b;
  line-height: 1.7;
}

.related-section-responsief-ontwerp-mobiel-først {
  background: linear-gradient(135deg, #0f172a 0%, #1a2847 100%);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
}

.related-header-responsief-ontwerp-mobiel-først {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.related-title-responsief-ontwerp-mobiel-først {
  font-size: clamp(1.75rem, 4vw + 0.25rem, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.related-subtitle-responsief-ontwerp-mobiel-først {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #cbd5e1;
}

.related-cards-responsief-ontwerp-mobiel-først {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.related-card-responsief-ontwerp-mobiel-først {
  flex: 1 1 300px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(6, 182, 212, 0.15);
  border-radius: clamp(12px, 2vw, 16px);
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.related-card-responsief-ontwerp-mobiel-først:hover {
  border-color: rgba(6, 182, 212, 0.4);
  background: rgba(6, 182, 212, 0.1);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(6, 182, 212, 0.15);
}

.related-card-image-responsief-ontwerp-mobiel-først {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-card-image-responsief-ontwerp-mobiel-først img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-responsief-ontwerp-mobiel-først:hover .related-card-image-responsief-ontwerp-mobiel-først img {
  transform: scale(1.05);
}

.related-card-content-responsief-ontwerp-mobiel-først {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  padding: clamp(1.5rem, 2.5vw, 2rem);
}

.related-card-title-responsief-ontwerp-mobiel-først {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #ffffff;
  font-weight: 600;
  line-height: 1.4;
}

.related-card-text-responsief-ontwerp-mobiel-først {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  flex-grow: 1;
}

@media (max-width: 768px) {
  .hero-content-responsief-ontwerp-mobiel-først {
    flex-direction: column;
  }

  .hero-text-wrapper-responsief-ontwerp-mobiel-først,
  .hero-image-wrapper-responsief-ontwerp-mobiel-først {
    flex: 1 1 100%;
    min-width: 0;
  }

  .hero-stats-responsief-ontwerp-mobiel-først {
    justify-content: center;
  }

  .intro-content-responsief-ontwerp-mobiel-først,
  .mobile-first-wrapper-responsief-ontwerp-mobiel-først,
  .best-practices-wrapper-responsief-ontwerp-mobiel-først {
    flex-direction: column;
  }

  .intro-text-responsief-ontwerp-mobiel-først,
  .intro-image-responsief-ontwerp-mobiel-først,
  .mobile-first-text-responsief-ontwerp-mobiel-først,
  .mobile-first-image-responsief-ontwerp-mobiel-først,
  .best-practices-text-responsief-ontwerp-mobiel-først,
  .best-practices-image-responsief-ontwerp-mobiel-først {
    flex: 1 1 100%;
    min-width: 0;
  }

  .technique-card-responsief-ontwerp-mobiel-først {
    flex: 1 1 100%;
    max-width: none;
  }

  .related-card-responsief-ontwerp-mobiel-først {
    flex: 1 1 100%;
    max-width: none;
  }

  .principle-step-responsief-ontwerp-mobiel-først {
    flex-direction: column;
    text-align: center;
  }

  .principle-step-number-responsief-ontwerp-mobiel-først {
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .hero-meta-responsief-ontwerp-mobiel-først {
    justify-content: center;
  }

  .stat-item-responsief-ontwerp-mobiel-først {
    flex: 0 1 calc(50% - 0.5rem);
  }

  .principles-header-responsief-ontwerp-mobiel-først,
  .implementation-header-responsief-ontwerp-mobiel-først,
  .related-header-responsief-ontwerp-mobiel-først {
    text-align: center;
  }
}

.main-kleurtheorie-webdesign {
  width: 100%;
}

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

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

.breadcrumbs-kleurtheorie-webdesign {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.breadcrumb-link-kleurtheorie-webdesign {
  color: #38bdf8;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.breadcrumb-link-kleurtheorie-webdesign:hover {
  color: #22d3ee;
  text-decoration: underline;
}

.breadcrumb-separator-kleurtheorie-webdesign,
.breadcrumb-current-kleurtheorie-webdesign {
  color: #94a3b8;
  font-size: 0.875rem;
}

.hero-content-kleurtheorie-webdesign {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-title-kleurtheorie-webdesign {
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  word-wrap: break-word;
}

.hero-subtitle-kleurtheorie-webdesign {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  color: #cbd5e1;
  line-height: 1.5;
}

.article-meta-kleurtheorie-webdesign {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
}

.meta-badge-kleurtheorie-webdesign {
  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: #22d3ee;
}

.meta-badge-kleurtheorie-webdesign i {
  color: #06b6d4;
}

.hero-image-kleurtheorie-webdesign {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-top: 1rem;
}

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

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

.intro-section-kleurtheorie-webdesign .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.intro-wrapper-kleurtheorie-webdesign {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-kleurtheorie-webdesign {
  flex: 1 1 100%;
  max-width: 650px;
}

.intro-title-kleurtheorie-webdesign {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-description-kleurtheorie-webdesign {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-image-kleurtheorie-webdesign {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  flex: 1 1 100%;
}

@media (min-width: 768px) {
  .intro-wrapper-kleurtheorie-webdesign {
    flex-direction: row;
    align-items: center;
  }
  
  .intro-text-kleurtheorie-webdesign {
    flex: 1 1 45%;
    max-width: none;
  }
  
  .intro-image-kleurtheorie-webdesign {
    flex: 1 1 45%;
    max-width: 45%;
    max-height: 400px;
  }
}

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

.fundamentals-section-kleurtheorie-webdesign .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.fundamentals-header-kleurtheorie-webdesign {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-kleurtheorie-webdesign {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.2);
  color: #22d3ee;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fundamentals-title-kleurtheorie-webdesign {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

.fundamentals-steps-kleurtheorie-webdesign {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.fundamentals-step-kleurtheorie-webdesign {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(6, 182, 212, 0.2);
}

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

.fundamentals-step-content-kleurtheorie-webdesign {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

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

@media (min-width: 768px) {
  .fundamentals-step-kleurtheorie-webdesign {
    gap: 2.5rem;
    padding: 2rem;
  }
}

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

.psychology-section-kleurtheorie-webdesign .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.psychology-wrapper-kleurtheorie-webdesign {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.psychology-text-kleurtheorie-webdesign {
  flex: 1 1 100%;
}

.psychology-title-kleurtheorie-webdesign {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.psychology-description-kleurtheorie-webdesign {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.psychology-highlight-kleurtheorie-webdesign {
  padding: 2rem;
  background: #ffffff;
  border-left: 4px solid #06b6d4;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.highlight-text-kleurtheorie-webdesign {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  color: #0f172a;
  font-weight: 500;
}

.psychology-image-kleurtheorie-webdesign {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  flex: 1 1 100%;
}

@media (min-width: 768px) {
  .psychology-wrapper-kleurtheorie-webdesign {
    flex-direction: row;
    align-items: center;
  }
  
  .psychology-text-kleurtheorie-webdesign {
    flex: 1 1 45%;
  }
  
  .psychology-image-kleurtheorie-webdesign {
    flex: 1 1 45%;
    max-width: 45%;
    max-height: 400px;
  }
}

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

.harmony-section-kleurtheorie-webdesign .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.harmony-header-kleurtheorie-webdesign {
  text-align: center;
  margin-bottom: 3rem;
}

.harmony-title-kleurtheorie-webdesign {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.harmony-cards-kleurtheorie-webdesign {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.harmony-card-kleurtheorie-webdesign {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.harmony-card-kleurtheorie-webdesign:hover {
  background: rgba(6, 182, 212, 0.1);
  border-color: #06b6d4;
}

.harmony-card-icon-kleurtheorie-webdesign {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.15);
  color: #22d3ee;
  border-radius: 10px;
  font-size: 1.5rem;
}

.harmony-card-title-kleurtheorie-webdesign {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
}

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

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

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

.application-section-kleurtheorie-webdesign .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.application-wrapper-kleurtheorie-webdesign {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.application-text-kleurtheorie-webdesign {
  flex: 1 1 100%;
}

.application-title-kleurtheorie-webdesign {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.application-description-kleurtheorie-webdesign {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.application-image-kleurtheorie-webdesign {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  flex: 1 1 100%;
}

@media (min-width: 768px) {
  .application-wrapper-kleurtheorie-webdesign {
    flex-direction: row-reverse;
    align-items: center;
  }
  
  .application-text-kleurtheorie-webdesign {
    flex: 1 1 45%;
  }
  
  .application-image-kleurtheorie-webdesign {
    flex: 1 1 45%;
    max-width: 45%;
    max-height: 400px;
  }
}

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

.accessibility-section-kleurtheorie-webdesign .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.accessibility-header-kleurtheorie-webdesign {
  text-align: center;
  margin-bottom: 3rem;
}

.accessibility-title-kleurtheorie-webdesign {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.accessibility-content-kleurtheorie-webdesign {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.accessibility-text-kleurtheorie-webdesign {
  flex: 1 1 100%;
}

.accessibility-description-kleurtheorie-webdesign {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.accessibility-tips-kleurtheorie-webdesign {
  background: rgba(6, 182, 212, 0.1);
  border-left: 4px solid #06b6d4;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.tips-heading-kleurtheorie-webdesign {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.tips-list-kleurtheorie-webdesign {
  list-style: none;
  padding: 0;
}

.tips-item-kleurtheorie-webdesign {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.tips-item-kleurtheorie-webdesign::before {
  content: "";
  position: absolute;
  left: 0;
  color: #22d3ee;
  font-weight: bold;
}

.accessibility-image-kleurtheorie-webdesign {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  flex: 1 1 100%;
}

@media (min-width: 768px) {
  .accessibility-content-kleurtheorie-webdesign {
    flex-direction: row;
    align-items: center;
  }
  
  .accessibility-text-kleurtheorie-webdesign {
    flex: 1 1 45%;
  }
  
  .accessibility-image-kleurtheorie-webdesign {
    flex: 1 1 45%;
    max-width: 45%;
    max-height: 400px;
  }
}

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

.trends-section-kleurtheorie-webdesign .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.trends-header-kleurtheorie-webdesign {
  text-align: center;
  margin-bottom: 3rem;
}

.trends-title-kleurtheorie-webdesign {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

.trends-wrapper-kleurtheorie-webdesign {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.trends-text-kleurtheorie-webdesign {
  flex: 1 1 100%;
}

.trends-description-kleurtheorie-webdesign {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.trends-image-kleurtheorie-webdesign {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  flex: 1 1 100%;
}

@media (min-width: 768px) {
  .trends-wrapper-kleurtheorie-webdesign {
    flex-direction: row;
    align-items: center;
  }
  
  .trends-text-kleurtheorie-webdesign {
    flex: 1 1 45%;
  }
  
  .trends-image-kleurtheorie-webdesign {
    flex: 1 1 45%;
    max-width: 45%;
    max-height: 400px;
  }
}

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

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

.conclusion-content-kleurtheorie-webdesign {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-kleurtheorie-webdesign {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

.cta-box-kleurtheorie-webdesign {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 12px;
  text-align: center;
  margin-top: 2rem;
}

.cta-title-kleurtheorie-webdesign {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.cta-text-kleurtheorie-webdesign {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.btn-primary-kleurtheorie-webdesign {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
  background: #ffffff;
  color: #0891b2;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary-kleurtheorie-webdesign:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

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

.related-header-kleurtheorie-webdesign {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-kleurtheorie-webdesign {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

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

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

.related-card-kleurtheorie-webdesign {
  flex: 1 1 300px;
  max-width: 400px;
  text-decoration: none;
  color: inherit;
}

.related-card-content-kleurtheorie-webdesign {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  height: 100%;
  transition: all 0.3s ease;
}

.related-card-kleurtheorie-webdesign:hover .related-card-content-kleurtheorie-webdesign {
  border-color: #06b6d4;
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.1);
  transform: translateY(-4px);
}

.related-card-title-kleurtheorie-webdesign {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

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

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

.disclaimer-section-kleurtheorie-webdesign {
  background: #f1f5f9;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

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

.disclaimer-title-kleurtheorie-webdesign {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

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

@media (min-width: 768px) {
  .fundamentals-step-kleurtheorie-webdesign {
    padding: 2rem;
    gap: 2.5rem;
  }
  
  .harmony-card-kleurtheorie-webdesign {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (min-width: 1024px) {
  .harmony-card-kleurtheorie-webdesign {
    flex: 1 1 calc(25% - 1.5rem);
  }
}

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

.container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.main-typografie-lettertypen-websites {
  width: 100%;
}

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

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

.breadcrumbs-typografie-lettertypen-websites {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumb-link-typografie-lettertypen-websites {
  color: #0284c7;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link-typografie-lettertypen-websites:hover {
  color: #0369a1;
  text-decoration: underline;
}

.breadcrumb-separator-typografie-lettertypen-websites {
  color: #cbd5e1;
}

.breadcrumb-current-typografie-lettertypen-websites {
  color: #64748b;
}

.hero-section-typografie-lettertypen-websites {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.hero-text-block-typografie-lettertypen-websites {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-typografie-lettertypen-websites {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.hero-subtitle-typografie-lettertypen-websites {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.hero-meta-typografie-lettertypen-websites {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-typografie-lettertypen-websites {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: #0e7490;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-typografie-lettertypen-websites i {
  color: #06b6d4;
  font-size: 0.875rem;
}

.hero-stats-typografie-lettertypen-websites {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item-typografie-lettertypen-websites {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.stat-label-typografie-lettertypen-websites {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

.hero-image-block-typografie-lettertypen-websites {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-typografie-lettertypen-websites {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.introduction-section-typografie-lettertypen-websites {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.introduction-text-typografie-lettertypen-websites {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.introduction-description-typografie-lettertypen-websites {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #334155;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.introduction-text-typografie-lettertypen-websites {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.introduction-image-block-typografie-lettertypen-websites {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-image-typografie-lettertypen-websites {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.principles-section-typografie-lettertypen-websites {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.principles-header-typografie-lettertypen-websites {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-typografie-lettertypen-websites {
  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: 600;
  margin-bottom: 1rem;
}

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

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

.principles-steps-typografie-lettertypen-websites {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.principles-step-typografie-lettertypen-websites {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

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

.principles-step-content-typografie-lettertypen-websites {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.principles-step-title-typografie-lettertypen-websites {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
}

.principles-step-text-typografie-lettertypen-websites {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.practice-section-typografie-lettertypen-websites {
  background: #f1f5f9;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.practice-content-wrapper-typografie-lettertypen-websites {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.practice-text-block-typografie-lettertypen-websites {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.practice-subtitle-typografie-lettertypen-websites {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #1e293b;
  margin-bottom: 1rem;
  font-weight: 600;
}

.practice-description-typografie-lettertypen-websites {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.practice-highlights-typografie-lettertypen-websites {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-item-typografie-lettertypen-websites {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(6, 182, 212, 0.05);
  border-left: 3px solid #06b6d4;
  border-radius: 4px;
}

.highlight-label-typografie-lettertypen-websites {
  font-size: 0.875rem;
  color: #0e7490;
  font-weight: 600;
}

.highlight-value-typografie-lettertypen-websites {
  font-size: 0.9375rem;
  color: #334155;
  font-weight: 500;
}

.practice-image-block-typografie-lettertypen-websites {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-image-typografie-lettertypen-websites {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.features-section-typografie-lettertypen-websites {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.features-header-typografie-lettertypen-websites {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

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

.features-card-typografie-lettertypen-websites {
  flex: 1 1 300px;
  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: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-card-typografie-lettertypen-websites:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.features-card-icon-typografie-lettertypen-websites {
  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;
}

.features-card-title-typografie-lettertypen-websites {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.features-card-text-typografie-lettertypen-websites {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.6;
}

.quote-section-typografie-lettertypen-websites {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

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

.quote-author-typografie-lettertypen-websites {
  font-size: 0.875rem;
  color: #cbd5e1;
  font-style: normal;
  font-weight: 500;
}

.tips-section-typografie-lettertypen-websites {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.tips-content-wrapper-typografie-lettertypen-websites {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.tips-image-block-typografie-lettertypen-websites {
  flex: 1 1 50%;
  max-width: 50%;
}

.tips-image-typografie-lettertypen-websites {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tips-text-block-typografie-lettertypen-websites {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.tips-description-typografie-lettertypen-websites {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  margin-bottom: 1.5rem;
}

.tips-list-typografie-lettertypen-websites {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}

.tips-list-item-typografie-lettertypen-websites {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #334155;
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
}

.tips-list-item-typografie-lettertypen-websites::before {
  content: "";
  position: absolute;
  left: 0;
  color: #06b6d4;
  font-weight: bold;
}

.tips-item-title-typografie-lettertypen-websites {
  color: #0f172a;
  font-weight: 600;
}

.tools-section-typografie-lettertypen-websites {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.tools-header-typografie-lettertypen-websites {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

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

.tools-item-typografie-lettertypen-websites {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}

.tools-item-title-typografie-lettertypen-websites {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.tools-item-description-typografie-lettertypen-websites {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.6;
}

.cta-section-typografie-lettertypen-websites {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.cta-box-typografie-lettertypen-websites {
  text-align: center;
  padding: clamp(2rem, 5vw, 3rem);
}

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

.cta-description-typografie-lettertypen-websites {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.cta-button-typografie-lettertypen-websites {
  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;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.cta-button-typografie-lettertypen-websites:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.disclaimer-section-typografie-lettertypen-websites {
  background: #f8fafc;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-typografie-lettertypen-websites {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-typografie-lettertypen-websites {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-typografie-lettertypen-websites {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.7;
}

.related-section-typografie-lettertypen-websites {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.related-header-typografie-lettertypen-websites {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-typografie-lettertypen-websites {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.related-subtitle-typografie-lettertypen-websites {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
}

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

.related-card-typografie-lettertypen-websites {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-card-typografie-lettertypen-websites:hover {
  border-color: #06b6d4;
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.15);
  transform: translateY(-4px);
}

.related-card-title-typografie-lettertypen-websites {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

.related-card-description-typografie-lettertypen-websites {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.related-card-link-typografie-lettertypen-websites {
  color: #06b6d4;
  font-weight: 600;
  font-size: 0.9375rem;
  margin-top: auto;
}

@media (max-width: 768px) {
  .hero-content-typografie-lettertypen-websites {
    flex-direction: column;
  }

  .hero-text-block-typografie-lettertypen-websites,
  .hero-image-block-typografie-lettertypen-websites {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .introduction-content-typografie-lettertypen-websites {
    flex-direction: column;
  }

  .introduction-text-typografie-lettertypen-websites,
  .introduction-image-block-typografie-lettertypen-websites {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .practice-content-wrapper-typografie-lettertypen-websites {
    flex-direction: column;
  }

  .practice-text-block-typografie-lettertypen-websites,
  .practice-image-block-typografie-lettertypen-websites {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .tips-content-wrapper-typografie-lettertypen-websites {
    flex-direction: column-reverse;
  }

  .tips-image-block-typografie-lettertypen-websites,
  .tips-text-block-typografie-lettertypen-websites {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-card-typografie-lettertypen-websites {
    flex: 1 1 100%;
    max-width: none;
  }

  .principles-step-typografie-lettertypen-websites {
    flex-direction: column;
  }

  .principles-step-number-typografie-lettertypen-websites {
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .hero-stats-typografie-lettertypen-websites {
    gap: 1rem;
  }

  .stat-item-typografie-lettertypen-websites {
    min-width: 80px;
  }

  .breadcrumbs-typografie-lettertypen-websites {
    font-size: 0.75rem;
  }
}

.main-gebruikerservaring-testen {
  width: 100%;
}

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

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

.breadcrumb-link-gebruikerservaring-testen {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-gebruikerservaring-testen:hover {
  color: #06b6d4;
}

.breadcrumb-separator-gebruikerservaring-testen {
  color: #64748b;
}

.breadcrumb-current-gebruikerservaring-testen {
  color: #06b6d4;
  font-weight: 600;
}

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

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

.hero-text-wrapper-gebruikerservaring-testen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

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

.meta-badge-gebruikerservaring-testen {
  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: 0.875rem;
  color: #cbd5e1;
}

.meta-badge-gebruikerservaring-testen i {
  color: #06b6d4;
  font-size: 0.875rem;
}

.hero-stats-gebruikerservaring-testen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 2.5rem;
}

.stat-item-gebruikerservaring-testen {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number-gebruikerservaring-testen {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
  display: block;
}

.stat-label-gebruikerservaring-testen {
  font-size: 0.875rem;
  color: #94a3b8;
}

.hero-image-wrapper-gebruikerservaring-testen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-gebruikerservaring-testen {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

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

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

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

.intro-text-gebruikerservaring-testen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.intro-text-gebruikerservaring-testen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
}

.intro-image-gebruikerservaring-testen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-item-gebruikerservaring-testen {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

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

.methods-section-gebruikerservaring-testen {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.methods-header-gebruikerservaring-testen {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-gebruikerservaring-testen {
  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: 600;
  margin-bottom: 1rem;
}

.methods-title-gebruikerservaring-testen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.methods-subtitle-gebruikerservaring-testen {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.methods-steps-gebruikerservaring-testen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.methods-step-gebruikerservaring-testen {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  border: 1px solid rgba(6, 182, 212, 0.2);
}

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

.methods-step-content-gebruikerservaring-testen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.methods-step-title-gebruikerservaring-testen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

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

@media (max-width: 768px) {
  .methods-step-gebruikerservaring-testen {
    flex-direction: column;
  }
  
  .methods-step-number-gebruikerservaring-testen {
    min-width: auto;
  }
}

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

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

.implementation-text-gebruikerservaring-testen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.implementation-highlights-gebruikerservaring-testen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.highlight-item-gebruikerservaring-testen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 0;
  border-left: 3px solid #06b6d4;
  padding-left: 1rem;
}

.highlight-title-gebruikerservaring-testen {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
}

.highlight-text-gebruikerservaring-testen {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.implementation-image-gebruikerservaring-testen {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-image-item-gebruikerservaring-testen {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .implementation-wrapper-gebruikerservaring-testen {
    flex-direction: column;
  }
  
  .implementation-text-gebruikerservaring-testen,
  .implementation-image-gebruikerservaring-testen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.tools-section-gebruikerservaring-testen {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.tools-header-gebruikerservaring-testen {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

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

.tools-card-gebruikerservaring-testen {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.tools-card-gebruikerservaring-testen:hover {
  background: rgba(6, 182, 212, 0.08);
  border-color: #06b6d4;
  transform: translateY(-4px);
}

.tools-card-icon-gebruikerservaring-testen {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
  border-radius: 10px;
  font-size: 1.5rem;
}

.tools-card-title-gebruikerservaring-testen {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.tools-card-text-gebruikerservaring-testen {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.6;
}

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

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

.iteration-wrapper-gebruikerservaring-testen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.iteration-image-gebruikerservaring-testen {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.iteration-image-item-gebruikerservaring-testen {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

.iteration-text-gebruikerservaring-testen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.iteration-description-gebruikerservaring-testen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.iteration-quote-gebruikerservaring-testen {
  padding: 2rem;
  border-left: 4px solid #06b6d4;
  background: #f1f5f9;
  margin: 2rem 0;
  border-radius: 8px;
}

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

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

.iteration-content-gebruikerservaring-testen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .iteration-wrapper-gebruikerservaring-testen {
    flex-direction: column;
  }
  
  .iteration-text-gebruikerservaring-testen,
  .iteration-image-gebruikerservaring-testen {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }
}

.best-practices-section-gebruikerservaring-testen {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.best-practices-header-gebruikerservaring-testen {
  text-align: center;
  margin-bottom: 3rem;
}

.best-practices-title-gebruikerservaring-testen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

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

.practice-card-gebruikerservaring-testen {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  border: 1px solid rgba(6, 182, 212, 0.15);
}

.practice-number-gebruikerservaring-testen {
  font-size: 2rem;
  font-weight: 800;
  color: #06b6d4;
}

.practice-title-gebruikerservaring-testen {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #ffffff;
}

.practice-text-gebruikerservaring-testen {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.6;
}

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

.case-study-section-gebruikerservaring-testen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.case-study-wrapper-gebruikerservaring-testen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.case-study-text-gebruikerservaring-testen {
  flex: 1 1 50%;
  max-width: 50%;
}

.case-study-title-gebruikerservaring-testen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.case-study-intro-gebruikerservaring-testen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.case-study-text-gebruikerservaring-testen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.case-study-highlights-gebruikerservaring-testen {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.case-highlight-gebruikerservaring-testen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem;
  background: #ffffff;
  border-left: 3px solid #06b6d4;
  border-radius: 8px;
}

.case-highlight-label-gebruikerservaring-testen {
  font-size: 0.875rem;
  font-weight: 700;
  color: #06b6d4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.case-highlight-value-gebruikerservaring-testen {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.5;
}

.case-study-image-gebruikerservaring-testen {
  flex: 1 1 50%;
  max-width: 50%;
}

.case-study-image-item-gebruikerservaring-testen {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .case-study-wrapper-gebruikerservaring-testen {
    flex-direction: column;
  }
  
  .case-study-text-gebruikerservaring-testen,
  .case-study-image-gebruikerservaring-testen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-gebruikerservaring-testen {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.conclusion-content-gebruikerservaring-testen {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-gebruikerservaring-testen {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.conclusion-text-gebruikerservaring-testen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.conclusion-cta-gebruikerservaring-testen {
  margin-top: 3rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(6, 182, 212, 0.05));
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 16px;
}

.cta-title-gebruikerservaring-testen {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-text-gebruikerservaring-testen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.cta-button-gebruikerservaring-testen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #06b6d4;
  color: #0f172a;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-button-gebruikerservaring-testen:hover {
  background: #0891b2;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(6, 182, 212, 0.3);
}

.disclaimer-section-gebruikerservaring-testen {
  background: #1e293b;
  padding: clamp(2rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.disclaimer-content-gebruikerservaring-testen {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-gebruikerservaring-testen {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.disclaimer-text-gebruikerservaring-testen {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.7;
}

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

.related-header-gebruikerservaring-testen {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

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

.related-card-link-gebruikerservaring-testen {
  flex: 1 1 300px;
  max-width: 380px;
  text-decoration: none;
  color: inherit;
}

.related-card-gebruikerservaring-testen {
  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;
  height: 100%;
}

.related-card-link-gebruikerservaring-testen:hover .related-card-gebruikerservaring-testen {
  border-color: #06b6d4;
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.15);
  transform: translateY(-4px);
}

.related-card-icon-gebruikerservaring-testen {
  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;
}

.related-card-title-gebruikerservaring-testen {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.related-card-text-gebruikerservaring-testen {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

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

@media (min-width: 768px) {
  .hero-section-gebruikerservaring-testen,
  .intro-section-gebruikerservaring-testen,
  .methods-section-gebruikerservaring-testen,
  .implementation-section-gebruikerservaring-testen,
  .tools-section-gebruikerservaring-testen,
  .iteration-section-gebruikerservaring-testen,
  .best-practices-section-gebruikerservaring-testen,
  .case-study-section-gebruikerservaring-testen,
  .conclusion-section-gebruikerservaring-testen,
  .disclaimer-section-gebruikerservaring-testen,
  .related-section-gebruikerservaring-testen {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-gebruikerservaring-testen,
  .intro-section-gebruikerservaring-testen,
  .methods-section-gebruikerservaring-testen,
  .implementation-section-gebruikerservaring-testen,
  .tools-section-gebruikerservaring-testen,
  .iteration-section-gebruikerservaring-testen,
  .best-practices-section-gebruikerservaring-testen,
  .case-study-section-gebruikerservaring-testen,
  .conclusion-section-gebruikerservaring-testen,
  .disclaimer-section-gebruikerservaging-testen,
  .related-section-gebruikerservaring-testen {
    padding: 6rem 0;
  }
}

: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-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #cbd5e1;
  --color-text-dark-muted: #94a3b8;
  --color-text-light-primary: #0f172a;
  --color-text-light-secondary: #475569;
  --color-text-light-muted: #64748b;
  --color-accent-primary: #06b6d4;
  --color-accent-secondary: #22d3ee;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
}

.design-foundation-about {
  font-family: var(--font-primary);
  width: 100%;
}

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

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

.hero-vision-content-about {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

.hero-vision-title-about {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-vision-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-dark-secondary);
  max-width: 700px;
  line-height: 1.6;
}

.hero-vision-image-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  margin-top: 1rem;
  display: block;
}

.foundation-stats-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3.5rem);
  justify-content: center;
  margin-top: 2rem;
}

.foundation-stat-item-about {
  text-align: center;
}

.foundation-stat-number-about {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-accent-primary);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.foundation-stat-label-about {
  font-size: 0.875rem;
  color: var(--color-text-dark-muted);
  letter-spacing: 0.05em;
}

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

.philosophy-content-about {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.philosophy-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  color: var(--color-accent-primary);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  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-dark-primary);
  margin-bottom: 1rem;
}

.philosophy-description-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.approach-principles-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.principle-item-about {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  border-left: 3px solid var(--color-accent-primary);
}

.principle-number-about {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-accent-primary);
  flex-shrink: 0;
  line-height: 1;
  min-width: 50px;
}

.principle-content-about {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.principle-title-about {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-text-dark-primary);
}

.principle-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
}

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

.expertise-content-about {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.expertise-intro-about {
  text-align: center;
}

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

.expertise-intro-text-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.expertise-services-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.expertise-service-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  border: 1px solid rgba(6, 182, 212, 0.2);
  transition: all 0.3s ease;
}

.expertise-service-card-about:hover {
  background: rgba(6, 182, 212, 0.08);
  transform: translateY(-5px);
  border-color: var(--color-accent-primary);
}

.expertise-service-icon-about {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.15);
  border-radius: 10px;
  color: var(--color-accent-primary);
  font-size: 1.5rem;
}

.expertise-service-title-about {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-dark-primary);
}

.expertise-service-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
}

.impact-vision-about {
  background: var(--color-bg-dark-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.impact-vision-content-about {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.impact-vision-header-about {
  text-align: center;
}

.impact-vision-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  color: var(--color-accent-primary);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.impact-vision-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: 1.5rem;
}

.impact-vision-statement-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-style: italic;
  color: var(--color-accent-secondary);
  padding: 2rem;
  border-left: 4px solid var(--color-accent-primary);
  background: rgba(6, 182, 212, 0.08);
  border-radius: 8px;
  line-height: 1.8;
}

.impact-commitment-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: 1.5rem;
}

.commitment-item-about {
  flex: 1 1 250px;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border-top: 2px solid var(--color-accent-primary);
}

.commitment-label-about {
  font-size: 0.875rem;
  color: var(--color-accent-primary);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.commitment-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
}

.impact-vision-image-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}

.values-foundation-about {
  background: var(--color-bg-dark-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.values-foundation-content-about {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.values-foundation-intro-about {
  text-align: center;
}

.values-foundation-intro-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: 1rem;
}

.values-foundation-intro-text-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.values-cards-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.value-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.value-card-about:hover {
  background: rgba(6, 182, 212, 0.1);
  transform: translateY(-4px);
}

.value-card-icon-about {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.15);
  border-radius: 10px;
  color: var(--color-accent-primary);
  font-size: 1.5rem;
}

.value-card-title-about {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-dark-primary);
}

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

.disclaimer-section-about {
  background: var(--color-bg-dark-primary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-top: 1px solid rgba(6, 182, 212, 0.2);
  overflow: hidden;
}

.disclaimer-content-about {
  text-align: center;
}

.disclaimer-title-about {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--color-accent-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.disclaimer-title-about i {
  font-size: 1.25rem;
}

.disclaimer-text-about {
  font-size: 0.875rem;
  color: var(--color-text-dark-secondary);
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero-vision-about {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }

  .philosophy-section-about {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }

  .expertise-section-about {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }

  .expertise-service-card-about {
    flex: 1 1 100%;
    max-width: none;
  }

  .impact-vision-about {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }

  .values-foundation-about {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }

  .value-card-about {
    flex: 1 1 100%;
    max-width: none;
  }

  .principle-item-about {
    gap: 1rem;
  }

  .commitment-item-about {
    flex: 1 1 100%;
  }

  .disclaimer-section-about {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }
}

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

  .philosophy-section-about {
    padding: clamp(4rem, 8vw, 5rem) 0;
  }

  .expertise-section-about {
    padding: clamp(4rem, 8vw, 5rem) 0;
  }

  .impact-vision-about {
    padding: clamp(4rem, 8vw, 5rem) 0;
  }

  .values-foundation-about {
    padding: clamp(4rem, 8vw, 5rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-vision-about {
    padding: clamp(5rem, 10vw, 6rem) 0;
  }

  .philosophy-section-about {
    padding: clamp(5rem, 10vw, 6rem) 0;
  }

  .expertise-section-about {
    padding: clamp(5rem, 10vw, 6rem) 0;
  }

  .impact-vision-about {
    padding: clamp(5rem, 10vw, 6rem) 0;
  }

  .values-foundation-about {
    padding: clamp(5rem, 10vw, 6rem) 0;
  }
}

.legal-docs {
  font-family: var(--font-primary);
  background: var(--color-bg-light-primary);
  color: var(--color-text-light-primary);
}

.legal-docs .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 5vw, 2rem);
  padding-right: clamp(1rem, 5vw, 2rem);
}

.legal-docs-hero {
  background: var(--color-bg-light-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.legal-docs-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-docs-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text-light-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-docs-hero-meta {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-light-muted);
  font-weight: 500;
}

.legal-docs-content {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.legal-docs-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-docs-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-light-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-docs-section p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-light-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-docs-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.legal-docs-section li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-light-secondary);
  padding-left: 1.5rem;
  position: relative;
}

.legal-docs-section li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-accent-primary);
  font-weight: bold;
}

.legal-docs-contact {
  background: var(--color-bg-light-tertiary);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.legal-docs-contact-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.legal-docs-contact h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-light-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-docs-contact p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-light-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-docs-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
}

.legal-docs-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.legal-docs-contact-item strong {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
}

.legal-docs-contact-item span {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
}

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

  .legal-docs-content {
    padding: 5rem 0;
  }

  .legal-docs-contact {
    padding: 4rem 0;
    margin-top: 3rem;
  }

  .legal-docs-section {
    gap: 1.25rem;
  }

  .legal-docs-section ul {
    gap: 1rem;
  }

  .legal-docs-contact-info {
    padding: 2rem;
  }
}

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

  .legal-docs-content {
    padding: 6rem 0;
  }

  .legal-docs-contact {
    padding: 5rem 0;
  }

  .legal-docs-section {
    gap: 1.5rem;
  }

  .legal-docs-section h2 {
    margin-bottom: 0.5rem;
  }
}

.thank-you-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.thank-section {
  width: 100%;
  background: var(--color-bg-dark-primary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  padding: clamp(2rem, 6vw, 3rem);
}

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(80px, 15vw, 120px);
  height: clamp(80px, 15vw, 120px);
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.1);
  color: var(--color-accent-primary);
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
}

.thank-icon i {
  font-size: clamp(2.5rem, 8vw, 4rem);
  display: block;
}

.thank-content h1 {
  color: var(--color-text-dark-primary);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.thank-lead {
  color: var(--color-accent-secondary);
  font-family: var(--font-primary);
  font-size: clamp(1.125rem, 2.5vw + 0.5rem, 1.5rem);
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-description {
  color: var(--color-text-dark-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin: 0;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-next-steps {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  width: 100%;
  max-width: 500px;
  margin: clamp(1rem, 3vw, 2rem) auto 0;
}

.thank-info {
  color: var(--color-text-dark-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-info i {
  color: var(--color-accent-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-md);
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  white-space: nowrap;
  margin-top: clamp(0.5rem, 2vw, 1rem);
}

.btn-primary {
  background: var(--color-accent-primary);
  color: var(--color-text-light-primary);
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.2);
}

.btn-primary:hover {
  background: var(--color-accent-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(6, 182, 212, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(6, 182, 212, 0.2);
}

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

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

  .thank-content {
    padding: clamp(2.5rem, 8vw, 4rem);
    gap: clamp(2rem, 5vw, 3rem);
  }

  .thank-icon {
    margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
  }

  .thank-next-steps {
    margin: clamp(1.5rem, 4vw, 2.5rem) auto 0;
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: clamp(4rem, 10vw, 6rem) 0;
    min-height: calc(100vh - 200px);
  }

  .thank-content {
    padding: clamp(3rem, 8vw, 5rem);
    gap: clamp(2.5rem, 5vw, 3.5rem);
  }

  .thank-icon {
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
  }

  .thank-next-steps {
    margin: clamp(2rem, 4vw, 3rem) auto 0;
  }

  .btn {
    padding: clamp(0.875rem, 1.5vw, 1.125rem) clamp(2rem, 4vw, 3rem);
  }

  .btn:hover {
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.35);
  }
}

@media (min-width: 1440px) {
  .thank-section {
    min-height: calc(100vh - 150px);
  }
}

@media (max-width: 480px) {
  .thank-content {
    padding: clamp(1.5rem, 5vw, 2rem);
  }

  .thank-icon {
    width: clamp(70px, 12vw, 100px);
    height: clamp(70px, 12vw, 100px);
  }

  .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }

  .btn:hover {
    transform: none;
  }
}

@media (prefers-color-scheme: dark) {
  .thank-section {
    background: var(--color-bg-dark-primary);
  }
}

.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.error-section {
  background: var(--color-bg-dark-primary);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: var(--space-lg) 0;
  overflow: hidden;
  position: relative;
}

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

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: clamp(1rem, 4vw, 2rem);
}

.error-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.05);
  animation: float 6s ease-in-out infinite;
}

.decoration-circle-1 {
  width: clamp(150px, 30vw, 300px);
  height: clamp(150px, 30vw, 300px);
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.decoration-circle-2 {
  width: clamp(100px, 20vw, 200px);
  height: clamp(100px, 20vw, 200px);
  bottom: 10%;
  left: -5%;
  animation-delay: 1s;
}

.decoration-circle-3 {
  width: clamp(80px, 15vw, 150px);
  height: clamp(80px, 15vw, 150px);
  top: 50%;
  left: 10%;
  animation-delay: 2s;
}

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

.error-code-wrapper {
  position: relative;
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2rem);
  flex-wrap: wrap;
}

.error-code {
  font-size: clamp(3rem, 12vw, 6rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-accent-primary), var(--color-accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  line-height: 1;
  letter-spacing: -0.05em;
  font-family: var(--font-heading);
  animation: slideInDown 0.8s ease-out;
}

.error-icon {
  font-size: clamp(2.5rem, 8vw, 4rem);
  color: var(--color-accent-secondary);
  animation: bounce 1s ease-in-out infinite;
}

.error-icon i {
  display: block;
}

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

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

.error-title {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-family: var(--font-heading);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
  line-height: 1.2;
}

.error-description {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  max-width: 500px;
  margin: 0 auto var(--space-md) auto;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-subtext {
  color: var(--color-text-dark-muted);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  max-width: 500px;
  margin: 0 auto var(--space-lg) auto;
  line-height: 1.6;
  font-style: italic;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn {
  display: inline-block;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.95rem, 2vw, 1rem);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: var(--font-primary);
  margin-bottom: var(--space-lg);
}

.btn-primary {
  background: var(--color-accent-primary);
  color: var(--color-bg-dark-primary);
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

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

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

.error-suggestions {
  margin-top: clamp(2rem, 6vw, 3.5rem);
  padding-top: clamp(2rem, 6vw, 3.5rem);
  border-top: 1px solid rgba(203, 213, 225, 0.1);
  max-width: 500px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

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

.suggestions-title {
  color: var(--color-text-dark-primary);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  font-weight: 600;
  margin: 0 0 var(--space-md) 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.suggestions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.suggestions-list li {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.suggestions-list i {
  color: var(--color-accent-secondary);
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  flex-shrink: 0;
}

.suggestions-list span {
  text-align: left;
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-xl) 0;
    min-height: 100vh;
  }

  .error-code-wrapper {
    flex-wrap: nowrap;
  }

  .error-decoration {
    display: block;
  }

  .decoration-circle-1 {
    width: 400px;
    height: 400px;
    top: -50px;
    right: -100px;
  }

  .decoration-circle-2 {
    width: 250px;
    height: 250px;
    bottom: -50px;
    left: -80px;
  }

  .decoration-circle-3 {
    width: 180px;
    height: 180px;
    top: 40%;
    left: 5%;
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-2xl) 0;
  }

  .error-content {
    padding: 0;
  }

  .error-description,
  .error-subtext {
    max-width: 600px;
  }

  .error-suggestions {
    max-width: 600px;
  }

  .btn-primary:hover {
    transform: translateY(-4px);
  }
}

@media (min-width: 1440px) {
  .decoration-circle-1 {
    width: 500px;
    height: 500px;
    top: -100px;
    right: -150px;
  }

  .decoration-circle-2 {
    width: 320px;
    height: 320px;
    bottom: -80px;
    left: -120px;
  }

  .decoration-circle-3 {
    width: 220px;
    height: 220px;
    top: 35%;
    left: 2%;
  }
}

.main-responsief-ontwerp-mobiel-først {
  width: 100%;
}

section {
  width: 100%;
  overflow: hidden;
}

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

.hero-section-responsief-ontwerp-mobiel-först {
  background: linear-gradient(135deg, #0f172a 0%, #1a2847 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.hero-content-responsief-ontwerp-mobiel-först {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-text-wrapper-responsief-ontwerp-mobiel-først {
  flex: 1 1 300px;
  min-width: 280px;
}

.hero-title-responsief-ontwerp-mobiel-först {
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.15;
  font-weight: 700;
}

.hero-subtitle-responsief-ontwerp-mobiel-först {
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  color: #cbd5e1;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.6;
}

.hero-meta-responsief-ontwerp-mobiel-først {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.meta-badge-responsief-ontwerp-mobiel-først {
  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: clamp(0.75rem, 1vw, 0.875rem);
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.meta-badge-responsief-ontwerp-mobiel-först i {
  color: #06b6d4;
}

.hero-stats-responsief-ontwerp-mobiel-först {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3.5rem);
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.stat-item-responsief-ontwerp-mobiel-först {
  flex: 0 1 auto;
}

.stat-number-responsief-ontwerp-mobiel-först {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-responsief-ontwerp-mobiel-først {
  display: block;
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  color: #94a3b8;
  font-weight: 500;
}

.hero-image-wrapper-responsief-ontwerp-mobiel-først {
  flex: 1 1 300px;
  min-width: 280px;
}

.hero-image-responsief-ontwerp-mobiel-først {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: clamp(12px, 2vw, 20px);
  display: block;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.breadcrumbs-responsief-ontwerp-mobiel-först {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumb-link-responsief-ontwerp-mobiel-først {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-responsief-ontwerp-mobiel-først:hover {
  color: #06b6d4;
}

.breadcrumb-separator-responsief-ontwerp-mobiel-først {
  color: #475569;
  margin: 0 0.25rem;
}

.breadcrumb-current-responsief-ontwerp-mobiel-først {
  color: #06b6d4;
  font-weight: 600;
}

.intro-section-responsief-ontwerp-mobiel-först {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
}

.intro-content-responsief-ontwerp-mobiel-først {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-text-responsief-ontwerp-mobiel-först {
  flex: 1 1 300px;
  min-width: 280px;
}

.intro-title-responsief-ontwerp-mobiel-först {
  font-size: clamp(1.75rem, 4vw + 0.25rem, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
}

.intro-paragraph-responsief-ontwerp-mobiel-først {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.intro-image-responsief-ontwerp-mobiel-først {
  flex: 1 1 300px;
  min-width: 280px;
}

.intro-image-img-responsief-ontwerp-mobiel-først {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: clamp(12px, 2vw, 20px);
  display: block;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.principles-section-responsief-ontwerp-mobiel-först {
  background: linear-gradient(135deg, #0d1526 0%, #1a2f47 100%);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.principles-header-responsief-ontwerp-mobiel-först {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.section-tag-responsief-ontwerp-mobiel-först {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
  border-radius: 25px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid rgba(6, 182, 212, 0.25);
}

.principles-title-responsief-ontwerp-mobiel-först {
  font-size: clamp(1.75rem, 4vw + 0.25rem, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.principles-subtitle-responsief-ontwerp-mobiel-först {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

.principles-steps-responsief-ontwerp-mobiel-först {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.principle-step-responsief-ontwerp-mobiel-først {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: clamp(12px, 2vw, 16px);
  backdrop-filter: blur(10px);
}

.principle-step-number-responsief-ontwerp-mobiel-först {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

.principle-step-content-responsief-ontwerp-mobiel-först {
  flex: 1;
}

.principle-step-title-responsief-ontwerp-mobiel-först {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  font-weight: 600;
}

.principle-step-text-responsief-ontwerp-mobiel-först {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.mobile-first-section-responsief-ontwerp-mobiel-først {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
}

.mobile-first-wrapper-responsief-ontwerp-mobiel-först {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.mobile-first-text-responsief-ontwerp-mobiel-först {
  flex: 1 1 300px;
  min-width: 280px;
}

.mobile-first-title-responsief-ontwerp-mobiel-først {
  font-size: clamp(1.75rem, 4vw + 0.25rem, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
}

.mobile-first-paragraph-responsief-ontwerp-mobiel-först {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.mobile-first-benefits-responsief-ontwerp-mobiel-först {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  margin-top: clamp(2rem, 3vw, 2.5rem);
}

.benefit-item-responsief-ontwerp-mobiel-först {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: clamp(0.95rem, 1.5vw, 1.0625rem);
  color: #1e293b;
}

.benefit-item-responsief-ontwerp-mobiel-först i {
  color: #06b6d4;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.benefit-text-responsief-ontwerp-mobiel-först {
  flex: 1;
}

.mobile-first-image-responsief-ontwerp-mobiel-først {
  flex: 1 1 300px;
  min-width: 280px;
}

.mobile-first-img-responsief-ontwerp-mobiel-først {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: clamp(12px, 2vw, 20px);
  display: block;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.implementation-section-responsief-ontwerp-mobiel-först {
  background: linear-gradient(135deg, #0f172a 0%, #1a2847 100%);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
}

.implementation-header-responsief-ontwerp-mobiel-först {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.implementation-title-responsief-ontwerp-mobiel-först {
  font-size: clamp(1.75rem, 4vw + 0.25rem, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.techniques-grid-responsief-ontwerp-mobiel-först {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.technique-card-responsief-ontwerp-mobiel-først {
  flex: 1 1 280px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(6, 182, 212, 0.15);
  border-radius: clamp(12px, 2vw, 16px);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.technique-card-responsief-ontwerp-mobiel-först:hover {
  border-color: rgba(6, 182, 212, 0.4);
  background: rgba(6, 182, 212, 0.08);
  transform: translateY(-4px);
}

.technique-icon-responsief-ontwerp-mobiel-først {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
  border-radius: clamp(8px, 1.5vw, 12px);
  font-size: 1.75rem;
}

.technique-title-responsief-ontwerp-mobiel-först {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: #ffffff;
  font-weight: 600;
}

.technique-text-responsief-ontwerp-mobiel-först {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.best-practices-section-responsief-ontwerp-mobiel-först {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
}

.best-practices-wrapper-responsief-ontwerp-mobiel-först {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.best-practices-text-responsief-ontwerp-mobiel-först {
  flex: 1 1 300px;
  min-width: 280px;
}

.best-practices-title-responsief-ontwerp-mobiel-först {
  font-size: clamp(1.75rem, 4vw + 0.25rem, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.featured-quote-responsief-ontwerp-mobiel-först {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #06b6d4;
  background: #f8fafc;
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
  border-radius: 8px;
}

.quote-text-responsief-ontwerp-mobiel-först {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #0f172a;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.quote-author-responsief-ontwerp-mobiel-först {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #64748b;
  font-style: normal;
}

.practices-list-responsief-ontwerp-mobiel-først {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.practice-item-responsief-ontwerp-mobiel-först {
  padding: clamp(1.25rem, 2.5vw, 2rem);
  background: #f1f5f9;
  border-radius: clamp(8px, 1.5vw, 12px);
  border-left: 3px solid #06b6d4;
}

.practice-title-responsief-ontwerp-mobiel-först {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #0f172a;
  margin-bottom: 0.75rem;
  display: block;
}

.practice-text-responsief-ontwerp-mobiel-först {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: #475569;
  line-height: 1.7;
}

.best-practices-image-responsief-ontwerp-mobiel-först {
  flex: 1 1 300px;
  min-width: 280px;
}

.best-practices-img-responsief-ontwerp-mobiel-først {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: clamp(12px, 2vw, 20px);
  display: block;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.conclusion-section-responsief-ontwerp-mobiel-først {
  background: linear-gradient(135deg, #0d1526 0%, #1a2f47 100%);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
}

.conclusion-content-responsief-ontwerp-mobiel-först {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-responsief-ontwerp-mobiel-först {
  font-size: clamp(1.75rem, 4vw + 0.25rem, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.conclusion-text-responsief-ontwerp-mobiel-först {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.cta-box-responsief-ontwerp-mobiel-först {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: clamp(12px, 2vw, 20px);
  text-align: center;
  margin-top: clamp(2.5rem, 4vw, 4rem);
}

.cta-title-responsief-ontwerp-mobiel-først {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: #0f172a;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-text-responsief-ontwerp-mobiel-først {
  font-size: clamp(0.95rem, 1.5vw, 1.0625rem);
  color: rgba(15, 23, 42, 0.85);
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.6;
}

.cta-button-responsief-ontwerp-mobiel-först {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.75rem, 4vw, 2.5rem);
  background: #0f172a;
  color: #06b6d4;
  text-decoration: none;
  border-radius: clamp(8px, 1.5vw, 12px);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.5vw, 1.0625rem);
  transition: all 0.3s ease;
  border: 2px solid #0f172a;
}

.cta-button-responsief-ontwerp-mobiel-först:hover {
  background: transparent;
  color: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.disclaimer-section-responsief-ontwerp-mobiel-först {
  background: #f8fafc;
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
}

.disclaimer-content-responsief-ontwerp-mobiel-först {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-left: 4px solid #94a3b8;
  border-radius: clamp(8px, 1.5vw, 12px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.disclaimer-title-responsief-ontwerp-mobiel-först {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
}

.disclaimer-text-responsief-ontwerp-mobiel-först {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: #64748b;
  line-height: 1.7;
}

.related-section-responsief-ontwerp-mobiel-först {
  background: linear-gradient(135deg, #0f172a 0%, #1a2847 100%);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
}

.related-header-responsief-ontwerp-mobiel-först {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.related-title-responsief-ontwerp-mobiel-först {
  font-size: clamp(1.75rem, 4vw + 0.25rem, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.related-subtitle-responsief-ontwerp-mobiel-först {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #cbd5e1;
}

.related-cards-responsief-ontwerp-mobiel-först {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.related-card-responsief-ontwerp-mobiel-först {
  flex: 1 1 300px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(6, 182, 212, 0.15);
  border-radius: clamp(12px, 2vw, 16px);
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.related-card-responsief-ontwerp-mobiel-först:hover {
  border-color: rgba(6, 182, 212, 0.4);
  background: rgba(6, 182, 212, 0.1);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(6, 182, 212, 0.15);
}

.related-card-image-responsief-ontwerp-mobiel-först {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-card-image-responsief-ontwerp-mobiel-först img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-responsief-ontwerp-mobiel-först:hover .related-card-image-responsief-ontwerp-mobiel-først img {
  transform: scale(1.05);
}

.related-card-content-responsief-ontwerp-mobiel-först {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  padding: clamp(1.5rem, 2.5vw, 2rem);
}

.related-card-title-responsief-ontwerp-mobiel-först {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #ffffff;
  font-weight: 600;
  line-height: 1.4;
}

.related-card-text-responsief-ontwerp-mobiel-först {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  flex-grow: 1;
}

@media (max-width: 768px) {
  .hero-content-responsief-ontwerp-mobiel-först {
    flex-direction: column;
  }

  .hero-text-wrapper-responsief-ontwerp-mobiel-først,
  .hero-image-wrapper-responsief-ontwerp-mobiel-først {
    flex: 1 1 100%;
    min-width: 0;
  }

  .hero-stats-responsief-ontwerp-mobiel-först {
    justify-content: center;
  }

  .intro-content-responsief-ontwerp-mobiel-først,
  .mobile-first-wrapper-responsief-ontwerp-mobiel-først,
  .best-practices-wrapper-responsief-ontwerp-mobiel-först {
    flex-direction: column;
  }

  .intro-text-responsief-ontwerp-mobiel-først,
  .intro-image-responsief-ontwerp-mobiel-först,
  .mobile-first-text-responsief-ontwerp-mobiel-först,
  .mobile-first-image-responsief-ontwerp-mobiel-först,
  .best-practices-text-responsief-ontwerp-mobiel-först,
  .best-practices-image-responsief-ontwerp-mobiel-først {
    flex: 1 1 100%;
    min-width: 0;
  }

  .technique-card-responsief-ontwerp-mobiel-først {
    flex: 1 1 100%;
    max-width: none;
  }

  .related-card-responsief-ontwerp-mobiel-först {
    flex: 1 1 100%;
    max-width: none;
  }

  .principle-step-responsief-ontwerp-mobiel-først {
    flex-direction: column;
    text-align: center;
  }

  .principle-step-number-responsief-ontwerp-mobiel-först {
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .hero-meta-responsief-ontwerp-mobiel-først {
    justify-content: center;
  }

  .stat-item-responsief-ontwerp-mobiel-først {
    flex: 0 1 calc(50% - 0.5rem);
  }

  .principles-header-responsief-ontwerp-mobiel-först,
  .implementation-header-responsief-ontwerp-mobiel-först,
  .related-header-responsief-ontwerp-mobiel-først {
    text-align: center;
  }
}

.main-responsief-ontwerp-mobiel-eerst {
  width: 100%;
}

.hero-section-responsief-ontwerp-mobiel-eerst {
  background: linear-gradient(135deg, #0f172a 0%, #1a2847 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.breadcrumbs-responsief-ontwerp-mobiel-eerst {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumb-link-responsief-ontwerp-mobiel-eerst {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-responsief-ontwerp-mobiel-eerst:hover {
  color: #06b6d4;
}

.breadcrumb-separator-responsief-ontwerp-mobiel-eerst {
  color: #475569;
  margin: 0 0.25rem;
}

.breadcrumb-current-responsief-ontwerp-mobiel-eerst {
  color: #06b6d4;
  font-weight: 600;
}

.hero-content-responsief-ontwerp-mobiel-eerst {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-text-wrapper-responsief-ontwerp-mobiel-eerst {
  flex: 1 1 300px;
  min-width: 280px;
}

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

.hero-subtitle-responsief-ontwerp-mobiel-eerst {
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  color: #cbd5e1;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.6;
}

.hero-meta-responsief-ontwerp-mobiel-eerst {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.meta-badge-responsief-ontwerp-mobiel-eerst {
  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: clamp(0.75rem, 1vw, 0.875rem);
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.meta-badge-responsief-ontwerp-mobiel-eerst i {
  color: #06b6d4;
}

.hero-stats-responsief-ontwerp-mobiel-eerst {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3.5rem);
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.stat-item-responsief-ontwerp-mobiel-eerst {
  flex: 0 1 auto;
}

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

.stat-label-responsief-ontwerp-mobiel-eerst {
  display: block;
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  color: #94a3b8;
  font-weight: 500;
}

.hero-image-wrapper-responsief-ontwerp-mobiel-eerst {
  flex: 1 1 300px;
  min-width: 280px;
}

.hero-image-responsief-ontwerp-mobiel-eerst {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: clamp(12px, 2vw, 20px);
  display: block;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.intro-section-responsief-ontwerp-mobiel-eerst {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
}

.intro-content-responsief-ontwerp-mobiel-eerst {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-text-responsief-ontwerp-mobiel-eerst {
  flex: 1 1 300px;
  min-width: 280px;
}

.intro-title-responsief-ontwerp-mobiel-eerst {
  font-size: clamp(1.75rem, 4vw + 0.25rem, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
}

.intro-paragraph-responsief-ontwerp-mobiel-eerst {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.intro-image-responsief-ontwerp-mobiel-eerst {
  flex: 1 1 300px;
  min-width: 280px;
}

.intro-image-img-responsief-ontwerp-mobiel-eerst {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: clamp(12px, 2vw, 20px);
  display: block;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.principles-section-responsief-ontwerp-mobiel-eerst {
  background: linear-gradient(135deg, #0d1526 0%, #1a2f47 100%);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.principles-header-responsief-ontwerp-mobiel-eerst {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.section-tag-responsief-ontwerp-mobiel-eerst {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
  border-radius: 25px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid rgba(6, 182, 212, 0.25);
}

.principles-title-responsief-ontwerp-mobiel-eerst {
  font-size: clamp(1.75rem, 4vw + 0.25rem, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.principles-subtitle-responsief-ontwerp-mobiel-eerst {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

.principles-steps-responsief-ontwerp-mobiel-eerst {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.principle-step-responsief-ontwerp-mobiel-eerst {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: clamp(12px, 2vw, 16px);
  backdrop-filter: blur(10px);
}

.principle-step-number-responsief-ontwerp-mobiel-eerst {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

.principle-step-content-responsief-ontwerp-mobiel-eerst {
  flex: 1;
}

.principle-step-title-responsief-ontwerp-mobiel-eerst {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  font-weight: 600;
}

.principle-step-text-responsief-ontwerp-mobiel-eerst {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.mobile-first-section-responsief-ontwerp-mobiel-eerst {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
}

.mobile-first-wrapper-responsief-ontwerp-mobiel-eerst {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.mobile-first-text-responsief-ontwerp-mobiel-eerst {
  flex: 1 1 300px;
  min-width: 280px;
}

.mobile-first-title-responsief-ontwerp-mobiel-eerst {
  font-size: clamp(1.75rem, 4vw + 0.25rem, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
}

.mobile-first-paragraph-responsief-ontwerp-mobiel-eerst {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.mobile-first-benefits-responsief-ontwerp-mobiel-eerst {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  margin-top: clamp(2rem, 3vw, 2.5rem);
}

.benefit-item-responsief-ontwerp-mobiel-eerst {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: clamp(0.95rem, 1.5vw, 1.0625rem);
  color: #1e293b;
}

.benefit-item-responsief-ontwerp-mobiel-eerst i {
  color: #06b6d4;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.benefit-text-responsief-ontwerp-mobiel-eerst {
  flex: 1;
}

.mobile-first-image-responsief-ontwerp-mobiel-eerst {
  flex: 1 1 300px;
  min-width: 280px;
}

.mobile-first-img-responsief-ontwerp-mobiel-eerst {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: clamp(12px, 2vw, 20px);
  display: block;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.implementation-section-responsief-ontwerp-mobiel-eerst {
  background: linear-gradient(135deg, #0f172a 0%, #1a2847 100%);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
}

.implementation-header-responsief-ontwerp-mobiel-eerst {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.implementation-title-responsief-ontwerp-mobiel-eerst {
  font-size: clamp(1.75rem, 4vw + 0.25rem, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.techniques-grid-responsief-ontwerp-mobiel-eerst {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.technique-card-responsief-ontwerp-mobiel-eerst {
  flex: 1 1 280px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(6, 182, 212, 0.15);
  border-radius: clamp(12px, 2vw, 16px);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.technique-card-responsief-ontwerp-mobiel-eerst:hover {
  border-color: rgba(6, 182, 212, 0.4);
  background: rgba(6, 182, 212, 0.08);
  transform: translateY(-4px);
}

.technique-icon-responsief-ontwerp-mobiel-eerst {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
  border-radius: clamp(8px, 1.5vw, 12px);
  font-size: 1.75rem;
}

.technique-title-responsief-ontwerp-mobiel-eerst {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: #ffffff;
  font-weight: 600;
}

.technique-text-responsief-ontwerp-mobiel-eerst {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.best-practices-section-responsief-ontwerp-mobiel-eerst {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
}

.best-practices-wrapper-responsief-ontwerp-mobiel-eerst {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.best-practices-text-responsief-ontwerp-mobiel-eerst {
  flex: 1 1 300px;
  min-width: 280px;
}

.best-practices-title-responsief-ontwerp-mobiel-eerst {
  font-size: clamp(1.75rem, 4vw + 0.25rem, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.featured-quote-responsief-ontwerp-mobiel-eerst {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #06b6d4;
  background: #f8fafc;
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
  border-radius: 8px;
}

.quote-text-responsief-ontwerp-mobiel-eerst {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #0f172a;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.quote-author-responsief-ontwerp-mobiel-eerst {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #64748b;
  font-style: normal;
}

.practices-list-responsief-ontwerp-mobiel-eerst {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.practice-item-responsief-ontwerp-mobiel-eerst {
  padding: clamp(1.25rem, 2.5vw, 2rem);
  background: #f1f5f9;
  border-radius: clamp(8px, 1.5vw, 12px);
  border-left: 3px solid #06b6d4;
}

.practice-title-responsief-ontwerp-mobiel-eerst {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #0f172a;
  margin-bottom: 0.75rem;
  display: block;
}

.practice-text-responsief-ontwerp-mobiel-eerst {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: #475569;
  line-height: 1.7;
}

.best-practices-image-responsief-ontwerp-mobiel-eerst {
  flex: 1 1 300px;
  min-width: 280px;
}

.best-practices-img-responsief-ontwerp-mobiel-eerst {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: clamp(12px, 2vw, 20px);
  display: block;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.conclusion-section-responsief-ontwerp-mobiel-eerst {
  background: linear-gradient(135deg, #0d1526 0%, #1a2f47 100%);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
}

.conclusion-content-responsief-ontwerp-mobiel-eerst {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-responsief-ontwerp-mobiel-eerst {
  font-size: clamp(1.75rem, 4vw + 0.25rem, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.conclusion-text-responsief-ontwerp-mobiel-eerst {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.cta-box-responsief-ontwerp-mobiel-eerst {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: clamp(12px, 2vw, 20px);
  text-align: center;
  margin-top: clamp(2.5rem, 4vw, 4rem);
}

.cta-title-responsief-ontwerp-mobiel-eerst {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: #0f172a;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-text-responsief-ontwerp-mobiel-eerst {
  font-size: clamp(0.95rem, 1.5vw, 1.0625rem);
  color: rgba(15, 23, 42, 0.85);
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.6;
}

.cta-button-responsief-ontwerp-mobiel-eerst {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.75rem, 4vw, 2.5rem);
  background: #0f172a;
  color: #06b6d4;
  text-decoration: none;
  border-radius: clamp(8px, 1.5vw, 12px);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.5vw, 1.0625rem);
  transition: all 0.3s ease;
  border: 2px solid #0f172a;
}

.cta-button-responsief-ontwerp-mobiel-eerst:hover {
  background: transparent;
  color: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.disclaimer-section-responsief-ontwerp-mobiel-eerst {
  background: #f8fafc;
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
}

.disclaimer-content-responsief-ontwerp-mobiel-eerst {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-left: 4px solid #94a3b8;
  border-radius: clamp(8px, 1.5vw, 12px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.disclaimer-title-responsief-ontwerp-mobiel-eerst {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
}

.disclaimer-text-responsief-ontwerp-mobiel-eerst {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: #64748b;
  line-height: 1.7;
}

.related-section-responsief-ontwerp-mobiel-eerst {
  background: linear-gradient(135deg, #0f172a 0%, #1a2847 100%);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
}

.related-header-responsief-ontwerp-mobiel-eerst {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.related-title-responsief-ontwerp-mobiel-eerst {
  font-size: clamp(1.75rem, 4vw + 0.25rem, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.related-subtitle-responsief-ontwerp-mobiel-eerst {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #cbd5e1;
}

.related-cards-responsief-ontwerp-mobiel-eerst {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.related-card-responsief-ontwerp-mobiel-eerst {
  flex: 1 1 300px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(6, 182, 212, 0.15);
  border-radius: clamp(12px, 2vw, 16px);
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.related-card-responsief-ontwerp-mobiel-eerst:hover {
  border-color: rgba(6, 182, 212, 0.4);
  background: rgba(6, 182, 212, 0.1);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(6, 182, 212, 0.15);
}

.related-card-image-responsief-ontwerp-mobiel-eerst {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-card-image-responsief-ontwerp-mobiel-eerst img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-responsief-ontwerp-mobiel-eerst:hover .related-card-image-responsief-ontwerp-mobiel-eerst img {
  transform: scale(1.05);
}

.related-card-content-responsief-ontwerp-mobiel-eerst {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  padding: clamp(1.5rem, 2.5vw, 2rem);
}

.related-card-title-responsief-ontwerp-mobiel-eerst {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #ffffff;
  font-weight: 600;
  line-height: 1.4;
}

.related-card-text-responsief-ontwerp-mobiel-eerst {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  flex-grow: 1;
}

@media (max-width: 768px) {
  .hero-content-responsief-ontwerp-mobiel-eerst {
    flex-direction: column;
  }

  .hero-text-wrapper-responsief-ontwerp-mobiel-eerst,
  .hero-image-wrapper-responsief-ontwerp-mobiel-eerst {
    flex: 1 1 100%;
    min-width: 0;
  }

  .hero-stats-responsief-ontwerp-mobiel-eerst {
    justify-content: center;
  }

  .intro-content-responsief-ontwerp-mobiel-eerst,
  .mobile-first-wrapper-responsief-ontwerp-mobiel-eerst,
  .best-practices-wrapper-responsief-ontwerp-mobiel-eerst {
    flex-direction: column;
  }

  .intro-text-responsief-ontwerp-mobiel-eerst,
  .intro-image-responsief-ontwerp-mobiel-eerst,
  .mobile-first-text-responsief-ontwerp-mobiel-eerst,
  .mobile-first-image-responsief-ontwerp-mobiel-eerst,
  .best-practices-text-responsief-ontwerp-mobiel-eerst,
  .best-practices-image-responsief-ontwerp-mobiel-eerst {
    flex: 1 1 100%;
    min-width: 0;
  }

  .technique-card-responsief-ontwerp-mobiel-eerst {
    flex: 1 1 100%;
    max-width: none;
  }

  .related-card-responsief-ontwerp-mobiel-eerst {
    flex: 1 1 100%;
    max-width: none;
  }

  .principle-step-responsief-ontwerp-mobiel-eerst {
    flex-direction: column;
    text-align: center;
  }

  .principle-step-number-responsief-ontwerp-mobiel-eerst {
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .hero-meta-responsief-ontwerp-mobiel-eerst {
    justify-content: center;
  }

  .stat-item-responsief-ontwerp-mobiel-eerst {
    flex: 0 1 calc(50% - 0.5rem);
  }

  .principles-header-responsief-ontwerp-mobiel-eerst,
  .implementation-header-responsief-ontwerp-mobiel-eerst,
  .related-header-responsief-ontwerp-mobiel-eerst {
    text-align: center;
  }
}