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

:root {
  
  
  
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #1e293b;
  --color-bg-quaternary: #f8fafc;
  --color-bg-card-dark: rgba(255, 255, 255, 0.05);
  --color-bg-card-light: #ffffff;
  
  
  --color-text-primary-dark: #ffffff;
  --color-text-primary-light: #0f172a;
  --color-text-secondary-dark: #94a3b8;
  --color-text-secondary-light: #64748b;
  --color-text-muted-dark: #64748b;
  --color-text-muted-light: #9ca3af;
  
  
  --color-primary: #00d4ff;
  --color-primary-hover: #00a8cc;
  --color-secondary: #ff6b35;
  --color-secondary-hover: #e55a2b;
  --color-accent-green: #10b981;
  --color-accent-purple: #8b5cf6;
  
  
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.3);
  
  
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--color-text-primary-light);
  background: var(--color-bg-secondary);
}

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

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 600;
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
}

h5 {
  font-size: 1.25rem;
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 400;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.5;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75;
}

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

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

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

.grid {
  display: grid;
  gap: var(--space-lg);
}

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

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

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

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

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

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

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

section {
  padding: var(--space-3xl) 0;
}

@media (max-width: 768px) {
  section {
    padding: var(--space-2xl) 0;
  }
}

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

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
  color: var(--color-text-primary-dark);
}

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

.section-light {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary-light);
}

.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4,
.section-light h5,
.section-light h6 {
  color: var(--color-text-primary-light);
}

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

.section-dark-secondary {
  background: var(--color-bg-tertiary);
  color: var(--color-text-primary-dark);
}

.section-dark-secondary h1,
.section-dark-secondary h2,
.section-dark-secondary h3,
.section-dark-secondary h4,
.section-dark-secondary h5,
.section-dark-secondary h6 {
  color: var(--color-text-primary-dark);
}

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

.section-light-secondary {
  background: var(--color-bg-quaternary);
  color: var(--color-text-primary-light);
}

.section-light-secondary h1,
.section-light-secondary h2,
.section-light-secondary h3,
.section-light-secondary h4,
.section-light-secondary h5,
.section-light-secondary h6 {
  color: var(--color-text-primary-light);
}

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

.card {
  background: var(--color-bg-card-light);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

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

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

.card-dark h3,
.card-dark h4,
.card-dark h5,
.card-dark h6 {
  color: var(--color-text-primary-dark);
}

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

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

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

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

.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: var(--color-secondary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

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

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

.btn-outline-dark:hover {
  background: var(--color-text-primary-dark);
  color: var(--color-bg-primary);
}

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

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

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-primary {
  background: var(--color-primary);
  color: var(--color-bg-primary);
}

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

.badge-accent {
  background: var(--color-accent-green);
  color: #ffffff;
}

.badge-outline-light {
  background: transparent;
  color: var(--color-text-primary-light);
  border: 1px solid var(--color-text-primary-light);
}

.badge-outline-dark {
  background: transparent;
  color: var(--color-text-primary-dark);
  border: 1px solid var(--color-text-primary-dark);
}

.border-top {
  border-top: 2px solid var(--color-primary);
}

.border-bottom {
  border-bottom: 2px solid var(--color-primary);
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
  margin: var(--space-xl) 0;
}

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

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

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

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

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

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

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

.animate-slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

.animate-slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

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

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

@media (max-width: 1024px) {
  h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
  }
  
  h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }
  
  section {
    padding: var(--space-2xl) 0;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
  }
  
  h2 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
  }
  
  h3 {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  }
  
  p {
    font-size: 0.95rem;
  }
  
  .text-lg {
    font-size: 1rem;
  }
  
  .grid {
    gap: var(--space-md);
  }
  
  .flex {
    flex-direction: column;
    gap: var(--space-md);
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }
  
  h2 {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  }
  
  h3 {
    font-size: clamp(1rem, 2vw, 1.25rem);
  }
  
  .btn {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
  }
  
  .card {
    padding: var(--space-lg);
  }
}

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

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

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

input,
textarea,
select {
  font-family: var(--font-primary);
  font-size: 1rem;
  padding: var(--space-sm) var(--space-md);
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  background: var(--color-bg-secondary);
  color: var(--color-text-primary-light);
}

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

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

label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 600;
  color: var(--color-text-primary-light);
}

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

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

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

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

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

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

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

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

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

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

@media (max-width: 768px) {
  .hidden-mobile {
    display: none !important;
  }
  
  .visible-mobile {
    display: block !important;
  }
}

@media (min-width: 769px) {
  .hidden-desktop {
    display: none !important;
  }
  
  .visible-desktop {
    display: block !important;
  }
}
.header-thinking-forge {
  background: var(--color-bg-primary);
  padding: clamp(1rem, 2vw, 1.5rem) 0;
  position: relative;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
  overflow: hidden;
}

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

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

.header-thinking-forge-brand:hover {
  opacity: 0.8;
}

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

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

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

.header-thinking-forge-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  color: var(--color-text-primary-dark);
  text-decoration: none;
  transition: color var(--transition-base);
  white-space: nowrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.header-thinking-forge-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-bg-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-base);
  white-space: nowrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.header-thinking-forge-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

.header-thinking-forge-mobile-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 0;
  margin-left: auto;
}

.header-thinking-forge-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.header-thinking-forge-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

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

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

.header-thinking-forge-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg-primary);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: all var(--transition-base);
  z-index: 999;
  padding-top: clamp(4rem, 12vw, 6rem);
}

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

.header-thinking-forge-mobile-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 2rem);
  margin-bottom: clamp(2rem, 5vw, 3rem);
  position: absolute;
  top: clamp(1rem, 2vw, 1.5rem);
  left: 0;
  right: 0;
}

.header-thinking-forge-mobile-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-primary);
}

.header-thinking-forge-mobile-close {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.5rem;
  transition: color var(--transition-base);
}

.header-thinking-forge-mobile-close:hover {
  color: var(--color-primary-hover);
}

.header-thinking-forge-mobile-links {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: 0 clamp(1rem, 4vw, 2rem);
  margin-bottom: clamp(2rem, 5vw, 3rem);
  flex: 1;
}

