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

:root {
  
  
  
  --color-bg-primary: #f8fafc;
  --color-bg-secondary: #e2e8f0;
  --color-bg-tertiary: #ffffff;
  --color-bg-card: #ffffff;
  
  
  --color-text-primary: #0f172a;
  --color-text-secondary: #475569;
  --color-text-muted: #94a3b8;
  --color-text-light: #cbd5e1;
  
  
  --color-primary: #4f46e5;
  --color-primary-hover: #4338ca;
  --color-primary-light: #eef2ff;
  --color-secondary: #06b6d4;
  --color-secondary-hover: #0891b2;
  
  
  --font-primary: 'Source Sans Pro', 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;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  
  
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 10px 15px rgba(15, 23, 42, 0.1);
  --shadow-xl: 0 20px 25px rgba(15, 23, 42, 0.12);
  
  
  --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 {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-lg);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--space-md);
}

h4 {
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}

h5 {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
}

h6 {
  font-size: 1rem;
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--color-text-secondary);
}

p {
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
  font-size: 1rem;
}

small {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-weight: 500;
}

a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

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

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

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

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

.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

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

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

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

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

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

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

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

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

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

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid rgba(79, 70, 229, 0.05);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(79, 70, 229, 0.1);
}

.card-compact {
  padding: var(--space-md);
}

.card-lg {
  padding: var(--space-xl);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-xs) var(--space-sm);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.badge-secondary {
  background: rgba(6, 182, 212, 0.1);
  color: var(--color-secondary);
}

.badge-success {
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
}

input, textarea, select {
  width: 100%;
  padding: var(--space-sm);
  font-family: var(--font-primary);
  font-size: 1rem;
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--radius-md);
  background: var(--color-bg-tertiary);
  color: var(--color-text-primary);
  transition: border-color var(--transition-fast);
}

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

input::placeholder {
  color: var(--color-text-muted);
}

ul, ol {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

li {
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
}

code {
  background: var(--color-bg-secondary);
  color: var(--color-primary);
  padding: 0.25rem var(--space-xs);
  border-radius: var(--radius-sm);
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
}

pre {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  margin-bottom: var(--space-lg);
}

pre code {
  background: none;
  color: inherit;
  padding: 0;
}

.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(250px, 1fr));
}

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

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

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

.flex-between {
  justify-content: space-between;
}

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

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

.flex-wrap {
  flex-wrap: wrap;
}

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

.px-xs { padding-left: var(--space-xs); padding-right: var(--space-xs); }
.px-sm { padding-left: var(--space-sm); padding-right: var(--space-sm); }
.px-md { padding-left: var(--space-md); padding-right: var(--space-md); }
.px-lg { padding-left: var(--space-lg); padding-right: var(--space-lg); }

.py-xs { padding-top: var(--space-xs); padding-bottom: var(--space-xs); }
.py-sm { padding-top: var(--space-sm); padding-bottom: var(--space-sm); }
.py-md { padding-top: var(--space-md); padding-bottom: var(--space-md); }
.py-lg { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }
.py-xl { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
.py-2xl { padding-top: var(--space-2xl); padding-bottom: var(--space-2xl); }
.py-3xl { padding-top: var(--space-3xl); padding-bottom: var(--space-3xl); }

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

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

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

.section-alt {
  background: var(--color-bg-secondary);
}

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

.text-primary { color: var(--color-text-primary); }
.text-secondary { color: var(--color-text-secondary); }
.text-muted { color: var(--color-text-muted); }
.text-accent { color: var(--color-primary); }

.text-bold { font-weight: 700; }
.text-semibold { font-weight: 600; }
.text-medium { font-weight: 500; }

.text-uppercase { text-transform: uppercase; }
.text-lowercase { text-transform: lowercase; }
.text-capitalize { text-transform: capitalize; }

.text-italic { font-style: italic; }

.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }

.hidden { display: none; }
.block { display: block; }
.inline { display: inline; }
.inline-block { display: inline-block; }

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

hr {
  border: none;
  height: 1px;
  background: var(--color-bg-secondary);
  margin: var(--space-lg) 0;
}

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

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

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.animate-fade-in {
  animation: fadeIn var(--transition-base);
}

.animate-slide-in-up {
  animation: slideInUp var(--transition-slow);
}

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

@media (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 1.875rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .flex-column-mobile {
    flex-direction: column;
  }
  
  .section, .section-lg {
    padding: var(--space-2xl) 0;
  }
}

@media print {
  body {
    background: #ffffff;
    color: #000000;
  }
  
  .no-print {
    display: none;
  }
}
.header-generative-forge {
  background: var(--color-bg-tertiary);
  border-bottom: 1px solid var(--color-bg-secondary);
  position: static;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-generative-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;
  height: clamp(4rem, 10vw, 5rem);
  gap: clamp(1rem, 3vw, 2rem);
}

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

.header-generative-forge-brand:hover {
  opacity: 0.85;
}

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

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

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

.header-generative-forge-nav-link {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-base);
  position: relative;
}

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

.header-generative-forge-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-base);
}

.header-generative-forge-nav-link:hover::after {
  width: 100%;
}

.header-generative-forge-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-bg-tertiary);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: background var(--transition-base), transform var(--transition-base);
  white-space: nowrap;
  flex-shrink: 0;
}

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

.header-generative-forge-mobile-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: opacity var(--transition-base);
}

.header-generative-forge-mobile-toggle:hover {
  opacity: 0.7;
}

.header-generative-forge-mobile-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.header-generative-forge-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(11px);
}

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

.header-generative-forge-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-11px);
}

.header-generative-forge-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg-tertiary);
  z-index: 99;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-slow);
  overflow-y: auto;
}

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

.header-generative-forge-mobile-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem clamp(1rem, 4vw, 2rem);
  border-bottom: 1px solid var(--color-bg-secondary);
  height: clamp(4rem, 10vw, 5rem);
}

.header-generative-forge-mobile-close {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-primary);
  font-size: 1.5rem;
  transition: opacity var(--transition-base);
}

.header-generative-forge-mobile-close:hover {
  opacity: 0.7;
}

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

.header-generative-forge-mobile-link {
  padding: 1rem clamp(1rem, 4vw, 2rem);
  color: var(--color-text-primary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--color-bg-secondary);
  transition: background var(--transition-base), color var(--transition-base);
}

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

.header-generative-forge-mobile-cta {
  margin: 1.5rem clamp(1rem, 4vw, 2rem);
  padding: 1rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-bg-tertiary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-align: center;
  transition: background var(--transition-base);
  border: none;
  cursor: pointer;
}

.header-generative-forge-mobile-cta:hover {
  background: var(--color-primary-hover);
}

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

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

  .header-generative-forge-mobile-toggle {
    display: none;
  }

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

    .generative-canvas {
  width: 100%;
  overflow-x: hidden;
}

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

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

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

