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

:root {
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f8fafc;
  --color-bg-tertiary: #f1f5f9;
  --color-bg-card: #ffffff;
  
  --color-text-primary: #1e293b;
  --color-text-secondary: #64748b;
  --color-text-muted: #94a3b8;
  
  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-secondary: #0ea5e9;
  --color-accent-tertiary: #8b5cf6;
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn-ghost:hover {
  background: var(--color-bg-secondary);
  color: var(--color-primary-hover);
}

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

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

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

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

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

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

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

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

.icon-xl {
  font-size: 3.5rem;
}

input, textarea, select {
  font-family: var(--font-primary);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  background: var(--color-bg-card);
  color: var(--color-text-primary);
  transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

ul, ol {
  list-style: none;
}

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

strong {
  font-weight: 700;
  color: var(--color-text-primary);
}

em {
  font-style: italic;
  color: var(--color-text-secondary);
}

hr {
  border: none;
  height: 1px;
  background: #e2e8f0;
  margin: clamp(2rem, 4vw, 3rem) 0;
}

@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .hide-tablet {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .hide-desktop {
    display: none !important;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
:root {
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f8fafc;
  --color-bg-tertiary: #f1f5f9;
  --color-bg-card: #ffffff;
  --color-text-primary: #1e293b;
  --color-text-secondary: #64748b;
  --color-text-muted: #94a3b8;
  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-secondary: #0ea5e9;
  --color-accent-tertiary: #8b5cf6;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.12);
  --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;
}

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

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

.header-creativo-studio {
  position: static;
  background: var(--color-bg-primary);
  border-bottom: 1px solid rgba(30, 41, 59, 0.08);
  width: 100%;
  z-index: 100;
}

.header-creativo-studio-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(0.875rem, 2vw, 1.25rem) clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.header-creativo-studio-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

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

.header-creativo-studio-logo-text {
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  letter-spacing: -0.5px;
}

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

.header-creativo-studio-nav-link {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

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

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

.header-creativo-studio-nav-link:hover::after {
  width: 100%;
}

.header-creativo-studio-cta-button {
  display: none;
  padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1.25rem, 2vw, 1.75rem);
  background: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-md);
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  flex-shrink: 0;
}

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

.header-creativo-studio-cta-button:active {
  transform: translateY(0);
  transition-duration: 150ms;
}

.header-creativo-studio-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header-creativo-studio-hamburger {
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 1px;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

.header-creativo-studio-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-primary);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

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

.header-creativo-studio-mobile-header {
  display: flex;
  justify-content: flex-end;
  padding: clamp(1rem, 4vw, 1.5rem) clamp(1rem, 4vw, 2rem);
  border-bottom: 1px solid rgba(30, 41, 59, 0.08);
}

.header-creativo-studio-mobile-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--color-text-primary);
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.header-creativo-studio-mobile-close:hover {
  color: var(--color-primary);
}

.header-creativo-studio-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: clamp(1rem, 4vw, 1.5rem) clamp(1rem, 4vw, 2rem);
  flex: 1;
}

.header-creativo-studio-mobile-link {
  padding: clamp(0.875rem, 2vw, 1.125rem) 0;
  color: var(--color-text-primary);
  text-decoration: none;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 500;
  border-bottom: 1px solid rgba(30, 41, 59, 0.05);
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.header-creativo-studio-mobile-link:hover {
  color: var(--color-primary);
}

.header-creativo-studio-mobile-cta {
  margin: clamp(1rem, 3vw, 1.5rem) clamp(1rem, 4vw, 2rem) clamp(1.5rem, 4vw, 2rem);
  padding: clamp(0.875rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

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

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

  .header-creativo-studio-cta-button {
    display: inline-block;
  }

  .header-creativo-studio-mobile-toggle {
    display: none;
  }

  .header-creativo-studio-mobile-menu {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .header-creativo-studio-logo-text {
    display: none;
  }

  .header-creativo-studio-logo-img {
    width: 36px;
    height: 36px;
  }
}

@media (max-height: 600px) and (orientation: landscape) {
  .header-creativo-studio-mobile-menu {
    height: auto;
    min-height: 100vh;
  }

  .header-creativo-studio-mobile-links {
    gap: 0.5rem;
  }

  .header-creativo-studio-mobile-link {
    padding: 0.625rem 0;
    font-size: 1rem;
  }
}

    .design-studio-index {
  width: 100%;
}

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

.hero-creative-glow-index {
  position: absolute;
  top: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

.hero-floating-accent-1-index {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.07) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-accent-2-index {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.hero-corner-shape-index {
  position: absolute;
  bottom: 5%;
  right: 3%;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.04);
  border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
  z-index: 2;
  pointer-events: none;
}

.hero-pulse-orb-index {
  position: absolute;
  top: 15%;
  right: 20%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(251, 146, 60, 0.08) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-content-index {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.hero-text-block-index {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-title-index {
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: #0f172a;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.hero-cta-group-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

.hero-cta-group-index .btn {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
}

.hero-stats-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: clamp(1rem, 2vw, 2rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid #e2e8f0;
}

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

.hero-stat-number-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
}

.hero-stat-label-index {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

@media (min-width: 768px) {
  .hero-section-index {
    padding: clamp(5rem, 12vw, 9rem) 0;
  }
  
  .hero-cta-group-index {
    gap: 1.5rem;
  }
}

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

.approach-accent-shape-index {
  position: absolute;
  top: 5%;
  right: -8%;
  width: 350px;
  height: 350px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%;
  z-index: 1;
  pointer-events: none;
}

.approach-glow-element-index {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.07) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

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

.approach-header-index {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.approach-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

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

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

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

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

.approach-step-content-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.25rem;
}

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

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

@media (min-width: 768px) {
  .approach-section-index {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

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

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

.features-corner-accent-index {
  position: absolute;
  bottom: 5%;
  right: 2%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

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

.features-header-index {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.features-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

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

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

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

.features-card-index:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(37, 99, 235, 0.2);
}

.features-card-icon-index {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 10px;
  font-size: 1.5rem;
}

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

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

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

@media (min-width: 768px) {
  .features-section-index {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

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

.process-gradient-mesh-index {
  position: absolute;
  top: 5%;
  right: -12%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.07) 0%, transparent 70%);
  filter: blur(85px);
  z-index: 1;
  pointer-events: none;
}

.process-floating-shape-index {
  position: absolute;
  bottom: 8%;
  left: 3%;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.process-line-accent-index {
  position: absolute;
  top: 20%;
  left: 15%;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

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

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

.process-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

.process-main-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: flex-start;
}

.process-text-block-index {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.process-intro-index {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: #0f172a;
  font-weight: 500;
}

.process-description-index {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  color: #475569;
}

.process-final-index {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  color: #475569;
}

.process-image-index {
  flex: 1 1 350px;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

@media (min-width: 768px) {
  .process-section-index {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

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

.featured-accent-orb-index {
  position: absolute;
  top: 10%;
  left: -8%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.07) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.featured-corner-glow-index {
  position: absolute;
  bottom: 5%;
  right: -5%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

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

.featured-header-index {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.featured-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

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

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

.featured-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.featured-card-index:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(37, 99, 235, 0.2);
}

.featured-card-image-index {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.featured-card-content-index {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

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

.featured-card-link-index {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  transition: color 300ms ease;
  margin-top: 0.5rem;
}

.featured-card-link-index:hover {
  color: #1d4ed8;
}

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

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

@media (min-width: 768px) {
  .featured-posts-section-index {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

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

.values-shape-accent-index {
  position: absolute;
  top: 15%;
  right: -6%;
  width: 320px;
  height: 320px;
  background: rgba(34, 197, 94, 0.06);
  border-radius: 35% 65% 42% 58% / 61% 38% 62% 39%;
  z-index: 1;
  pointer-events: none;
}

.values-glow-background-index {
  position: absolute;
  bottom: 10%;
  left: -8%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

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

.values-header-index {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.values-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

.values-grid-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
}

.values-item-index {
  flex: 1 1 250px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

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

@media (min-width: 768px) {
  .values-section-index {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

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

.cta-gradient-field-index {
  position: absolute;
  top: -20%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.cta-floating-element-index {
  position: absolute;
  bottom: 5%;
  left: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

.cta-title-index {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.cta-text-index {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: #cbd5e1;
  max-width: 650px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.cta-content-index .btn {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
}

.cta-content-index .btn-primary {
  background: #ffffff;
  color: #0f172a;
}

.cta-content-index .btn-primary:hover {
  background: #f1f5f9;
}

@media (min-width: 768px) {
  .cta-section-index {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

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

.contact-shape-accent-index {
  position: absolute;
  top: 5%;
  left: -8%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.07) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

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

.contact-content-index {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
}

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

.contact-form-title-index {
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.contact-form-index {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.5rem);
}

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

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

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

.contact-input-index:focus,
.contact-textarea-index:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

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

.contact-submit-index:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

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

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

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

.contact-faq-item-index {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  padding-bottom: clamp(1.5rem, 2vw, 2rem);
  border-bottom: 1px solid #e2e8f0;
}

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

.contact-faq-question-index {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
}

.contact-faq-answer-index {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

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

@media (min-width: 768px) {
  .contact-section-index {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

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

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

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

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

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

.cookie-btn-accept-index {
  background: #2563eb;
  color: #ffffff;
}

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

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

.cookie-btn-decline-index:hover {
  border-color: rgba(203, 213, 225, 0.6);
}

@media (max-width: 640px) {
  .cookie-banner-index {
    flex-direction: column;
    padding: 1rem;
  }
  
  .cookie-banner-text-index {
    flex: 1 1 100%;
    order: 1;
  }
  
  .cookie-banner-buttons-index {
    flex: 1 1 100%;
    order: 2;
  }
  
  .cookie-btn-accept-index,
  .cookie-btn-decline-index {
    flex: 1 1 100%;
  }
}

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

    .footer {
    background: var(--color-bg-primary);
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem) 0;
    border-top: 1px solid var(--color-bg-tertiary);
  }

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

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

  .footer-about-section {
    flex: 1 1 280px;
    min-width: 250px;
  }

  .footer-navigation-section {
    flex: 0 1 180px;
  }

  .footer-contact-section {
    flex: 0 1 220px;
  }

  .footer-legal-section {
    flex: 0 1 160px;
  }

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

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

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

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

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

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

  .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.9375rem);
    color: var(--color-text-secondary);
    line-height: 1.5;
  }

  .footer-divider {
    height: 1px;
    background: var(--color-bg-tertiary);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .footer-copyright {
    font-family: var(--font-primary);
    font-size: clamp(0.8125rem, 0.9vw, 0.875rem);
    color: var(--color-text-muted);
    text-align: center;
  }

  @media (min-width: 768px) {
    .footer {
      padding: clamp(4rem, 8vw, 6rem) 0 clamp(2.5rem, 5vw, 3.5rem) 0;
    }

    .footer-content {
      gap: clamp(3rem, 6vw, 5rem);
    }

    .footer-about-section {
      flex: 1 1 320px;
    }

    .footer-about-text {
      font-size: clamp(0.9375rem, 1vw, 1rem);
    }
  }

  @media (min-width: 1024px) {
    .footer {
      padding: 5rem 0 3rem 0;
    }

    .footer-content {
      gap: 4rem;
      justify-content: space-between;
      align-items: flex-start;
    }

    .footer-about-section {
      flex: 1 1 350px;
      max-width: 380px;
    }

    .footer-navigation-section {
      flex: 0 1 auto;
    }

    .footer-contact-section {
      flex: 0 1 auto;
    }

    .footer-legal-section {
      flex: 0 1 auto;
    }

    .footer-about-text {
      font-size: 1rem;
    }

    .footer-contact-item {
      font-size: 0.9375rem;
    }

    .footer-nav-link,
    .footer-legal-link {
      font-size: 0.9375rem;
    }
  }

  @media (max-width: 640px) {
    .footer-content {
      flex-direction: column;
      gap: clamp(1.5rem, 4vw, 2.5rem);
    }

    .footer-about-section,
    .footer-navigation-section,
    .footer-contact-section,
    .footer-legal-section {
      flex: 1 1 100%;
      max-width: none;
    }
  }
    

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

.hero-section-creatief-webdesign {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e8f1fc 100%);
  overflow: hidden;
}

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

.hero-deco-mesh-creatief-webdesign {
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
}

.hero-deco-accent-creatief-webdesign {
  position: absolute;
  top: 20%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 0;
  pointer-events: none;
}

.hero-deco-shape-creatief-webdesign {
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 150px;
  height: 150px;
  border: 2px solid rgba(59, 130, 246, 0.1);
  border-radius: 30px;
  transform: rotate(45deg);
  z-index: 0;
  pointer-events: none;
}

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

.hero-tag-creatief-webdesign {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(59, 130, 246, 0.15);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title-creatief-webdesign {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
}

.hero-description-creatief-webdesign {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #475569;
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 3rem;
}

.hero-stats-creatief-webdesign {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: 2.5rem;
}

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

.hero-stat-number-creatief-webdesign {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #2563eb;
  display: block;
  line-height: 1;
}

.hero-stat-label-creatief-webdesign {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

.posts-section-creatief-webdesign {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  background: #ffffff;
}

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

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

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

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

.card-creatief-webdesign {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.card-creatief-webdesign:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);
  border-color: #cbd5e1;
}

.card-image-creatief-webdesign {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.card-content-creatief-webdesign {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

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

.card-meta-badge-creatief-webdesign {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  background: rgba(59, 130, 246, 0.08);
  color: #2563eb;
  border-radius: 16px;
  font-size: 0.8125rem;
  font-weight: 500;
}

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

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

.card-description-creatief-webdesign {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  flex: 1;
}

.card-link-creatief-webdesign {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  transition: all 0.2s ease;
  width: fit-content;
  margin-top: 0.5rem;
}

.card-link-creatief-webdesign:hover {
  color: #1d4ed8;
  transform: translateX(4px);
}

.card-link-creatief-webdesign::after {
  content: '';
  font-weight: 800;
}

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

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

.insights-deco-2-creatief-webdesign {
  position: absolute;
  bottom: -150px;
  right: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
}

.insights-content-creatief-webdesign {
  position: relative;
  z-index: 10;
  max-width: 900px;
}

.insights-title-creatief-webdesign {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2rem;
}

.insights-quote-creatief-webdesign {
  padding: 2.5rem;
  border-left: 4px solid #06b6d4;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 3rem;
  backdrop-filter: blur(10px);
}

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

.insights-quote-author-creatief-webdesign {
  font-size: 0.9375rem;
  color: #cbd5e1;
  font-style: normal;
}

.insights-steps-creatief-webdesign {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}

.insights-step-creatief-webdesign {
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.insights-step-number-creatief-webdesign {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
  min-width: 60px;
}

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

.insights-step-title-creatief-webdesign {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #ffffff;
}

.insights-step-text-creatief-webdesign {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.resources-section-creatief-webdesign {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  background: #f8fafc;
}

.resources-content-creatief-webdesign {
  max-width: 1100px;
}

.resources-title-creatief-webdesign {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #0f172a;
  text-align: center;
  margin-bottom: 1rem;
}

.resources-subtitle-creatief-webdesign {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

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

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

.resource-card-creatief-webdesign:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
  border-color: #cbd5e1;
}

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

.resource-card-title-creatief-webdesign {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
}

.resource-card-text-creatief-webdesign {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

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

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

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

  .insights-step-creatief-webdesign {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}

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

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

  .insights-section-creatief-webdesign {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .resources-section-creatief-webdesign {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

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

.main-collaboratief-designproces {
  width: 100%;
}

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

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

.hero-section-collaboratief-designproces {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

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

.hero-text-block-collaboratief-designproces {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-collaboratief-designproces {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.breadcrumbs-collaboratief-designproces {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.9375rem;
}

.breadcrumb-link-collaboratief-designproces {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-collaboratief-designproces:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.breadcrumb-separator-collaboratief-designproces {
  color: #cbd5e1;
  margin: 0 0.25rem;
}

.breadcrumb-current-collaboratief-designproces {
  color: #64748b;
}

.hero-title-collaboratief-designproces {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-description-collaboratief-designproces {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-meta-collaboratief-designproces {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.meta-badge-collaboratief-designproces {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

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

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

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

.introduction-section-collaboratief-designproces {
  background: #f8fafc;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

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

.introduction-text-collaboratief-designproces {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-image-collaboratief-designproces {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-image-collaboratief-designproces img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.introduction-heading-collaboratief-designproces {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.introduction-body-collaboratief-designproces {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.introduction-body-collaboratief-designproces:last-child {
  margin-bottom: 0;
}

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

  .introduction-text-collaboratief-designproces,
  .introduction-image-collaboratief-designproces {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.process-section-collaboratief-designproces {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

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

.process-tag-collaboratief-designproces {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.process-title-collaboratief-designproces {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

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

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

.process-step-collaboratief-designproces {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
}

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

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

.process-step-title-collaboratief-designproces {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
}

.process-step-text-collaboratief-designproces {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.6;
}

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

  .process-step-number-collaboratief-designproces {
    min-width: 50px;
    font-size: 1.75rem;
  }
}

.collaboration-section-collaboratief-designproces {
  background: #f8fafc;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.collaboration-wrapper-collaboratief-designproces {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.collaboration-text-collaboratief-designproces {
  flex: 1 1 50%;
  max-width: 50%;
}

.collaboration-image-collaboratief-designproces {
  flex: 1 1 50%;
  max-width: 50%;
}

.collaboration-image-collaboratief-designproces img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

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

.collaboration-body-collaboratief-designproces {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.collaboration-tools-collaboratief-designproces {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tool-item-collaboratief-designproces {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.tool-name-collaboratief-designproces {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.tool-description-collaboratief-designproces {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .collaboration-wrapper-collaboratief-designproces {
    flex-direction: column;
  }

  .collaboration-text-collaboratief-designproces,
  .collaboration-image-collaboratief-designproces {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.practices-section-collaboratief-designproces {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.practices-header-collaboratief-designproces {
  text-align: center;
  margin-bottom: 3rem;
}

.practices-tag-collaboratief-designproces {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.practices-title-collaboratief-designproces {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
}

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

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

.practice-card-collaboratief-designproces:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.practice-icon-collaboratief-designproces {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 10px;
  font-size: 1.5rem;
}

.practice-card-title-collaboratief-designproces {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.practice-card-text-collaboratief-designproces {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .practice-card-collaboratief-designproces {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.challenges-section-collaboratief-designproces {
  background: #f8fafc;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.challenges-wrapper-collaboratief-designproces {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.challenges-image-collaboratief-designproces {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenges-image-collaboratief-designproces img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.challenges-text-collaboratief-designproces {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.challenges-body-collaboratief-designproces {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.challenges-list-collaboratief-designproces {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}

.challenges-item-collaboratief-designproces {
  padding: 1rem;
  background: #ffffff;
  border-radius: 8px;
  border-left: 3px solid #f59e0b;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.challenges-label-collaboratief-designproces {
  color: #0f172a;
  display: block;
  margin-bottom: 0.25rem;
}

.challenges-detail-collaboratief-designproces {
  color: #64748b;
}

@media (max-width: 768px) {
  .challenges-wrapper-collaboratief-designproces {
    flex-direction: column;
  }

  .challenges-image-collaboratief-designproces,
  .challenges-text-collaboratief-designproces {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-collaboratief-designproces {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.conclusion-content-collaboratief-designproces {
  max-width: 900px;
  margin: 0 auto;
}

.featured-quote-collaboratief-designproces {
  padding: 2.5rem;
  border-left: 4px solid #2563eb;
  background: #f8fafc;
  margin: 2rem 0 3rem 0;
  border-radius: 8px;
}

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

.quote-attribution-collaboratief-designproces {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

.conclusion-title-collaboratief-designproces {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.conclusion-body-collaboratief-designproces {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.conclusion-cta-collaboratief-designproces {
  background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 3rem;
  color: #ffffff;
}

.cta-heading-collaboratief-designproces {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.cta-text-collaboratief-designproces {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

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

.cta-button-collaboratief-designproces:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.related-section-collaboratief-designproces {
  background: #f8fafc;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.related-header-collaboratief-designproces {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

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

.related-card-collaboratief-designproces {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.related-card-collaboratief-designproces:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.related-card-image-collaboratief-designproces {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-collaboratief-designproces img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-title-collaboratief-designproces {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  padding: 0 1.5rem;
  padding-top: 0.5rem;
}

.related-card-text-collaboratief-designproces {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

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

.disclaimer-section-collaboratief-designproces {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-collaboratief-designproces {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-collaboratief-designproces {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-collaboratief-designproces {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  color: #64748b;
  line-height: 1.7;
  background: #f1f5f9;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 3px solid #94a3b8;
}

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

  .introduction-section-collaboratief-designproces {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .process-section-collaboratief-designproces {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .collaboration-section-collaboratief-designproces {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .practices-section-collaboratief-designproces {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .challenges-section-collaboratief-designproces {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .conclusion-section-collaboratief-designproces {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .related-section-collaboratief-designproces {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .disclaimer-section-collaboratief-designproces {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }
}

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

  .introduction-section-collaboratief-designproces {
    padding: 6rem 0;
  }

  .process-section-collaboratief-designproces {
    padding: 6rem 0;
  }

  .collaboration-section-collaboratief-designproces {
    padding: 6rem 0;
  }

  .practices-section-collaboratief-designproces {
    padding: 6rem 0;
  }

  .challenges-section-collaboratief-designproces {
    padding: 6rem 0;
  }

  .conclusion-section-collaboratief-designproces {
    padding: 6rem 0;
  }

  .related-section-collaboratief-designproces {
    padding: 6rem 0;
  }

  .disclaimer-section-collaboratief-designproces {
    padding: 6rem 0;
  }
}

.main-basis-effectieve-designplanning {
  width: 100%;
  overflow-x: hidden;
}

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

.breadcrumb-link-basis-effectieve-designplanning {
  color: #2563eb;
  transition: color 0.3s ease;
}

.breadcrumb-link-basis-effectieve-designplanning:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.breadcrumb-separator-basis-effectieve-designplanning {
  color: #cbd5e1;
  margin: 0 0.25rem;
}

.breadcrumb-current-basis-effectieve-designplanning {
  color: #64748b;
  font-weight: 500;
}

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

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

.hero-content-basis-effectieve-designplanning {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text-block-basis-effectieve-designplanning {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-image-block-basis-effectieve-designplanning {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-basis-effectieve-designplanning {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
}

.hero-subtitle-basis-effectieve-designplanning {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #cbd5e1;
  line-height: 1.6;
  font-weight: 400;
}

.hero-meta-basis-effectieve-designplanning {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.meta-badge-basis-effectieve-designplanning {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #38bdf8;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-stats-basis-effectieve-designplanning {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1.5rem;
}

.stat-item-basis-effectieve-designplanning {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-basis-effectieve-designplanning {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #38bdf8;
  line-height: 1;
  display: block;
}

.stat-label-basis-effectieve-designplanning {
  font-size: 0.875rem;
  color: #94a3b8;
  opacity: 0.9;
}

.hero-image-basis-effectieve-designplanning {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero-content-basis-effectieve-designplanning {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-text-block-basis-effectieve-designplanning,
  .hero-image-block-basis-effectieve-designplanning {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-basis-effectieve-designplanning {
    gap: 1.5rem;
  }
}

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

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

.intro-text-basis-effectieve-designplanning {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-image-basis-effectieve-designplanning {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-basis-effectieve-designplanning {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
}

.intro-description-basis-effectieve-designplanning {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #1e293b;
  line-height: 1.8;
  font-weight: 500;
}

.intro-text-basis-effectieve-designplanning {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.7;
}

.intro-image-basis-effectieve-designplanning img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .intro-content-basis-effectieve-designplanning {
    flex-direction: column;
    gap: 2rem;
  }

  .intro-text-basis-effectieve-designplanning,
  .intro-image-basis-effectieve-designplanning {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.framework-header-basis-effectieve-designplanning {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-tag-basis-effectieve-designplanning {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.framework-title-basis-effectieve-designplanning {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
}

.phases-steps-basis-effectieve-designplanning {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.phase-step-basis-effectieve-designplanning {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.phase-step-basis-effectieve-designplanning:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

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

.phase-step-content-basis-effectieve-designplanning {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.phase-step-title-basis-effectieve-designplanning {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
}

.phase-step-text-basis-effectieve-designplanning {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.7;
}

.phase-image-basis-effectieve-designplanning {
  width: 100%;
  margin-top: 2rem;
}

.phase-image-basis-effectieve-designplanning img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

  .phase-step-number-basis-effectieve-designplanning {
    min-width: auto;
  }
}

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

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

.strategy-text-basis-effectieve-designplanning {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.strategy-image-basis-effectieve-designplanning {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategy-title-basis-effectieve-designplanning {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
}

.strategy-description-basis-effectieve-designplanning {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #64748b;
  line-height: 1.8;
}

.strategy-highlights-basis-effectieve-designplanning {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-item-basis-effectieve-designplanning {
  padding: 1rem;
  background: #f8fafc;
  border-left: 3px solid #2563eb;
  border-radius: 4px;
}

.highlight-title-basis-effectieve-designplanning {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.highlight-text-basis-effectieve-designplanning {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.strategy-image-basis-effectieve-designplanning img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .strategy-wrapper-basis-effectieve-designplanning {
    flex-direction: column;
    gap: 2rem;
  }

  .strategy-text-basis-effectieve-designplanning,
  .strategy-image-basis-effectieve-designplanning {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.tools-header-basis-effectieve-designplanning {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.tools-title-basis-effectieve-designplanning {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
}

.tools-cards-basis-effectieve-designplanning {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  margin-bottom: 3rem;
}

.tools-card-basis-effectieve-designplanning {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.tools-card-basis-effectieve-designplanning:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.tools-card-icon-basis-effectieve-designplanning {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 10px;
  font-size: 1.5rem;
}

.tools-card-title-basis-effectieve-designplanning {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.tools-card-text-basis-effectieve-designplanning {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.tools-image-basis-effectieve-designplanning {
  width: 100%;
}

.tools-image-basis-effectieve-designplanning img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

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

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

.best-practices-text-basis-effectieve-designplanning {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.best-practices-image-basis-effectieve-designplanning {
  flex: 1 1 50%;
  max-width: 50%;
}

.best-practices-title-basis-effectieve-designplanning {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
}

.featured-quote-basis-effectieve-designplanning {
  padding: 2rem;
  border-left: 4px solid #2563eb;
  background: #f8fafc;
  margin: 1rem 0;
  border-radius: 4px;
  font-style: italic;
}

.quote-text-basis-effectieve-designplanning {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.quote-author-basis-effectieve-designplanning {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

.best-practices-intro-basis-effectieve-designplanning {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.8;
}

.best-practices-list-basis-effectieve-designplanning {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.practice-item-basis-effectieve-designplanning {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
}

.practice-item-basis-effectieve-designplanning::before {
  content: '';
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
  font-size: 1.25rem;
}

.best-practices-image-basis-effectieve-designplanning img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .best-practices-content-basis-effectieve-designplanning {
    flex-direction: column;
    gap: 2rem;
  }

  .best-practices-text-basis-effectieve-designplanning,
  .best-practices-image-basis-effectieve-designplanning {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.conclusion-section-basis-effectieve-designplanning::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.conclusion-content-basis-effectieve-designplanning {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-basis-effectieve-designplanning {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
}

.conclusion-text-basis-effectieve-designplanning {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #cbd5e1;
  line-height: 1.8;
}

.conclusion-cta-basis-effectieve-designplanning {
  padding: 2.5rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.cta-title-basis-effectieve-designplanning {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
}

.cta-text-basis-effectieve-designplanning {
  font-size: 0.9375rem;
  color: #cbd5e1;
}

.conclusion-cta-basis-effectieve-designplanning .btn-primary {
  background: #2563eb;
  color: #ffffff;
  margin-top: 0.5rem;
}

.conclusion-cta-basis-effectieve-designplanning .btn-primary:hover {
  background: #1d4ed8;
}

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

.related-header-basis-effectieve-designplanning {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

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

.related-subtitle-basis-effectieve-designplanning {
  font-size: 1rem;
  color: #64748b;
}

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

.related-card-basis-effectieve-designplanning {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.related-card-basis-effectieve-designplanning:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.related-card-image-basis-effectieve-designplanning {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #e2e8f0;
}

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

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

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

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

.related-card-text-basis-effectieve-designplanning {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.related-card-link-basis-effectieve-designplanning {
  color: #2563eb;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.related-card-link-basis-effectieve-designplanning:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

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

.disclaimer-section-basis-effectieve-designplanning {
  background: #ffffff;
  padding: clamp(2rem, 6vw, 4rem) 0;
  border-top: 1px solid #e2e8f0;
  overflow: hidden;
}

.disclaimer-box-basis-effectieve-designplanning {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
  background: #f8fafc;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
}

.disclaimer-title-basis-effectieve-designplanning {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-basis-effectieve-designplanning {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
}

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

  .introduction-section-basis-effectieve-designplanning {
    padding: 5rem 0;
  }

  .framework-section-basis-effectieve-designplanning {
    padding: 5rem 0;
  }

  .strategy-section-basis-effectieve-designplanning {
    padding: 5rem 0;
  }

  .tools-section-basis-effectieve-designplanning {
    padding: 5rem 0;
  }

  .best-practices-section-basis-effectieve-designplanning {
    padding: 5rem 0;
  }

  .conclusion-section-basis-effectieve-designplanning {
    padding: 5rem 0;
  }

  .related-section-basis-effectieve-designplanning {
    padding: 5rem 0;
  }
}

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

  .introduction-section-basis-effectieve-designplanning {
    padding: 6rem 0;
  }

  .framework-section-basis-effectieve-designplanning {
    padding: 6rem 0;
  }

  .strategy-section-basis-effectieve-designplanning {
    padding: 6rem 0;
  }

  .tools-section-basis-effectieve-designplanning {
    padding: 6rem 0;
  }

  .best-practices-section-basis-effectieve-designplanning {
    padding: 6rem 0;
  }

  .conclusion-section-basis-effectieve-designplanning {
    padding: 6rem 0;
  }

  .related-section-basis-effectieve-designplanning {
    padding: 6rem 0;
  }
}

@media (max-width: 640px) {
  .hero-meta-basis-effectieve-designplanning {
    gap: 0.75rem;
  }

  .hero-stats-basis-effectieve-designplanning {
    gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .stat-item-basis-effectieve-designplanning {
    flex-direction: row;
    gap: 0.75rem;
    align-items: baseline;
  }

  .meta-badge-basis-effectieve-designplanning {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }
}

.main-gebruikersgericht-ontwerpen {
  width: 100%;
}

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

.hero-section-gebruikersgericht-ontwerpen {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.breadcrumbs-gebruikersgericht-ontwerpen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumb-link-gebruikersgericht-ontwerpen {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link-gebruikersgericht-ontwerpen:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.breadcrumb-separator-gebruikersgericht-ontwerpen {
  color: #cbd5e1;
}

.breadcrumb-current-gebruikersgericht-ontwerpen {
  color: #64748b;
}

.hero-content-gebruikersgericht-ontwerpen {
  margin-bottom: 3rem;
}

.hero-title-gebruikersgericht-ontwerpen {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-gebruikersgericht-ontwerpen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #475569;
  margin-bottom: 2rem;
  max-width: 700px;
  line-height: 1.6;
}

.hero-meta-gebruikersgericht-ontwerpen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.meta-badge-gebruikersgericht-ontwerpen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.125rem;
  background: #f1f5f9;
  color: #1e293b;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-gebruikersgericht-ontwerpen i {
  color: #2563eb;
  font-size: 0.875rem;
}

.hero-image-container-gebruikersgericht-ontwerpen {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-image-gebruikersgericht-ontwerpen {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .hero-section-gebruikersgericht-ontwerpen {
    padding: clamp(3.5rem, 8vw, 6rem) 0;
  }
}

.introduction-section-gebruikersgericht-ontwerpen {
  background: #f8fafc;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.introduction-wrapper-gebruikersgericht-ontwerpen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.introduction-text-gebruikersgericht-ontwerpen {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-image-gebruikersgericht-ontwerpen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.introduction-paragraph-gebruikersgericht-ontwerpen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.introduction-image-tag-gebruikersgericht-ontwerpen {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .introduction-wrapper-gebruikersgericht-ontwerpen {
    flex-direction: column;
  }
  
  .introduction-text-gebruikersgericht-ontwerpen,
  .introduction-image-gebruikersgericht-ontwerpen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.research-section-gebruikersgericht-ontwerpen {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.research-header-gebruikersgericht-ontwerpen {
  text-align: center;
  margin-bottom: 3.5rem;
}

.research-tag-gebruikersgericht-ontwerpen {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

.research-wrapper-gebruikersgericht-ontwerpen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.research-text-gebruikersgericht-ontwerpen {
  flex: 1 1 50%;
  max-width: 50%;
}

.research-image-gebruikersgericht-ontwerpen {
  flex: 1 1 50%;
  max-width: 50%;
}

.research-paragraph-gebruikersgericht-ontwerpen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.research-methods-gebruikersgericht-ontwerpen {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.research-methods-title-gebruikersgericht-ontwerpen {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.research-list-gebruikersgericht-ontwerpen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.research-list-item-gebruikersgericht-ontwerpen {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

.research-image-tag-gebruikersgericht-ontwerpen {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .research-wrapper-gebruikersgericht-ontwerpen {
    flex-direction: column;
  }
  
  .research-text-gebruikersgericht-ontwerpen,
  .research-image-gebruikersgericht-ontwerpen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.insights-section-gebruikersgericht-ontwerpen {
  background: #f8fafc;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.insights-header-gebruikersgericht-ontwerpen {
  margin-bottom: 3rem;
}

.insights-tag-gebruikersgericht-ontwerpen {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.insights-title-gebruikersgericht-ontwerpen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.insights-wrapper-gebruikersgericht-ontwerpen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.insights-image-gebruikersgericht-ontwerpen {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.insights-text-gebruikersgericht-ontwerpen {
  flex: 1 1 50%;
  max-width: 50%;
}

.insights-paragraph-gebruikersgericht-ontwerpen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.insights-quote-gebruikersgericht-ontwerpen {
  padding: 2rem;
  border-left: 4px solid #2563eb;
  background: #ffffff;
  margin: 2rem 0;
  border-radius: 8px;
}

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

.insights-quote-author-gebruikersgericht-ontwerpen {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

.insights-image-tag-gebruikersgericht-ontwerpen {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .insights-wrapper-gebruikersgericht-ontwerpen {
    flex-direction: column;
  }
  
  .insights-image-gebruikersgericht-ontwerpen,
  .insights-text-gebruikersgericht-ontwerpen {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }
}

.design-process-section-gebruikersgericht-ontwerpen {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.design-process-header-gebruikersgericht-ontwerpen {
  text-align: center;
  margin-bottom: 3.5rem;
}

.design-process-tag-gebruikersgericht-ontwerpen {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

.design-process-steps-gebruikersgericht-ontwerpen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.design-process-step-gebruikersgericht-ontwerpen {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
}

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

.design-process-step-content-gebruikersgericht-ontwerpen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.design-process-step-title-gebruikersgericht-ontwerpen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
}

.design-process-step-text-gebruikersgericht-ontwerpen {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .design-process-step-gebruikersgericht-ontwerpen {
    flex-direction: column;
    gap: 1rem;
  }
}

.iteration-section-gebruikersgericht-ontwerpen {
  background: #f8fafc;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.iteration-wrapper-gebruikersgericht-ontwerpen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.iteration-text-gebruikersgericht-ontwerpen {
  flex: 1 1 50%;
  max-width: 50%;
}

.iteration-image-gebruikersgericht-ontwerpen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.iteration-paragraph-gebruikersgericht-ontwerpen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.iteration-image-tag-gebruikersgericht-ontwerpen {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .iteration-wrapper-gebruikersgericht-ontwerpen {
    flex-direction: column;
  }
  
  .iteration-text-gebruikersgericht-ontwerpen,
  .iteration-image-gebruikersgericht-ontwerpen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.principles-section-gebruikersgericht-ontwerpen {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.principles-header-gebruikersgericht-ontwerpen {
  text-align: center;
  margin-bottom: 3.5rem;
}

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

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

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

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

.principles-card-gebruikersgericht-ontwerpen:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.principles-card-icon-gebruikersgericht-ontwerpen {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 10px;
  font-size: 1.5rem;
}

.principles-card-title-gebruikersgericht-ontwerpen {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.principles-card-text-gebruikersgericht-ontwerpen {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

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

.conclusion-section-gebruikersgericht-ontwerpen {
  background: #f8fafc;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-gebruikersgericht-ontwerpen {
  max-width: 800px;
  margin: 0 auto;
}

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

.conclusion-text-gebruikersgericht-ontwerpen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.conclusion-checklist-gebruikersgericht-ontwerpen {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
  margin-bottom: 2rem;
}

.checklist-item-gebruikersgericht-ontwerpen {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.checklist-item-gebruikersgericht-ontwerpen:last-child {
  margin-bottom: 0;
}

.checklist-item-gebruikersgericht-ontwerpen i {
  color: #10b981;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.disclaimer-section-gebruikersgericht-ontwerpen {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.disclaimer-content-gebruikersgericht-ontwerpen {
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: 2rem;
  border-radius: 8px;
  max-width: 900px;
}

.disclaimer-title-gebruikersgericht-ontwerpen {
  font-size: 1.125rem;
  font-weight: 600;
  color: #92400e;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-title-gebruikersgericht-ontwerpen i {
  font-size: 1.25rem;
}

.disclaimer-text-gebruikersgericht-ontwerpen {
  font-size: 0.9375rem;
  color: #78350f;
  line-height: 1.7;
}

.related-section-gebruikersgericht-ontwerpen {
  background: #f8fafc;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.related-header-gebruikersgericht-ontwerpen {
  text-align: center;
  margin-bottom: 3.5rem;
}

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

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

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

.related-card-gebruikersgericht-ontwerpen {
  flex: 1 1 300px;
  max-width: 400px;
  display: block;
  background: #ffffff;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid #e2e8f0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-card-gebruikersgericht-ontwerpen:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.related-card-content-gebruikersgericht-ontwerpen {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

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

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

.related-card-arrow-gebruikersgericht-ontwerpen {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #2563eb;
  font-size: 1.25rem;
  transition: transform 0.2s ease;
  margin-top: 0.5rem;
}

.related-card-gebruikersgericht-ontwerpen:hover .related-card-arrow-gebruikersgericht-ontwerpen {
  transform: translateX(4px);
}

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

@media (min-width: 768px) {
  .design-process-step-gebruikersgericht-ontwerpen {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .design-process-step-gebruikersgericht-ontwerpen {
    padding: 2.5rem;
  }
}

.main-projecttijdlijnen-optimaliseren {
  width: 100%;
  background: #ffffff;
}

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

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

.breadcrumbs-projecttijdlijnen-optimaliseren {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  position: relative;
  z-index: 1;
}

.breadcrumbs-link-projecttijdlijnen-optimaliseren {
  color: #94a3b8;
  transition: color 0.3s ease;
}

.breadcrumbs-link-projecttijdlijnen-optimaliseren:hover {
  color: #ffffff;
}

.breadcrumbs-separator-projecttijdlijnen-optimaliseren {
  color: #475569;
}

.breadcrumbs-current-projecttijdlijnen-optimaliseren {
  color: #38bdf8;
  font-weight: 600;
}

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

.hero-text-wrapper-projecttijdlijnen-optimaliseren {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.hero-subtitle-projecttijdlijnen-optimaliseren {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #cbd5e1;
  line-height: 1.6;
  font-weight: 500;
}

.hero-meta-projecttijdlijnen-optimaliseren {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

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

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

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

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

.stat-number-projecttijdlijnen-optimaliseren {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #38bdf8;
  line-height: 1;
}

.stat-label-projecttijdlijnen-optimaliseren {
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
}

.hero-image-projecttijdlijnen-optimaliseren {
  flex: 1 1 45%;
  min-height: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-img-projecttijdlijnen-optimaliseren {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

  .hero-text-wrapper-projecttijdlijnen-optimaliseren {
    flex: 1 1 100%;
  }

  .hero-image-projecttijdlijnen-optimaliseren {
    flex: 1 1 100%;
    min-height: 280px;
  }

  .hero-stats-projecttijdlijnen-optimaliseren {
    gap: 1.5rem;
  }
}

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

.intro-content-projecttijdlijnen-optimaliseren {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.intro-text-projecttijdlijnen-optimaliseren {
  flex: 1 1 55%;
}

.intro-description-projecttijdlijnen-optimaliseren {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  color: #1e293b;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.intro-subtext-projecttijdlijnen-optimaliseren {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.8;
}

.intro-highlight-projecttijdlijnen-optimaliseren {
  flex: 1 1 35%;
  padding: 2rem;
  background: #ffffff;
  border-left: 4px solid #3b82f6;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.intro-quote-projecttijdlijnen-optimaliseren {
  margin: 0;
  padding: 0;
}

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

.quote-cite-projecttijdlijnen-optimaliseren {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
  display: block;
}

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

  .intro-text-projecttijdlijnen-optimaliseren {
    flex: 1 1 100%;
  }

  .intro-highlight-projecttijdlijnen-optimaliseren {
    flex: 1 1 100%;
  }
}

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

.framework-header-projecttijdlijnen-optimaliseren {
  text-align: center;
  margin-bottom: 3rem;
}

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

.framework-title-projecttijdlijnen-optimaliseren {
  font-size: clamp(2rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
}

.framework-subtitle-projecttijdlijnen-optimaliseren {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.framework-steps-projecttijdlijnen-optimaliseren {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.framework-step-projecttijdlijnen-optimaliseren {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
  transition: all 0.3s ease;
}

.framework-step-projecttijdlijnen-optimaliseren:hover {
  background: #f1f5f9;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
}

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

.framework-step-content-projecttijdlijnen-optimaliseren {
  flex: 1;
}

.framework-step-title-projecttijdlijnen-optimaliseren {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.framework-step-text-projecttijdlijnen-optimaliseren {
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .framework-step-projecttijdlijnen-optimaliseren {
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .framework-step-number-projecttijdlijnen-optimaliseren {
    min-width: 60px;
  }
}

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

.planning-wrapper-projecttijdlijnen-optimaliseren {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.planning-text-projecttijdlijnen-optimaliseren {
  flex: 1 1 50%;
}

.planning-title-projecttijdlijnen-optimaliseren {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.planning-description-projecttijdlijnen-optimaliseren {
  font-size: 1.125rem;
  color: #1e293b;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.planning-text-projecttijdlijnen-optimaliseren {
  font-size: 1rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.planning-tip-box-projecttijdlijnen-optimaliseren {
  padding: 1.5rem;
  background: #ffffff;
  border-left: 4px solid #10b981;
  border-radius: 12px;
  margin-top: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.tip-title-projecttijdlijnen-optimaliseren {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.tip-text-projecttijdlijnen-optimaliseren {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
}

.planning-image-projecttijdlijnen-optimaliseren {
  flex: 1 1 45%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  min-height: 380px;
}

.planning-img-projecttijdlijnen-optimaliseren {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .planning-wrapper-projecttijdlijnen-optimaliseren {
    flex-direction: column;
  }

  .planning-text-projecttijdlijnen-optimaliseren {
    flex: 1 1 100%;
  }

  .planning-image-projecttijdlijnen-optimaliseren {
    flex: 1 1 100%;
    min-height: 280px;
  }
}

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

.tools-header-projecttijdlijnen-optimaliseren {
  text-align: center;
  margin-bottom: 3rem;
}

.tools-title-projecttijdlijnen-optimaliseren {
  font-size: clamp(2rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
}

.tools-subtitle-projecttijdlijnen-optimaliseren {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

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

.tools-card-projecttijdlijnen-optimaliseren:hover {
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

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

.tools-card-title-projecttijdlijnen-optimaliseren {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
}

.tools-card-text-projecttijdlijnen-optimaliseren {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
}

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

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

.strategies-wrapper-projecttijdlijnen-optimaliseren {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.strategies-image-projecttijdlijnen-optimaliseren {
  flex: 1 1 45%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  min-height: 380px;
}

.strategies-img-projecttijdlijnen-optimaliseren {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.strategies-text-projecttijdlijnen-optimaliseren {
  flex: 1 1 50%;
}

.strategies-title-projecttijdlijnen-optimaliseren {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.strategies-description-projecttijdlijnen-optimaliseren {
  font-size: 1.125rem;
  color: #1e293b;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.strategies-text-projecttijdlijnen-optimaliseren {
  font-size: 1rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.strategies-list-projecttijdlijnen-optimaliseren {
  list-style: none;
  margin: 1.5rem 0;
}

.strategies-list-item-projecttijdlijnen-optimaliseren {
  font-size: 1rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.strategies-list-item-projecttijdlijnen-optimaliseren::before {
  content: '';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
  font-size: 1.125rem;
}

.strategies-list-item-projecttijdlijnen-optimaliseren strong {
  color: #0f172a;
  font-weight: 700;
}

@media (max-width: 768px) {
  .strategies-wrapper-projecttijdlijnen-optimaliseren {
    flex-direction: column;
  }

  .strategies-image-projecttijdlijnen-optimaliseren {
    flex: 1 1 100%;
    min-height: 280px;
  }

  .strategies-text-projecttijdlijnen-optimaliseren {
    flex: 1 1 100%;
  }
}

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

.communication-content-projecttijdlijnen-optimaliseren {
  margin-bottom: 3rem;
}

.communication-title-projecttijdlijnen-optimaliseren {
  font-size: clamp(2rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2.5rem;
  text-align: center;
}

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

.communication-item-projecttijdlijnen-optimaliseren {
  flex: 1 1 280px;
  max-width: 450px;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.communication-number-projecttijdlijnen-optimaliseren {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #3b82f6;
  color: #ffffff;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.communication-item-title-projecttijdlijnen-optimaliseren {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.communication-item-text-projecttijdlijnen-optimaliseren {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
}

.communication-highlight-projecttijdlijnen-optimaliseren {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  min-height: 350px;
}

.communication-img-projecttijdlijnen-optimaliseren {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 350px;
}

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

  .communication-highlight-projecttijdlijnen-optimaliseren {
    min-height: 280px;
  }

  .communication-img-projecttijdlijnen-optimaliseren {
    min-height: 280px;
  }
}

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

.conclusion-content-projecttijdlijnen-optimaliseren {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-projecttijdlijnen-optimaliseren {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2rem;
  text-align: center;
}

.conclusion-text-projecttijdlijnen-optimaliseren {
  font-size: 1rem;
  color: #475569;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.conclusion-cta-projecttijdlijnen-optimaliseren {
  padding: 2.5rem;
  background: linear-gradient(135deg, #0f172a 0%, #1a2847 100%);
  border-radius: 16px;
  text-align: center;
  margin-top: 2.5rem;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.2);
}

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

.cta-text-projecttijdlijnen-optimaliseren {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.cta-button-projecttijdlijnen-optimaliseren {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #38bdf8;
  color: #0f172a;
  border-radius: 8px;
  font-weight: 700;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.3s ease;
}

.cta-button-projecttijdlijnen-optimaliseren:hover {
  background: #22d3ee;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.3);
}

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

.related-header-projecttijdlijnen-optimaliseren {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-projecttijdlijnen-optimaliseren {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
}

.related-subtitle-projecttijdlijnen-optimaliseren {
  font-size: 1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

.related-card-projecttijdlijnen-optimaliseren {
  flex: 1 1 300px;
  max-width: 420px;
  background: #f8fafc;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-projecttijdlijnen-optimaliseren:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.related-card-image-projecttijdlijnen-optimaliseren {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #e2e8f0;
}

.related-card-image-projecttijdlijnen-optimaliseren img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-projecttijdlijnen-optimaliseren {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.related-card-title-projecttijdlijnen-optimaliseren {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
}

.related-card-text-projecttijdlijnen-optimaliseren {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  flex: 1;
}

.related-card-link-projecttijdlijnen-optimaliseren {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #3b82f6;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.related-card-link-projecttijdlijnen-optimaliseren:hover {
  color: #1d4ed8;
  gap: 0.75rem;
}

.related-card-link-projecttijdlijnen-optimaliseren i {
  font-size: 0.875rem;
}

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

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

.disclaimer-content-projecttijdlijnen-optimaliseren {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-projecttijdlijnen-optimaliseren {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-projecttijdlijnen-optimaliseren {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.8;
}

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

  .intro-section-projecttijdlijnen-optimaliseren {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .framework-section-projecttijdlijnen-optimaliseren {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .planning-section-projecttijdlijnen-optimaliseren {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .tools-section-projecttijdlijnen-optimaliseren {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .strategies-section-projecttijdlijnen-optimaliseren {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .communication-section-projecttijdlijnen-optimaliseren {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .conclusion-section-projecttijdlijnen-optimaliseren {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .related-section-projecttijdlijnen-optimaliseren {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .framework-step-projecttijdlijnen-optimaliseren {
    padding: 2.5rem;
    gap: 2.5rem;
  }

  .tools-card-projecttijdlijnen-optimaliseren {
    flex: 1 1 calc(33.333% - 1.5rem);
  }

  .communication-item-projecttijdlijnen-optimaliseren {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .related-card-projecttijdlijnen-optimaliseren {
    flex: 1 1 calc(33.333% - 1.5rem);
  }
}

.main-design-systems-structuur {
  width: 100%;
  background: #ffffff;
}

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

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

.breadcrumbs-design-systems-structuur {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: clamp(1.5rem, 3vw, 2rem) 0;
  font-size: 0.875rem;
}

.breadcrumb-link-design-systems-structuur {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link-design-systems-structuur:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.breadcrumb-separator-design-systems-structuur {
  color: #cbd5e1;
}

.breadcrumb-current-design-systems-structuur {
  color: #64748b;
}

.hero-section-design-systems-structuur {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
}

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

.hero-text-block-design-systems-structuur {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-image-block-design-systems-structuur {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-design-systems-structuur {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.hero-subtitle-design-systems-structuur {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  color: #475569;
}

.hero-image-design-systems-structuur {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-meta-design-systems-structuur {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
}

.meta-badge-design-systems-structuur {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #eff6ff;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-design-systems-structuur i {
  font-size: 0.875rem;
}

.hero-stats-design-systems-structuur {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.stat-item-design-systems-structuur {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number-design-systems-structuur {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
}

.stat-label-design-systems-structuur {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero-content-design-systems-structuur {
    flex-direction: column;
  }

  .hero-text-block-design-systems-structuur,
  .hero-image-block-design-systems-structuur {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-design-systems-structuur {
    gap: 1.5rem;
  }
}

.intro-section-design-systems-structuur {
  background: #f8fafc;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

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

.intro-text-design-systems-structuur {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-image-design-systems-structuur {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-design-systems-structuur {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
}

.intro-description-design-systems-structuur {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  color: #475569;
}

.intro-image-img-design-systems-structuur {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .intro-content-design-systems-structuur {
    flex-direction: column;
  }

  .intro-text-design-systems-structuur,
  .intro-image-design-systems-structuur {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.foundations-section-design-systems-structuur {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.foundations-header-design-systems-structuur {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-design-systems-structuur {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.foundations-steps-design-systems-structuur {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.foundations-step-design-systems-structuur {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #f8fafc;
  border-radius: 12px;
  align-items: flex-start;
}

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

.step-content-design-systems-structuur {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.step-title-design-systems-structuur {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
}

.step-text-design-systems-structuur {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  color: #475569;
}

@media (max-width: 768px) {
  .foundations-step-design-systems-structuur {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-design-systems-structuur {
    min-width: auto;
  }
}

.implementation-section-design-systems-structuur {
  background: #f8fafc;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

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

.implementation-text-design-systems-structuur {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.implementation-image-design-systems-structuur {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-title-design-systems-structuur {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
}

.implementation-description-design-systems-structuur {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  color: #475569;
}

.implementation-quote-design-systems-structuur {
  padding: 2rem 2.5rem;
  border-left: 4px solid #2563eb;
  background: #ffffff;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.quote-text-design-systems-structuur {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  color: #0f172a;
  font-style: italic;
  margin-bottom: 1rem;
}

.quote-author-design-systems-structuur {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
  display: block;
}

.implementation-image-img-design-systems-structuur {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .implementation-wrapper-design-systems-structuur {
    flex-direction: column;
  }

  .implementation-text-design-systems-structuur,
  .implementation-image-design-systems-structuur {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.benefits-section-design-systems-structuur {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.benefits-header-design-systems-structuur {
  text-align: center;
  margin-bottom: 3rem;
}

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

.benefits-cards-design-systems-structuur {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.benefits-card-design-systems-structuur {
  flex: 1 1 250px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefits-card-design-systems-structuur:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
}

.benefits-card-icon-design-systems-structuur {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 10px;
  font-size: 1.5rem;
}

.benefits-card-title-design-systems-structuur {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
}

.benefits-card-text-design-systems-structuur {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #475569;
}

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

.maintenance-section-design-systems-structuur {
  background: #f8fafc;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.maintenance-wrapper-design-systems-structuur {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.maintenance-image-design-systems-structuur {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.maintenance-text-design-systems-structuur {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.maintenance-title-design-systems-structuur {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
}

.maintenance-description-design-systems-structuur {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  color: #475569;
}

.maintenance-image-img-design-systems-structuur {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.maintenance-highlight-design-systems-structuur {
  padding: 1.5rem;
  background: #eff6ff;
  border-left: 4px solid #2563eb;
  border-radius: 8px;
}

.highlight-text-design-systems-structuur {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #0f172a;
  margin: 0;
}

@media (max-width: 768px) {
  .maintenance-wrapper-design-systems-structuur {
    flex-direction: column;
  }

  .maintenance-image-design-systems-structuur,
  .maintenance-text-design-systems-structuur {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }
}

.conclusion-section-design-systems-structuur {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

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

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

.conclusion-text-design-systems-structuur {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
  color: #475569;
}

.conclusion-cta-design-systems-structuur {
  margin-top: 1.5rem;
}

.cta-button-design-systems-structuur {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #2563eb;
  color: #ffffff;
  border-radius: 8px;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button-design-systems-structuur:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
}

.related-section-design-systems-structuur {
  background: #f8fafc;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.related-title-design-systems-structuur {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2.5rem;
  text-align: center;
}

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

.related-card-design-systems-structuur {
  flex: 1 1 300px;
  max-width: 420px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-design-systems-structuur:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.related-card-image-design-systems-structuur {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #e2e8f0;
}

.related-card-image-design-systems-structuur img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-design-systems-structuur {
  padding: clamp(1.25rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.related-card-title-design-systems-structuur {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
}

.related-card-text-design-systems-structuur {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #475569;
  flex: 1;
}

.related-card-link-design-systems-structuur {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
  margin-top: auto;
}

.related-card-link-design-systems-structuur:hover {
  color: #1d4ed8;
  transform: translateX(4px);
}

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

.disclaimer-section-design-systems-structuur {
  background: #ffffff;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-design-systems-structuur {
  max-width: 900px;
  margin: 0 auto;
}

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

.disclaimer-text-design-systems-structuur {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #475569;
  background: #f8fafc;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: 8px;
  border-left: 3px solid #94a3b8;
}

@media (max-width: 768px) {
  .hero-stats-design-systems-structuur {
    flex-direction: column;
    gap: 1rem;
  }
}

:root {
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f8fafc;
  --color-bg-tertiary: #f1f5f9;
  --color-bg-card: #ffffff;
  --color-text-primary: #1e293b;
  --color-text-secondary: #64748b;
  --color-text-muted: #94a3b8;
  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-secondary: #0ea5e9;
  --color-accent-tertiary: #8b5cf6;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.12);
  --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;
}

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

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

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

.design-innovation-about {
  width: 100%;
}

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

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

.hero-design-title-about {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-design-subtitle-about {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #475569;
  max-width: 700px;
  line-height: 1.6;
}

.hero-stats-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3.5rem);
  justify-content: center;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
}

.stat-item-about {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

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

.stat-label-about {
  font-size: 0.875rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

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

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

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

.philosophy-intro-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.philosophy-tag-about {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.philosophy-heading-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
}

.philosophy-description-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  max-width: 750px;
}

.process-steps-about {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.process-step-about {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.process-step-about:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.process-number-about {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
  font-family: var(--font-heading);
}

.process-step-content-about {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.25rem;
}

.process-step-title-about {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: #1e293b;
}

.process-step-text-about {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

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

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

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

.principles-tag-about {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  margin: 0 auto;
  padding: 0.375rem 1rem;
  background: rgba(139, 92, 246, 0.1);
  color: var(--color-accent-tertiary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.principles-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
}

.principles-subtitle-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

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

.principle-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.principle-card-about:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.principle-icon-about {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
}

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

.principle-card-text-about {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
}

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

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

.approach-header-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 750px;
}

.approach-tag-about {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.375rem 1rem;
  background: rgba(14, 165, 233, 0.1);
  color: var(--color-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.approach-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
}

.approach-description-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  max-width: 700px;
}

.approach-visual-about {
  width: 100%;
  max-width: 850px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

.approach-details-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.detail-block-about {
  flex: 1 1 250px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.detail-number-about {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--color-secondary);
  font-family: var(--font-heading);
}

.detail-label-about {
  font-size: 0.9375rem;
  color: #1e293b;
  font-weight: 600;
}

.detail-text-about {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
}

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

.promise-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 850px;
}

.promise-quote-about {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 5px solid var(--color-primary);
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
}

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

.promise-quote-author-about {
  font-size: 0.9375rem;
  color: #64748b;
  font-style: normal;
  font-weight: 600;
}

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

.promise-narrative-text-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.disclaimer-section-about {
  background: var(--color-bg-primary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
}

.disclaimer-header-about {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.disclaimer-icon-about {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  font-size: 1rem;
}

.disclaimer-title-about {
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  font-weight: 700;
  color: #1e293b;
}

.disclaimer-text-about {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero-design-about {
    padding: 2.5rem 0;
  }

  .philosophy-section-about {
    padding: 2.5rem 0;
  }

  .principles-section-about {
    padding: 2.5rem 0;
  }

  .approach-section-about {
    padding: 2.5rem 0;
  }

  .promise-section-about {
    padding: 2.5rem 0;
  }

  .principle-card-about {
    flex: 1 1 100%;
    max-width: none;
  }

  .process-step-about {
    flex-direction: column;
  }

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

  .approach-details-about {
    flex-direction: column;
  }

  .detail-block-about {
    flex: 1 1 100%;
    max-width: none;
  }

  .hero-stats-about {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-item-about {
    flex: 1 1 100%;
  }
}

@media (min-width: 768px) {
  .hero-design-about {
    padding: 4rem 0;
  }

  .philosophy-section-about {
    padding: 4rem 0;
  }

  .principles-section-about {
    padding: 4rem 0;
  }

  .approach-section-about {
    padding: 4rem 0;
  }

  .promise-section-about {
    padding: 4rem 0;
  }
}

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

  .philosophy-section-about {
    padding: 6rem 0;
  }

  .principles-section-about {
    padding: 6rem 0;
  }

  .approach-section-about {
    padding: 6rem 0;
  }

  .promise-section-about {
    padding: 6rem 0;
  }
}

.design-docs {
  font-family: var(--font-primary);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

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

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

.privacy-hero-content {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 1.5rem);
}

.privacy-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.privacy-hero-meta {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.privacy-hero-meta i {
  margin-right: 0.5rem;
  color: var(--color-primary);
}

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

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

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

.privacy-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.privacy-section h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.4;
  margin-top: 1rem;
}

.privacy-section p,
.privacy-section li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: var(--color-text-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.privacy-section ul,
.privacy-section ol {
  margin: clamp(1rem, 2vw, 1.5rem) 0;
  padding-left: clamp(1.5rem, 4vw, 2.5rem);
}

.privacy-section li {
  margin-bottom: 0.75rem;
}

.privacy-section li::marker {
  color: var(--color-primary);
}

.privacy-highlight {
  background: var(--color-bg-secondary);
  border-left: 4px solid var(--color-primary);
  padding: clamp(1rem, 3vw, 1.5rem);
  border-radius: var(--radius-md);
  margin: clamp(1.5rem, 3vw, 2rem) 0;
}

.privacy-highlight p {
  color: var(--color-text-primary);
  font-weight: 500;
  margin: 0;
}

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

.privacy-contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.privacy-contact h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.3;
}

.privacy-contact p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: var(--color-text-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.contact-item strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

.contact-item p {
  margin: 0;
  color: var(--color-text-secondary);
}

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

  .privacy-content {
    padding: 5rem 0;
  }

  .privacy-contact {
    padding: 5rem 0;
  }

  .contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
}

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

  .privacy-content {
    padding: 6rem 0;
  }

  .privacy-contact {
    padding: 6rem 0;
  }
}

.thank-page {
  width: 100%;
}

.thank-section {
  background: var(--color-bg-primary);
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.thank-section .container {
  width: 100%;
  max-width: 1440px;
  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, 3rem);
  max-width: 600px;
  margin: 0 auto;
}

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(80px, 20vw, 120px);
  height: clamp(80px, 20vw, 120px);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(14, 165, 233, 0.1));
  border-radius: 50%;
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
}

.thank-icon i {
  font-size: clamp(2.5rem, 12vw, 4rem);
  color: var(--color-primary);
}

.thank-section h1 {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-lead {
  color: var(--color-secondary);
  font-family: var(--font-primary);
  font-size: clamp(1.125rem, 3vw + 0.5rem, 1.5rem);
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.thank-description {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-checklist {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  width: 100%;
  margin: clamp(0.5rem, 2vw, 1rem) 0;
}

.checklist-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  padding: clamp(0.75rem, 2vw, 1rem);
  background: rgba(37, 99, 235, 0.05);
  border-radius: var(--radius-md);
  justify-content: center;
}

.checklist-item i {
  color: var(--color-primary);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  flex-shrink: 0;
}

.checklist-item span {
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  font-weight: 500;
  line-height: 1.5;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.875rem, 2vw, 1.25rem) clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  gap: 0.5rem;
  line-height: 1.5;
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  margin-top: clamp(0.5rem, 2vw, 1rem);
}

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

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

@media (min-width: 768px) {
  .thank-section {
    padding: 4rem 0;
    min-height: 100vh;
  }

  .thank-icon {
    margin-bottom: 1.5rem;
  }

  .thank-checklist {
    gap: 1.25rem;
    margin: 1.5rem 0;
  }

  .checklist-item {
    padding: 1rem;
  }
}

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

  .thank-content {
    gap: 2.5rem;
  }

  .thank-icon {
    margin-bottom: 1rem;
  }

  .thank-checklist {
    gap: 1.5rem;
    margin: 2rem 0;
  }
}

@media (min-width: 1440px) {
  .thank-section {
    padding: 8rem 0;
  }

  .thank-content {
    gap: 3rem;
  }
}

.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  position: relative;
}

.error-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.error-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.error-section .container {
  position: relative;
  z-index: 1;
}

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  max-width: 700px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.error-code-wrapper {
  position: relative;
  margin-bottom: clamp(1rem, 3vw, 2rem);
}

.error-code {
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 900;
  font-family: var(--font-heading);
  color: var(--color-primary);
  letter-spacing: -2px;
  line-height: 1;
  margin: 0;
  position: relative;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
  text-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
}

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

.error-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(200px, 50vw, 400px);
  height: clamp(200px, 50vw, 400px);
  border: 3px solid var(--color-primary);
  border-radius: 50%;
  opacity: 0.1;
  animation: rotate 20s linear infinite;
  z-index: 0;
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.error-title {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.2;
}

.error-description {
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
  max-width: 500px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-suggestions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(1rem, 3vw, 1.5rem);
  width: 100%;
  margin: clamp(1rem, 3vw, 2rem) 0;
}

.suggestion-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(37, 99, 235, 0.1);
  transition: all 0.3s ease;
}

.suggestion-item:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
}

.suggestion-item i {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-primary);
}

.suggestion-item p {
  font-size: clamp(0.8125rem, 1.5vw, 0.95rem);
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.4;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
}

.btn-large {
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1.75rem, 4vw, 2.5rem);
}

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

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

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

@media (min-width: 768px) {
  .error-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
    min-height: 100vh;
  }

  .error-content {
    gap: clamp(2rem, 5vw, 3.5rem);
  }

  .error-suggestions {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.25rem, 3vw, 2rem);
  }

  .suggestion-item {
    padding: clamp(1.25rem, 2.5vw, 2rem);
  }
}

@media (min-width: 1024px) {
  .error-section::before {
    width: 600px;
    height: 600px;
  }

  .error-section::after {
    width: 500px;
    height: 500px;
  }

  .error-content {
    gap: 3rem;
  }

  .error-code-wrapper {
    margin-bottom: 2rem;
  }

  .error-suggestions {
    gap: 2rem;
  }

  .suggestion-item {
    padding: 2rem;
  }

  .suggestion-item:hover {
    transform: translateY(-8px);
  }
}

@media (min-width: 1440px) {
  .error-content {
    gap: 3.5rem;
  }

  .error-code {
    text-shadow: 0 15px 40px rgba(37, 99, 235, 0.2);
  }
}

.error-code,
.error-title,
.error-description,
.suggestion-item p {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

@media print {
  .error-section::before,
  .error-section::after {
    display: none;
  }

  .error-decoration {
    display: none;
  }

  .error-code {
    animation: none;
    color: #000;
  }
}