.header-thinking-forge-mobile-link {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  color: var(--color-text-primary-dark);
  text-decoration: none;
  transition: color var(--transition-base);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.header-thinking-forge-mobile-link:hover {
  color: var(--color-primary);
}

.header-thinking-forge-mobile-cta {
  padding: 1rem clamp(1rem, 4vw, 2rem);
  background: var(--color-primary);
  color: var(--color-bg-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all var(--transition-base);
  margin: 0 clamp(1rem, 4vw, 2rem) clamp(1rem, 3vw, 2rem);
  border-radius: var(--radius-md);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

  .header-thinking-forge-mobile-menu {
    display: none;
  }

  .header-thinking-forge-desktop-nav {
    display: flex;
  }

  .header-thinking-forge-cta-button {
    display: block;
  }
}

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

.design-thinking-hub * {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-section-index {
  background: linear-gradient(135deg, #0a0f1e 0%, #1e293b 100%);
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
}

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

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

.hero-title-index {
  color: #ffffff;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-subtitle-index {
  color: #94a3b8;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
}

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

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

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

.hero-stat-number-index {
  color: #00d4ff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.hero-stat-label-index {
  color: #94a3b8;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.hero-image-block-index {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-index {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

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

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

  .hero-stats-index {
    gap: 2rem;
  }
}

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

  .hero-cta-group-index {
    flex-direction: column;
  }

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

  .hero-stats-index {
    flex-direction: row;
    gap: 1.5rem;
  }
}

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

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

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

.section-tag-index {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(0, 212, 255, 0.1);
  color: #00d4ff;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.features-title-index {
  color: #0f172a;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

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

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

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

.feature-card-index:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 212, 255, 0.15);
  border-color: #00d4ff;
}

.feature-icon-index {
  font-size: 2.5rem;
  color: #00d4ff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.feature-card-title-index {
  color: #0f172a;
  font-size: 1.25rem;
  font-weight: 600;
}

.feature-card-text-index {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

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

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

.process-title-index {
  color: #0f172a;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

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

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

.process-step-index {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border-left: 4px solid #00d4ff;
  transition: all 0.3s ease;
}

.process-step-index:hover {
  box-shadow: 0 8px 16px rgba(0, 212, 255, 0.1);
}

.step-number-index {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #00d4ff;
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
  min-width: 80px;
}

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

.step-title-index {
  color: #0f172a;
  font-size: 1.25rem;
  font-weight: 600;
}

.step-text-index {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

  .step-number-index {
    font-size: 1.75rem;
  }
}

.benefits-section-index {
  background: #1e293b;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.benefits-text-block-index {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.benefits-description-index {
  color: #94a3b8;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.7;
}

.benefits-list-index {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefits-list-item-index {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
  color: #e2e8f0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.benefits-check-icon-index {
  color: #10b981;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.benefits-list-text-index {
  flex: 1;
}

.benefits-image-block-index {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits-image-index {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

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

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

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

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

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

.featured-posts-title-index {
  color: #0f172a;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

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

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

.featured-post-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: inherit;
}

.featured-post-card-index:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 212, 255, 0.15);
  border-color: #00d4ff;
}

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

.featured-post-img-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

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

.featured-post-title-index {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
}

.featured-post-excerpt-index {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
}

.featured-post-link-index {
  color: #00d4ff;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.featured-post-card-index:hover .featured-post-link-index {
  gap: 0.75rem;
}

.featured-posts-cta-index {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.testimonials-section-index {
  background: #0a0f1e;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.testimonials-title-index {
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.testimonials-subtitle-index {
  color: #94a3b8;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

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

.testimonial-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.testimonial-card-index:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 212, 255, 0.3);
}

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

.testimonial-text-index {
  color: #e2e8f0;
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author-index {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

.testimonial-name-index {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
}

.testimonial-company-index {
  color: #94a3b8;
  font-size: 0.85rem;
}

.cta-section-index {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.cta-content-index {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cta-box-index {
  background: linear-gradient(135deg, #0a0f1e 0%, #1e293b 100%);
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

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

.cta-description-index {
  color: #94a3b8;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  max-width: 500px;
  line-height: 1.7;
}

.btn-lg-index {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.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: 1.5rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

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

.cookie-banner-text-index {
  color: #e2e8f0;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  max-width: 500px;
}

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

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.cookie-btn-accept-index {
  background: #00d4ff;
  color: #0a0f1e;
}

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

.cookie-btn-decline-index {
  background: transparent;
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline-index:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .cookie-banner-index {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }

  .cookie-banner-buttons-index {
    width: 100%;
  }

  .cookie-btn-accept-index,
  .cookie-btn-decline-index {
    flex: 1;
    min-width: 120px;
  }

  .cta-box-index {
    padding: 2rem;
  }

  .featured-posts-cards-index {
    flex-direction: column;
    align-items: center;
  }

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

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

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

  .hero-stats-index {
    flex-direction: row;
    gap: 1rem;
  }

  .hero-stat-number-index {
    font-size: 1.5rem;
  }

  .process-step-index {
    flex-direction: column;
  }

  .benefits-list-item-index {
    font-size: 0.85rem;
  }
}

a:focus-visible {
  outline: 3px solid #00d4ff;
  outline-offset: 2px;
  border-radius: 4px;
}

button:focus-visible {
  outline: 3px solid #00d4ff;
  outline-offset: 2px;
  border-radius: 4px;
}

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

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

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

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

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

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

.footer-nav-list,
.footer-legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, 1.5vw, 0.875rem);
}

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

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

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

.footer-copyright {
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}

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

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

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

  .footer-nav {
    flex: 0 1 auto;
    min-width: 150px;
  }

  .footer-contact {
    flex: 1 1 280px;
    min-width: 280px;
  }

  .footer-legal {
    flex: 0 1 auto;
    min-width: 150px;
  }

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

@media (min-width: 1024px) {
  .footer-content {
    justify-content: space-between;
  }

  .footer-about {
    flex: 1 1 300px;
  }

  .footer-nav {
    flex: 0 1 140px;
  }

  .footer-contact {
    flex: 1 1 320px;
  }

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

.category-page-design-thinking {
  width: 100%;
  overflow: hidden;
}

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

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

.hero-header-design-thinking {
  text-align: center;
}

.hero-title-design-thinking {
  color: var(--color-primary);
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-subtitle-design-thinking {
  color: var(--color-text-secondary-dark);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
}

.hero-intro-design-thinking {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  backdrop-filter: blur(10px);
}

.hero-text-design-thinking {
  color: var(--color-text-secondary-dark);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  margin: 0;
}

.posts-section-design-thinking {
  background: var(--color-bg-secondary);
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
}

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

.posts-header-design-thinking {
  text-align: center;
}

.posts-title-design-thinking {
  color: var(--color-text-primary-light);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
  font-family: var(--font-heading);
  font-weight: 700;
}

.posts-subtitle-design-thinking {
  color: var(--color-text-secondary-light);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

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

.card-design-thinking {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-card-light);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2rem);
  flex: 1 1 280px;
  max-width: 380px;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

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

.card-design-thinking img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.card-title-design-thinking {
  color: var(--color-text-primary-light);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.card-description-design-thinking {
  color: var(--color-text-secondary-light);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.card-meta-design-thinking {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.card-reading-design-thinking,
.card-level-design-thinking,
.card-date-design-thinking {
  color: var(--color-text-secondary-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-reading-design-thinking i,
.card-level-design-thinking i,
.card-date-design-thinking i {
  color: var(--color-primary);
  font-size: 0.9em;
}

.card-link-design-thinking {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all var(--transition-base);
  align-self: flex-start;
  padding: 0.5rem 0;
}

.card-link-design-thinking:hover {
  color: var(--color-primary-hover);
  transform: translateX(4px);
}

.insights-section-design-thinking {
  background: var(--color-bg-tertiary);
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
}

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

.insights-header-design-thinking {
  text-align: center;
}

.insights-title-design-thinking {
  color: var(--color-text-primary-dark);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 0;
}

.insights-quote-design-thinking {
  background: rgba(0, 212, 255, 0.08);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  max-width: 800px;
  margin: 0 auto;
}

.insights-blockquote-design-thinking {
  margin: 0;
  font-style: italic;
}

.insights-quote-text-design-thinking {
  color: var(--color-text-primary-dark);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.7;
  margin: 0 0 1rem 0;
  font-weight: 500;
}

.insights-attribution-design-thinking {
  color: var(--color-text-secondary-dark);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-style: normal;
  display: block;
}

.insights-body-design-thinking {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
  max-width: 800px;
  margin: 0 auto;
}

.insights-paragraph-design-thinking {
  color: var(--color-text-secondary-dark);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  margin: 0;
}

.process-section-design-thinking {
  background: var(--color-bg-secondary);
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
}

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

.process-header-design-thinking {
  text-align: center;
}

.process-title-design-thinking {
  color: var(--color-text-primary-light);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

.process-subtitle-design-thinking {
  color: var(--color-text-secondary-light);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.process-steps-design-thinking {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.process-step-design-thinking {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1.5vw, 1.5rem);
  flex: 1 1 240px;
  max-width: 300px;
  background: var(--color-bg-quaternary);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2vw, 2.5rem);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition-base);
}

.process-step-design-thinking:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 212, 255, 0.2);
}

.step-number-design-thinking {
  color: var(--color-primary);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1;
}

.step-title-design-thinking {
  color: var(--color-text-primary-light);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}

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

@media (max-width: 768px) {
  .hero-section-design-thinking {
    padding: 3rem 0;
  }

  .posts-section-design-thinking {
    padding: 3rem 0;
  }

  .insights-section-design-thinking {
    padding: 3rem 0;
  }

  .process-section-design-thinking {
    padding: 3rem 0;
  }

  .posts-grid-design-thinking {
    gap: 1.5rem;
  }

  .card-design-thinking {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .process-steps-design-thinking {
    gap: 1.5rem;
  }

  .process-step-design-thinking {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .card-meta-design-thinking {
    gap: 1rem;
  }
}

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

  .posts-title-design-thinking,
  .process-title-design-thinking,
  .insights-title-design-thinking {
    font-size: 1.5rem;
  }

  .insights-quote-text-design-thinking {
    font-size: 1.125rem;
  }

  .card-title-design-thinking {
    font-size: 1rem;
  }

  .step-number-design-thinking {
    font-size: 2.5rem;
  }

  .step-title-design-thinking {
    font-size: 1.125rem;
  }

  .container {
    padding: 0 var(--space-md);
  }
}

@media (min-width: 1024px) {
  .process-steps-design-thinking {
    gap: clamp(2rem, 4vw, 3rem);
  }

  .process-step-design-thinking {
    flex: 1 1 calc(20% - 2rem);
    max-width: none;
  }
}

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

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

.main-gebruikersonderzoek-methoden {
  width: 100%;
  overflow-x: hidden;
}

.hero-section-gebruikersonderzoek-methoden {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.breadcrumbs-gebruikersonderzoek-methoden {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  flex-wrap: wrap;
}

.breadcrumbs-gebruikersonderzoek-methoden a {
  color: #00d4ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-gebruikersonderzoek-methoden a:hover {
  color: #00a8cc;
  text-decoration: underline;
}

.breadcrumbs-gebruikersonderzoek-methoden span {
  color: #64748b;
}

.hero-wrapper-gebruikersonderzoek-methoden {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-content-gebruikersonderzoek-methoden {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-meta-gebruikersonderzoek-methoden {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
}

.meta-item-gebruikersonderzoek-methoden {
  color: #94a3b8;
}

.meta-divider-gebruikersonderzoek-methoden {
  color: #64748b;
}

.hero-title-gebruikersonderzoek-methoden {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.hero-subtitle-gebruikersonderzoek-methoden {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
}

.hero-image-gebruikersonderzoek-methoden {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-gebruikersonderzoek-methoden {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .hero-wrapper-gebruikersonderzoek-methoden {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-content-gebruikersonderzoek-methoden,
  .hero-image-gebruikersonderzoek-methoden {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-img-gebruikersonderzoek-methoden {
    max-height: 350px;
  }
}

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

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

.intro-text-gebruikersonderzoek-methoden {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-gebruikersonderzoek-methoden {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.intro-paragraph-gebruikersonderzoek-methoden {
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-image-gebruikersonderzoek-methoden {
  flex: 1 1 50%;
  max-width: 50%;
}

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

@media (max-width: 768px) {
  .intro-wrapper-gebruikersonderzoek-methoden {
    flex-direction: column;
    gap: 2rem;
  }

  .intro-text-gebruikersonderzoek-methoden,
  .intro-image-gebruikersonderzoek-methoden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.methods-section-gebruikersonderzoek-methoden {
  background: #1e293b;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.methods-text-gebruikersonderzoek-methoden {
  flex: 1 1 50%;
  max-width: 50%;
}

.methods-title-gebruikersonderzoek-methoden {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.methods-paragraph-gebruikersonderzoek-methoden {
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.methods-list-gebruikersonderzoek-methoden {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.method-item-gebruikersonderzoek-methoden {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.method-number-gebruikersonderzoek-methoden {
  font-size: 2rem;
  font-weight: 800;
  color: #00d4ff;
  flex-shrink: 0;
  min-width: 50px;
}

.method-details-gebruikersonderzoek-methoden {
  flex: 1;
}

.method-name-gebruikersonderzoek-methoden {
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.method-desc-gebruikersonderzoek-methoden {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

.methods-image-gebruikersonderzoek-methoden {
  flex: 1 1 50%;
  max-width: 50%;
}

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

@media (max-width: 768px) {
  .methods-content-gebruikersonderzoek-methoden {
    flex-direction: column;
    gap: 2rem;
  }

  .methods-text-gebruikersonderzoek-methoden,
  .methods-image-gebruikersonderzoek-methoden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.practice-section-gebruikersonderzoek-methoden {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practice-wrapper-gebruikersonderzoek-methoden {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.practice-image-gebruikersonderzoek-methoden {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

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

.practice-text-gebruikersonderzoek-methoden {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-title-gebruikersonderzoek-methoden {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.practice-paragraph-gebruikersonderzoek-methoden {
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .practice-wrapper-gebruikersonderzoek-methoden {
    flex-direction: column;
    gap: 2rem;
  }

  .practice-image-gebruikersonderzoek-methoden,
  .practice-text-gebruikersonderzoek-methoden {
    flex: 1 1 100%;
    max-width: 100%;
    order: initial;
  }
}

.mistakes-section-gebruikersonderzoek-methoden {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.mistakes-content-gebruikersonderzoek-methoden {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.mistakes-title-gebruikersonderzoek-methoden {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #ffffff;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.mistakes-grid-gebruikersonderzoek-methoden {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.mistake-card-gebruikersonderzoek-methoden {
  flex: 1 1 calc(50% - 1rem);
  max-width: 320px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mistake-icon-gebruikersonderzoek-methoden {
  font-size: 2rem;
  line-height: 1;
}

.mistake-heading-gebruikersonderzoek-methoden {
  font-size: 1.15rem;
  color: #ffffff;
  font-weight: 600;
  margin: 0;
}

.mistake-text-gebruikersonderzoek-methoden {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .mistake-card-gebruikersonderzoek-methoden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.implementation-section-gebruikersonderzoek-methoden {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.implementation-text-gebruikersonderzoek-methoden {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-title-gebruikersonderzoek-methoden {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.implementation-paragraph-gebruikersonderzoek-methoden {
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.implementation-steps-gebruikersonderzoek-methoden {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-card-gebruikersonderzoek-methoden {
  background: #f8fafc;
  padding: 1.5rem;
  border-left: 4px solid #00d4ff;
  border-radius: 8px;
}

.step-number-card-gebruikersonderzoek-methoden {
  font-size: 1.1rem;
  font-weight: 700;
  color: #00d4ff;
  margin-bottom: 0.75rem;
  display: block;
}

.step-text-card-gebruikersonderzoek-methoden {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

.implementation-image-gebruikersonderzoek-methoden {
  flex: 1 1 50%;
  max-width: 50%;
}

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

@media (max-width: 768px) {
  .implementation-wrapper-gebruikersonderzoek-methoden {
    flex-direction: column;
    gap: 2rem;
  }

  .implementation-text-gebruikersonderzoek-methoden,
  .implementation-image-gebruikersonderzoek-methoden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.takeaway-section-gebruikersonderzoek-methoden {
  background: #1e293b;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.takeaway-content-gebruikersonderzoek-methoden {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.takeaway-title-gebruikersonderzoek-methoden {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.takeaway-highlight-gebruikersonderzoek-methoden {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-left: 4px solid #00d4ff;
  padding: 2rem;
  border-radius: 8px;
}

.takeaway-text-gebruikersonderzoek-methoden {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.takeaway-text-gebruikersonderzoek-methoden:last-child {
  margin-bottom: 0;
}

.takeaway-boxes-gebruikersonderzoek-methoden {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.key-point-gebruikersonderzoek-methoden {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.key-icon-gebruikersonderzoek-methoden {
  font-size: 1.5rem;
  color: #00d4ff;
  flex-shrink: 0;
  font-weight: 700;
}

.key-content-gebruikersonderzoek-methoden {
  flex: 1;
}

.key-title-gebruikersonderzoek-methoden {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.key-desc-gebruikersonderzoek-methoden {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

.disclaimer-section-gebruikersonderzoek-methoden {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.disclaimer-box-gebruikersonderzoek-methoden {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #94a3b8;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-gebruikersonderzoek-methoden {
  font-size: 1.25rem;
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-gebruikersonderzoek-methoden {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #374151;
  line-height: 1.7;
  margin: 0;
}

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

.related-content-gebruikersonderzoek-methoden {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.related-title-gebruikersonderzoek-methoden {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.related-grid-gebruikersonderzoek-methoden {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-gebruikersonderzoek-methoden {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-gebruikersonderzoek-methoden:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

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

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

.related-body-gebruikersonderzoek-methoden {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.related-card-title-gebruikersonderzoek-methoden {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
  font-weight: 600;
}

.related-card-desc-gebruikersonderzoek-methoden {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.related-link-gebruikersonderzoek-methoden {
  color: #00d4ff;
  text-decoration: none;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-weight: 600;
  transition: color 0.3s ease;
  display: inline-block;
  margin-top: auto;
}

.related-link-gebruikersonderzoek-methoden:hover {
  color: #00a8cc;
  text-decoration: underline;
}

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

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

@media (max-width: 480px) {
  .hero-title-gebruikersonderzoek-methoden {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .intro-title-gebruikersonderzoek-methoden,
  .methods-title-gebruikersonderzoek-methoden,
  .practice-title-gebruikersonderzoek-methoden,
  .implementation-title-gebruikersonderzoek-methoden,
  .takeaway-title-gebruikersonderzoek-methoden {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
  }

  .hero-subtitle-gebruikersonderzoek-methoden,
  .intro-paragraph-gebruikersonderzoek-methoden,
  .methods-paragraph-gebruikersonderzoek-methoden,
  .practice-paragraph-gebruikersonderzoek-methoden,
  .implementation-paragraph-gebruikersonderzoek-methoden,
  .takeaway-text-gebruikersonderzoek-methoden {
    font-size: 0.95rem;
  }
}

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

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

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

.main-vijf-fasen-design-thinking {
  width: 100%;
  overflow: hidden;
}

.hero-section-vijf-fasen-design-thinking {
  background: #0a0f1e;
  padding: clamp(2rem, 8vw, 4rem) 0;
  overflow: hidden;
}

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

.breadcrumbs-vijf-fasen-design-thinking {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs-vijf-fasen-design-thinking a {
  color: #00d4ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-vijf-fasen-design-thinking a:hover {
  color: #00a8cc;
  text-decoration: underline;
}

.breadcrumbs-vijf-fasen-design-thinking span {
  color: #64748b;
}

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

.hero-text-wrapper-vijf-fasen-design-thinking {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-wrapper-vijf-fasen-design-thinking {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-meta-vijf-fasen-design-thinking {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.meta-badge-vijf-fasen-design-thinking {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(0, 212, 255, 0.15);
  color: #00d4ff;
  border-radius: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

.meta-divider-vijf-fasen-design-thinking {
  color: #64748b;
}

.meta-time-vijf-fasen-design-thinking,
.meta-date-vijf-fasen-design-thinking {
  color: #94a3b8;
}

.hero-title-vijf-fasen-design-thinking {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-vijf-fasen-design-thinking {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  line-height: 1.75;
}

.hero-image-vijf-fasen-design-thinking {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .hero-content-vijf-fasen-design-thinking {
    flex-direction: column;
  }
  
  .hero-text-wrapper-vijf-fasen-design-thinking,
  .hero-image-wrapper-vijf-fasen-design-thinking {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .hero-section-vijf-fasen-design-thinking .container {
    padding: 0 clamp(1rem, 3vw, 1.5rem);
  }
}

.intro-section-vijf-fasen-design-thinking {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.intro-content-vijf-fasen-design-thinking {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-text-vijf-fasen-design-thinking {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-wrapper-vijf-fasen-design-thinking {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-heading-vijf-fasen-design-thinking {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-paragraph-vijf-fasen-design-thinking {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #374151;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.intro-image-vijf-fasen-design-thinking {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .intro-content-vijf-fasen-design-thinking {
    flex-direction: column;
  }
  
  .intro-text-vijf-fasen-design-thinking,
  .intro-image-wrapper-vijf-fasen-design-thinking {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .intro-section-vijf-fasen-design-thinking .container {
    padding: 0 clamp(1rem, 3vw, 1.5rem);
  }
}

.phase-one-section-vijf-fasen-design-thinking {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.phase-one-section-vijf-fasen-design-thinking .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block;
}

.phase-one-content-vijf-fasen-design-thinking {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.phase-one-image-wrapper-vijf-fasen-design-thinking {
  flex: 1 1 50%;
  max-width: 50%;
}

.phase-one-text-wrapper-vijf-fasen-design-thinking {
  flex: 1 1 50%;
  max-width: 50%;
}

.phase-step-number-vijf-fasen-design-thinking {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: #00d4ff;
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.phase-one-title-vijf-fasen-design-thinking {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.phase-one-paragraph-vijf-fasen-design-thinking {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #cbd5e1;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.phase-highlight-vijf-fasen-design-thinking {
  background: rgba(0, 212, 255, 0.1);
  border-left: 4px solid #00d4ff;
  padding: 1.25rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.highlight-text-vijf-fasen-design-thinking {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
}

.highlight-text-vijf-fasen-design-thinking strong {
  color: #00d4ff;
}

.phase-one-image-vijf-fasen-design-thinking {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .phase-one-content-vijf-fasen-design-thinking {
    flex-direction: column;
  }
  
  .phase-one-image-wrapper-vijf-fasen-design-thinking,
  .phase-one-text-wrapper-vijf-fasen-design-thinking {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .phase-one-section-vijf-fasen-design-thinking .container {
    padding: 0 clamp(1rem, 3vw, 1.5rem);
  }
}

.phase-two-section-vijf-fasen-design-thinking {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.phase-two-section-vijf-fasen-design-thinking .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block;
}

.phase-two-content-vijf-fasen-design-thinking {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.phase-two-text-wrapper-vijf-fasen-design-thinking {
  flex: 1 1 50%;
  max-width: 50%;
}

.phase-two-image-wrapper-vijf-fasen-design-thinking {
  flex: 1 1 50%;
  max-width: 50%;
}

.phase-two-title-vijf-fasen-design-thinking {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.phase-two-paragraph-vijf-fasen-design-thinking {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #374151;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.phase-two-image-vijf-fasen-design-thinking {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .phase-two-content-vijf-fasen-design-thinking {
    flex-direction: column-reverse;
  }
  
  .phase-two-text-wrapper-vijf-fasen-design-thinking,
  .phase-two-image-wrapper-vijf-fasen-design-thinking {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .phase-two-section-vijf-fasen-design-thinking .container {
    padding: 0 clamp(1rem, 3vw, 1.5rem);
  }
}

.phases-three-four-section-vijf-fasen-design-thinking {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.phases-three-four-section-vijf-fasen-design-thinking .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block;
}

.phases-three-four-content-vijf-fasen-design-thinking {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
}

.phase-three-block-vijf-fasen-design-thinking,
.phase-four-block-vijf-fasen-design-thinking {
  flex: 1 1 50%;
}

.phase-three-title-vijf-fasen-design-thinking,
.phase-four-title-vijf-fasen-design-thinking {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.phase-three-paragraph-vijf-fasen-design-thinking,
.phase-four-paragraph-vijf-fasen-design-thinking {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: #cbd5e1;
  line-height: 1.75;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .phases-three-four-content-vijf-fasen-design-thinking {
    flex-direction: column;
  }
  
  .phase-three-block-vijf-fasen-design-thinking,
  .phase-four-block-vijf-fasen-design-thinking {
    flex: 1 1 100%;
  }
  
  .phases-three-four-section-vijf-fasen-design-thinking .container {
    padding: 0 clamp(1rem, 3vw, 1.5rem);
  }
}

.phase-five-section-vijf-fasen-design-thinking {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.phase-five-section-vijf-fasen-design-thinking .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block;
}

.phase-five-content-vijf-fasen-design-thinking {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.phase-five-text-wrapper-vijf-fasen-design-thinking {
  flex: 1 1 50%;
  max-width: 50%;
}

.phase-five-image-wrapper-vijf-fasen-design-thinking {
  flex: 1 1 50%;
  max-width: 50%;
}

.phase-five-title-vijf-fasen-design-thinking {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.phase-five-paragraph-vijf-fasen-design-thinking {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #374151;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.phase-five-image-vijf-fasen-design-thinking {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .phase-five-content-vijf-fasen-design-thinking {
    flex-direction: column;
  }
  
  .phase-five-text-wrapper-vijf-fasen-design-thinking,
  .phase-five-image-wrapper-vijf-fasen-design-thinking {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .phase-five-section-vijf-fasen-design-thinking .container {
    padding: 0 clamp(1rem, 3vw, 1.5rem);
  }
}

.practical-tips-section-vijf-fasen-design-thinking {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.practical-tips-section-vijf-fasen-design-thinking .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block;
}

.practical-tips-content-vijf-fasen-design-thinking {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.practical-tips-title-vijf-fasen-design-thinking {
  font-size: clamp(1.75rem, 5vw, 3rem);
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

.practical-tips-intro-vijf-fasen-design-thinking {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #cbd5e1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.tips-cards-wrapper-vijf-fasen-design-thinking {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.tip-card-vijf-fasen-design-thinking {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 250px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.tip-card-vijf-fasen-design-thinking:hover {
  background: rgba(0, 212, 255, 0.12);
  border-color: rgba(0, 212, 255, 0.4);
  transform: translateY(-4px);
}

.tip-card-title-vijf-fasen-design-thinking {
  font-size: 1.1rem;
  color: #00d4ff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.3;
}

.tip-card-text-vijf-fasen-design-thinking {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .tip-card-vijf-fasen-design-thinking {
    flex: 1 1 calc(50% - 1.5rem);
  }
}

@media (max-width: 768px) {
  .tip-card-vijf-fasen-design-thinking {
    flex: 1 1 100%;
  }
  
  .practical-tips-section-vijf-fasen-design-thinking .container {
    padding: 0 clamp(1rem, 3vw, 1.5rem);
  }
}

.conclusion-section-vijf-fasen-design-thinking {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.conclusion-content-vijf-fasen-design-thinking {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-vijf-fasen-design-thinking {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

.conclusion-paragraph-vijf-fasen-design-thinking {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #374151;
  line-height: 1.75;
}

.conclusion-image-wrapper-vijf-fasen-design-thinking {
  margin-top: 1rem;
  width: 100%;
}

.conclusion-image-vijf-fasen-design-thinking {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

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

.disclaimer-section-vijf-fasen-design-thinking {
  background: #f8fafc;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.disclaimer-content-vijf-fasen-design-thinking {
  background: #ffffff;
  border-left: 4px solid #64748b;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
  max-width: 800px;
}

.disclaimer-title-vijf-fasen-design-thinking {
  font-size: 1.1rem;
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.disclaimer-text-vijf-fasen-design-thinking {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
}

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

.related-posts-section-vijf-fasen-design-thinking {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.related-posts-section-vijf-fasen-design-thinking .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block;
}

.related-posts-content-vijf-fasen-design-thinking {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

.related-posts-title-vijf-fasen-design-thinking {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

.related-posts-cards-wrapper-vijf-fasen-design-thinking {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-post-card-vijf-fasen-design-thinking {
  flex: 1 1 calc(33.333% - 2rem);
  min-width: 280px;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.related-post-card-vijf-fasen-design-thinking:hover {
  border-color: rgba(0, 212, 255, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.related-post-image-vijf-fasen-design-thinking {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-post-image-img-vijf-fasen-design-thinking {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-post-text-vijf-fasen-design-thinking {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-post-card-title-vijf-fasen-design-thinking {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.3;
}

.related-post-card-text-vijf-fasen-design-thinking {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.6;
  flex-grow: 1;
}

.related-post-link-vijf-fasen-design-thinking {
  display: inline-block;
  color: #00d4ff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  margin-top: 0.5rem;
}

.related-post-link-vijf-fasen-design-thinking:hover {
  color: #00a8cc;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-post-card-vijf-fasen-design-thinking {
    flex: 1 1 calc(50% - 1.5rem);
  }
}

@media (max-width: 768px) {
  .related-post-card-vijf-fasen-design-thinking {
    flex: 1 1 100%;
  }
  
  .related-posts-section-vijf-fasen-design-thinking .container {
    padding: 0 clamp(1rem, 3vw, 1.5rem);
  }
}

@media (max-width: 480px) {
  .hero-title-vijf-fasen-design-thinking {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }
  
  .phase-step-number-vijf-fasen-design-thinking {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  
  .intro-heading-vijf-fasen-design-thinking,
  .phase-one-title-vijf-fasen-design-thinking,
  .phase-two-title-vijf-fasen-design-thinking,
  .phase-five-title-vijf-fasen-design-thinking {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
  }
}

.main-itereren-op-feedback {
  width: 100%;
  overflow-x: hidden;
}

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

.breadcrumbs-itereren-op-feedback {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: #94a3b8;
}

.breadcrumbs-itereren-op-feedback a {
  color: #00d4ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-itereren-op-feedback a:hover {
  color: #00a8cc;
  text-decoration: underline;
}

.breadcrumbs-itereren-op-feedback span {
  color: #64748b;
}

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

.hero-text-itereren-op-feedback {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-itereren-op-feedback {
  font-size: clamp(1.75rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle-itereren-op-feedback {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-meta-itereren-op-feedback {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.meta-item-itereren-op-feedback {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #94a3b8;
  font-size: 0.95rem;
}

.meta-item-itereren-op-feedback i {
  color: #00d4ff;
  font-size: 1rem;
}

.hero-image-itereren-op-feedback {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-itereren-op-feedback {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

@media (max-width: 768px) {
  .hero-content-itereren-op-feedback {
    flex-direction: column;
  }

  .hero-text-itereren-op-feedback,
  .hero-image-itereren-op-feedback {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-meta-itereren-op-feedback {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.intro-section-itereren-op-feedback {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-itereren-op-feedback {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-itereren-op-feedback {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.intro-paragraph-itereren-op-feedback {
  font-size: 1rem;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.intro-image-itereren-op-feedback {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-itereren-op-feedback img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-content-itereren-op-feedback {
    flex-direction: column;
  }

  .intro-text-itereren-op-feedback,
  .intro-image-itereren-op-feedback {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.cycle-section-itereren-op-feedback {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.cycle-content-itereren-op-feedback {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.cycle-text-itereren-op-feedback {
  flex: 1 1 50%;
  max-width: 50%;
}

.cycle-title-itereren-op-feedback {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.cycle-paragraph-itereren-op-feedback {
  font-size: 1rem;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.cycle-steps-itereren-op-feedback {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.step-card-itereren-op-feedback {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.step-card-itereren-op-feedback:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.step-number-itereren-op-feedback {
  font-size: 2.5rem;
  font-weight: 800;
  color: #00d4ff;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.step-title-itereren-op-feedback {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.step-text-itereren-op-feedback {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

.cycle-image-itereren-op-feedback {
  flex: 1 1 50%;
  max-width: 50%;
}

.cycle-image-itereren-op-feedback img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .cycle-content-itereren-op-feedback {
    flex-direction: column;
  }

  .cycle-text-itereren-op-feedback,
  .cycle-image-itereren-op-feedback {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .cycle-steps-itereren-op-feedback {
    grid-template-columns: 1fr;
  }
}

.methods-section-itereren-op-feedback {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.methods-header-itereren-op-feedback {
  text-align: center;
  margin-bottom: 3rem;
}

.methods-title-itereren-op-feedback {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.methods-subtitle-itereren-op-feedback {
  font-size: 1rem;
  color: #374151;
  max-width: 600px;
  margin: 0 auto;
}

.methods-cards-itereren-op-feedback {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.method-card-itereren-op-feedback {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 280px;
  max-width: 360px;
  background: #f8fafc;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: all 0.3s ease;
}

.method-card-itereren-op-feedback:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: #00d4ff;
}

.method-icon-itereren-op-feedback {
  font-size: 2.5rem;
  color: #00d4ff;
  margin-bottom: 1rem;
}

.method-name-itereren-op-feedback {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.method-desc-itereren-op-feedback {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .method-card-itereren-op-feedback {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.analysis-section-itereren-op-feedback {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.analysis-content-itereren-op-feedback {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.analysis-image-itereren-op-feedback {
  flex: 1 1 50%;
  max-width: 50%;
}

.analysis-image-itereren-op-feedback img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.analysis-text-itereren-op-feedback {
  flex: 1 1 50%;
  max-width: 50%;
}

.analysis-title-itereren-op-feedback {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.analysis-paragraph-itereren-op-feedback {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.analysis-highlight-itereren-op-feedback {
  background: rgba(0, 212, 255, 0.1);
  border-left: 4px solid #00d4ff;
  padding: 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  color: #e0e7ff;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .analysis-content-itereren-op-feedback {
    flex-direction: column;
  }

  .analysis-image-itereren-op-feedback,
  .analysis-text-itereren-op-feedback {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.quote-section-itereren-op-feedback {
  background: #1e293b;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.featured-quote-itereren-op-feedback {
  background: rgba(0, 212, 255, 0.08);
  border-left: 4px solid #00d4ff;
  padding: 2.5rem;
  border-radius: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.quote-text-itereren-op-feedback {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.quote-author-itereren-op-feedback {
  display: block;
  font-size: 0.95rem;
  color: #94a3b8;
  font-style: normal;
}

.implementation-section-itereren-op-feedback {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.implementation-text-itereren-op-feedback {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-title-itereren-op-feedback {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.implementation-paragraph-itereren-op-feedback {
  font-size: 1rem;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.implementation-image-itereren-op-feedback {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-image-itereren-op-feedback img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .implementation-content-itereren-op-feedback {
    flex-direction: column;
  }

  .implementation-text-itereren-op-feedback,
  .implementation-image-itereren-op-feedback {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-itereren-op-feedback {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-itereren-op-feedback {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-itereren-op-feedback {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  text-align: center;
}

.conclusion-text-itereren-op-feedback {
  font-size: 1rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: left;
}

.conclusion-cta-itereren-op-feedback {
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  color: #0a0f1e;
  margin-top: 3rem;
}

.cta-title-itereren-op-feedback {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0a0f1e;
  margin-bottom: 0.75rem;
}

.cta-text-itereren-op-feedback {
  font-size: 1rem;
  color: #0a0f1e;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cta-button-itereren-op-feedback {
  display: inline-block;
  background: #0a0f1e;
  color: #00d4ff;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button-itereren-op-feedback:hover {
  background: #1e293b;
  transform: translateY(-2px);
}

.related-section-itereren-op-feedback {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-itereren-op-feedback {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-itereren-op-feedback {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.related-subtitle-itereren-op-feedback {
  font-size: 1rem;
  color: #374151;
}

.related-cards-itereren-op-feedback {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-itereren-op-feedback {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 280px;
  max-width: 380px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-itereren-op-feedback:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: #00d4ff;
}

.related-image-itereren-op-feedback {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-image-itereren-op-feedback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-itereren-op-feedback:hover .related-image-itereren-op-feedback img {
  transform: scale(1.05);
}

.related-info-itereren-op-feedback {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-itereren-op-feedback {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
}

.related-card-desc-itereren-op-feedback {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
}

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

.disclaimer-section-itereren-op-feedback {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-itereren-op-feedback {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-itereren-op-feedback {
  font-size: 1.2rem;
  font-weight: 600;
  color: #00d4ff;
  margin-bottom: 1rem;
}

.disclaimer-text-itereren-op-feedback {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.7;
  padding: 1.5rem;
  border-left: 3px solid #00d4ff;
  background: rgba(0, 212, 255, 0.05);
  border-radius: 8px;
}

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

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

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

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

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

.main-snel-prototypen-methoden {
  width: 100%;
  overflow: hidden;
}

.hero-section-snel-prototypen-methoden {
  background: linear-gradient(135deg, #0a0f1e 0%, #0f172a 100%);
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.breadcrumbs-snel-prototypen-methoden a {
  color: #00d4ff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.breadcrumbs-snel-prototypen-methoden a:hover {
  opacity: 0.7;
}

.breadcrumb-separator-snel-prototypen-methoden {
  color: #64748b;
}

.breadcrumb-current-snel-prototypen-methoden {
  color: #94a3b8;
}

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

.hero-text-block-snel-prototypen-methoden {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-snel-prototypen-methoden {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-snel-prototypen-methoden {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #cbd5e1;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.6;
}

.hero-meta-snel-prototypen-methoden {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.meta-item-snel-prototypen-methoden {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #94a3b8;
}

.meta-item-snel-prototypen-methoden i {
  color: #00d4ff;
  font-size: 1rem;
}

.hero-image-block-snel-prototypen-methoden {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-snel-prototypen-methoden {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
}

@media (max-width: 768px) {
  .hero-content-snel-prototypen-methoden {
    flex-direction: column;
  }

  .hero-text-block-snel-prototypen-methoden,
  .hero-image-block-snel-prototypen-methoden {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-title-snel-prototypen-methoden {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .hero-subtitle-snel-prototypen-methoden {
    font-size: 1rem;
  }
}

.intro-section-snel-prototypen-methoden {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.intro-text-block-snel-prototypen-methoden {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-text-snel-prototypen-methoden {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #374151;
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.intro-image-block-snel-prototypen-methoden {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-snel-prototypen-methoden {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-content-snel-prototypen-methoden {
    flex-direction: column;
  }

  .intro-text-block-snel-prototypen-methoden,
  .intro-image-block-snel-prototypen-methoden {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-title-snel-prototypen-methoden {
    font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  }
}

.process-section-snel-prototypen-methoden {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.process-section-snel-prototypen-methoden .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.process-content-snel-prototypen-methoden {
  display: flex;
  flex-direction: column;
}

.process-header-snel-prototypen-methoden {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.process-title-snel-prototypen-methoden {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.process-subtitle-snel-prototypen-methoden {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #64748b;
  line-height: 1.6;
}

.steps-grid-snel-prototypen-methoden {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.step-card-snel-prototypen-methoden {
  flex: 1 1 calc(50% - 1.25rem);
  min-width: 250px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.step-card-snel-prototypen-methoden:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

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

.step-card-content-snel-prototypen-methoden {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-title-snel-prototypen-methoden {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.step-text-snel-prototypen-methoden {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .step-card-snel-prototypen-methoden {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-number-snel-prototypen-methoden {
    font-size: 2rem;
    min-width: 50px;
  }
}

.methods-section-snel-prototypen-methoden {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.methods-section-snel-prototypen-methoden .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.methods-text-block-snel-prototypen-methoden {
  flex: 1 1 50%;
  max-width: 50%;
}

.methods-title-snel-prototypen-methoden {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.methods-text-snel-prototypen-methoden {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #374151;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.8;
}

.methods-list-snel-prototypen-methoden {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.method-item-snel-prototypen-methoden {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.method-item-snel-prototypen-methoden:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.method-name-snel-prototypen-methoden {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.method-desc-snel-prototypen-methoden {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
}

.methods-image-block-snel-prototypen-methoden {
  flex: 1 1 50%;
  max-width: 50%;
}

.methods-image-snel-prototypen-methoden {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .methods-content-snel-prototypen-methoden {
    flex-direction: column;
  }

  .methods-text-block-snel-prototypen-methoden,
  .methods-image-block-snel-prototypen-methoden {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .methods-title-snel-prototypen-methoden {
    font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  }
}

.testing-section-snel-prototypen-methoden {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.testing-section-snel-prototypen-methoden .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.testing-image-block-snel-prototypen-methoden {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.testing-image-snel-prototypen-methoden {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
}

.testing-text-block-snel-prototypen-methoden {
  flex: 1 1 50%;
  max-width: 50%;
}

.testing-title-snel-prototypen-methoden {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.testing-text-snel-prototypen-methoden {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #cbd5e1;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.8;
}

.testing-tips-snel-prototypen-methoden {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.tip-box-snel-prototypen-methoden {
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid #00d4ff;
  padding: 1.25rem;
  border-radius: 8px;
}

.tip-text-snel-prototypen-methoden {
  font-size: 0.95rem;
  color: #e2e8f0;
  line-height: 1.7;
}

.tip-text-snel-prototypen-methoden strong {
  color: #00d4ff;
  font-weight: 600;
}

@media (max-width: 768px) {
  .testing-content-snel-prototypen-methoden {
    flex-direction: column;
  }

  .testing-text-block-snel-prototypen-methoden,
  .testing-image-block-snel-prototypen-methoden {
    flex: 1 1 100%;
    max-width: 100%;
    order: initial;
  }

  .testing-title-snel-prototypen-methoden {
    font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  }
}

.insights-section-snel-prototypen-methoden {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.insights-section-snel-prototypen-methoden .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.insights-content-snel-prototypen-methoden {
  display: flex;
  flex-direction: column;
}

.insights-title-snel-prototypen-methoden {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.insights-intro-snel-prototypen-methoden {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #64748b;
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  line-height: 1.6;
}

.insights-grid-snel-prototypen-methoden {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.insight-card-snel-prototypen-methoden {
  flex: 1 1 calc(33.333% - 1.67rem);
  min-width: 250px;
  max-width: 320px;
  background: #ffffff;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.insight-card-snel-prototypen-methoden:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.insight-card-title-snel-prototypen-methoden {
  font-size: 1.15rem;
  font-weight: 600;
  color: #0f172a;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.insight-card-text-snel-prototypen-methoden {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .insight-card-snel-prototypen-methoden {
    flex: 1 1 calc(50% - 0.75rem);
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .insight-card-snel-prototypen-methoden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.highlight-section-snel-prototypen-methoden {
  background: linear-gradient(135deg, #0a0f1e 0%, #0f172a 100%);
  color: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.highlight-section-snel-prototypen-methoden .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.highlight-content-snel-prototypen-methoden {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.featured-quote-snel-prototypen-methoden {
  max-width: 700px;
  margin: 0 auto;
}

.quote-text-snel-prototypen-methoden {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-style: italic;
  color: #ffffff;
  line-height: 1.8;
  font-weight: 500;
}

.practical-section-snel-prototypen-methoden {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practical-section-snel-prototypen-methoden .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.practical-text-block-snel-prototypen-methoden {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-title-snel-prototypen-methoden {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.practical-text-snel-prototypen-methoden {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #374151;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.8;
}

.practical-checklist-snel-prototypen-methoden {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checklist-item-snel-prototypen-methoden {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.checkbox-snel-prototypen-methoden {
  flex-shrink: 0;
  font-size: 1.5rem;
  color: #00d4ff;
  font-weight: bold;
  margin-top: 2px;
}

.checklist-text-snel-prototypen-methoden {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.7;
}

.checklist-text-snel-prototypen-methoden strong {
  color: #0f172a;
  font-weight: 600;
}

.practical-image-block-snel-prototypen-methoden {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-image-snel-prototypen-methoden {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .practical-content-snel-prototypen-methoden {
    flex-direction: column;
  }

  .practical-text-block-snel-prototypen-methoden,
  .practical-image-block-snel-prototypen-methoden {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .practical-title-snel-prototypen-methoden {
    font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  }
}

.conclusion-section-snel-prototypen-methoden {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.conclusion-content-snel-prototypen-methoden {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.conclusion-title-snel-prototypen-methoden {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-text-snel-prototypen-methoden {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #374151;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.conclusion-cta-snel-prototypen-methoden {
  background: #ffffff;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.cta-text-snel-prototypen-methoden {
  font-size: 1rem;
  color: #0f172a;
  line-height: 1.8;
  font-weight: 500;
}

.disclaimer-section-snel-prototypen-methoden {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

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

.disclaimer-content-snel-prototypen-methoden {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.disclaimer-box-snel-prototypen-methoden {
  background: #f8fafc;
  border-left: 4px solid #64748b;
  border-radius: 8px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 700px;
}

.disclaimer-title-snel-prototypen-methoden {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.disclaimer-text-snel-prototypen-methoden {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.7;
}

.related-section-snel-prototypen-methoden {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.related-content-snel-prototypen-methoden {
  display: flex;
  flex-direction: column;
}

.related-title-snel-prototypen-methoden {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-card-snel-prototypen-methoden {
  flex: 1 1 calc(33.333% - 1.67rem);
  min-width: 280px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.related-card-snel-prototypen-methoden:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.related-card-image-snel-prototypen-methoden {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-img-snel-prototypen-methoden {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-body-snel-prototypen-methoden {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.related-card-title-snel-prototypen-methoden {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-text-snel-prototypen-methoden {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-snel-prototypen-methoden {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #00d4ff;
  text-decoration: none;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

.related-card-link-snel-prototypen-methoden:hover {
  gap: 1rem;
  color: #00a8cc;
}

@media (max-width: 1024px) {
  .related-card-snel-prototypen-methoden {
    flex: 1 1 calc(50% - 0.75rem);
    max-width: 100%;
  }
}

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

  .related-title-snel-prototypen-methoden {
    font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  }
}

@media (max-width: 480px) {
  .step-card-snel-prototypen-methoden {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-snel-prototypen-methoden {
    font-size: 2rem;
    text-align: center;
    width: 100%;
  }

  .step-card-content-snel-prototypen-methoden {
    width: 100%;
  }

  .insight-card-snel-prototypen-methoden {
    flex: 1 1 100%;
  }

  .conclusion-content-snel-prototypen-methoden {
    padding: 0 clamp(0.5rem, 2vw, 1rem);
  }
}

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

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: var(--font-primary);
    background: var(--color-bg-primary);
    color: var(--color-text-primary-dark);
  }

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

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

  .methodology-innovation-about {
    background: var(--color-bg-primary);
    color: var(--color-text-primary-dark);
    overflow: hidden;
  }

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

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

  .hero-title-about {
    font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
  }

  .hero-subtitle-about {
    font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
    color: var(--color-text-secondary-dark);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
  }

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

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

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

  .stat-number-about {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--color-primary);
  }

  .stat-label-about {
    font-size: 0.875rem;
    color: var(--color-text-secondary-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

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

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

  .section-header-about {
    text-align: center;
  }

  .section-tag-about {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(var(--color-primary-rgb, 0, 212, 255), 0.1);
    color: var(--color-primary);
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
  }

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

  .section-subtitle-about {
    font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
    color: var(--color-text-secondary-dark);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
  }

  .foundation-text-about {
    font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
    color: var(--color-text-secondary-dark);
    line-height: 1.8;
    margin-top: 1.5rem;
  }

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

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

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

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

  .step-title-about {
    font-size: clamp(1.15rem, 2vw + 0.5rem, 1.4rem);
    font-weight: 700;
    color: #ffffff;
  }

  .step-text-about {
    font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
    color: var(--color-text-secondary-dark);
    line-height: 1.7;
  }

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

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

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

  .expertise-card-about {
    flex: 1 1 280px;
    max-width: 380px;
    background: var(--color-bg-tertiary);
    padding: clamp(1.5rem, 2vw, 2rem);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all var(--transition-base);
  }

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

  .card-icon-about {
    font-size: 2.5rem;
    color: var(--color-primary);
  }

  .card-title-about {
    font-size: clamp(1.05rem, 1.5vw + 0.5rem, 1.3rem);
    font-weight: 700;
    color: #ffffff;
  }

  .card-text-about {
    font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
    color: var(--color-text-secondary-dark);
    line-height: 1.6;
  }

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

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

  .story-split-about {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: center;
  }

  .story-text-block-about {
    flex: 1 1 100%;
  }

  .story-image-about {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
  }

  .story-paragraph-about {
    font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
    color: var(--color-text-secondary-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }

  .story-paragraph-about:last-child {
    margin-bottom: 0;
  }

  .featured-quote-about {
    background: var(--color-bg-primary);
    padding: clamp(2rem, 3vw, 2.5rem);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-md);
    margin: 2rem 0;
    font-style: italic;
  }

  .quote-text-about {
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.2rem);
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 1rem;
  }

  .quote-author-about {
    font-size: 0.95rem;
    color: var(--color-text-secondary-dark);
    display: block;
    font-style: normal;
  }

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

  .quote-container-about {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
    align-items: center;
  }

  .cta-section-about {
    background: linear-gradient(135deg, var(--color-primary), #0099cc);
    padding: clamp(3rem, 6vw, 4rem);
    border-radius: var(--radius-xl);
    text-align: center;
    margin: clamp(2rem, 4vw, 3rem) 0;
  }

  .cta-title-about {
    font-size: clamp(1.4rem, 3vw + 0.5rem, 2rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
  }

  .cta-text-about {
    font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  .btn-about {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #ffffff;
    color: var(--color-primary);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    transition: all var(--transition-base);
  }

  .btn-about:hover {
    opacity: 0.9;
    transform: translateY(-2px);
  }

  .disclaimer-section-about {
    background: var(--color-bg-primary);
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    border-top: 1px solid var(--color-bg-tertiary);
    overflow: hidden;
  }

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

  .disclaimer-header-about {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: flex-start;
  }

  .disclaimer-icon-about {
    font-size: 1.5rem;
    color: var(--color-primary);
    flex-shrink: 0;
  }

  .disclaimer-title-about {
    font-size: clamp(1.1rem, 2vw + 0.5rem, 1.35rem);
    font-weight: 700;
    color: #ffffff;
  }

  .disclaimer-text-about {
    font-size: clamp(0.85rem, 0.9vw + 0.4rem, 0.95rem);
    color: var(--color-text-secondary-dark);
    line-height: 1.7;
  }

  @media (max-width: 768px) {
    .hero-section-about {
      padding: 2.5rem 0;
    }

    .hero-title-about {
      margin-bottom: 1rem;
    }

    .process-step-about {
      flex-direction: column;
      gap: 1rem;
    }

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

    .story-split-about {
      flex-direction: column;
    }

    .story-text-block-about {
      order: 2;
    }

    .story-image-about {
      order: 1;
    }

    .disclaimer-header-about {
      flex-direction: column;
      gap: 0.75rem;
    }
  }

  @media (min-width: 769px) and (max-width: 1024px) {
    .hero-stats-about {
      gap: 2rem;
    }

    .expertise-card-about {
      flex: 1 1 calc(50% - 1rem);
    }

    .story-split-about {
      flex-direction: row;
    }

    .story-text-block-about {
      flex: 1 1 50%;
    }

    .story-image-about {
      flex: 1 1 50%;
    }
  }

  @media (min-width: 1025px) {
    .story-split-about {
      flex-direction: row;
      gap: clamp(3rem, 4vw, 4rem);
      align-items: center;
    }

    .story-text-block-about {
      flex: 1 1 55%;
    }

    .story-image-about {
      flex: 1 1 45%;
    }

    .expertise-card-about {
      flex: 1 1 calc(33.333% - 1.35rem);
    }
  }

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

.portfolio-hero {
  background-color: var(--color-bg-primary);
  padding: 3rem var(--space-sm);
  overflow: hidden;
}

.portfolio-hero-container {
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: var(--color-primary);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
  line-height: 1.1;
}

.portfolio-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary-dark);
  margin: 0;
  line-height: 1.6;
  max-width: 700px;
}

.portfolio-projects {
  background-color: var(--color-bg-primary);
  padding: 3rem var(--space-sm);
  overflow: hidden;
}

.portfolio-projects-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.portfolio-card {
  background-color: var(--color-bg-card-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.1);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  border-color: var(--color-primary);
  background-color: rgba(0, 212, 255, 0.03);
}

.portfolio-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: var(--color-bg-tertiary);
}

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

.portfolio-card-content {
  padding: var(--space-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.portfolio-card-tag {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.05em;
}

.portfolio-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary-dark);
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.3;
  font-weight: 700;
}

.portfolio-card-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1rem);
  color: var(--color-text-secondary-dark);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.6;
  flex-grow: 1;
}

.portfolio-card-detail {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  color: var(--color-text-muted-dark);
  font-weight: 500;
}

.portfolio-cta {
  background-color: var(--color-bg-tertiary);
  padding: 3rem var(--space-sm);
  overflow: hidden;
}

.portfolio-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  color: var(--color-text-primary-dark);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
  line-height: 1.2;
}

.portfolio-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-dark);
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.6;
}

.portfolio-cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
  cursor: pointer;
}

.portfolio-cta-button:hover {
  background-color: transparent;
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .portfolio-hero {
    padding: 4rem var(--space-lg);
  }

  .portfolio-projects {
    padding: 4rem var(--space-lg);
  }

  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

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

  .portfolio-card-image {
    height: 250px;
  }

  .portfolio-cta {
    padding: 4rem var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-hero {
    padding: 5rem var(--space-2xl);
  }

  .portfolio-projects {
    padding: 5rem var(--space-2xl);
  }

  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .portfolio-card-image {
    height: 280px;
  }

  .portfolio-cta {
    padding: 5rem var(--space-2xl);
  }

  .portfolio-cta-container {
    max-width: 800px;
  }
}

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

.services-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
  border-bottom: 1px solid var(--color-bg-card-dark);
}

.services-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  text-align: center;
}

.services-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--color-text-primary-dark);
  margin: 0 0 var(--space-sm) 0;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.services-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  color: var(--color-text-secondary-dark);
  margin: 0;
  font-weight: 400;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .services-hero {
    padding: var(--space-3xl) 0;
  }
}

.services-content {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.services-content__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

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

@media (min-width: 768px) {
  .services-content {
    padding: var(--space-3xl) 0;
  }

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

@media (min-width: 1024px) {
  .services-content {
    padding: var(--space-4xl) 0;
  }

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

.service-card {
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  background-color: rgba(0, 212, 255, 0.05);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.service-card__icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  display: inline-flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 212, 255, 0.1);
  border-radius: var(--radius-lg);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--color-text-primary-dark);
  margin: 0 0 var(--space-sm) 0;
  font-weight: 700;
  line-height: 1.3;
}

.service-card__description {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary-dark);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.6;
  flex-grow: 1;
}

.service-card__topics {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.service-card__topics li {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
  color: var(--color-text-muted-dark);
  padding-left: var(--space-md);
  position: relative;
}

.service-card__topics li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 600;
}

.services-cta {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-bg-card-dark);
}

.services-cta__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  text-align: center;
}

.services-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--color-text-primary-dark);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
  line-height: 1.3;
}

.services-cta__text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--color-text-secondary-dark);
  margin: 0 0 var(--space-xl) 0;
  line-height: 1.6;
}

.services-cta__button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 600;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid var(--color-primary);
}

.services-cta__button:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.25);
}

@media (min-width: 768px) {
  .services-cta {
    padding: var(--space-3xl) 0;
  }
}

@media (min-width: 1024px) {
  .services-cta {
    padding: var(--space-4xl) 0;
  }
}

@media (max-width: 640px) {
  .services-hero__container {
    padding: 0 var(--space-md);
  }

  .services-content__container {
    padding: 0 var(--space-md);
  }

  .services-cta__container {
    padding: 0 var(--space-md);
  }

  .service-card {
    padding: var(--space-lg);
  }
}

.policy-framework {
  background-color: var(--color-bg-secondary);
  color: var(--color-text-primary-light);
  font-family: var(--font-primary);
  min-height: 100vh;
  padding: var(--space-lg) var(--space-md);
}

.policy-framework .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.policy-framework .content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-framework h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary-light);
  margin: var(--space-2xl) 0 var(--space-md) 0;
  line-height: 1.3;
}

.policy-framework .last-updated {
  font-size: clamp(0.85rem, 0.9vw + 0.5rem, 1rem);
  color: var(--color-text-secondary-light);
  margin-bottom: var(--space-xl);
  font-weight: 500;
}

.policy-framework h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary-light);
  margin: var(--space-2xl) 0 var(--space-md) 0;
  margin-top: var(--space-2xl);
  line-height: 1.4;
}

.policy-framework p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.7;
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-md);
}

.policy-framework ul,
.policy-framework ol {
  margin: var(--space-md) 0 var(--space-md) var(--space-xl);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary-light);
  line-height: 1.8;
}

.policy-framework li {
  margin-bottom: var(--space-sm);
}

.policy-framework .intro-paragraph {
  font-size: clamp(0.95rem, 1.05vw + 0.5rem, 1.15rem);
  color: var(--color-text-primary-light);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.policy-framework .section {
  margin-bottom: var(--space-2xl);
}

.policy-framework .contact-section {
  background-color: var(--color-bg-quaternary);
  padding: var(--space-lg) var(--space-md);
  border-radius: var(--radius-lg);
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-2xl);
}

.policy-framework .contact-section h2 {
  margin-top: 0;
  color: var(--color-text-primary-light);
}

.policy-framework .contact-section p {
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-sm);
}

.policy-framework .contact-section strong {
  font-weight: 600;
  color: var(--color-text-primary-light);
}

.policy-framework .content-wrapper {
  padding: var(--space-2xl) 0;
}

@media (min-width: 768px) {
  .policy-framework {
    padding: var(--space-xl) var(--space-lg);
  }

  .policy-framework .content {
    margin: 0 auto;
  }

  .policy-framework h1 {
    margin: var(--space-3xl) 0 var(--space-lg) 0;
  }

  .policy-framework h2 {
    margin-top: var(--space-3xl);
  }

  .policy-framework .contact-section {
    padding: var(--space-2xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .policy-framework {
    padding: var(--space-2xl) var(--space-xl);
  }

  .policy-framework .content-wrapper {
    padding: var(--space-3xl) 0;
  }
}

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

html, body {
  width: 100%;
  height: 100%;
}

.thank-you-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.thank-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  min-height: 100vh;
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

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

.content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.thank-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-lg);
  background-color: var(--color-bg-card-dark);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 212, 255, 0.1);
}

.success-icon {
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: successPulse 0.8s ease-out;
}

.success-icon svg {
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3));
}

@keyframes successPulse {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.thank-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.thank-lead {
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-lg);
  font-weight: 600;
  line-height: 1.6;
}

.thank-message {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--color-text-secondary-dark);
  margin-bottom: var(--space-md);
  line-height: 1.8;
  letter-spacing: 0.3px;
}

.thank-next-steps {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: var(--color-text-muted-dark);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
  letter-spacing: 0.2px;
}

.btn-return {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  font-weight: 600;
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid var(--color-primary);
  box-shadow: var(--shadow-md);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

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

.btn-return:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

@media (max-width: 640px) {
  .thank-section {
    padding: var(--space-md);
    min-height: auto;
  }

  .container {
    padding: 0 var(--space-md);
  }

  .thank-wrapper {
    padding: var(--space-md);
    border-radius: var(--radius-lg);
  }

  .success-icon {
    margin-bottom: var(--space-md);
  }

  .success-icon svg {
    width: 100px;
    height: 100px;
  }

  .thank-title {
    margin-bottom: var(--space-sm);
  }

  .thank-lead {
    margin-bottom: var(--space-md);
  }

  .thank-message {
    margin-bottom: var(--space-md);
  }

  .thank-next-steps {
    margin-bottom: var(--space-lg);
  }

  .btn-return {
    padding: var(--space-sm) var(--space-lg);
    width: 100%;
  }
}

@media (min-width: 641px) and (max-width: 1023px) {
  .thank-section {
    padding: var(--space-xl);
    min-height: 100vh;
  }

  .container {
    padding: 0 var(--space-lg);
  }

  .thank-wrapper {
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
  }

  .success-icon {
    margin-bottom: var(--space-lg);
  }

  .success-icon svg {
    width: 110px;
    height: 110px;
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--space-2xl);
    min-height: 100vh;
  }

  .container {
    padding: 0 var(--space-xl);
  }

  .thank-wrapper {
    padding: var(--space-2xl);
    border-radius: var(--radius-2xl);
  }

  .success-icon {
    margin-bottom: var(--space-xl);
  }

  .btn-return {
    width: auto;
    padding: var(--space-md) var(--space-2xl);
  }

  .btn-return:hover {
    transform: translateY(-3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .success-icon {
    animation: none;
  }

  .btn-return {
    transition: none;
  }

  .btn-return:hover {
    transform: none;
  }
}

@media (prefers-color-scheme: light) {
  .thank-you-page {
    background-color: var(--color-bg-secondary);
  }

  .thank-section {
    background-color: var(--color-bg-secondary);
  }

  .thank-wrapper {
    background-color: var(--color-bg-quaternary);
    border-color: rgba(0, 212, 255, 0.15);
  }

  .thank-title {
    color: var(--color-primary);
  }

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

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

  .thank-next-steps {
    color: var(--color-text-muted-light);
  }

  .btn-return {
    color: var(--color-bg-secondary);
    background-color: var(--color-primary);
    border-color: var(--color-primary);
  }

  .btn-return:hover {
    background-color: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
  }
}

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

html, body {
  width: 100%;
  height: 100%;
}

body {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary-dark);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.7;
}

.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  padding: var(--space-md);
}

.error-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.error-visual {
  margin-bottom: var(--space-3xl);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.error-code-wrapper {
  position: relative;
  display: inline-block;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
  animation: float-in 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  opacity: 0;
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.error-decoration {
  position: absolute;
  width: 120%;
  height: 120%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-ring 3s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.3;
  }
}

.error-message {
  animation: fade-in-up 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
  opacity: 0;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-md);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.error-description {
  color: var(--color-text-secondary-dark);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.error-subtitle {
  color: var(--color-text-muted-dark);
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: var(--space-lg);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary-hover);
  transition: left var(--transition-base);
  z-index: -1;
}

.btn-primary:hover {
  color: var(--color-bg-primary);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
  transform: translateY(-2px);
}

.btn-primary:hover::before {
  left: 0;
}

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

@media (min-width: 768px) {
  .error-page {
    padding: var(--space-lg);
  }

  .error-visual {
    margin-bottom: var(--space-4xl);
  }

  .error-code {
    font-size: clamp(5rem, 15vw, 8rem);
  }

  .error-description {
    margin-bottom: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--space-lg);
  }

  .error-code {
    font-size: 8rem;
  }

  .error-title {
    font-size: 2.5rem;
  }

  .error-description {
    font-size: 1.125rem;
    margin-bottom: var(--space-2xl);
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-code,
  .error-message,
  .error-decoration {
    animation: none;
  }

  .btn-primary::before {
    transition: none;
  }

  .btn-primary:hover {
    transform: none;
  }
}

.contact-page-feedback {
  width: 100%;
}

.contact-feedback-hero {
  background-color: var(--color-bg-primary);
  padding: 3rem 0;
  overflow: hidden;
}

.contact-feedback-hero-content {
  padding: 0 var(--space-md);
}

.contact-feedback-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: var(--color-primary);
  font-weight: 700;
  margin: 0 0 var(--space-md) 0;
  line-height: 1.2;
}

.contact-feedback-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.2vw + 0.4rem, 1.1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
  margin: 0;
  max-width: 600px;
}

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

  .contact-feedback-hero-content {
    padding: 0 var(--space-lg);
  }
}

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

  .contact-feedback-hero-content {
    padding: 0 var(--space-xl);
  }
}

.contact-feedback-main {
  background-color: var(--color-bg-secondary);
  padding: 3rem 0;
  overflow: hidden;
}

.contact-feedback-main-content {
  padding: 0 var(--space-md);
}

.contact-feedback-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
}

.contact-feedback-form-wrapper {
  flex: 1 1 100%;
}

.contact-feedback-info-wrapper {
  flex: 1 1 100%;
}

.contact-feedback-form-header {
  margin-bottom: 2rem;
}

.contact-feedback-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-primary-light);
  font-weight: 700;
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.3;
}

.contact-feedback-form-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary-light);
  line-height: 1.6;
  margin: 0;
}

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

.contact-feedback-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.contact-feedback-label {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-primary-light);
  display: block;
}

.contact-feedback-input,
.contact-feedback-textarea {
  font-family: var(--font-primary);
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: var(--color-bg-quaternary);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  color: var(--color-text-primary-light);
  font-size: clamp(0.9rem, 1vw, 1rem);
  transition: border-color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
  box-sizing: border-box;
}

.contact-feedback-input::placeholder,
.contact-feedback-textarea::placeholder {
  color: var(--color-text-muted-light);
}

.contact-feedback-input:focus,
.contact-feedback-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: var(--color-bg-secondary);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.contact-feedback-textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--font-primary);
}

.contact-feedback-form-privacy {
  margin: var(--space-sm) 0;
}

.contact-feedback-privacy-text {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  color: var(--color-text-secondary-light);
  line-height: 1.5;
  margin: 0;
}

.contact-feedback-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.contact-feedback-privacy-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-feedback-submit {
  font-family: var(--font-primary);
  width: 100%;
  padding: 1rem 2rem;
  background-color: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-md);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 700;
  cursor: pointer;
  transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: var(--shadow-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

.contact-feedback-info-header {
  margin-bottom: 2.5rem;
}

.contact-feedback-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-primary-light);
  font-weight: 700;
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.3;
}

.contact-feedback-info-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary-light);
  line-height: 1.6;
  margin: 0;
}

.contact-feedback-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.contact-feedback-info-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-feedback-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: var(--color-bg-quaternary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.25rem;
}

.contact-feedback-info-content {
  flex: 1;
}

.contact-feedback-info-label {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-primary-light);
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.contact-feedback-info-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.3rem, 1.05rem);
  color: var(--color-text-secondary-light);
  line-height: 1.6;
  margin: 0;
}

.contact-feedback-info-link {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-weight: 600;
}

.contact-feedback-info-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-feedback-info-box {
  background-color: var(--color-bg-quaternary);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.contact-feedback-info-box-title {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  color: var(--color-text-primary-light);
  font-weight: 700;
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.3;
}

.contact-feedback-info-box-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.3rem, 1rem);
  color: var(--color-text-secondary-light);
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .contact-feedback-main {
    padding: 4rem 0;
  }

  .contact-feedback-main-content {
    padding: 0 var(--space-lg);
  }

  .contact-feedback-grid {
    gap: 4rem;
    align-items: stretch;
  }

  .contact-feedback-form-wrapper {
    flex: 1 1 45%;
  }

  .contact-feedback-info-wrapper {
    flex: 1 1 45%;
  }

  .contact-feedback-submit {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .contact-feedback-main {
    padding: 5rem 0;
  }

  .contact-feedback-main-content {
    padding: 0 var(--space-xl);
  }

  .contact-feedback-grid {
    gap: 5rem;
  }

  .contact-feedback-form-wrapper {
    flex: 1 1 40%;
  }

  .contact-feedback-info-wrapper {
    flex: 1 1 40%;
  }
}

@media (min-width: 1440px) {
  .contact-feedback-main-content {
    padding: 0 var(--space-2xl);
  }

  .contact-feedback-grid {
    gap: 6rem;
  }
}