.hero-image-block {
  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: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-title-index {
  color: #ffffff;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
}

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

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

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

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

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

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

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

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

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

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

.benefits-subtitle-index {
  color: #64748b;
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

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

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

.benefit-card-index:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  border-color: #06b6d4;
}

.benefit-icon-index {
  font-size: 2.5rem;
  color: #4f46e5;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.benefit-card-title-index {
  color: #0f172a;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}

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

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

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

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

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

.features-subtitle-index {
  color: #64748b;
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

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

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

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

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

.step-title-index {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
}

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

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

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

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

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

.blog-subtitle-index {
  color: #64748b;
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

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

.blog-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.blog-card-index:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  border-color: #4f46e5;
}

.blog-image-index {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #e2e8f0;
}

.card-image-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

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

.blog-card-title-index {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.blog-card-text-index {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.blog-card-link-index {
  color: #4f46e5;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  align-self: flex-start;
  margin-top: auto;
}

.blog-card-link-index:hover {
  color: #4338ca;
  text-decoration: underline;
}

.blog-cta-index {
  display: flex;
  justify-content: center;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

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

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

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

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

.faq-subtitle-index {
  color: #64748b;
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

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

.faq-item-index {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.faq-question-index {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.75rem 0;
}

.faq-answer-index {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

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

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

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

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

.pricing-subtitle-index {
  color: #cbd5e1;
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-message-index {
  display: flex;
  justify-content: center;
}

.pricing-card-index {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(6, 182, 212, 0.3);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 16px;
  max-width: 500px;
  flex: 1 1 auto;
}

.pricing-card-title-index {
  color: #06b6d4;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pricing-card-text-index {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.pricing-features-index {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-item-index {
  color: #e2e8f0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-item-index i {
  color: #06b6d4;
  font-size: 1rem;
}

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

.cta-content {
  display: flex;
  justify-content: center;
}

.cta-box-index {
  background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 16px;
  text-align: center;
  max-width: 600px;
  flex: 1 1 auto;
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.2);
}

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

.cta-text-index {
  color: #f0f9ff;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

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

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

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

.cookie-banner-text {
  color: #cbd5e1;
  font-size: 0.875rem;
  margin: 0;
  max-width: 500px;
}

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

.cookie-btn-accept,
.cookie-btn-decline {
  padding: 0.625rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.cookie-btn-accept {
  background: #4f46e5;
  color: #ffffff;
}

.cookie-btn-accept:hover {
  background: #4338ca;
  transform: translateY(-1px);
}

.cookie-btn-decline {
  background: transparent;
  color: #cbd5e1;
  border: 1px solid #475569;
}

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

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

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

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

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

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

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

  .hero-image-index {
    max-height: 400px;
  }
}

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

  .benefits-section-index,
  .features-section-index,
  .blog-preview-section-index,
  .faq-section-index,
  .pricing-section-index,
  .cta-section-index {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  .hero-buttons-index {
    flex-direction: column;
  }

  .hero-buttons-index a {
    width: 100%;
  }

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

  .features-grid-index {
    grid-template-columns: 1fr;
  }

  .feature-step-index {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-index {
    font-size: 1.5rem;
    min-width: 40px;
  }

  .faq-grid-index {
    grid-template-columns: 1fr;
  }

  .cta-buttons-index {
    flex-direction: column;
  }

  .cta-buttons-index a {
    width: 100%;
  }

  .blog-cards-index {
    flex-direction: column;
  }

  .blog-card-index {
    max-width: 100%;
  }

  .cookie-banner {
    padding: 1rem;
    gap: 1rem;
  }

  .cookie-banner-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-btn-accept,
  .cookie-btn-decline {
    width: 100%;
  }
}

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

  .benefits-title-index,
  .features-title-index,
  .blog-title-index,
  .faq-title-index,
  .pricing-title-index,
  .cta-title-index {
    font-size: 1.5rem;
  }

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

  .stat-item-index {
    flex: 1 1 auto;
    min-width: 80px;
  }

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

  .stat-label-index {
    font-size: 0.75rem;
  }

  .benefit-card-index {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .blog-image-index {
    height: 180px;
  }

  .cookie-banner-text {
    font-size: 0.8rem;
  }
}

    .footer {
  background: var(--color-text-primary);
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 5vw, 3rem) 0;
  color: var(--color-text-light);
  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(2.5rem, 5vw, 4rem);
}

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

.footer-about h3,
.footer-nav h3,
.footer-contact h3,
.footer-legal h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.5px;
}

.footer-about p,
.footer-contact p {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.footer-about p {
  max-width: 450px;
}

.footer-nav-links,
.footer-legal-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem) clamp(1.5rem, 4vw, 2.5rem);
}

.footer-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-light);
  text-decoration: none;
  transition: color var(--transition-base);
  position: relative;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #ffffff;
  transition: width var(--transition-base);
}

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

.footer-contact {
  max-width: 350px;
}

.footer-legal {
  margin-top: clamp(1rem, 3vw, 2rem);
}

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

.footer-copyright p {
  font-family: var(--font-primary);
  font-size: clamp(0.75rem, 0.9vw, 0.9rem);
  color: var(--color-text-muted);
  text-align: center;
  letter-spacing: 0.3px;
}

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

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

  .footer-nav {
    flex: 0 1 auto;
  }

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

  .footer-legal {
    flex: 1 1 100%;
    margin-top: 0;
  }

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

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

  .footer-copyright p {
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .footer-content {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

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

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

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

  .footer-legal {
    flex: 1 1 100%;
    order: 10;
  }

  .footer-copyright {
    flex: 1 1 100%;
    order: 11;
  }
}

@media (max-width: 767px) {
  .footer-nav-links,
  .footer-legal-links {
    gap: 0.75rem 1.5rem;
  }

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

.category-page-creative-coding {
  background: #0f172a;
  color: #ffffff;
  overflow: hidden;
}

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

.hero-content-creative-coding {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 4rem);
}

.hero-header-creative-coding {
  text-align: center;
}

.hero-title-creative-coding {
  color: #ffffff;
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 2rem);
  letter-spacing: -0.02em;
}

.hero-subtitle-creative-coding {
  color: #bfdbfe;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 400;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto clamp(1.5rem, 3vw, 2.5rem);
}

.hero-description-creative-coding {
  background: rgba(30, 58, 95, 0.4);
  border-left: 4px solid #3b82f6;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
}

.hero-text-creative-coding {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  margin: 0;
}

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

.posts-section-creative-coding {
  background: #0c1929;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.posts-header-creative-coding {
  text-align: center;
}

.posts-title-creative-coding {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

.posts-subtitle-creative-coding {
  color: #94a3b8;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin: 0;
}

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

.card-creative-coding {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: rgba(30, 58, 95, 0.3);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  flex: 1 1 100%;
  max-width: 420px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.card-creative-coding:hover {
  background: rgba(30, 58, 95, 0.5);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
}

.card-creative-coding img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.card-title-creative-coding {
  color: #ffffff;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.card-description-creative-coding {
  color: #cbd5e1;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.card-meta-creative-coding {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(59, 130, 246, 0.15);
}

.card-reading-time-creative-coding,
.card-level-creative-coding,
.card-date-creative-coding {
  color: #94a3b8;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-reading-time-creative-coding i,
.card-level-creative-coding i,
.card-date-creative-coding i {
  color: #3b82f6;
  font-size: 0.875rem;
}

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

.card-link-creative-coding:hover {
  color: #60a5fa;
  text-decoration: underline;
}

@media (min-width: 768px) {
  .posts-grid-creative-coding {
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .card-creative-coding {
    flex: 1 1 calc(50% - 1.25rem);
  }
}

@media (min-width: 1024px) {
  .card-creative-coding {
    flex: 1 1 calc(25% - 1.875rem);
  }
}

.insights-section-creative-coding {
  background: #162d50;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.insights-content-creative-coding {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.insights-header-creative-coding {
  text-align: center;
}

.insights-title-creative-coding {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin: 0;
}

.insights-quote-creative-coding {
  background: rgba(59, 130, 246, 0.1);
  border-left: 5px solid #3b82f6;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 8px;
  max-width: 900px;
  margin: 0 auto;
}

.insights-blockquote-creative-coding {
  margin: 0;
}

.insights-quote-text-creative-coding {
  color: #e0e7ff;
  font-size: clamp(1.1rem, 2vw + 0.25rem, 1.35rem);
  font-style: italic;
  line-height: 1.8;
  margin: 0 0 1rem;
  font-family: 'Playfair Display', serif;
}

.insights-quote-author-creative-coding {
  color: #94a3b8;
  font-size: 0.95rem;
  font-style: normal;
}

.insights-body-creative-coding {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.insights-text-creative-coding {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  margin: 0;
}

@media (min-width: 1024px) {
  .insights-section-creative-coding {
    padding: 6rem 0;
  }
}

.techniques-section-creative-coding {
  background: #0f172a;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.techniques-header-creative-coding {
  text-align: center;
}

.techniques-title-creative-coding {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

.techniques-subtitle-creative-coding {
  color: #94a3b8;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin: 0;
}

.techniques-list-creative-coding {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.technique-item-creative-coding {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 2vw, 2rem);
  background: rgba(30, 58, 95, 0.25);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.technique-item-creative-coding:hover {
  background: rgba(30, 58, 95, 0.4);
  border-color: rgba(59, 130, 246, 0.3);
}

.technique-number-creative-coding {
  color: #3b82f6;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  min-width: 60px;
  display: flex;
  align-items: flex-start;
}

.technique-details-creative-coding {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.technique-name-creative-coding {
  color: #ffffff;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  margin: 0;
}

.technique-description-creative-coding {
  color: #cbd5e1;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 640px) {
  .technique-item-creative-coding {
    flex-direction: column;
    gap: 1rem;
  }

  .technique-number-creative-coding {
    min-width: auto;
  }
}

@media (min-width: 1024px) {
  .techniques-section-creative-coding {
    padding: 6rem 0;
  }
}

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

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

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

a {
  transition: color 0.3s ease;
}

@media (max-width: 768px) {
  .posts-grid-creative-coding {
    gap: 1.5rem;
  }

  .card-creative-coding {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-section-creative-coding {
    padding: 3rem 0;
  }

  .posts-section-creative-coding {
    padding: 3rem 0;
  }

  .insights-section-creative-coding {
    padding: 3rem 0;
  }

  .techniques-section-creative-coding {
    padding: 3rem 0;
  }
}

.main-noise-functies-organische-beweging {
  width: 100%;
  overflow: hidden;
}

.hero-section-noise-functies-organische-beweging {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.hero-text-wrapper-noise-functies-organische-beweging {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-noise-functies-organische-beweging {
  color: #ffffff;
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-lead-noise-functies-organische-beweging {
  color: #cbd5e1;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-noise-functies-organische-beweging {
  display: flex;
  flex-direction: row;
  gap: clamp(0.5rem, 1vw, 1rem);
  align-items: center;
}

.meta-item-noise-functies-organische-beweging {
  color: #94a3b8;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
}

.meta-separator-noise-functies-organische-beweging {
  color: #475569;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.hero-image-wrapper-noise-functies-organische-beweging {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-noise-functies-organische-beweging {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: clamp(0.75rem, 1.5vw, 1.5rem);
  display: block;
}

.breadcrumbs-noise-functies-organische-beweging {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  flex-wrap: wrap;
}

.breadcrumbs-noise-functies-organische-beweging a {
  color: #06b6d4;
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  text-decoration: none;
  font-weight: 500;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.breadcrumbs-noise-functies-organische-beweging a:hover {
  color: #0891b2;
  text-decoration: underline;
}

.breadcrumbs-noise-functies-organische-beweging span {
  color: #475569;
  font-size: clamp(0.875rem, 1vw, 0.95rem);
}

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

.intro-content-noise-functies-organische-beweging {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-block-noise-functies-organische-beweging {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-noise-functies-organische-beweging {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
}

.intro-text-noise-functies-organische-beweging {
  color: #475569;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-block-noise-functies-organische-beweging {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-noise-functies-organische-beweging {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: clamp(0.75rem, 1.5vw, 1.5rem);
  display: block;
}

.content-section-one-noise-functies-organische-beweging {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-one-noise-functies-organische-beweging {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-one-noise-functies-organische-beweging {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-one-noise-functies-organische-beweging {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
}

.content-text-noise-functies-organische-beweging {
  color: #374151;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-image-one-noise-functies-organische-beweging {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-noise-functies-organische-beweging {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: clamp(0.75rem, 1.5vw, 1.5rem);
  display: block;
}

.content-section-two-noise-functies-organische-beweging {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-two-noise-functies-organische-beweging {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-image-two-noise-functies-organische-beweging {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.content-text-two-noise-functies-organische-beweging {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-two-noise-functies-organische-beweging {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
}

.techniques-section-noise-functies-organische-beweging {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.techniques-content-noise-functies-organische-beweging {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
}

.techniques-title-noise-functies-organische-beweging {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.techniques-grid-noise-functies-organische-beweging {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.technique-card-noise-functies-organische-beweging {
  flex: 1 1 calc(50% - 1rem);
  min-width: 280px;
  max-width: 380px;
  background: #1e293b;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: clamp(0.75rem, 1.5vw, 1.25rem);
  border: 1px solid #334155;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.technique-card-noise-functies-organische-beweging:hover {
  transform: translateY(-4px);
  border-color: #4f46e5;
  background: #233548;
}

.technique-number-noise-functies-organische-beweging {
  color: #4f46e5;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  line-height: 1;
}

.technique-heading-noise-functies-organische-beweging {
  color: #ffffff;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 700;
}

.technique-text-noise-functies-organische-beweging {
  color: #cbd5e1;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.6;
}

.quote-section-noise-functies-organische-beweging {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.featured-quote-noise-functies-organische-beweging {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #4f46e5;
  background: #ffffff;
  border-radius: clamp(0.5rem, 1vw, 1rem);
}

.quote-text-noise-functies-organische-beweging {
  color: #0f172a;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 500;
}

.quote-author-noise-functies-organische-beweging {
  color: #475569;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  display: block;
  font-style: normal;
}

.advanced-section-noise-functies-organische-beweging {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.advanced-wrapper-noise-functies-organische-beweging {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.advanced-text-noise-functies-organische-beweging {
  flex: 1 1 50%;
  max-width: 50%;
}

.advanced-title-noise-functies-organische-beweging {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
}

.advanced-text-noise-functies-organische-beweging {
  color: #374151;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.advanced-image-noise-functies-organische-beweging {
  flex: 1 1 50%;
  max-width: 50%;
}

.advanced-image-noise-functies-organische-beweging img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: clamp(0.75rem, 1.5vw, 1.5rem);
  display: block;
}

.tools-section-noise-functies-organische-beweging {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tools-content-noise-functies-organische-beweging {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
}

.tools-title-noise-functies-organische-beweging {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.tools-list-noise-functies-organische-beweging {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.tool-item-noise-functies-organische-beweging {
  flex: 1 1 calc(50% - 1rem);
  min-width: 280px;
  max-width: 340px;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: #1e293b;
  border-radius: clamp(0.75rem, 1.5vw, 1.25rem);
  border: 1px solid #334155;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.tool-item-noise-functies-organische-beweging:hover {
  background: #233548;
  border-color: #06b6d4;
  transform: translateY(-3px);
}

.tool-name-noise-functies-organische-beweging {
  color: #06b6d4;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight: 700;
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
}

.tool-description-noise-functies-organische-beweging {
  color: #cbd5e1;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.6;
}

.cta-section-noise-functies-organische-beweging {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.cta-box-noise-functies-organische-beweging {
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  padding: clamp(2.5rem, 4vw, 4rem);
  border-radius: clamp(0.75rem, 1.5vw, 1.5rem);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title-noise-functies-organische-beweging {
  color: #ffffff;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
}

.cta-text-noise-functies-organische-beweging {
  color: #f1f5f9;
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.cta-button-noise-functies-organische-beweging {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  color: #4f46e5;
  font-weight: 600;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  border-radius: clamp(0.5rem, 1vw, 0.75rem);
  text-decoration: none;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.cta-button-noise-functies-organische-beweging:hover {
  background: #f1f5f9;
  color: #4f46e5;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.2);
}

.disclaimer-section-noise-functies-organische-beweging {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-noise-functies-organische-beweging {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: clamp(0.5rem, 1.2vw, 1rem);
}

.disclaimer-title-noise-functies-organische-beweging {
  color: #0f172a;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.disclaimer-text-noise-functies-organische-beweging {
  color: #475569;
  font-size: clamp(0.9rem, 1.1vw, 0.95rem);
  line-height: 1.7;
}

.related-section-noise-functies-organische-beweging {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-noise-functies-organische-beweging {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
}

.related-title-noise-functies-organische-beweging {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.related-cards-noise-functies-organische-beweging {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-noise-functies-organische-beweging {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 360px;
  background: #1e293b;
  border-radius: clamp(0.75rem, 1.5vw, 1.25rem);
  overflow: hidden;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  border: 1px solid #334155;
  display: flex;
  flex-direction: column;
}

.related-card-noise-functies-organische-beweging:hover {
  transform: translateY(-6px);
  border-color: #4f46e5;
  background: #233548;
}

.related-image-noise-functies-organische-beweging {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-image-noise-functies-organische-beweging img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.related-card-noise-functies-organische-beweging:hover .related-image-noise-functies-organische-beweging img {
  transform: scale(1.05);
}

.related-card-title-noise-functies-organische-beweging {
  color: #ffffff;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight: 700;
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem) clamp(0.5rem, 1vw, 0.75rem);
  line-height: 1.4;
}

.related-card-description-noise-functies-organische-beweging {
  color: #cbd5e1;
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  padding: 0 clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem);
  line-height: 1.6;
  flex: 1;
}

@media (max-width: 1024px) {
  .hero-content-noise-functies-organische-beweging,
  .intro-content-noise-functies-organische-beweging,
  .content-wrapper-one-noise-functies-organische-beweging,
  .content-wrapper-two-noise-functies-organische-beweging,
  .advanced-wrapper-noise-functies-organische-beweging {
    flex-direction: column;
  }

  .hero-text-wrapper-noise-functies-organische-beweging,
  .hero-image-wrapper-noise-functies-organische-beweging,
  .intro-text-block-noise-functies-organische-beweging,
  .intro-image-block-noise-functies-organische-beweging,
  .content-text-one-noise-functies-organische-beweging,
  .content-image-one-noise-functies-organische-beweging,
  .content-image-two-noise-functies-organische-beweging,
  .content-text-two-noise-functies-organische-beweging,
  .advanced-text-noise-functies-organische-beweging,
  .advanced-image-noise-functies-organische-beweging {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-image-two-noise-functies-organische-beweging {
    order: 0;
  }

  .technique-card-noise-functies-organische-beweging {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .tool-item-noise-functies-organische-beweging {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-card-noise-functies-organische-beweging {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .techniques-grid-noise-functies-organische-beweging,
  .tools-list-noise-functies-organische-beweging,
  .related-cards-noise-functies-organische-beweging {
    flex-direction: column;
  }

  .technique-card-noise-functies-organische-beweging,
  .tool-item-noise-functies-organische-beweging,
  .related-card-noise-functies-organische-beweging {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-noise-functies-organische-beweging,
  .intro-image-noise-functies-organische-beweging,
  .content-image-noise-functies-organische-beweging,
  .advanced-image-noise-functies-organische-beweging img {
    max-height: 300px;
  }

  .breadcrumbs-noise-functies-organische-beweging {
    font-size: 0.8rem;
  }

  .related-image-noise-functies-organische-beweging {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .hero-title-noise-functies-organische-beweging {
    font-size: 1.5rem;
  }

  .intro-title-noise-functies-organische-beweging,
  .content-title-one-noise-functies-organische-beweging,
  .content-title-two-noise-functies-organische-beweging {
    font-size: 1.35rem;
  }

  .techniques-title-noise-functies-organische-beweging,
  .tools-title-noise-functies-organische-beweging,
  .related-title-noise-functies-organische-beweging {
    font-size: 1.35rem;
  }

  .technique-number-noise-functies-organische-beweging {
    font-size: 1.75rem;
  }

  .cta-title-noise-functies-organische-beweging {
    font-size: 1.35rem;
  }

  .quote-text-noise-functies-organische-beweging {
    font-size: 1rem;
  }
}

.main-p5js-eerste-sketch {
  width: 100%;
  overflow: hidden;
}

.hero-section-p5js-eerste-sketch {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-content-p5js-eerste-sketch {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-content-p5js-eerste-sketch {
    flex-direction: row;
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
  }
}

.hero-text-wrapper-p5js-eerste-sketch {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .hero-text-wrapper-p5js-eerste-sketch {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.breadcrumbs-p5js-eerste-sketch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-size: 0.875rem;
}

.breadcrumbs-p5js-eerste-sketch a {
  color: #4f46e5;
  transition: color var(--transition-fast);
}

.breadcrumbs-p5js-eerste-sketch a:hover {
  color: #06b6d4;
  text-decoration: underline;
}

.breadcrumbs-p5js-eerste-sketch span {
  color: #64748b;
}

.hero-title-p5js-eerste-sketch {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
}

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

.hero-meta-p5js-eerste-sketch {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.meta-item-p5js-eerste-sketch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #94a3b8;
}

.meta-item-p5js-eerste-sketch i {
  color: #4f46e5;
  font-size: 1rem;
}

.hero-image-wrapper-p5js-eerste-sketch {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .hero-image-wrapper-p5js-eerste-sketch {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.hero-image-p5js-eerste-sketch {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 25px rgba(15, 23, 42, 0.3);
  display: block;
}

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

.intro-content-p5js-eerste-sketch {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 1024px) {
  .intro-content-p5js-eerste-sketch {
    flex-direction: row;
    gap: clamp(3rem, 5vw, 4rem);
  }
}

.intro-text-p5js-eerste-sketch {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .intro-text-p5js-eerste-sketch {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.intro-title-p5js-eerste-sketch {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.intro-paragraph-p5js-eerste-sketch {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-paragraph-p5js-eerste-sketch strong {
  color: #0f172a;
  font-weight: 600;
}

.intro-image-p5js-eerste-sketch {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .intro-image-p5js-eerste-sketch {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.intro-img-p5js-eerste-sketch {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

.getting-started-section-p5js-eerste-sketch {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.getting-started-content-p5js-eerste-sketch {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 1024px) {
  .getting-started-content-p5js-eerste-sketch {
    flex-direction: row;
    gap: clamp(3rem, 5vw, 4rem);
  }
}

.getting-started-text-p5js-eerste-sketch {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .getting-started-text-p5js-eerste-sketch {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.getting-started-title-p5js-eerste-sketch {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.getting-started-paragraph-p5js-eerste-sketch {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.getting-started-paragraph-p5js-eerste-sketch strong {
  color: #0f172a;
  font-weight: 600;
}

.getting-started-paragraph-p5js-eerste-sketch code {
  background: #e2e8f0;
  color: #4f46e5;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.875em;
}

.getting-started-image-p5js-eerste-sketch {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .getting-started-image-p5js-eerste-sketch {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.getting-started-img-p5js-eerste-sketch {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

.first-sketch-section-p5js-eerste-sketch {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.first-sketch-header-p5js-eerste-sketch {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.first-sketch-title-p5js-eerste-sketch {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  font-weight: 700;
}

.first-sketch-subtitle-p5js-eerste-sketch {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #cbd5e1;
  line-height: 1.6;
}

.sketch-steps-p5js-eerste-sketch {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.sketch-step-p5js-eerste-sketch {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
}

@media (max-width: 768px) {
  .sketch-step-p5js-eerste-sketch {
    flex-direction: column;
  }
}

.step-number-p5js-eerste-sketch {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #4f46e5;
  flex-shrink: 0;
  min-width: 80px;
  text-align: center;
}

.step-content-p5js-eerste-sketch {
  flex: 1;
}

.step-title-p5js-eerste-sketch {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.step-text-p5js-eerste-sketch {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

.step-text-p5js-eerste-sketch code {
  background: rgba(79, 70, 229, 0.2);
  color: #06b6d4;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.875em;
}

.code-highlight-p5js-eerste-sketch {
  background: #1a1f2e;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid #334155;
  overflow-x: auto;
}

.code-label-p5js-eerste-sketch {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.code-block-p5js-eerste-sketch {
  margin: 0;
  background: transparent;
  padding: 0;
}

.code-block-p5js-eerste-sketch code {
  color: #e2e8f0;
  font-family: 'Courier New', monospace;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  line-height: 1.6;
  background: transparent;
  padding: 0;
}

.advanced-section-p5js-eerste-sketch {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.advanced-wrapper-p5js-eerste-sketch {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 1024px) {
  .advanced-wrapper-p5js-eerste-sketch {
    flex-direction: row;
    gap: clamp(3rem, 5vw, 4rem);
  }
}

.advanced-text-p5js-eerste-sketch {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .advanced-text-p5js-eerste-sketch {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.advanced-title-p5js-eerste-sketch {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.advanced-paragraph-p5js-eerste-sketch {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.tips-box-p5js-eerste-sketch {
  background: #eef2ff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid #4f46e5;
}

.tips-title-p5js-eerste-sketch {
  font-size: 1.125rem;
  color: #0f172a;
  margin-bottom: 1rem;
  font-weight: 600;
}

.tips-list-p5js-eerste-sketch {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tip-item-p5js-eerste-sketch {
  font-size: 0.875rem;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.tip-item-p5js-eerste-sketch:last-child {
  margin-bottom: 0;
}

.tip-item-p5js-eerste-sketch strong {
  color: #0f172a;
  font-weight: 600;
}

.tip-item-p5js-eerste-sketch code {
  background: rgba(79, 70, 229, 0.1);
  color: #4f46e5;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.875em;
}

.advanced-image-p5js-eerste-sketch {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .advanced-image-p5js-eerste-sketch {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.advanced-img-p5js-eerste-sketch {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

.inspiration-section-p5js-eerste-sketch {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.inspiration-content-p5js-eerste-sketch {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.inspiration-title-p5js-eerste-sketch {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  text-align: center;
}

.inspiration-text-p5js-eerste-sketch {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #475569;
  line-height: 1.8;
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.inspiration-text-p5js-eerste-sketch em {
  color: #0f172a;
  font-style: italic;
  font-weight: 500;
}

.inspiration-cards-p5js-eerste-sketch {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.inspiration-card-p5js-eerste-sketch {
  flex: 1 1 280px;
  max-width: 380px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.card-title-p5js-eerste-sketch {
  font-size: 1.125rem;
  color: #0f172a;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.card-text-p5js-eerste-sketch {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.6;
}

.featured-quote-p5js-eerste-sketch {
  background: #e2e8f0;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #4f46e5;
  border-radius: var(--radius-lg);
  margin-top: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
}

.quote-text-p5js-eerste-sketch {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #0f172a;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.quote-author-p5js-eerste-sketch {
  font-size: 0.875rem;
  color: #475569;
  display: block;
  font-style: normal;
  font-weight: 500;
}

.resources-section-p5js-eerste-sketch {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.resources-content-p5js-eerste-sketch {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 1024px) {
  .resources-content-p5js-eerste-sketch {
    flex-direction: row;
    gap: clamp(3rem, 5vw, 4rem);
  }
}

.resources-text-p5js-eerste-sketch {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .resources-text-p5js-eerste-sketch {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.resources-title-p5js-eerste-sketch {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.resources-paragraph-p5js-eerste-sketch {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.resources-image-p5js-eerste-sketch {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .resources-image-p5js-eerste-sketch {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.resources-img-p5js-eerste-sketch {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 25px rgba(15, 23, 42, 0.3);
  display: block;
}

.resources-list-p5js-eerste-sketch {
  background: #1a1f2e;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid #334155;
}

.resources-subtitle-p5js-eerste-sketch {
  font-size: 1.125rem;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 600;
}

.resources-items-p5js-eerste-sketch {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.resource-item-p5js-eerste-sketch {
  border-bottom: 1px solid #334155;
  padding-bottom: 1rem;
}

.resource-item-p5js-eerste-sketch:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.resource-item-p5js-eerste-sketch strong {
  display: block;
  color: #4f46e5;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.resource-item-p5js-eerste-sketch p {
  font-size: 0.875rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

.disclaimer-section-p5js-eerste-sketch {
  background: #ffffff;
  padding: clamp(2rem, 4vw, 3rem) 0;
  overflow: hidden;
}

.disclaimer-content-p5js-eerste-sketch {
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid #06b6d4;
}

.disclaimer-title-p5js-eerste-sketch {
  font-size: 1.125rem;
  color: #0f172a;
  margin-bottom: 1rem;
  font-weight: 600;
}

.disclaimer-text-p5js-eerste-sketch {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

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

.related-content-p5js-eerste-sketch {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-title-p5js-eerste-sketch {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  color: #0f172a;
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
}

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

.related-card-p5js-eerste-sketch {
  flex: 1 1 320px;
  max-width: 420px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.related-image-p5js-eerste-sketch {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #e2e8f0;
}

.related-image-p5js-eerste-sketch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.related-card-p5js-eerste-sketch:hover .related-image-p5js-eerste-sketch img {
  transform: scale(1.05);
}

.related-info-p5js-eerste-sketch {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-p5js-eerste-sketch {
  font-size: 1.125rem;
  color: #0f172a;
  font-weight: 600;
  line-height: 1.4;
}

.related-card-description-p5js-eerste-sketch {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.related-link-p5js-eerste-sketch {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #4f46e5;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all var(--transition-fast);
  text-decoration: none;
  margin-top: 0.5rem;
}

.related-link-p5js-eerste-sketch:hover {
  color: #06b6d4;
  transform: translateX(4px);
}

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

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

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 640px) {
  .hero-section-p5js-eerste-sketch {
    padding: 2rem 0;
  }

  .intro-section-p5js-eerste-sketch,
  .getting-started-section-p5js-eerste-sketch,
  .first-sketch-section-p5js-eerste-sketch,
  .advanced-section-p5js-eerste-sketch,
  .inspiration-section-p5js-eerste-sketch,
  .resources-section-p5js-eerste-sketch,
  .related-section-p5js-eerste-sketch {
    padding: 2rem 0;
  }

  .sketch-step-p5js-eerste-sketch {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-p5js-eerste-sketch {
    min-width: 60px;
  }
}

.main-webgl-shaders-eerste-fragment {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.hero-section-webgl-shaders-eerste-fragment {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-section-webgl-shaders-eerste-fragment .container {
  display: block;
}

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

.hero-text-webgl-shaders-eerste-fragment {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-webgl-shaders-eerste-fragment {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-webgl-shaders-eerste-fragment {
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.hero-meta-webgl-shaders-eerste-fragment {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-item-webgl-shaders-eerste-fragment {
  color: #94a3b8;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.meta-divider-webgl-shaders-eerste-fragment {
  color: #475569;
}

.hero-img-webgl-shaders-eerste-fragment {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.breadcrumbs-webgl-shaders-eerste-fragment {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: 0.875rem;
  color: #94a3b8;
}

.breadcrumbs-webgl-shaders-eerste-fragment a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumbs-webgl-shaders-eerste-fragment a:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .hero-content-webgl-shaders-eerste-fragment {
    flex-direction: column;
  }

  .hero-text-webgl-shaders-eerste-fragment,
  .hero-image-webgl-shaders-eerste-fragment {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-title-webgl-shaders-eerste-fragment {
    font-size: 1.75rem;
  }

  .hero-subtitle-webgl-shaders-eerste-fragment {
    font-size: 1rem;
  }
}

.intro-section-webgl-shaders-eerste-fragment {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-webgl-shaders-eerste-fragment {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-webgl-shaders-eerste-fragment {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-webgl-shaders-eerste-fragment {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-webgl-shaders-eerste-fragment {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-paragraph-webgl-shaders-eerste-fragment {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.intro-img-webgl-shaders-eerste-fragment {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .intro-content-webgl-shaders-eerste-fragment {
    flex-direction: column;
  }

  .intro-text-webgl-shaders-eerste-fragment,
  .intro-image-webgl-shaders-eerste-fragment {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.setup-section-webgl-shaders-eerste-fragment {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.setup-content-webgl-shaders-eerste-fragment {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.setup-image-webgl-shaders-eerste-fragment {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.setup-text-webgl-shaders-eerste-fragment {
  flex: 1 1 50%;
  max-width: 50%;
}

.setup-title-webgl-shaders-eerste-fragment {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.setup-paragraph-webgl-shaders-eerste-fragment {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.setup-img-webgl-shaders-eerste-fragment {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .setup-content-webgl-shaders-eerste-fragment {
    flex-direction: column;
  }

  .setup-image-webgl-shaders-eerste-fragment,
  .setup-text-webgl-shaders-eerste-fragment {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }
}

.structure-section-webgl-shaders-eerste-fragment {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.structure-content-webgl-shaders-eerste-fragment {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.structure-title-webgl-shaders-eerste-fragment {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.structure-intro-webgl-shaders-eerste-fragment {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.code-block-webgl-shaders-eerste-fragment {
  background: #1e293b;
  border-left: 4px solid var(--color-primary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  margin-bottom: 2rem;
}

.code-block-webgl-shaders-eerste-fragment code {
  color: #e2e8f0;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  line-height: 1.6;
  background: none;
  padding: 0;
}

.structure-explain-webgl-shaders-eerste-fragment {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.structure-image-webgl-shaders-eerste-fragment {
  width: 100%;
  margin-top: 2rem;
}

.structure-img-webgl-shaders-eerste-fragment {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

.practical-section-webgl-shaders-eerste-fragment {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practical-content-webgl-shaders-eerste-fragment {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.practical-title-webgl-shaders-eerste-fragment {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.practical-wrapper-webgl-shaders-eerste-fragment {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: 3rem;
}

.practical-text-webgl-shaders-eerste-fragment {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-image-webgl-shaders-eerste-fragment {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-paragraph-webgl-shaders-eerste-fragment {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.practical-img-webgl-shaders-eerste-fragment {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

.highlight-box-webgl-shaders-eerste-fragment {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(6, 182, 212, 0.08));
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
  color: var(--color-text-primary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.steps-container-webgl-shaders-eerste-fragment {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: space-between;
  margin-top: 2rem;
}

.step-item-webgl-shaders-eerste-fragment {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-number-webgl-shaders-eerste-fragment {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.step-content-webgl-shaders-eerste-fragment {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-webgl-shaders-eerste-fragment {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  margin: 0;
}

.step-text-webgl-shaders-eerste-fragment {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .practical-wrapper-webgl-shaders-eerste-fragment {
    flex-direction: column;
  }

  .practical-text-webgl-shaders-eerste-fragment,
  .practical-image-webgl-shaders-eerste-fragment {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-item-webgl-shaders-eerste-fragment {
    flex: 1 1 100%;
  }
}

.beyond-section-webgl-shaders-eerste-fragment {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.beyond-content-webgl-shaders-eerste-fragment {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
  flex-direction: column;
}

.beyond-text-webgl-shaders-eerste-fragment {
  flex: 1 1 50%;
  max-width: 50%;
}

.beyond-image-webgl-shaders-eerste-fragment {
  flex: 1 1 50%;
  max-width: 50%;
}

.beyond-title-webgl-shaders-eerste-fragment {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.beyond-paragraph-webgl-shaders-eerste-fragment {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.callout-box-webgl-shaders-eerste-fragment {
  background: rgba(79, 70, 229, 0.05);
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}

.callout-title-webgl-shaders-eerste-fragment {
  color: var(--color-text-primary);
  font-size: 1rem;
  margin-bottom: 1rem;
  margin-top: 0;
}

.callout-list-webgl-shaders-eerste-fragment {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.callout-list-webgl-shaders-eerste-fragment li {
  color: var(--color-text-secondary);
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.callout-list-webgl-shaders-eerste-fragment li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.beyond-img-webgl-shaders-eerste-fragment {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .beyond-content-webgl-shaders-eerste-fragment {
    flex-direction: column;
  }

  .beyond-text-webgl-shaders-eerste-fragment,
  .beyond-image-webgl-shaders-eerste-fragment {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-webgl-shaders-eerste-fragment {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-webgl-shaders-eerste-fragment {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-webgl-shaders-eerste-fragment {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 1rem;
}

.conclusion-text-webgl-shaders-eerste-fragment {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.conclusion-paragraph-webgl-shaders-eerste-fragment {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  text-align: center;
}

.cta-box-webgl-shaders-eerste-fragment {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
  text-align: center;
  color: #ffffff;
  margin-top: 1rem;
  box-shadow: var(--shadow-lg);
}

.cta-title-webgl-shaders-eerste-fragment {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-top: 0;
}

.cta-text-webgl-shaders-eerste-fragment {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cta-box-webgl-shaders-eerste-fragment .btn {
  margin-top: 0.5rem;
}

.disclaimer-section-webgl-shaders-eerste-fragment {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-bg-secondary);
}

.disclaimer-content-webgl-shaders-eerste-fragment {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-webgl-shaders-eerste-fragment {
  color: var(--color-text-primary);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  margin-top: 0;
}

.disclaimer-text-webgl-shaders-eerste-fragment {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.related-section-webgl-shaders-eerste-fragment {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-webgl-shaders-eerste-fragment {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
}

.related-title-webgl-shaders-eerste-fragment {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
  margin: 0;
}

.related-cards-webgl-shaders-eerste-fragment {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-webgl-shaders-eerste-fragment {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 280px;
  max-width: 380px;
}

.related-card-link-webgl-shaders-eerste-fragment {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.related-card-link-webgl-shaders-eerste-fragment:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.related-image-webgl-shaders-eerste-fragment {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: var(--color-bg-secondary);
}

.related-image-webgl-shaders-eerste-fragment img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-text-webgl-shaders-eerste-fragment {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.related-card-title-webgl-shaders-eerste-fragment {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  line-height: 1.3;
  margin: 0;
}

.related-card-desc-webgl-shaders-eerste-fragment {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .related-card-webgl-shaders-eerste-fragment {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .related-card-webgl-shaders-eerste-fragment {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

code {
  background: var(--color-bg-secondary);
  color: var(--color-primary);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
}

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

@media (max-width: 640px) {
  .hero-title-webgl-shaders-eerste-fragment {
    font-size: 1.5rem;
  }

  .intro-title-webgl-shaders-eerste-fragment,
  .setup-title-webgl-shaders-eerste-fragment,
  .structure-title-webgl-shaders-eerste-fragment,
  .practical-title-webgl-shaders-eerste-fragment,
  .beyond-title-webgl-shaders-eerste-fragment,
  .conclusion-title-webgl-shaders-eerste-fragment {
    font-size: 1.25rem;
  }
}

.main-parametrisch-ontwerp-code-kunstwerken {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  overflow: hidden;
}

.hero-section-parametrisch-ontwerp-code-kunstwerken {
  background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.breadcrumbs-parametrisch-ontwerp-code-kunstwerken {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-secondary);
}

.breadcrumbs-parametrisch-ontwerp-code-kunstwerken a {
  color: var(--color-primary);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.breadcrumbs-parametrisch-ontwerp-code-kunstwerken a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumbs-parametrisch-ontwerp-code-kunstwerken span {
  color: var(--color-text-light);
}

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

.hero-text-parametrisch-ontwerp-code-kunstwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-parametrisch-ontwerp-code-kunstwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-parametrisch-ontwerp-code-kunstwerken {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: var(--space-md);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-subtitle-parametrisch-ontwerp-code-kunstwerken {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.hero-meta-parametrisch-ontwerp-code-kunstwerken {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin-top: var(--space-lg);
}

.meta-item-parametrisch-ontwerp-code-kunstwerken {
  font-weight: 500;
}

.meta-divider-parametrisch-ontwerp-code-kunstwerken {
  color: var(--color-text-light);
}

.hero-img-parametrisch-ontwerp-code-kunstwerken {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
}

@media (max-width: 768px) {
  .hero-content-parametrisch-ontwerp-code-kunstwerken {
    flex-direction: column;
  }

  .hero-text-parametrisch-ontwerp-code-kunstwerken,
  .hero-image-parametrisch-ontwerp-code-kunstwerken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.intro-section-parametrisch-ontwerp-code-kunstwerken {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.intro-content-parametrisch-ontwerp-code-kunstwerken {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-parametrisch-ontwerp-code-kunstwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-parametrisch-ontwerp-code-kunstwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-parametrisch-ontwerp-code-kunstwerken {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: var(--space-lg);
}

.intro-paragraph-parametrisch-ontwerp-code-kunstwerken {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.intro-img-parametrisch-ontwerp-code-kunstwerken {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

@media (max-width: 768px) {
  .intro-content-parametrisch-ontwerp-code-kunstwerken {
    flex-direction: column;
  }

  .intro-text-parametrisch-ontwerp-code-kunstwerken,
  .intro-image-parametrisch-ontwerp-code-kunstwerken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.foundations-section-parametrisch-ontwerp-code-kunstwerken {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.foundations-content-parametrisch-ontwerp-code-kunstwerken {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.foundations-image-parametrisch-ontwerp-code-kunstwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

.foundations-text-parametrisch-ontwerp-code-kunstwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

.foundations-title-parametrisch-ontwerp-code-kunstwerken {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: var(--space-lg);
}

.foundations-paragraph-parametrisch-ontwerp-code-kunstwerken {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.foundations-img-parametrisch-ontwerp-code-kunstwerken {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

@media (max-width: 768px) {
  .foundations-content-parametrisch-ontwerp-code-kunstwerken {
    flex-direction: column-reverse;
  }

  .foundations-image-parametrisch-ontwerp-code-kunstwerken,
  .foundations-text-parametrisch-ontwerp-code-kunstwerken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.techniques-section-parametrisch-ontwerp-code-kunstwerken {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.techniques-content-parametrisch-ontwerp-code-kunstwerken {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.techniques-text-parametrisch-ontwerp-code-kunstwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-image-parametrisch-ontwerp-code-kunstwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-title-parametrisch-ontwerp-code-kunstwerken {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: var(--space-lg);
}

.techniques-paragraph-parametrisch-ontwerp-code-kunstwerken {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.techniques-img-parametrisch-ontwerp-code-kunstwerken {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

@media (max-width: 768px) {
  .techniques-content-parametrisch-ontwerp-code-kunstwerken {
    flex-direction: column;
  }

  .techniques-text-parametrisch-ontwerp-code-kunstwerken,
  .techniques-image-parametrisch-ontwerp-code-kunstwerken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.practical-section-parametrisch-ontwerp-code-kunstwerken {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.practical-content-parametrisch-ontwerp-code-kunstwerken {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.practical-image-parametrisch-ontwerp-code-kunstwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-text-parametrisch-ontwerp-code-kunstwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-title-parametrisch-ontwerp-code-kunstwerken {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: var(--space-lg);
}

.practical-paragraph-parametrisch-ontwerp-code-kunstwerken {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.practical-img-parametrisch-ontwerp-code-kunstwerken {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

@media (max-width: 768px) {
  .practical-content-parametrisch-ontwerp-code-kunstwerken {
    flex-direction: column-reverse;
  }

  .practical-image-parametrisch-ontwerp-code-kunstwerken,
  .practical-text-parametrisch-ontwerp-code-kunstwerken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.tools-section-parametrisch-ontwerp-code-kunstwerken {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.tools-header-parametrisch-ontwerp-code-kunstwerken {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.tools-title-parametrisch-ontwerp-code-kunstwerken {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.tools-subtitle-parametrisch-ontwerp-code-kunstwerken {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.tools-grid-parametrisch-ontwerp-code-kunstwerken {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.tool-card-parametrisch-ontwerp-code-kunstwerken {
  flex: 1 1 280px;
  max-width: 320px;
  background: var(--color-bg-tertiary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(79, 70, 229, 0.1);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.tool-card-parametrisch-ontwerp-code-kunstwerken:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(79, 70, 229, 0.2);
}

.tool-name-parametrisch-ontwerp-code-kunstwerken {
  font-size: 1.125rem;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.tool-description-parametrisch-ontwerp-code-kunstwerken {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .tool-card-parametrisch-ontwerp-code-kunstwerken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.insights-section-parametrisch-ontwerp-code-kunstwerken {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.insights-content-parametrisch-ontwerp-code-kunstwerken {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.insights-text-parametrisch-ontwerp-code-kunstwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

.insights-image-parametrisch-ontwerp-code-kunstwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

.insights-title-parametrisch-ontwerp-code-kunstwerken {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: var(--space-lg);
}

.insights-paragraph-parametrisch-ontwerp-code-kunstwerken {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.insights-quote-parametrisch-ontwerp-code-kunstwerken {
  background: #ffffff;
  border-left: 4px solid var(--color-primary);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin: var(--space-lg) 0;
  box-shadow: var(--shadow-sm);
}

.quote-text-parametrisch-ontwerp-code-kunstwerken {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #0f172a;
  font-style: italic;
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

.quote-author-parametrisch-ontwerp-code-kunstwerken {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  font-style: normal;
  font-weight: 500;
}

.insights-img-parametrisch-ontwerp-code-kunstwerken {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

@media (max-width: 768px) {
  .insights-content-parametrisch-ontwerp-code-kunstwerken {
    flex-direction: column;
  }

  .insights-text-parametrisch-ontwerp-code-kunstwerken,
  .insights-image-parametrisch-ontwerp-code-kunstwerken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-parametrisch-ontwerp-code-kunstwerken {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-parametrisch-ontwerp-code-kunstwerken {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-parametrisch-ontwerp-code-kunstwerken {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  text-align: center;
}

.conclusion-paragraph-parametrisch-ontwerp-code-kunstwerken {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
  text-align: left;
}

.conclusion-cta-parametrisch-ontwerp-code-kunstwerken {
  display: flex;
  justify-content: center;
  margin-top: var(--space-2xl);
}

.cta-button-parametrisch-ontwerp-code-kunstwerken {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-xl);
  background: var(--color-primary);
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  text-decoration: none;
}

.cta-button-parametrisch-ontwerp-code-kunstwerken:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  text-decoration: none;
}

.cta-button-parametrisch-ontwerp-code-kunstwerken:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.disclaimer-section-parametrisch-ontwerp-code-kunstwerken {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-parametrisch-ontwerp-code-kunstwerken {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-secondary);
  box-shadow: var(--shadow-sm);
}

.disclaimer-title-parametrisch-ontwerp-code-kunstwerken {
  font-size: 1.125rem;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.disclaimer-text-parametrisch-ontwerp-code-kunstwerken {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

.related-section-parametrisch-ontwerp-code-kunstwerken {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.related-header-parametrisch-ontwerp-code-kunstwerken {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-title-parametrisch-ontwerp-code-kunstwerken {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.related-subtitle-parametrisch-ontwerp-code-kunstwerken {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.related-cards-parametrisch-ontwerp-code-kunstwerken {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-parametrisch-ontwerp-code-kunstwerken {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.related-card-parametrisch-ontwerp-code-kunstwerken:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.related-image-parametrisch-ontwerp-code-kunstwerken {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--color-bg-secondary);
}

.related-img-parametrisch-ontwerp-code-kunstwerken {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-text-parametrisch-ontwerp-code-kunstwerken {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.related-card-title-parametrisch-ontwerp-code-kunstwerken {
  font-size: 1.125rem;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}

.related-card-description-parametrisch-ontwerp-code-kunstwerken {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

@media (max-width: 768px) {
  .related-card-parametrisch-ontwerp-code-kunstwerken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-title-parametrisch-ontwerp-code-kunstwerken {
    font-size: 1.75rem;
  }

  .intro-title-parametrisch-ontwerp-code-kunstwerken,
  .foundations-title-parametrisch-ontwerp-code-kunstwerken,
  .techniques-title-parametrisch-ontwerp-code-kunstwerken,
  .practical-title-parametrisch-ontwerp-code-kunstwerken,
  .tools-title-parametrisch-ontwerp-code-kunstwerken,
  .insights-title-parametrisch-ontwerp-code-kunstwerken,
  .conclusion-title-parametrisch-ontwerp-code-kunstwerken,
  .related-title-parametrisch-ontwerp-code-kunstwerken {
    font-size: 1.5rem;
  }

  .hero-subtitle-parametrisch-ontwerp-code-kunstwerken {
    font-size: 1rem;
  }
}

.generative-pixels-about {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  overflow: hidden;
}

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

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

p, span, li {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.vision-hero-about {
  background: #0a0f1e;
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
}

.vision-hero-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  text-align: center;
}

.vision-hero-title-about {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.vision-hero-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #94a3b8;
  max-width: 700px;
}

.vision-hero-stats-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: center;
  margin-top: 1rem;
}

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

.vision-stat-number-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #4f46e5;
}

.vision-stat-label-about {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #cbd5e1;
}

.vision-hero-image-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  margin-top: 1rem;
}

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

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

.approach-header-about {
  text-align: center;
}

.approach-tag-about {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(79, 70, 229, 0.1);
  color: #4f46e5;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.approach-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-top: 0.75rem;
}

.approach-subtitle-about {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  max-width: 600px;
  margin: 1rem auto 0;
}

.approach-steps-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
  margin-top: 2rem;
}

.approach-step-about {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
}

@media (max-width: 768px) {
  .approach-step-about {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.approach-step-number-about {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  color: #4f46e5;
  flex-shrink: 0;
  line-height: 1;
}

.approach-step-text-about {
  flex: 1;
}

.approach-step-title-about {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.approach-step-description-about {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #475569;
  line-height: 1.6;
}

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

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

.expertise-header-about {
  text-align: center;
}

.expertise-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.expertise-subtitle-about {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #94a3b8;
  max-width: 650px;
  margin: 0 auto;
}

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

.expertise-card-about {
  flex: 1 1 clamp(280px, 100%, 380px);
  background: rgba(255, 255, 255, 0.05);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-base);
}

.expertise-card-about:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(79, 70, 229, 0.3);
}

.expertise-card-icon-about {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #4f46e5;
  margin-bottom: 1rem;
}

.expertise-card-title-about {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.expertise-card-text-about {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

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

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

.foundation-split-about {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

@media (max-width: 768px) {
  .foundation-split-about {
    flex-direction: column;
  }
}

.foundation-text-block-about {
  flex: 1 1 45%;
}

.foundation-text-block-about h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.foundation-text-block-about p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.foundation-text-block-about p:last-child {
  margin-bottom: 0;
}

.foundation-image-about {
  flex: 1 1 45%;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  max-height: 400px;
  object-fit: cover;
}

.foundation-quote-about {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #4f46e5;
  background: #ffffff;
  border-radius: var(--radius-md);
  margin-top: 1rem;
}

.foundation-quote-text-about {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #0f172a;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.foundation-quote-author-about {
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  color: #475569;
  font-style: normal;
}

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

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

.values-header-about {
  text-align: center;
  margin-bottom: 1rem;
}

.values-tag-about {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(79, 70, 229, 0.1);
  color: #4f46e5;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.values-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-top: 0.75rem;
}

.values-subtitle-about {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  max-width: 600px;
  margin: 1rem auto 0;
}

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

.values-item-about {
  flex: 1 1 clamp(250px, 100%, 320px);
  padding: clamp(1.5rem, 2vw, 2rem);
  background: #f8fafc;
  border-radius: var(--radius-lg);
  border-left: 3px solid #4f46e5;
}

.values-item-icon-about {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: #4f46e5;
  margin-bottom: 0.75rem;
}

.values-item-title-about {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.values-item-text-about {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: #475569;
  line-height: 1.6;
}

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

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
}

.disclaimer-header-about {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-icon-about {
  font-size: 1.5rem;
  color: #4f46e5;
  flex-shrink: 0;
}

.disclaimer-title-about {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: #0f172a;
}

.disclaimer-text-about {
  font-size: clamp(0.875rem, 1.2vw, 0.95rem);
  color: #475569;
  line-height: 1.7;
}

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

  .approach-step-about {
    text-align: center;
  }

  .foundation-split-about {
    gap: 1.5rem;
  }

  .expertise-cards-about {
    gap: 1.5rem;
  }

  .values-grid-about {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .vision-hero-stats-about {
    flex-direction: column;
    gap: 1rem;
  }
}

.portfolio-page {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

.portfolio-hero {
  padding: var(--space-2xl) var(--space-sm);
  background-color: var(--color-bg-primary);
  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);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.2;
}

.portfolio-hero-subtitle {
  font-size: clamp(0.95rem, 2vw + 0.25rem, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0;
  max-width: 600px;
  line-height: 1.6;
}

.portfolio-projects {
  padding: var(--space-3xl) var(--space-sm);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.portfolio-projects-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

.portfolio-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.portfolio-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: var(--color-bg-secondary);
}

.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-meta {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  align-items: center;
  flex-wrap: wrap;
}

.portfolio-card-category {
  display: inline-block;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-card-year {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.portfolio-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.25rem, 1.75rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.3;
  font-weight: 700;
}

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

.portfolio-cta {
  padding: var(--space-3xl) var(--space-sm);
  background-color: var(--color-bg-tertiary);
  overflow: hidden;
}

.portfolio-cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.25rem, 2.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.3;
  font-weight: 700;
}

.portfolio-cta-description {
  font-size: clamp(0.95rem, 2vw + 0.25rem, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-2xl) 0;
  line-height: 1.6;
}

.portfolio-cta-button {
  display: inline-block;
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw + 0.25rem, 1rem);
  transition: background-color var(--transition-base), transform var(--transition-fast);
  cursor: pointer;
  border: none;
  text-align: center;
}

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

.portfolio-cta-button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .portfolio-hero {
    padding: var(--space-3xl) var(--space-lg);
  }

  .portfolio-projects {
    padding: var(--space-3xl) var(--space-lg);
  }

  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .portfolio-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-hero {
    padding: var(--space-3xl) 0;
  }

  .portfolio-projects {
    padding: var(--space-3xl) 0;
  }

  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .portfolio-cta {
    padding: var(--space-3xl) 0;
  }
}

@media (min-width: 1280px) {
  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.services-page {
  width: 100%;
}

.services-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-xl) var(--space-sm);
  overflow: hidden;
  border-bottom: 1px solid var(--color-bg-secondary);
}

.services-hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.services-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin: 0 0 var(--space-md) 0;
  line-height: 1.2;
}

.services-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.services-content {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-3xl) var(--space-sm);
  overflow: hidden;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin: 0;
}

.service-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-card-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  height: 3.5rem;
}

.service-card-icon i {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
  line-height: 1.3;
}

.service-card-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.7;
  flex-grow: 1;
}

.service-card-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.service-card-features li {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  padding-left: var(--space-md);
  position: relative;
}

.service-card-features li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.services-cta {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) var(--space-sm);
  overflow: hidden;
  border-top: 1px solid var(--color-bg-secondary);
}

.services-cta-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.services-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
  line-height: 1.2;
}

.services-cta-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-2xl) 0;
  line-height: 1.7;
}

.services-cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
  padding: var(--space-sm) var(--space-2xl);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
  cursor: pointer;
  text-align: center;
}

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

.services-cta-button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .services-hero {
    padding: var(--space-3xl) var(--space-lg);
  }

  .services-content {
    padding: var(--space-3xl) var(--space-lg);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .service-card {
    padding: var(--space-2xl);
  }

  .services-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: var(--space-3xl) var(--space-xl);
  }

  .services-content {
    padding: var(--space-3xl) var(--space-xl);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .service-card {
    padding: var(--space-2xl);
  }

  .service-card:hover {
    transform: translateY(-4px);
  }

  .services-cta {
    padding: var(--space-3xl) var(--space-xl);
  }

  .services-cta-button:hover {
    transform: translateY(-3px);
  }
}

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

.legal-docs {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

.legal-docs .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.legal-docs .content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-2xl) 0;
}

.legal-docs h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-weight: 700;
  line-height: 1.3;
}

.legal-docs .updated-date {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
  display: block;
}

.legal-docs h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  font-weight: 700;
  line-height: 1.4;
}

.legal-docs h2:first-of-type {
  margin-top: var(--space-xl);
}

.legal-docs p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.legal-docs ul,
.legal-docs ol {
  margin-left: var(--space-md);
  margin-bottom: var(--space-md);
}

.legal-docs li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}

.legal-docs strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

.legal-docs .contact-section {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--space-2xl);
  border: 1px solid var(--color-bg-secondary);
}

.legal-docs .contact-section h2 {
  margin-top: 0;
  color: var(--color-text-primary);
}

.legal-docs .contact-section p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}

.legal-docs .contact-section p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .legal-docs .container {
    padding: 0 var(--space-lg);
  }

  .legal-docs .content {
    padding: var(--space-3xl) 0;
  }

  .legal-docs h1 {
    margin-bottom: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .legal-docs .container {
    padding: 0 var(--space-xl);
  }

  .legal-docs .content {
    padding: var(--space-3xl) 0;
  }
}

:root {
  --color-bg-primary: #f8fafc;
  --color-bg-secondary: #e2e8f0;
  --color-bg-tertiary: #ffffff;
  --color-bg-card: #ffffff;
  --color-text-primary: #0f172a;
  --color-text-secondary: #475569;
  --color-text-muted: #94a3b8;
  --color-text-light: #cbd5e1;
  --color-primary: #4f46e5;
  --color-primary-hover: #4338ca;
  --color-primary-light: #eef2ff;
  --color-secondary: #06b6d4;
  --color-secondary-hover: #0891b2;
  --font-primary: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 10px 15px rgba(15, 23, 42, 0.1);
  --shadow-xl: 0 20px 25px rgba(15, 23, 42, 0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --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);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.6;
}

.thank-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-section {
  width: 100%;
  background-color: var(--color-bg-primary);
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.thank-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-lg) var(--space-md);
}

.thank-icon {
  margin-bottom: var(--space-lg);
}

.check-icon {
  width: 80px;
  height: 80px;
  color: var(--color-primary);
  animation: scaleInCheck 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 4px 6px rgba(79, 70, 229, 0.15));
}

@keyframes scaleInCheck {
  from {
    opacity: 0;
    transform: scale(0.5) rotateZ(-45deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotateZ(0deg);
  }
}

.thank-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  font-weight: 700;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.7s ease-out 0.1s both;
}

.thank-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  font-weight: 600;
  animation: fadeInUp 0.7s ease-out 0.2s both;
}

.thank-description {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.7s ease-out 0.3s both;
}

.thank-content-block {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-2xl);
  animation: fadeInUp 0.7s ease-out 0.4s both;
  box-shadow: var(--shadow-sm);
}

.thank-info {
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: 0;
}

.btn-primary {
  display: inline-block;
  padding: var(--space-md) var(--space-2xl);
  background-color: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 600;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  border: none;
  animation: fadeInUp 0.7s ease-out 0.5s both;
}

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

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

@media (min-width: 640px) {
  .thank-section {
    padding: var(--space-2xl) var(--space-md);
  }

  .thank-wrapper {
    padding: var(--space-2xl) var(--space-lg);
  }

  .check-icon {
    width: 100px;
    height: 100px;
  }

  .thank-content-block {
    padding: var(--space-2xl);
  }
}

@media (min-width: 768px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-lg);
    min-height: 100vh;
  }

  .thank-wrapper {
    padding: var(--space-3xl) var(--space-2xl);
  }

  .check-icon {
    width: 120px;
    height: 120px;
    margin-bottom: var(--space-2xl);
  }

  .thank-title {
    margin-bottom: var(--space-md);
  }

  .thank-subtitle {
    margin-bottom: var(--space-xl);
  }

  .thank-description {
    margin-bottom: var(--space-xl);
  }

  .thank-content-block {
    margin-bottom: var(--space-3xl);
    padding: var(--space-2xl) var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-2xl);
  }

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

  .btn-primary {
    padding: var(--space-md) calc(var(--space-2xl) * 1.5);
    font-size: 1.1rem;
  }
}

@media (min-width: 1440px) {
  .thank-wrapper {
    padding: var(--space-3xl) 0;
  }
}

.error-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  width: 100%;
  padding: var(--space-lg) var(--space-sm);
  overflow: hidden;
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-2xl) var(--space-md);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl) var(--space-lg);
  }
}

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

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

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

.error-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .error-wrapper {
    gap: var(--space-2xl);
  }
}

.error-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.error-code-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .error-code-wrapper {
    width: 280px;
    height: 280px;
  }
}

@media (min-width: 1024px) {
  .error-code-wrapper {
    width: 320px;
    height: 320px;
  }
}

.error-animation {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--color-primary-light), transparent 70%);
  animation: floatPulse 6s ease-in-out infinite;
}

@keyframes floatPulse {
  0%, 100% {
    transform: scale(1) translateY(0);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1) translateY(-20px);
    opacity: 0.4;
  }
}

.error-code {
  position: relative;
  z-index: 10;
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(79, 70, 229, 0.15);
}

@media (min-width: 768px) {
  .error-code {
    font-size: clamp(5rem, 14vw, 9rem);
  }
}

.error-message {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .error-message {
    gap: var(--space-lg);
  }
}

.error-message h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .error-message h1 {
    font-size: clamp(2rem, 5vw, 3rem);
  }
}

.error-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.error-description {
  margin: var(--space-md) 0;
}

@media (min-width: 768px) {
  .error-description {
    margin: var(--space-lg) 0;
  }
}

.error-description p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

.error-actions {
  display: flex;
  justify-content: center;
  margin: var(--space-lg) 0;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .error-actions {
    margin: var(--space-2xl) 0;
  }
}

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

@media (min-width: 768px) {
  .btn {
    padding: var(--space-md) var(--space-xl);
  }
}

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

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

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

.error-hints {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-bg-secondary);
}

@media (min-width: 768px) {
  .error-hints {
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
  }
}

.hint-text {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 0.9vw + 0.4rem, 1rem);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

@media (max-width: 480px) {
  .error-code {
    text-shadow: 0 2px 10px rgba(79, 70, 229, 0.1);
  }
  
  .error-message h1 {
    margin-bottom: var(--space-sm);
  }
  
  .btn {
    width: 100%;
  }
}

.contact-page-getstarted {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

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

.contact-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.contact-hero-content {
  text-align: center;
}

.contact-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  letter-spacing: -0.5px;
}

.contact-hero-lead {
  font-size: clamp(0.95rem, 1.5vw, 1.2rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.contact-main {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.contact-main-content {
  width: 100%;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3xl);
  align-items: flex-start;
}

.contact-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-form-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.contact-form-header p {
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.contact-form-label {
  font-size: clamp(0.85rem, 0.9vw, 0.95rem);
  font-weight: 600;
  color: var(--color-text-primary);
  display: block;
}

.contact-form-input,
.contact-form-textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  background-color: var(--color-bg-secondary);
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-primary);
  transition: all var(--transition-base);
  box-sizing: border-box;
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
  color: var(--color-text-muted);
}

.contact-form-input:focus,
.contact-form-textarea:focus {
  outline: none;
  background-color: var(--color-bg-tertiary);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

.contact-form-textarea {
  min-height: 150px;
  resize: vertical;
  font-family: var(--font-primary);
}

.contact-form-submit {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

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

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

.contact-form-privacy {
  font-size: clamp(0.8rem, 0.85vw, 0.9rem);
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-top: var(--space-sm);
}

.contact-form-privacy a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.contact-form-privacy a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-info-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.contact-info-header p {
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.contact-info-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon i {
  color: var(--color-primary);
  font-size: 1.5rem;
}

.contact-info-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
}

.contact-info-content p {
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.contact-info-content a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.contact-info-content a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-info-box {
  background-color: var(--color-bg-primary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.contact-info-box h3 {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.contact-info-box p {
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .contact-hero {
    padding: var(--space-3xl) 0;
  }

  .contact-main {
    padding: var(--space-3xl) 0;
  }

  .contact-grid {
    gap: var(--space-3xl);
    align-items: stretch;
  }

  .contact-form-wrapper {
    flex: 1 1 calc(50% - var(--space-1-5));
    max-width: 500px;
  }

  .contact-info-wrapper {
    flex: 1 1 calc(50% - var(--space-1-5));
  }
}

@media (min-width: 1024px) {
  .contact-hero {
    padding: var(--space-3xl) 0;
  }

  .contact-main {
    padding: var(--space-3xl) 0;
  }

  .contact-grid {
    gap: var(--space-3xl);
  }
}

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

  .contact-grid {
    gap: var(--space-2xl);
  }
}