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

:root {
  --color-bg-primary: #fffbeb;
  --color-bg-secondary: #fef3c7;
  --color-bg-tertiary: #ffffff;
  --color-bg-card: #ffffff;

  --color-text-primary: #1c1917;
  --color-text-secondary: #57534e;
  --color-text-muted: #a8a29e;

  --color-primary: #0d9488;
  --color-primary-hover: #0f766e;
  --color-primary-light: #ccf7f4;
  --color-primary-lighter: #e0fffe;
  --color-secondary: #14b8a6;
  --color-secondary-light: #d1f8f5;
  --color-secondary-lighter: #e8fcfa;

  --color-success: #10b981;
  --color-success-light: #d1fae5;
  --color-warning: #f59e0b;
  --color-warning-light: #fef3c7;
  --color-danger: #ef4444;
  --color-danger-light: #fee2e2;

  --color-border: #e7e5e4;
  --color-border-light: #f5f3f1;

  --font-primary: 'Source Sans 3', sans-serif;
  --font-heading: 'Bricolage Grotesque', sans-serif;

  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --spacing-4xl: 6rem;

  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  --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 {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

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

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

h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

h3 {
  font-size: 2rem;
  font-weight: 600;
}

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

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

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

p {
  margin-bottom: var(--spacing-md);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

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

button, .btn {
  font-family: var(--font-primary);
  font-weight: 600;
  padding: var(--spacing-sm) var(--spacing-lg);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
}

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

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

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

.btn-secondary:hover {
  background: #0f9a8f;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

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

label {
  display: block;
  margin-bottom: var(--spacing-sm);
  font-weight: 500;
  color: var(--color-text-primary);
}

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}

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

.badge {
  display: inline-block;
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

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

.badge-secondary {
  background: var(--color-secondary-light);
  color: #0f9a8f;
}

.badge-success {
  background: var(--color-success-light);
  color: var(--color-success);
}

.badge-warning {
  background: var(--color-warning-light);
  color: var(--color-warning);
}

.badge-danger {
  background: var(--color-danger-light);
  color: var(--color-danger);
}

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

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.flex {
  display: flex;
}

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

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

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

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

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

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

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

.text-xs { font-size: 0.75rem; }
.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; }
.text-3xl { font-size: 2rem; }

.font-light { font-weight: 400; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.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-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }
.rounded-full { border-radius: var(--radius-full); }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

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

.line-clamp-1 { overflow: hidden; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; }
.line-clamp-2 { overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.line-clamp-3 { overflow: hidden; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }

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

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }

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

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

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }

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

  .hide-mobile {
    display: none;
  }
}

@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-fadeIn {
  animation: fadeIn var(--transition-base) ease-out;
}

.animate-slideInUp {
  animation: slideInUp var(--transition-base) ease-out;
}

.animate-slideInDown {
  animation: slideInDown var(--transition-base) ease-out;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.header-motion-studio {
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border-light);
  position: relative;
  z-index: 1000;
  padding: clamp(0.75rem, 2vw, 1.25rem) 0;
}

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

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

.header-motion-studio-brand:hover {
  opacity: 0.8;
}

.header-motion-studio-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

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

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

.header-motion-studio-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-base);
  white-space: nowrap;
}

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

.header-motion-studio-cta-button {
  display: none;
  padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1.25rem, 2.5vw, 1.75rem);
  background: var(--color-primary);
  color: var(--color-bg-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background var(--transition-base), transform var(--transition-base);
  white-space: nowrap;
  flex-shrink: 0;
}

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

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

.header-motion-studio-toggle-icon {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 1px;
  transition: all var(--transition-base);
}

.header-motion-studio-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-secondary);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-base);
  z-index: 999;
  overflow-y: auto;
  padding-top: 70px;
}

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

.header-motion-studio-mobile-header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  padding: clamp(0.75rem, 2vw, 1.25rem) clamp(1rem, 4vw, 2rem);
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border-light);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 1001;
}

.header-motion-studio-mobile-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-primary);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: color var(--transition-base);
}

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

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

.header-motion-studio-mobile-link {
  padding: clamp(1rem, 2vw, 1.25rem) 0;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border-light);
  transition: color var(--transition-base);
}

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

.header-motion-studio-mobile-cta {
  display: block;
  margin: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 4vw, 2rem) clamp(1rem, 3vw, 2rem);
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: var(--color-primary);
  color: var(--color-bg-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background var(--transition-base), transform var(--transition-base);
}

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

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

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

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

  .header-motion-studio-mobile-menu {
    display: none;
  }
}

@media (max-width: 767px) {
  .header-motion-studio-desktop-nav {
    display: none;
  }

  .header-motion-studio-cta-button {
    display: none;
  }

  .header-motion-studio-mobile-toggle {
    display: flex;
  }
}

    

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

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

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

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

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

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

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  cursor: pointer;
}

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

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

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

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

.st-hero-section {
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
}

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

.st-hero-header {
  text-align: center;
}

.st-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw + 1rem, 4rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.st-hero-subtitle {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.5rem);
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin: 0 auto;
}

.st-hero-cards {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.st-hero-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex: 0 1 calc(50% - 1rem);
  min-width: 200px;
  max-width: 250px;
  text-align: center;
  transition: all 0.3s ease;
}

.st-hero-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.25);
}

.st-hero-card-1 {
  transform: rotate(-2deg);
}

.st-hero-card-2 {
  transform: rotate(1deg);
}

.st-hero-card-3 {
  transform: rotate(-1deg);
}

.st-hero-card-4 {
  transform: rotate(2deg);
}

.st-hero-card-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.st-hero-card-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: rgba(255, 255, 255, 0.9);
}

.st-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  justify-content: center;
  margin-top: clamp(1rem, 2vw, 2rem);
}

@media (max-width: 767px) {
  .st-hero-card {
    flex: 0 1 calc(50% - 0.5rem);
    min-width: 150px;
  }
  
  .st-hero-card-1,
  .st-hero-card-2,
  .st-hero-card-3,
  .st-hero-card-4 {
    transform: none;
  }
}

.st-features-section {
  background: var(--color-bg-primary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.st-features-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.st-features-subtitle {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

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

.st-features-card {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border: 1px solid var(--color-border-light);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.st-features-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(13, 148, 136, 0.15);
}

.st-features-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1;
}

.st-features-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  color: var(--color-text-primary);
  font-weight: 600;
}

.st-features-card-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.st-about-section {
  background: var(--color-bg-secondary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.st-about-text {
  flex: 1 1 45%;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.st-about-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
}

.st-about-paragraph {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.st-about-link {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 600;
  padding: 0.5rem 0;
  border-bottom: 2px solid var(--color-primary);
  transition: all 0.3s ease;
  width: fit-content;
  margin-top: 0.5rem;
}

.st-about-link:hover {
  color: var(--color-primary-hover);
  border-bottom-color: var(--color-primary-hover);
  transform: translateX(4px);
}

.st-about-grid {
  flex: 1 1 45%;
  min-width: 250px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.st-about-grid-item {
  background: var(--color-bg-card);
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--color-border-light);
}

.st-about-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1023px) {
  .st-about-content {
    flex-direction: column;
  }
  
  .st-about-text,
  .st-about-grid {
    flex: 1 1 100%;
  }
}

@media (max-width: 767px) {
  .st-about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.st-values-section {
  background: var(--color-bg-tertiary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.st-values-header {
  text-align: center;
}

.st-values-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
  color: var(--color-text-primary);
  font-weight: 700;
}

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

.st-values-card {
  flex: 1 1 280px;
  max-width: 360px;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid var(--color-primary);
  background: transparent;
  transition: all 0.3s ease;
}

.st-values-card:hover {
  padding-left: clamp(2rem, 3vw, 2.5rem);
}

.st-values-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.st-values-card-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.st-process-section {
  background: var(--color-bg-primary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.st-process-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: 1rem;
}

.st-process-subtitle {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

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

.st-process-step {
  flex: 1 1 200px;
  max-width: 280px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 10px;
  text-align: center;
  border: 1px solid var(--color-border-light);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.st-process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.12);
}

.st-process-step-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--color-primary);
  font-weight: 700;
}

.st-process-step-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary);
  font-weight: 600;
}

.st-process-step-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
}

.st-timeline-section {
  background: var(--color-bg-secondary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.st-timeline-header {
  text-align: center;
}

.st-timeline-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
  color: var(--color-text-primary);
  font-weight: 700;
}

.st-timeline-items {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.st-timeline-item {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-left: 3px solid var(--color-primary);
  padding-left: clamp(1.5rem, 3vw, 2.5rem);
  transition: all 0.3s ease;
}

.st-timeline-item:hover {
  padding-left: clamp(2rem, 3vw, 3rem);
}

.st-timeline-year {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-primary);
  font-weight: 700;
  flex-shrink: 0;
  min-width: 80px;
}

.st-timeline-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

.st-blog-section {
  background: var(--color-bg-tertiary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.st-blog-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.st-blog-subtitle {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-muted);
}

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

.st-blog-post {
  flex: 1 1 320px;
  max-width: 400px;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 10px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.st-blog-post:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.1);
}

.st-blog-post-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary);
  font-weight: 600;
  line-height: 1.5;
}

.st-blog-post-excerpt {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  flex-grow: 1;
  margin: 0;
}

.st-blog-post-link {
  color: var(--color-primary);
  font-weight: 600;
  display: inline-block;
  padding: 0.5rem 0;
  border-bottom: 2px solid var(--color-primary);
  transition: all 0.3s ease;
  width: fit-content;
}

.st-blog-post-link:hover {
  color: var(--color-primary-hover);
  border-bottom-color: var(--color-primary-hover);
  transform: translateX(4px);
}

.st-blog-cta {
  text-align: center;
  margin-top: clamp(1rem, 2vw, 2rem);
}

.st-blog-all-link {
  display: inline-block;
  padding: clamp(0.75rem, 1vw + 0.5rem, 1rem) clamp(1.5rem, 2vw, 2rem);
  background: var(--color-primary);
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.st-blog-all-link:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

.st-awards-section {
  background: var(--color-bg-primary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.st-awards-header {
  text-align: center;
}

.st-awards-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
  color: var(--color-text-primary);
  font-weight: 700;
}

.st-awards-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 2rem);
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.st-awards-item {
  flex: 1 1 200px;
  max-width: 280px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 10px;
  text-align: center;
  border: 2px solid var(--color-primary);
  transition: all 0.3s ease;
}

.st-awards-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.2);
}

.st-awards-year {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.st-awards-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.st-newsletter-section {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.st-newsletter-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.st-newsletter-wrapper {
  background: var(--color-bg-card);
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: 12px;
  border: 2px solid var(--color-primary);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.st-newsletter-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: 1rem;
}

.st-newsletter-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: 0;
}

.st-newsletter-link {
  color: var(--color-primary);
  font-weight: 600;
  border-bottom: 2px solid var(--color-primary);
  transition: all 0.3s ease;
}

.st-newsletter-link:hover {
  color: var(--color-primary-hover);
  border-bottom-color: var(--color-primary-hover);
}

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

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

.cookie-banner-text {
  color: #f1f5f9;
  margin: 0;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.95rem);
  flex: 1 1 auto;
  min-width: 200px;
}

.cookie-banner-buttons {
  display: flex;
  gap: clamp(0.75rem, 1vw, 1rem);
  flex-wrap: wrap;
}

.cookie-btn-accept {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.95rem);
  transition: all 0.3s ease;
}

.cookie-btn-accept:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

.cookie-btn-decline {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  background: transparent;
  color: #f1f5f9;
  border: 1px solid rgba(241, 245, 249, 0.4);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.95rem);
  transition: all 0.3s ease;
}

.cookie-btn-decline:hover {
  border-color: rgba(241, 245, 249, 0.7);
  background: rgba(241, 245, 249, 0.1);
}

@media (max-width: 1023px) {
  .st-hero-card {
    flex: 0 1 calc(50% - 1rem);
  }
  
  .st-features-card {
    flex: 1 1 280px;
  }
  
  .st-values-card {
    flex: 1 1 280px;
  }
}

@media (max-width: 767px) {
  .st-hero-section {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
  }
  
  .st-hero-cards {
    margin: 1rem 0;
  }
  
  .st-hero-card {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 140px;
    max-width: 200px;
    padding: 1rem;
  }
  
  .st-hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
  }
  
  .st-features-section,
  .st-about-section,
  .st-values-section,
  .st-process-section,
  .st-timeline-section,
  .st-blog-section,
  .st-awards-section,
  .st-newsletter-section {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
  }
  
  .st-features-grid {
    gap: 1rem;
  }
  
  .st-features-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .st-about-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .st-process-steps {
    flex-direction: column;
  }
  
  .st-process-step {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .st-timeline-items {
    gap: 1rem;
  }
  
  .st-timeline-item {
    gap: 1rem;
    padding: 1rem;
    padding-left: 1.5rem;
  }
  
  .st-blog-posts {
    flex-direction: column;
  }
  
  .st-blog-post {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .st-awards-timeline {
    flex-direction: column;
  }
  
  .st-awards-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cookie-banner-text {
    text-align: center;
    min-width: 100%;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn-accept,
  .cookie-btn-decline {
    flex: 1;
    min-width: 120px;
  }
}

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

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

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

.footer-about,
.footer-nav,
.footer-contact,
.footer-legal {
  display: block;
}

.footer-about p,
.footer-contact p {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer h3 {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  letter-spacing: -0.5px;
}

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

.footer-nav-list li,
.footer-legal-list li {
  display: block;
}

.footer a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: color var(--transition-base), text-decoration var(--transition-base);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.footer-copyright {
  border-top: 1px solid var(--color-border-light);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(1rem, 3vw, 2rem);
}

.footer-copyright p {
  color: var(--color-text-muted);
  font-size: clamp(0.8125rem, 0.9vw + 0.5rem, 0.9375rem);
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

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

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

  .footer-copyright {
    flex: 1 1 100%;
    border-top: 1px solid var(--color-border-light);
    padding-top: clamp(1.5rem, 3vw, 2rem);
    margin-top: clamp(1.5rem, 3vw, 2rem);
  }

  .footer-nav-list,
  .footer-legal-list {
    display: flex;
    flex-direction: column;
    gap: clamp(0.625rem, 1.5vw, 1rem);
  }
}

@media (min-width: 1024px) {
  .footer-about {
    flex: 1 1 320px;
  }

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

.category-page-motion-design-trends {
  background: var(--color-bg-primary);
}

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

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

.hero-content-motion-design-trends {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
}

.hero-card-motion-design-trends {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 4rem);
  max-width: 800px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.hero-title-motion-design-trends {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-motion-design-trends {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  margin: 0 0 clamp(1.5rem, 3vw, 2rem) 0;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-meta-motion-design-trends {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-muted);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.article-count-motion-design-trends {
  display: inline-block;
  background: var(--color-primary-light);
  color: var(--color-primary);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 500;
}

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

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

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

.card-motion-design-trends {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.card-motion-design-trends:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-featured-motion-design-trends {
  flex: 1 1 calc(66.666% - 1.25rem);
  min-width: 350px;
}

.card-standard-motion-design-trends {
  flex: 1 1 calc(33.333% - 1.25rem);
  min-width: 280px;
}

.card-fullwidth-motion-design-trends {
  flex: 1 1 100%;
}

.card-image-motion-design-trends {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

.card-content-motion-design-trends {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.25rem);
}

.card-title-motion-design-trends {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-description-motion-design-trends {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-meta-motion-design-trends {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding-top: clamp(0.75rem, 1vw, 1rem);
  border-top: 1px solid var(--color-border-light);
}

.meta-item-motion-design-trends {
  font-size: clamp(0.75rem, 0.9vw + 0.4rem, 0.9rem);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.meta-item-motion-design-trends i {
  color: var(--color-primary);
  font-size: 0.85em;
}

.card-link-motion-design-trends {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transition-base);
  display: inline-block;
  margin-top: clamp(0.5rem, 1vw, 0.75rem);
}

.card-link-motion-design-trends:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

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

.additional-content-motion-design-trends {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 4rem);
}

.additional-header-motion-design-trends {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.additional-title-motion-design-trends {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  margin: 0 0 clamp(0.75rem, 2vw, 1rem) 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.additional-subtitle-motion-design-trends {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.steps-wrapper-motion-design-trends {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

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

.step-number-motion-design-trends {
  flex-shrink: 0;
  width: clamp(3.5rem, 8vw, 5rem);
  height: clamp(3.5rem, 8vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-bg-card);
  border-radius: var(--radius-full);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-family: var(--font-heading);
  font-weight: 700;
}

.step-content-motion-design-trends {
  flex: 1;
  padding-top: clamp(0.5rem, 1vw, 0.75rem);
}

.step-title-motion-design-trends {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  margin: 0 0 clamp(0.5rem, 1vw, 0.75rem) 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.step-description-motion-design-trends {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 1023px) {
  .card-featured-motion-design-trends {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .card-standard-motion-design-trends {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .card-fullwidth-motion-design-trends {
    flex: 1 1 100%;
  }

  .step-item-motion-design-trends {
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .step-number-motion-design-trends {
    margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  }
}

@media (max-width: 767px) {
  .card-meta-motion-design-trends {
    flex-direction: column;
    gap: clamp(0.5rem, 1vw, 0.75rem);
  }

  .posts-grid-motion-design-trends {
    flex-direction: column;
  }

  .card-motion-design-trends {
    flex: 1 1 100% !important;
    min-width: 100% !important;
  }
}

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

.main-motion-design-tools-2026 {
    display: block;
    width: 100%;
  }

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

  .hero-section-motion-design-tools-2026 {
    background: var(--color-bg-primary);
    padding: clamp(2rem, 6vw, 4rem) 0;
    overflow: hidden;
  }

  .breadcrumbs-motion-design-tools-2026 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    font-size: clamp(0.75rem, 1vw + 0.5rem, 0.95rem);
    color: var(--color-text-secondary);
  }

  .breadcrumbs-motion-design-tools-2026 a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all var(--transition-base);
  }

  .breadcrumbs-motion-design-tools-2026 a:hover {
    color: var(--color-primary-hover);
    text-decoration: underline;
  }

  .breadcrumbs-motion-design-tools-2026 span {
    color: var(--color-text-muted);
  }

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

  .hero-header-motion-design-tools-2026 {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .hero-meta-motion-design-tools-2026 {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .meta-item-motion-design-tools-2026 {
    display: inline-block;
    background: var(--color-bg-secondary);
    color: var(--color-text-primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: clamp(0.8rem, 1vw + 0.5rem, 0.95rem);
    font-weight: 500;
  }

  .hero-title-motion-design-tools-2026 {
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hero-subtitle-motion-design-tools-2026 {
    color: var(--color-text-secondary);
    font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.25rem);
    line-height: 1.6;
    max-width: 650px;
  }

  .hero-image-container-motion-design-tools-2026 {
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
  }

  .hero-image-motion-design-tools-2026 {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
  }

  @media (max-width: 768px) {
    .hero-section-motion-design-tools-2026 {
      padding: clamp(1.5rem, 4vw, 2.5rem) 0;
    }

    .hero-content-motion-design-tools-2026 {
      gap: clamp(1.5rem, 3vw, 2rem);
    }

    .hero-image-motion-design-tools-2026 {
      max-height: 350px;
    }
  }

  .author-section-motion-design-tools-2026 {
    background: var(--color-bg-secondary);
    padding: clamp(2rem, 5vw, 3rem) 0;
    overflow: hidden;
  }

  .author-card-motion-design-tools-2026 {
    display: flex;
    flex-direction: row;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: flex-start;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
  }

  .author-photo-motion-design-tools-2026 {
    flex-shrink: 0;
  }

  .author-image-motion-design-tools-2026 {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-full);
    object-fit: cover;
    display: block;
  }

  .author-info-motion-design-tools-2026 {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .author-label-motion-design-tools-2026 {
    color: var(--color-text-muted);
    font-size: clamp(0.8rem, 1vw + 0.5rem, 0.9rem);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
  }

  .author-name-motion-design-tools-2026 {
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2vw + 0.5rem, 1.5rem);
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
  }

  .author-link-motion-design-tools-2026 {
    color: var(--color-primary);
    text-decoration: none;
    transition: all var(--transition-base);
  }

  .author-link-motion-design-tools-2026:hover {
    color: var(--color-primary-hover);
    text-decoration: underline;
  }

  .author-position-motion-design-tools-2026 {
    color: var(--color-text-secondary);
    font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
    font-weight: 500;
    margin: 0;
  }

  .author-bio-motion-design-tools-2026 {
    color: var(--color-text-secondary);
    font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
    line-height: 1.5;
    margin: 0;
  }

  @media (max-width: 768px) {
    .author-card-motion-design-tools-2026 {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .author-info-motion-design-tools-2026 {
      align-items: center;
    }
  }

  .article-intro-motion-design-tools-2026 {
    background: var(--color-bg-primary);
    padding: clamp(2rem, 5vw, 4rem) 0;
    overflow: hidden;
  }

  .article-intro-content-motion-design-tools-2026 {
    display: flex;
    flex-direction: row;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: flex-start;
  }

  .intro-text-motion-design-tools-2026 {
    flex: 1 1 55%;
    max-width: 55%;
  }

  .intro-title-motion-design-tools-2026 {
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-weight: 700;
    margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .intro-paragraph-motion-design-tools-2026 {
    color: var(--color-text-secondary);
    font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
    line-height: 1.7;
    margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  }

  .intro-paragraph-motion-design-tools-2026:last-child {
    margin-bottom: 0;
  }

  .intro-highlight-motion-design-tools-2026 {
    flex: 1 1 45%;
    max-width: 45%;
  }

  .highlight-box-motion-design-tools-2026 {
    background: var(--color-bg-card);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-primary);
    box-shadow: var(--shadow-sm);
  }

  .highlight-title-motion-design-tools-2026 {
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
    font-weight: 700;
    margin: 0 0 1rem 0;
  }

  .highlight-text-motion-design-tools-2026 {
    color: var(--color-text-secondary);
    font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
    line-height: 1.6;
    margin: 0;
  }

  @media (max-width: 768px) {
    .article-intro-content-motion-design-tools-2026 {
      flex-direction: column;
    }

    .intro-text-motion-design-tools-2026 {
      flex: 1 1 100%;
      max-width: 100%;
    }

    .intro-highlight-motion-design-tools-2026 {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }

  .tools-landscape-motion-design-tools-2026 {
    background: var(--color-bg-secondary);
    padding: clamp(2rem, 5vw, 4rem) 0;
    overflow: hidden;
  }

  .tools-landscape-content-motion-design-tools-2026 {
    display: flex;
    flex-direction: row;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
  }

  .tools-text-motion-design-tools-2026 {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .tools-section-title-motion-design-tools-2026 {
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-weight: 700;
    margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .tools-paragraph-motion-design-tools-2026 {
    color: var(--color-text-secondary);
    font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
    line-height: 1.7;
    margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  }

  .tools-paragraph-motion-design-tools-2026:last-child {
    margin-bottom: 0;
  }

  .tools-image-motion-design-tools-2026 {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .tools-workflow-image-motion-design-tools-2026 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
  }

  @media (max-width: 768px) {
    .tools-landscape-content-motion-design-tools-2026 {
      flex-direction: column;
    }

    .tools-text-motion-design-tools-2026 {
      flex: 1 1 100%;
      max-width: 100%;
    }

    .tools-image-motion-design-tools-2026 {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }

  .tools-detail-motion-design-tools-2026 {
    background: var(--color-bg-primary);
    padding: clamp(2rem, 5vw, 4rem) 0;
    overflow: hidden;
  }

  .tools-detail-content-motion-design-tools-2026 {
    display: flex;
    flex-direction: row;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
  }

  .tools-detail-image-motion-design-tools-2026 {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .blender-detail-image-motion-design-tools-2026 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
  }

  .tools-detail-text-motion-design-tools-2026 {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .detail-subtitle-motion-design-tools-2026 {
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
    font-weight: 700;
    margin: 0 0 1rem 0;
    line-height: 1.2;
  }

  .detail-paragraph-motion-design-tools-2026 {
    color: var(--color-text-secondary);
    font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
    line-height: 1.7;
    margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  }

  .detail-list-motion-design-tools-2026 {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .detail-list-item-motion-design-tools-2026 {
    color: var(--color-text-secondary);
    font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
    padding-left: 1.5rem;
    position: relative;
  }

  .detail-list-item-motion-design-tools-2026::before {
    content: "";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
  }

  @media (max-width: 768px) {
    .tools-detail-content-motion-design-tools-2026 {
      flex-direction: column;
    }

    .tools-detail-image-motion-design-tools-2026 {
      flex: 1 1 100%;
      max-width: 100%;
    }

    .tools-detail-text-motion-design-tools-2026 {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }

  .specialized-tools-motion-design-tools-2026 {
    background: var(--color-bg-secondary);
    padding: clamp(2rem, 5vw, 4rem) 0;
    overflow: hidden;
  }

  .specialized-content-motion-design-tools-2026 {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .specialized-title-motion-design-tools-2026 {
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .specialized-intro-motion-design-tools-2026 {
    color: var(--color-text-secondary);
    font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
    line-height: 1.7;
    margin: 0;
    max-width: 600px;
  }

  .tools-cards-motion-design-tools-2026 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2rem);
    justify-content: center;
  }

  .tool-card-motion-design-tools-2026 {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: clamp(1.5rem, 3vw, 2rem);
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
  }

  .tool-card-motion-design-tools-2026:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }

  .tool-card-header-motion-design-tools-2026 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .tool-card-title-motion-design-tools-2026 {
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 2vw + 0.5rem, 1.4rem);
    font-weight: 700;
    margin: 0;
  }

  .tool-card-category-motion-design-tools-2026 {
    color: var(--color-primary);
    font-size: clamp(0.8rem, 1vw + 0.5rem, 0.95rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
  }

  .tool-card-text-motion-design-tools-2026 {
    color: var(--color-text-secondary);
    font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
    line-height: 1.6;
    margin: 0;
  }

  @media (max-width: 1024px) {
    .tool-card-motion-design-tools-2026 {
      flex: 1 1 calc(50% - 1rem);
    }
  }

  @media (max-width: 768px) {
    .tool-card-motion-design-tools-2026 {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }

  .integration-motion-design-tools-2026 {
    background: var(--color-bg-primary);
    padding: clamp(2rem, 5vw, 4rem) 0;
    overflow: hidden;
  }

  .integration-content-motion-design-tools-2026 {
    display: flex;
    flex-direction: row;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
  }

  .integration-text-motion-design-tools-2026 {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .integration-title-motion-design-tools-2026 {
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-weight: 700;
    margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .integration-paragraph-motion-design-tools-2026 {
    color: var(--color-text-secondary);
    font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
    line-height: 1.7;
    margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  }

  .integration-paragraph-motion-design-tools-2026:last-child {
    margin-bottom: 0;
  }

  .integration-image-motion-design-tools-2026 {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .integration-diagram-motion-design-tools-2026 {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
  }

  @media (max-width: 768px) {
    .integration-content-motion-design-tools-2026 {
      flex-direction: column;
    }

    .integration-text-motion-design-tools-2026 {
      flex: 1 1 100%;
      max-width: 100%;
    }

    .integration-image-motion-design-tools-2026 {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }

  .disclaimer-motion-design-tools-2026 {
    background: var(--color-bg-secondary);
    padding: clamp(2rem, 5vw, 4rem) 0;
    overflow: hidden;
  }

  .disclaimer-content-motion-design-tools-2026 {
    display: flex;
    flex-direction: column;
  }

  .disclaimer-box-motion-design-tools-2026 {
    background: var(--color-bg-card);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-warning);
    box-shadow: var(--shadow-sm);
  }

  .disclaimer-title-motion-design-tools-2026 {
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
    font-weight: 700;
    margin: 0 0 1rem 0;
  }

  .disclaimer-text-motion-design-tools-2026 {
    color: var(--color-text-secondary);
    font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
    line-height: 1.6;
    margin: 0;
  }

  .conclusion-motion-design-tools-2026 {
    background: var(--color-bg-primary);
    padding: clamp(2rem, 5vw, 4rem) 0;
    overflow: hidden;
  }

  .conclusion-content-motion-design-tools-2026 {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
    max-width: 700px;
  }

  .conclusion-title-motion-design-tools-2026 {
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .conclusion-paragraph-motion-design-tools-2026 {
    color: var(--color-text-secondary);
    font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
    line-height: 1.7;
    margin: 0;
  }

  .conclusion-cta-motion-design-tools-2026 {
    margin-top: clamp(1rem, 2vw, 1.5rem);
  }

  .cta-link-motion-design-tools-2026 {
    display: inline-block;
    background: var(--color-primary);
    color: #ffffff;
    padding: clamp(0.8rem, 1.5vw, 1.2rem) clamp(1.5rem, 3vw, 2rem);
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
    transition: all var(--transition-base);
  }

  .cta-link-motion-design-tools-2026:hover {
    background: var(--color-primary-hover);
  }

  .related-posts-motion-design-tools-2026 {
    background: var(--color-bg-secondary);
    padding: clamp(2rem, 5vw, 4rem) 0;
    overflow: hidden;
  }

  .related-content-motion-design-tools-2026 {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3rem);
  }

  .related-title-motion-design-tools-2026 {
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .related-subtitle-motion-design-tools-2026 {
    color: var(--color-text-secondary);
    font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
    margin: 0;
  }

  .related-cards-motion-design-tools-2026 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2rem);
    justify-content: center;
  }

  .related-card-motion-design-tools-2026 {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--color-bg-card);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
  }

  .related-card-motion-design-tools-2026:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }

  .related-card-image-motion-design-tools-2026 {
    width: 100%;
    height: 200px;
    overflow: hidden;
  }

  .related-image-motion-design-tools-2026 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .related-card-body-motion-design-tools-2026 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: clamp(1.5rem, 3vw, 2rem);
    flex: 1;
  }

  .related-card-title-motion-design-tools-2026 {
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 2vw + 0.5rem, 1.3rem);
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .related-card-text-motion-design-tools-2026 {
    color: var(--color-text-secondary);
    font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
    line-height: 1.6;
    margin: 0;
    flex: 1;
  }

  .related-card-link-motion-design-tools-2026 {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
    transition: all var(--transition-base);
    align-self: flex-start;
  }

  .related-card-link-motion-design-tools-2026:hover {
    color: var(--color-primary-hover);
    text-decoration: underline;
  }

  @media (max-width: 1024px) {
    .related-card-motion-design-tools-2026 {
      flex: 1 1 calc(50% - 1rem);
    }
  }

  @media (max-width: 768px) {
    .related-card-motion-design-tools-2026 {
      flex: 1 1 100%;
      max-width: 100%;
    }

    .related-card-image-motion-design-tools-2026 {
      height: 250px;
    }
  }

  @media (max-width: 480px) {
    .hero-meta-motion-design-tools-2026 {
      flex-direction: column;
      gap: 0.75rem;
    }

    .meta-item-motion-design-tools-2026 {
      width: 100%;
      text-align: center;
    }
  }

.main-nederlandse-animatiestijl {
  width: 100%;
  overflow: hidden;
}

.hero-section-nederlandse-animatiestijl {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.hero-header-nederlandse-animatiestijl {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-title-nederlandse-animatiestijl {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-nederlandse-animatiestijl {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  max-width: 650px;
}

.hero-meta-nederlandse-animatiestijl {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
  align-items: center;
}

.meta-item-nederlandse-animatiestijl {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.meta-item-nederlandse-animatiestijl i {
  color: var(--color-primary);
  font-size: 1.1em;
}

.hero-image-wrapper-nederlandse-animatiestijl {
  width: 100%;
  border-radius: var(--radius-lg);
}

.hero-image-nederlandse-animatiestijl {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

.breadcrumbs-nederlandse-animatiestijl {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
  align-items: center;
}

.breadcrumbs-nederlandse-animatiestijl a,
.breadcrumbs-nederlandse-animatiestijl span {
  color: var(--color-text-secondary);
  font-size: clamp(0.825rem, 1vw + 0.5rem, 0.95rem);
  transition: all var(--transition-base);
}

.breadcrumbs-nederlandse-animatiestijl a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.author-section-nederlandse-animatiestijl {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.author-card-nederlandse-animatiestijl {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.author-photo-Nederlandse-animatiestijl {
  flex: 0 0 auto;
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.author-image-nederlandse-animatiestijl {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.author-info-nederlandse-animatiestijl {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.author-name-nederlandse-animatiestijl {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.author-name-nederlandse-animatiestijl a {
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

.author-name-nederlandse-animatiestijl a:hover {
  color: var(--color-primary);
}

.author-position-nederlandse-animatiestijl {
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  margin: 0;
}

.author-bio-nederlandse-animatiestijl {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.825rem, 1vw + 0.5rem, 0.95rem);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .author-card-nederlandse-animatiestijl {
    flex-direction: column;
    text-align: center;
  }
}

.intro-section-nederlandse-animatiestijl {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-title-nederlandse-animatiestijl {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.25;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-text-nederlandse-animatiestijl {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 700px;
}

.intro-paragraph-nederlandse-animatiestijl {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-highlight-nederlandse-animatiestijl {
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.highlight-box-nederlandse-animatiestijl {
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.highlight-text-nederlandse-animatiestijl {
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.7;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-one-nederlandse-animatiestijl {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-text-one-nederlandse-animatiestijl {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.content-title-one-nederlandse-animatiestijl {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-paragraph-one-nederlandse-animatiestijl {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.75;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-image-one-nederlandse-animatiestijl {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-nederlandse-animatiestijl {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

@media (max-width: 768px) {
  .content-wrapper-one-nederlandse-animatiestijl {
    flex-direction: column;
  }
  
  .content-text-one-nederlandse-animatiestijl,
  .content-image-one-nederlandse-animatiestijl {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-two-nederlandse-animatiestijl {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-image-two-nederlandse-animatiestijl {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.content-text-two-nederlandse-animatiestijl {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.content-title-two-nederlandse-animatiestijl {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-paragraph-two-nederlandse-animatiestijl {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.75;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.key-points-nederlandse-animatiestijl {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.points-label-nederlandse-animatiestijl {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  display: block;
}

.points-list-nederlandse-animatiestijl {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.point-item-nederlandse-animatiestijl {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.point-item-nederlandse-animatiestijl::before {
  content: "";
  color: var(--color-primary);
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2em;
}

@media (max-width: 768px) {
  .content-wrapper-two-nederlandse-animatiestijl {
    flex-direction: column;
  }
  
  .content-image-two-nederlandse-animatiestijl,
  .content-text-two-nederlandse-animatiestijl {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }
}

.content-three-nederlandse-animatiestijl {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-three-nederlandse-animatiestijl {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-three-nederlandse-animatiestijl {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.content-title-three-nederlandse-animatiestijl {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-paragraph-three-nederlandse-animatiestijl {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.75;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-image-three-nederlandse-animatiestijl {
  flex: 1 1 50%;
  max-width: 50%;
}

@media (max-width: 768px) {
  .content-wrapper-three-nederlandse-animatiestijl {
    flex-direction: column;
  }
  
  .content-text-three-nederlandse-animatiestijl,
  .content-image-three-nederlandse-animatiestijl {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-four-nederlandse-animatiestijl {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-four-nederlandse-animatiestijl {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-image-four-nederlandse-animatiestijl {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.content-text-four-nederlandse-animatiestijl {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.content-title-four-nederlandse-animatiestijl {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-paragraph-four-nederlandse-animatiestijl {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.75;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .content-wrapper-four-nederlandse-animatiestijl {
    flex-direction: column;
  }
  
  .content-image-four-nederlandse-animatiestijl,
  .content-text-four-nederlandse-animatiestijl {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }
}

.disclaimer-section-nederlandse-animatiestijl {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-nederlandse-animatiestijl {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-warning);
}

.disclaimer-icon-nederlandse-animatiestijl {
  flex: 0 0 auto;
  font-size: 1.75rem;
  color: var(--color-warning);
  margin-top: 0.25rem;
}

.disclaimer-text-nederlandse-animatiestijl {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.disclaimer-title-nederlandse-animatiestijl {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.3rem);
  font-weight: 700;
  margin: 0;
}

.disclaimer-paragraph-nederlandse-animatiestijl {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .disclaimer-content-nederlandse-animatiestijl {
    flex-direction: column;
  }
}

.conclusion-section-nederlandse-animatiestijl {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-nederlandse-animatiestijl {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 750px;
}

.conclusion-title-nederlandse-animatiestijl {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-paragraph-nederlandse-animatiestijl {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.75;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.related-title-nederlandse-animatiestijl {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-subtitle-nederlandse-animatiestijl {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.6;
  text-align: center;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-cards-wrapper-nederlandse-animatiestijl {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
  justify-content: center;
}

.related-card-nederlandse-animatiestijl {
  flex: 1 1 calc(33.333% - 1.667rem);
  min-width: 280px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.related-card-nederlandse-animatiestijl:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.related-card-image-nederlandse-animatiestijl {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--color-bg-primary);
}

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

.related-card-body-nederlandse-animatiestijl {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1rem, 2vw, 1.5rem);
}

.related-card-title-nederlandse-animatiestijl {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-title-nederlandse-animatiestijl a {
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

.related-card-title-nederlandse-animatiestijl a:hover {
  color: var(--color-primary);
}

.related-card-description-nederlandse-animatiestijl {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.95rem);
  line-height: 1.65;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-meta-nederlandse-animatiestijl {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.meta-tag-nederlandse-animatiestijl {
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.85rem);
  font-weight: 600;
  background: var(--color-primary-light);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

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

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

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

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

.main-nederlandse-designscholen-invloed {
  width: 100%;
  overflow: hidden;
}

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

.hero-section-nederlandse-designscholen-invloed {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.hero-text-block-nederlandse-designscholen-invloed {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-nederlandse-designscholen-invloed {
  flex: 1 1 50%;
  max-width: 50%;
}

.breadcrumbs-nederlandse-designscholen-invloed {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.95rem);
}

.breadcrumbs-nederlandse-designscholen-invloed a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition-base);
}

.breadcrumbs-nederlandse-designscholen-invloed a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumbs-nederlandse-designscholen-invloed span {
  color: var(--color-text-muted);
}

.hero-title-nederlandse-designscholen-invloed {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-nederlandse-designscholen-invloed {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-nederlandse-designscholen-invloed {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 3vw, 1.5rem);
  flex-wrap: wrap;
}

.meta-item-nederlandse-designscholen-invloed {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
}

.meta-item-nederlandse-designscholen-invloed i {
  color: var(--color-primary);
}

.hero-image-nederlandse-designscholen-invloed {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .hero-content-nederlandse-designscholen-invloed {
    flex-direction: column;
  }

  .hero-text-block-nederlandse-designscholen-invloed,
  .hero-image-block-nederlandse-designscholen-invloed {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.author-section-nederlandse-designscholen-invloed {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  overflow: hidden;
}

.author-card-nederlandse-designscholen-invloed {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.author-photo-block-nederlandse-designscholen-invloed {
  flex-shrink: 0;
}

.author-photo-nederlandse-designscholen-invloed {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  object-fit: cover;
  display: block;
}

.author-info-block-nederlandse-designscholen-invloed {
  flex: 1 1 auto;
}

.author-name-nederlandse-designscholen-invloed {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.25rem;
}

.author-name-nederlandse-designscholen-invloed a {
  color: var(--color-text-primary);
  text-decoration: none;
  transition: var(--transition-base);
}

.author-name-nederlandse-designscholen-invloed a:hover {
  color: var(--color-primary);
}

.author-position-nederlandse-designscholen-invloed {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.author-bio-nederlandse-designscholen-invloed {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .author-card-nederlandse-designscholen-invloed {
    flex-direction: column;
    text-align: center;
  }
}

.intro-section-nederlandse-designscholen-invloed {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.intro-text-block-nederlandse-designscholen-invloed {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-block-nederlandse-designscholen-invloed {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-nederlandse-designscholen-invloed {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-text-nederlandse-designscholen-invloed {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-nederlandse-designscholen-invloed {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .intro-content-nederlandse-designscholen-invloed {
    flex-direction: column;
  }

  .intro-text-block-nederlandse-designscholen-invloed,
  .intro-image-block-nederlandse-designscholen-invloed {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.principles-section-nederlandse-designscholen-invloed {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.principles-content-nederlandse-designscholen-invloed {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.principles-text-block-nederlandse-designscholen-invloed {
  flex: 1 1 50%;
  max-width: 50%;
}

.principles-image-block-nederlandse-designscholen-invloed {
  flex: 1 1 50%;
  max-width: 50%;
}

.principles-title-nederlandse-designscholen-invloed {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.principles-list-nederlandse-designscholen-invloed {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.principle-item-nederlandse-designscholen-invloed {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.principle-heading-nederlandse-designscholen-invloed {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-primary);
}

.principle-text-nederlandse-designscholen-invloed {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.principles-image-nederlandse-designscholen-invloed {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .principles-content-nederlandse-designscholen-invloed {
    flex-direction: column;
  }

  .principles-text-block-nederlandse-designscholen-invloed,
  .principles-image-block-nederlandse-designscholen-invloed {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.impact-section-nederlandse-designscholen-invloed {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.impact-content-nederlandse-designscholen-invloed {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.impact-image-block-nederlandse-designscholen-invloed {
  flex: 1 1 50%;
  max-width: 50%;
}

.impact-text-block-nederlandse-designscholen-invloed {
  flex: 1 1 50%;
  max-width: 50%;
}

.impact-title-nederlandse-designscholen-invloed {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.impact-text-nederlandse-designscholen-invloed {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.impact-highlight-nederlandse-designscholen-invloed {
  background: var(--color-bg-secondary);
  padding: clamp(1.25rem, 2vw, 2rem);
  border-left: 4px solid var(--color-primary);
  margin: clamp(1.5rem, 3vw, 2rem) 0;
  border-radius: var(--radius-sm);
}

.highlight-text-nederlandse-designscholen-invloed {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-primary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 0.75rem;
}

.highlight-attribution-nederlandse-designscholen-invloed {
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.impact-image-nederlandse-designscholen-invloed {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .impact-content-nederlandse-designscholen-invloed {
    flex-direction: column;
  }

  .impact-image-block-nederlandse-designscholen-invloed,
  .impact-text-block-nederlandse-designscholen-invloed {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.methods-section-nederlandse-designscholen-invloed {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.methods-content-nederlandse-designscholen-invloed {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.methods-text-block-nederlandse-designscholen-invloed {
  flex: 1 1 50%;
  max-width: 50%;
}

.methods-image-block-nederlandse-designscholen-invloed {
  flex: 1 1 50%;
  max-width: 50%;
}

.methods-title-nederlandse-designscholen-invloed {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.methods-grid-nederlandse-designscholen-invloed {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.method-card-nederlandse-designscholen-invloed {
  background: var(--color-bg-card);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  transition: var(--transition-base);
}

.method-card-nederlandse-designscholen-invloed:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.method-card-title-nederlandse-designscholen-invloed {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.method-card-text-nederlandse-designscholen-invloed {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.methods-image-nederlandse-designscholen-invloed {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .methods-content-nederlandse-designscholen-invloed {
    flex-direction: column;
  }

  .methods-text-block-nederlandse-designscholen-invloed,
  .methods-image-block-nederlandse-designscholen-invloed {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.disclaimer-section-nederlandse-designscholen-invloed {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  overflow: hidden;
}

.disclaimer-content-nederlandse-designscholen-invloed {
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-secondary);
}

.disclaimer-title-nederlandse-designscholen-invloed {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.disclaimer-text-nederlandse-designscholen-invloed {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.conclusion-section-nederlandse-designscholen-invloed {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-nederlandse-designscholen-invloed {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.conclusion-text-block-nederlandse-designscholen-invloed {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-image-block-nederlandse-designscholen-invloed {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-title-nederlandse-designscholen-invloed {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-text-nederlandse-designscholen-invloed {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-image-nederlandse-designscholen-invloed {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .conclusion-content-nederlandse-designscholen-invloed {
    flex-direction: column;
  }

  .conclusion-text-block-nederlandse-designscholen-invloed,
  .conclusion-image-block-nederlandse-designscholen-invloed {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.related-section-nederlandse-designscholen-invloed {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.related-content-nederlandse-designscholen-invloed {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-title-nederlandse-designscholen-invloed {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-grid-nederlandse-designscholen-invloed {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-nederlandse-designscholen-invloed {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 280px;
  max-width: 100%;
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
}

.related-card-nederlandse-designscholen-invloed:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.related-image-wrapper-nederlandse-designscholen-invloed {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-nederlandse-designscholen-invloed {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-base);
}

.related-card-nederlandse-designscholen-invloed:hover .related-card-image-nederlandse-designscholen-invloed {
  transform: scale(1.05);
}

.related-card-body-nederlandse-designscholen-invloed {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-nederlandse-designscholen-invloed {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-title-nederlandse-designscholen-invloed a {
  color: var(--color-text-primary);
  text-decoration: none;
  transition: var(--transition-base);
}

.related-card-title-nederlandse-designscholen-invloed a:hover {
  color: var(--color-primary);
}

.related-card-description-nederlandse-designscholen-invloed {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .related-card-nederlandse-designscholen-invloed {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

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

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition-base);
}

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

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

@media (max-width: 1024px) {
  .hero-content-nederlandse-designscholen-invloed,
  .intro-content-nederlandse-designscholen-invloed,
  .principles-content-nederlandse-designscholen-invloed,
  .impact-content-nederlandse-designscholen-invloed,
  .methods-content-nederlandse-designscholen-invloed,
  .conclusion-content-nederlandse-designscholen-invloed {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .hero-text-block-nederlandse-designscholen-invloed,
  .hero-image-block-nederlandse-designscholen-invloed,
  .intro-text-block-nederlandse-designscholen-invloed,
  .intro-image-block-nederlandse-designscholen-invloed,
  .principles-text-block-nederlandse-designscholen-invloed,
  .principles-image-block-nederlandse-designscholen-invloed,
  .impact-image-block-nederlandse-designscholen-invloed,
  .impact-text-block-nederlandse-designscholen-invloed,
  .methods-text-block-nederlandse-designscholen-invloed,
  .methods-image-block-nederlandse-designscholen-invloed,
  .conclusion-text-block-nederlandse-designscholen-invloed,
  .conclusion-image-block-nederlandse-designscholen-invloed {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-section-nederlandse-designscholen-invloed,
  .intro-section-nederlandse-designscholen-invloed,
  .principles-section-nederlandse-designscholen-invloed,
  .impact-section-nederlandse-designscholen-invloed,
  .methods-section-nederlandse-designscholen-invloed,
  .disclaimer-section-nederlandse-designscholen-invloed,
  .conclusion-section-nederlandse-designscholen-invloed,
  .related-section-nederlandse-designscholen-invloed {
    padding: clamp(1.5rem, 4vw, 2.5rem) 0;
  }

  .author-card-nederlandse-designscholen-invloed {
    flex-direction: column;
    text-align: center;
  }

  .author-photo-nederlandse-designscholen-invloed {
    width: 100px;
    height: 100px;
  }
}

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

html, body {
  font-family: var(--font-primary);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

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

p {
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.7;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

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

.main-toekomst-bewegingsontwerp-europa {
  width: 100%;
  background: var(--color-bg-primary);
}

.hero-section-toekomst-bewegingsontwerp-europa {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.breadcrumbs-toekomst-bewegingsontwerp-europa {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  flex-wrap: wrap;
}

.breadcrumbs-toekomst-bewegingsontwerp-europa a {
  color: var(--color-accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumbs-toekomst-bewegingsontwerp-europa a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

.breadcrumbs-toekomst-bewegingsontwerp-europa span {
  color: var(--color-text-muted);
}

.hero-header-toekomst-bewegingsontwerp-europa {
  text-align: center;
}

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

.hero-meta-toekomst-bewegingsontwerp-europa {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  flex-wrap: wrap;
}

.meta-item-toekomst-bewegingsontwerp-europa {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
}

.meta-item-toekomst-bewegingsontwerp-europa i {
  color: var(--color-accent);
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.hero-subtitle-toekomst-bewegingsontwerp-europa {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.hero-image-toekomst-bewegingsontwerp-europa {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.hero-image-toekomst-bewegingsontwerp-europa img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 500px;
  object-fit: cover;
}

.author-section-toekomst-bewegingsontwerp-europa {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 4vw, 3rem) 0;
  overflow: hidden;
}

.author-card-toekomst-bewegingsontwerp-europa {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.author-photo-toekomst-bewegingsontwerp-europa {
  flex-shrink: 0;
  width: clamp(100px, 12vw, 140px);
  height: clamp(100px, 12vw, 140px);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.author-photo-toekomst-bewegingsontwerp-europa img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.author-info-toekomst-bewegingsontwerp-europa {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.author-label-toekomst-bewegingsontwerp-europa {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.author-name-toekomst-bewegingsontwerp-europa {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin: 0;
}

.author-name-toekomst-bewegingsontwerp-europa a {
  color: var(--color-text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.author-name-toekomst-bewegingsontwerp-europa a:hover {
  color: var(--color-accent);
}

.author-position-toekomst-bewegingsontwerp-europa {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-accent);
  font-weight: 600;
  margin: 0;
}

.author-bio-toekomst-bewegingsontwerp-europa {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .author-card-toekomst-bewegingsontwerp-europa {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .author-photo-toekomst-bewegingsontwerp-europa {
    width: 100px;
    height: 100px;
  }
}

.intro-section-toekomst-bewegingsontwerp-europa {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.intro-text-toekomst-bewegingsontwerp-europa {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-toekomst-bewegingsontwerp-europa {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-toekomst-bewegingsontwerp-europa {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
}

.intro-description-toekomst-bewegingsontwerp-europa {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-secondary-toekomst-bewegingsontwerp-europa {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.intro-image-toekomst-bewegingsontwerp-europa img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

@media (max-width: 768px) {
  .intro-content-toekomst-bewegingsontwerp-europa {
    flex-direction: column;
  }

  .intro-text-toekomst-bewegingsontwerp-europa,
  .intro-image-toekomst-bewegingsontwerp-europa {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.trends-section-toekomst-bewegingsontwerp-europa {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.trends-content-toekomst-bewegingsontwerp-europa {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.trends-main-toekomst-bewegingsontwerp-europa {
  flex: 1 1 55%;
  max-width: 55%;
}

.trends-highlight-toekomst-bewegingsontwerp-europa {
  flex: 1 1 45%;
  max-width: 45%;
}

.trends-title-toekomst-bewegingsontwerp-europa {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.3;
}

.trends-list-toekomst-bewegingsontwerp-europa {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.trend-item-toekomst-bewegingsontwerp-europa {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.trend-number-toekomst-bewegingsontwerp-europa {
  flex-shrink: 0;
  width: clamp(50px, 8vw, 70px);
  height: clamp(50px, 8vw, 70px);
  background: var(--color-accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  font-family: var(--font-heading);
  flex-shrink: 0;
}

.trend-text-toekomst-bewegingsontwerp-europa {
  flex: 1;
}

.trend-heading-toekomst-bewegingsontwerp-europa {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
  font-weight: 700;
  margin: 0;
}

.trend-description-toekomst-bewegingsontwerp-europa {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

.trends-highlight-toekomst-bewegingsontwerp-europa img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

@media (max-width: 768px) {
  .trends-content-toekomst-bewegingsontwerp-europa {
    flex-direction: column;
  }

  .trends-main-toekomst-bewegingsontwerp-europa,
  .trends-highlight-toekomst-bewegingsontwerp-europa {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.skills-section-toekomst-bewegingsontwerp-europa {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.skills-content-toekomst-bewegingsontwerp-europa {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.skills-image-toekomst-bewegingsontwerp-europa {
  flex: 1 1 50%;
  max-width: 50%;
}

.skills-text-toekomst-bewegingsontwerp-europa {
  flex: 1 1 50%;
  max-width: 50%;
}

.skills-title-toekomst-bewegingsontwerp-europa {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
}

.skills-intro-toekomst-bewegingsontwerp-europa {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.skills-breakdown-toekomst-bewegingsontwerp-europa {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.skill-block-toekomst-bewegingsontwerp-europa {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-secondary);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
}

.skill-heading-toekomst-bewegingsontwerp-europa {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
  font-weight: 700;
  margin: 0;
}

.skill-text-toekomst-bewegingsontwerp-europa {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

.skills-image-toekomst-bewegingsontwerp-europa img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

@media (max-width: 768px) {
  .skills-content-toekomst-bewegingsontwerp-europa {
    flex-direction: column;
  }

  .skills-image-toekomst-bewegingsontwerp-europa,
  .skills-text-toekomst-bewegingsontwerp-europa {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.tools-section-toekomst-bewegingsontwerp-europa {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.tools-content-toekomst-bewegingsontwerp-europa {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.tools-title-toekomst-bewegingsontwerp-europa {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  text-align: center;
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
}

.tools-intro-toekomst-bewegingsontwerp-europa {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  text-align: center;
  margin: 0;
  line-height: 1.7;
}

.tools-grid-toekomst-bewegingsontwerp-europa {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.tool-card-toekomst-bewegingsontwerp-europa {
  flex: 1 1 calc(50% - 0.75rem);
  min-width: 250px;
  max-width: 100%;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

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

.tool-name-toekomst-bewegingsontwerp-europa {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  font-weight: 700;
  margin: 0;
}

.tool-detail-toekomst-bewegingsontwerp-europa {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .tool-card-toekomst-bewegingsontwerp-europa {
    flex: 1 1 100%;
  }
}

.disclaimer-section-toekomst-bewegingsontwerp-europa {
  background: var(--color-bg-tertiary);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-toekomst-bewegingsontwerp-europa {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent);
}

.disclaimer-icon-toekomst-bewegingsontwerp-europa {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  border-radius: 50%;
  color: white;
  font-size: 1.25rem;
}

.disclaimer-text-toekomst-bewegingsontwerp-europa {
  flex: 1;
}

.disclaimer-title-toekomst-bewegingsontwerp-europa {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
  font-weight: 700;
  margin: 0;
}

.disclaimer-body-toekomst-bewegingsontwerp-europa {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

.conclusion-section-toekomst-bewegingsontwerp-europa {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-toekomst-bewegingsontwerp-europa {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.conclusion-title-toekomst-bewegingsontwerp-europa {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
}

.conclusion-blocks-toekomst-bewegingsontwerp-europa {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.conclusion-text-toekomst-bewegingsontwerp-europa {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-image-toekomst-bewegingsontwerp-europa {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-paragraph-toekomst-bewegingsontwerp-europa {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-paragraph-toekomst-bewegingsontwerp-europa:last-child {
  margin-bottom: 0;
}

.conclusion-image-toekomst-bewegingsontwerp-europa img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

@media (max-width: 768px) {
  .conclusion-blocks-toekomst-bewegingsontwerp-europa {
    flex-direction: column;
  }

  .conclusion-text-toekomst-bewegingsontwerp-europa,
  .conclusion-image-toekomst-bewegingsontwerp-europa {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.related-section-toekomst-bewegingsontwerp-europa {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.related-content-toekomst-bewegingsontwerp-europa {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-title-toekomst-bewegingsontwerp-europa {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  text-align: center;
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
}

.related-subtitle-toekomst-bewegingsontwerp-europa {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  text-align: center;
  margin: 0;
  line-height: 1.7;
}

.related-cards-toekomst-bewegingsontwerp-europa {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-toekomst-bewegingsontwerp-europa {
  flex: 1 1 calc(33.333% - 1.67rem);
  min-width: 280px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

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

.related-image-toekomst-bewegingsontwerp-europa {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--color-bg-secondary);
}

.related-image-toekomst-bewegingsontwerp-europa img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.3s ease;
}

.related-card-toekomst-bewegingsontwerp-europa:hover .related-image-toekomst-bewegingsontwerp-europa img {
  transform: scale(1.05);
}

.related-info-toekomst-bewegingsontwerp-europa {
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.related-card-title-toekomst-bewegingsontwerp-europa {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--color-text-primary);
  margin: 0;
  font-weight: 700;
  line-height: 1.4;
}

.related-card-title-toekomst-bewegingsontwerp-europa a {
  color: var(--color-text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-card-title-toekomst-bewegingsontwerp-europa a:hover {
  color: var(--color-accent);
}

.related-card-description-toekomst-bewegingsontwerp-europa {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.related-link-toekomst-bewegingsontwerp-europa {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.related-link-toekomst-bewegingsontwerp-europa:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-card-toekomst-bewegingsontwerp-europa {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

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

@media (max-width: 768px) {
  .hero-section-toekomst-bewegingsontwerp-europa {
    padding: 1.5rem 0;
  }

  .breadcrumbs-toekomst-bewegingsontwerp-europa {
    font-size: 0.75rem;
  }

  .author-card-toekomst-bewegingsontwerp-europa {
    flex-direction: column;
    text-align: center;
  }

  .author-photo-toekomst-bewegingsontwerp-europa {
    width: 100px;
    height: 100px;
  }

  .intro-section-toekomst-bewegingsontwerp-europa,
  .trends-section-toekomst-bewegingsontwerp-europa,
  .skills-section-toekomst-bewegingsontwerp-europa,
  .tools-section-toekomst-bewegingsontwerp-europa,
  .disclaimer-section-toekomst-bewegingsontwerp-europa,
  .conclusion-section-toekomst-bewegingsontwerp-europa,
  .related-section-toekomst-bewegingsontwerp-europa {
    padding: 2rem 0;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.motion-design-evolution-about {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.hero-section-motion-about {
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
}

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

.hero-title-motion-about {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.hero-subtitle-motion-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.3rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

.hero-visual-motion-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.1);
}

.journey-section-motion-about {
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  background: var(--color-bg-tertiary);
}

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

.journey-header-motion-about {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.journey-tag-motion-about {
  display: inline-block;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.journey-title-motion-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.journey-intro-motion-about {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--color-text-secondary);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.journey-blocks-motion-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.journey-block-motion-about {
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
  border-left: 4px solid var(--color-primary);
}

.journey-block-title-motion-about {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.journey-block-text-motion-about {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.approach-section-motion-about {
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  background: var(--color-bg-primary);
}

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

.approach-header-motion-about {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.approach-tag-motion-about {
  display: inline-block;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--color-secondary);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.approach-title-motion-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.approach-split-motion-about {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.approach-text-motion-about {
  flex: 1 1 50%;
}

.approach-text-block-motion-about {
  margin-bottom: 1.5rem;
}

.approach-text-block-motion-about:last-child {
  margin-bottom: 0;
}

.approach-text-title-motion-about {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.approach-text-content-motion-about {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.approach-visual-motion-about {
  flex: 1 1 50%;
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  min-height: 300px;
  max-height: 450px;
}

@media (max-width: 768px) {
  .approach-split-motion-about {
    flex-direction: column;
  }

  .approach-text-motion-about {
    flex: 1 1 100%;
  }

  .approach-visual-motion-about {
    flex: 1 1 100%;
    min-height: 250px;
  }
}

.influence-section-motion-about {
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  background: var(--color-bg-tertiary);
}

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

.influence-header-motion-about {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.influence-tag-motion-about {
  display: inline-block;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.influence-title-motion-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.influence-intro-motion-about {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--color-text-secondary);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

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

.influence-card-motion-about {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 250px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  border-radius: 10px;
  border-top: 3px solid var(--color-secondary);
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.08);
  transition: var(--transition-base);
}

.influence-card-motion-about:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(13, 148, 136, 0.15);
}

.influence-card-icon-motion-about {
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--color-primary);
  margin-bottom: 1rem;
  display: block;
}

.influence-card-title-motion-about {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.influence-card-text-motion-about {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .influence-card-motion-about {
    flex: 1 1 100%;
  }
}

.future-section-motion-about {
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
}

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

.future-header-motion-about {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.future-tag-motion-about {
  display: inline-block;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--color-secondary);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.future-title-motion-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.future-intro-motion-about {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--color-text-secondary);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.future-quote-motion-about {
  background: var(--color-bg-tertiary);
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 5px solid var(--color-primary);
  border-radius: 8px;
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.future-quote-text-motion-about {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-style: italic;
  color: var(--color-text-primary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.future-quote-author-motion-about {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--color-text-secondary);
  font-style: normal;
}

.future-points-motion-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.future-point-motion-about {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.future-point-number-motion-about {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--color-primary);
  min-width: 50px;
  text-align: center;
}

.future-point-text-motion-about {
  flex: 1;
  padding-top: 0.25rem;
}

.future-point-title-motion-about {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.future-point-description-motion-about {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.disclaimer-section-motion-about {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  background: var(--color-bg-secondary);
  border-top: 1px solid rgba(13, 148, 136, 0.15);
}

.disclaimer-content-motion-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.disclaimer-header-motion-about {
  display: flex;
  flex-direction: row;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  align-items: flex-start;
}

.disclaimer-icon-motion-about {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  color: var(--color-primary);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.disclaimer-title-motion-about {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.disclaimer-text-motion-about {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 900px;
}

@media (max-width: 768px) {
  .hero-section-motion-about {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .hero-content-motion-about {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .approach-split-motion-about {
    flex-direction: column;
  }

  .approach-text-motion-about,
  .approach-visual-motion-about {
    flex: 1 1 100%;
  }
}

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

  .influence-card-motion-about {
    flex: 1 1 100%;
    min-width: auto;
  }

  .future-point-motion-about {
    flex-direction: column;
    gap: clamp(0.75rem, 1.5vw, 1rem);
  }

  .future-point-number-motion-about {
    text-align: left;
  }
}

.author-profile-maarten-van-der-linde {
  width: 100%;
}

.hero-section-maarten-van-der-linde {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.hero-content-maarten-van-der-linde {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 768px) {
  .hero-content-maarten-van-der-linde {
    flex-direction: row;
    align-items: flex-start;
    gap: clamp(2rem, 5vw, 4rem);
  }
}

.hero-text-maarten-van-der-linde {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-image-maarten-van-der-linde {
  flex: 1 1 45%;
  min-height: 300px;
  max-height: 450px;
}

.hero-photo-maarten-van-der-linde {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-label-maarten-van-der-linde {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-title-maarten-van-der-linde {
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-maarten-van-der-linde {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--color-text-secondary);
  font-weight: 500;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-description-maarten-van-der-linde {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-stats-maarten-van-der-linde {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.stat-item-maarten-van-der-linde {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number-maarten-van-der-linde {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--color-accent);
}

.stat-label-maarten-van-der-linde {
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  font-weight: 500;
}

.journey-section-maarten-van-der-linde {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.journey-content-maarten-van-der-linde {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.journey-header-maarten-van-der-linde {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
}

.section-label-maarten-van-der-linde {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-title-maarten-van-der-linde {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.journey-timeline-maarten-van-der-linde {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.timeline-item-maarten-van-der-linde {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  padding: clamp(1.5rem, 2vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .timeline-item-maarten-van-der-linde {
    flex-direction: row;
    gap: clamp(1.5rem, 3vw, 2rem);
    align-items: flex-start;
  }
}

.timeline-year-maarten-van-der-linde {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-accent);
  flex: 0 0 auto;
  min-width: 80px;
}

.timeline-content-maarten-van-der-linde {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
  flex: 1 1 auto;
}

.timeline-title-maarten-van-der-linde {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.timeline-text-maarten-van-der-linde {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.expertise-section-maarten-van-der-linde {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.expertise-content-maarten-van-der-linde {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

.expertise-header-maarten-van-der-linde {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.section-subtitle-maarten-van-der-linde {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.expertise-cards-maarten-van-der-linde {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.expertise-card-maarten-van-der-linde {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.expertise-card-maarten-van-der-linde:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-icon-maarten-van-der-linde {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
}

.card-title-maarten-van-der-linde {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-text-maarten-van-der-linde {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.credentials-section-maarten-van-der-linde {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.credentials-content-maarten-van-der-linde {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

.credentials-header-maarten-van-der-linde {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
}

.credentials-grid-maarten-van-der-linde {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.credentials-block-maarten-van-der-linde {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.credentials-subtitle-maarten-van-der-linde {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 600;
  color: var(--color-text-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.credentials-list-maarten-van-der-linde {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1.5vw, 1.25rem);
}

.credential-item-maarten-van-der-linde {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.credential-label-maarten-van-der-linde {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  font-weight: 600;
  color: var(--color-text-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.credential-detail-maarten-van-der-linde {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.credentials-skills-maarten-van-der-linde {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.skill-tag-maarten-van-der-linde {
  display: inline-block;
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(0.75rem, 1.5vw, 1rem);
  background: var(--color-accent);
  color: var(--color-bg-primary);
  border-radius: var(--radius-full);
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  font-weight: 500;
}

.philosophy-section-maarten-van-der-linde {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.philosophy-content-maarten-van-der-linde {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

.philosophy-header-maarten-van-der-linde {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
}

.philosophy-main-maarten-van-der-linde {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 768px) {
  .philosophy-main-maarten-van-der-linde {
    flex-direction: row;
    align-items: flex-start;
    gap: clamp(2rem, 5vw, 4rem);
  }
}

.philosophy-text-maarten-van-der-linde {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.philosophy-intro-maarten-van-der-linde {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--color-text-primary);
  line-height: 1.7;
  font-weight: 500;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.philosophy-subheading-maarten-van-der-linde {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-top: clamp(0.5rem, 1vw, 1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.philosophy-paragraph-maarten-van-der-linde {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.philosophy-quote-maarten-van-der-linde {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1.5vw, 1.25rem);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent);
  box-shadow: var(--shadow-sm);
}

.quote-text-maarten-van-der-linde {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--color-text-primary);
  line-height: 1.8;
  font-style: italic;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.quote-author-maarten-van-der-linde {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  font-weight: 500;
  margin: 0;
}

.articles-section-maarten-van-der-linde {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.articles-content-maarten-van-der-linde {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

.articles-header-maarten-van-der-linde {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.articles-grid-maarten-van-der-linde {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.article-card-maarten-van-der-linde {
  flex: 1 1 calc(50% - 1rem);
  min-width: 280px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1.5vw, 1.25rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition-base);
  text-decoration: none;
}

.article-card-maarten-van-der-linde:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.article-image-maarten-van-der-linde {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--color-bg-secondary);
}

.article-image-maarten-van-der-linde img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body-maarten-van-der-linde {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  padding: clamp(1rem, 1.5vw, 1.5rem);
}

.article-title-maarten-van-der-linde {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 600;
  color: var(--color-text-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.4;
}

.article-excerpt-maarten-van-der-linde {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.article-meta-maarten-van-der-linde {
  display: flex;
  flex-direction: row;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  flex-wrap: wrap;
  font-size: clamp(0.75rem, 0.95vw, 0.85rem);
  color: var(--color-text-muted);
}

.article-date-maarten-van-der-linde,
.article-read-maarten-van-der-linde {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.articles-cta-maarten-van-der-linde {
  text-align: center;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.btn-primary-maarten-van-der-linde {
  display: inline-block;
  padding: clamp(0.85rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: var(--color-accent);
  color: var(--color-bg-primary);
  border-radius: var(--radius-md);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  text-align: center;
}

.btn-primary-maarten-van-der-linde:hover {
  background: var(--color-accent-hover);
  text-decoration: none;
}

.contact-section-maarten-van-der-linde {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.contact-content-maarten-van-der-linde {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

.contact-header-maarten-van-der-linde {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.contact-grid-maarten-van-der-linde {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

@media (min-width: 768px) {
  .contact-grid-maarten-van-der-linde {
    flex-direction: row;
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
  }
}

.contact-info-maarten-van-der-linde {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.contact-info-title-maarten-van-der-linde {
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 600;
  color: var(--color-text-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.contact-info-text-maarten-van-der-linde {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: var(--color-text-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.contact-links-maarten-van-der-linde {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
  margin-top: clamp(0.5rem, 1vw, 0.75rem);
}

.contact-link-maarten-van-der-linde {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-accent);
  text-decoration: none;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: 500;
  transition: all var(--transition-base);
}

.contact-link-maarten-van-der-linde:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

.contact-cta-maarten-van-der-linde {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  text-align: center;
}

.contact-cta-text-maarten-van-der-linde {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.back-section-maarten-van-der-linde {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 4vw, 3rem) 0;
  overflow: hidden;
}

.back-content-maarten-van-der-linde {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  align-items: center;
}

.back-link-maarten-van-der-linde {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-accent);
  text-decoration: none;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: 500;
  transition: all var(--transition-base);
}

.back-link-maarten-van-der-linde:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

@media (max-width: 767px) {
  .expertise-card-maarten-van-der-linde {
    flex: 1 1 100%;
  }

  .article-card-maarten-van-der-linde {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .contact-info-maarten-van-der-linde {
    flex: 1 1 100%;
  }

  .contact-cta-maarten-van-der-linde {
    flex: 1 1 100%;
  }

  .philosophy-quote-maarten-van-der-linde {
    flex: 1 1 100%;
  }
}

@media (min-width: 1024px) {
  .expertise-card-maarten-van-der-linde {
    flex: 1 1 calc(33.333% - 1.5rem);
  }

  .article-card-maarten-van-der-linde {
    flex: 1 1 calc(50% - 1rem);
  }
}

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

.portfolio-hero {
  padding: var(--spacing-2xl) var(--spacing-md);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.portfolio-hero__container {
  max-width: 800px;
  margin: 0 auto;
}

.portfolio-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-md);
  font-weight: 700;
  line-height: 1.2;
}

.portfolio-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .portfolio-hero {
    padding: var(--spacing-3xl) var(--spacing-lg);
  }

  .portfolio-hero__title {
    margin-bottom: var(--spacing-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-hero {
    padding: var(--spacing-4xl) var(--spacing-2xl);
  }
}

.portfolio-projects {
  padding: var(--spacing-2xl) var(--spacing-md);
  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(--spacing-2xl);
}

.portfolio-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.portfolio-card__image {
  width: 100%;
  height: 280px;
  background-color: var(--color-bg-secondary);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-card__content {
  padding: var(--spacing-lg);
}

.portfolio-card__tag {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  background-color: var(--color-primary-lighter);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  margin-bottom: var(--spacing-md);
}

.portfolio-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-md) 0;
  font-weight: 600;
  line-height: 1.3;
}

.portfolio-card__description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--spacing-md) 0;
  line-height: 1.6;
}

.portfolio-card__meta {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

@media (min-width: 768px) {
  .portfolio-projects {
    padding: var(--spacing-3xl) var(--spacing-lg);
  }

  .portfolio-projects__container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-2xl);
  }

  .portfolio-card__image {
    height: 320px;
  }
}

@media (min-width: 1024px) {
  .portfolio-projects {
    padding: var(--spacing-4xl) var(--spacing-2xl);
  }

  .portfolio-projects__container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-2xl);
  }

  .portfolio-card__image {
    height: 340px;
  }
}

.portfolio-cta {
  padding: var(--spacing-2xl) var(--spacing-md);
  background-color: var(--color-bg-secondary);
  overflow: hidden;
  border-top: 1px solid var(--color-border-light);
}

.portfolio-cta__container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-md) 0;
  font-weight: 600;
  line-height: 1.3;
}

.portfolio-cta__description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--spacing-lg) 0;
  line-height: 1.6;
}

.portfolio-cta__button {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-xl);
  background-color: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  transition: background-color var(--transition-base), transform var(--transition-fast);
  border: 2px solid var(--color-primary);
}

.portfolio-cta__button:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

.portfolio-cta__button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .portfolio-cta {
    padding: var(--spacing-3xl) var(--spacing-lg);
  }

  .portfolio-cta__title {
    margin-bottom: var(--spacing-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-cta {
    padding: var(--spacing-4xl) var(--spacing-2xl);
  }
}

.services-page {
  background-color: var(--color-bg-primary);
  width: 100%;
  overflow: hidden;
}

.services-hero {
  background-color: var(--color-bg-primary);
  padding: var(--spacing-3xl) var(--spacing-md);
  overflow: hidden;
}

.services-hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.services-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-md) 0;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.services-hero p {
  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;
  max-width: 700px;
  margin: 0 auto;
}

.services-grid {
  background-color: var(--color-bg-secondary);
  padding: var(--spacing-3xl) var(--spacing-md);
  overflow: hidden;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-2xl);
}

.service-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--spacing-2xl) var(--spacing-xl);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  font-size: 24px;
  color: var(--color-primary);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-md) 0;
  font-weight: 700;
}

.service-card p {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0 0 var(--spacing-lg) 0;
  flex-grow: 1;
}

.service-link {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all var(--transition-fast);
  width: fit-content;
}

.service-link:hover {
  color: var(--color-primary-hover);
}

.service-link::after {
  content: '';
  margin-left: var(--spacing-xs);
  transition: transform var(--transition-fast);
}

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

.services-cta {
  background-color: var(--color-primary);
  padding: var(--spacing-3xl) var(--spacing-md);
  overflow: hidden;
}

.services-cta-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.services-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: #ffffff;
  margin: 0 0 var(--spacing-md) 0;
  font-weight: 700;
}

.services-cta p {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 var(--spacing-2xl) 0;
  line-height: 1.6;
}

.services-cta-button {
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--color-primary);
  background-color: #ffffff;
  padding: var(--spacing-md) var(--spacing-2xl);
  border: none;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all var(--transition-base);
  cursor: pointer;
}

.services-cta-button:hover {
  background-color: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .services-hero {
    padding: var(--spacing-4xl) var(--spacing-xl);
  }

  .services-grid {
    padding: var(--spacing-4xl) var(--spacing-xl);
  }

  .services-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-2xl);
  }

  .service-card {
    padding: var(--spacing-2xl);
  }

  .services-cta {
    padding: var(--spacing-4xl) var(--spacing-xl);
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: 5rem var(--spacing-xl);
  }

  .services-grid {
    padding: 5rem var(--spacing-xl);
  }

  .services-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-2xl);
  }

  .service-card {
    padding: var(--spacing-2xl);
  }

  .services-cta {
    padding: 5rem var(--spacing-xl);
  }
}

.motion-docs {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

.motion-docs .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.motion-docs .content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-4xl) var(--spacing-md);
}

.motion-docs h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.motion-docs .updated-date {
  color: var(--color-text-secondary);
  font-size: clamp(0.85rem, 0.9vw + 0.5rem, 1rem);
  margin-bottom: var(--spacing-3xl);
  display: block;
}

.motion-docs h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-primary);
  margin-top: var(--spacing-3xl);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

.motion-docs h2:first-of-type {
  margin-top: var(--spacing-2xl);
}

.motion-docs p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
}

.motion-docs ul {
  list-style: none;
  padding-left: 0;
  margin: var(--spacing-md) 0;
}

.motion-docs li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: 1.7;
  margin-bottom: var(--spacing-sm);
  padding-left: var(--spacing-lg);
  position: relative;
}

.motion-docs li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.motion-docs .section {
  margin-bottom: var(--spacing-3xl);
}

.motion-docs .contact-section {
  background-color: var(--color-bg-secondary);
  padding: var(--spacing-2xl);
  border-radius: var(--radius-lg);
  margin-top: var(--spacing-3xl);
  border: 1px solid var(--color-border-light);
}

.motion-docs .contact-section h2 {
  color: var(--color-text-primary);
  margin-top: 0;
}

.motion-docs .contact-section p {
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-sm);
}

.motion-docs .contact-section strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

@media (min-width: 768px) {
  .motion-docs .content {
    padding: var(--spacing-4xl) var(--spacing-lg);
  }

  .motion-docs .contact-section {
    padding: var(--spacing-3xl);
  }
}

@media (min-width: 1024px) {
  .motion-docs .content {
    padding: var(--spacing-4xl) var(--spacing-xl);
  }
}

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

.thank-you-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-primary);
}

.thank-section {
  width: 100%;
  padding: var(--spacing-lg) var(--spacing-md);
  overflow: hidden;
}

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

.content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.thank-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

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

.thank-icon-container {
  margin-bottom: var(--spacing-lg);
  display: flex;
  justify-content: center;
  align-items: center;
}

.thank-icon {
  width: clamp(80px, 20vw, 120px);
  height: clamp(80px, 20vw, 120px);
  color: var(--color-success);
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.thank-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.thank-lead {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
  font-weight: 500;
}

.thank-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-xl);
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.thank-cta {
  margin: var(--spacing-lg) 0;
  display: flex;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: var(--spacing-md) var(--spacing-xl);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  text-align: center;
  white-space: nowrap;
}

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

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

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

.thank-footer {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: var(--color-text-muted);
  margin-top: var(--spacing-lg);
  line-height: 1.6;
  font-style: italic;
}

@media (min-width: 640px) {
  .thank-section {
    padding: var(--spacing-xl) var(--spacing-lg);
  }

  .thank-icon-container {
    margin-bottom: var(--spacing-xl);
  }

  .thank-title {
    margin-bottom: var(--spacing-lg);
  }

  .thank-lead {
    margin-bottom: var(--spacing-lg);
  }

  .thank-description {
    margin-bottom: var(--spacing-2xl);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--spacing-3xl) var(--spacing-xl);
  }

  .container {
    padding: 0 var(--spacing-lg);
  }

  .thank-wrapper {
    padding: var(--spacing-3xl) 0;
  }

  .thank-icon-container {
    margin-bottom: var(--spacing-2xl);
  }

  .thank-title {
    margin-bottom: var(--spacing-xl);
  }

  .thank-lead {
    margin-bottom: var(--spacing-lg);
  }

  .thank-description {
    margin-bottom: var(--spacing-3xl);
    font-size: 1.1rem;
  }

  .thank-footer {
    margin-top: var(--spacing-2xl);
  }
}

@media (prefers-reduced-motion: reduce) {
  .thank-wrapper {
    animation: none;
  }

  .thank-icon {
    animation: none;
  }

  .btn-primary:hover {
    transform: none;
  }

  .btn-primary:active {
    transform: none;
  }
}

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

html,
body {
  width: 100%;
  height: 100%;
}

.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: var(--color-bg-primary);
  position: relative;
  overflow: hidden;
}

.error-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-2xl);
  position: relative;
  z-index: 1;
}

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

.content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.error-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--spacing-2xl);
}

.error-animation {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
}

.error-code-container {
  position: relative;
  display: inline-block;
  margin-bottom: var(--spacing-xl);
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 15vw, 12rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  display: block;
  line-height: 1;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.error-decoration {
  position: absolute;
  width: 120%;
  height: 80%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid var(--color-primary-light);
  border-radius: var(--radius-2xl);
  opacity: 0.3;
  animation: rotate 8s linear infinite;
}

@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.error-message {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

.error-message h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.01em;
  margin-bottom: var(--spacing-sm);
}

.error-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  font-weight: 500;
}

.error-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-top: var(--spacing-md);
  padding: var(--spacing-lg);
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.error-actions {
  display: flex;
  justify-content: center;
  margin-top: var(--spacing-xl);
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
}

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

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

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

.error-hint {
  margin-top: var(--spacing-xl);
  padding: var(--spacing-lg);
  background-color: var(--color-primary-lighter);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-primary-light);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hint-text {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-primary);
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

@media (min-width: 640px) {
  .error-section {
    padding: var(--spacing-3xl) var(--spacing-2xl);
  }

  .error-code {
    animation: float 4s ease-in-out infinite;
  }

  .error-decoration {
    animation: rotate 10s linear infinite;
  }
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--spacing-4xl) var(--spacing-2xl);
  }

  .error-wrapper {
    gap: var(--spacing-3xl);
  }

  .error-message {
    gap: var(--spacing-lg);
  }

  .error-description {
    padding: var(--spacing-xl);
  }

  .error-hint {
    padding: var(--spacing-xl);
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--spacing-2xl);
  }

  .error-wrapper {
    gap: var(--spacing-3xl);
  }

  .error-code {
    animation: float 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  }

  .btn {
    min-width: 200px;
  }

  .btn:hover {
    box-shadow: var(--shadow-xl);
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-code {
    animation: none;
  }

  .error-decoration {
    animation: none;
  }

  .error-message {
    animation: none;
    opacity: 1;
  }

  .error-hint {
    animation: none;
    opacity: 1;
  }

  .btn {
    transition: none;
  }

  .btn:hover {
    transform: none;
  }
}

.contact-help-page {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.contact-help-hero {
  background-color: var(--color-bg-primary);
  padding: 3rem var(--spacing-md);
  overflow: hidden;
}

.contact-help-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.contact-help-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-md) 0;
  letter-spacing: -0.02em;
}

.contact-help-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: 0;
  max-width: 700px;
}

@media (min-width: 768px) {
  .contact-help-hero {
    padding: 5rem var(--spacing-lg);
  }
}

@media (min-width: 1024px) {
  .contact-help-hero {
    padding: 7rem var(--spacing-xl);
  }
}

.contact-help-main {
  background-color: var(--color-bg-secondary);
  padding: 3rem var(--spacing-md);
  overflow: hidden;
}

.contact-help-main-content {
  width: 100%;
}

.contact-help-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-3xl);
  width: 100%;
}

.contact-help-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-help-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-help-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.contact-help-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.contact-help-label {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-weight: 600;
  color: var(--color-text-primary);
  display: block;
}

.contact-help-input,
.contact-help-textarea {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  width: 100%;
  padding: var(--spacing-sm) var(--spacing-md);
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  transition: all var(--transition-base);
}

.contact-help-input::placeholder,
.contact-help-textarea::placeholder {
  color: var(--color-text-muted);
}

.contact-help-input:focus,
.contact-help-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: var(--color-bg-card);
  box-shadow: 0 0 0 3px rgba(var(--color-primary), 0.1);
}

.contact-help-textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-help-form-notice {
  padding: var(--spacing-md);
  background-color: rgba(var(--color-primary-light), 0.05);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary-light);
}

.contact-help-form-notice-text {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.contact-help-form-notice-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-base);
}

.contact-help-form-notice-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-help-submit {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  width: 100%;
  padding: var(--spacing-md) var(--spacing-lg);
  background-color: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-help-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

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

.contact-help-info-box {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  border: 1px solid var(--color-border-light);
}

.contact-help-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-xl) 0;
}

.contact-help-info-item {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  align-items: flex-start;
}

.contact-help-info-item:last-of-type {
  margin-bottom: var(--spacing-xl);
}

.contact-help-info-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--color-primary-light), 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  flex-shrink: 0;
}

.contact-help-info-icon i {
  font-size: 1.5rem;
}

.contact-help-info-content {
  flex: 1;
}

.contact-help-info-label {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  color: var(--color-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 var(--spacing-xs) 0;
}

.contact-help-info-value {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.6;
  font-weight: 500;
}

.contact-help-info-divider {
  height: 1px;
  background-color: var(--color-border-light);
  margin: var(--spacing-xl) 0;
}

.contact-help-info-extra {
  padding-top: var(--spacing-lg);
}

.contact-help-info-extra-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-md) 0;
}

.contact-help-info-extra-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0 0 var(--spacing-md) 0;
}

.contact-help-info-extra-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.contact-help-info-extra-link {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 0.95vw, 0.95rem);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  display: inline-block;
}

.contact-help-info-extra-link:hover {
  color: var(--color-primary-hover);
  background-color: rgba(var(--color-primary-light), 0.1);
}

@media (min-width: 768px) {
  .contact-help-main {
    padding: 5rem var(--spacing-lg);
  }

  .contact-help-grid {
    gap: var(--spacing-4xl);
  }

  .contact-help-form-wrapper {
    flex: 1 1 45%;
  }

  .contact-help-info-wrapper {
    flex: 1 1 45%;
  }
}

@media (min-width: 1024px) {
  .contact-help-main {
    padding: 7rem var(--spacing-xl);
  }

  .contact-help-form-wrapper {
    flex: 1 1 50%;
  }

  .contact-help-info-wrapper {
    flex: 1 1 40%;
  }
}

.contact-help-faq {
  background-color: var(--color-bg-primary);
  padding: 3rem var(--spacing-md);
  overflow: hidden;
}

.contact-help-faq-content {
  width: 100%;
}

.contact-help-faq-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-3xl) 0;
  text-align: center;
}

.contact-help-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  width: 100%;
}

.contact-help-faq-item {
  background-color: var(--color-bg-card);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}

.contact-help-faq-item:hover {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-md);
}

.contact-help-faq-item-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-sm) 0;
}

.contact-help-faq-item-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .contact-help-faq {
    padding: 5rem var(--spacing-lg);
  }

  .contact-help-faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-2xl);
  }
}

@media (min-width: 1024px) {
  .contact-help-faq {
    padding: 7rem var(--spacing-xl);
  }

  .contact-help-faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-3xl);
  }
}

.contact-help-cta {
  background-color: var(--color-bg-secondary);
  padding: 3rem var(--spacing-md);
  overflow: hidden;
}

.contact-help-cta-content {
  text-align: center;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.contact-help-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-md) 0;
}

.contact-help-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: 0 0 var(--spacing-lg) 0;
}

.contact-help-cta-button {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  padding: var(--spacing-md) var(--spacing-xl);
  background-color: var(--color-primary);
  color: #000000;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 700;
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-help-cta-button:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.contact-help-cta-button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .contact-help-cta {
    padding: 5rem var(--spacing-lg);
  }
}

@media (min-width: 1024px) {
  .contact-help-cta {
    padding: 7rem var(--spacing-xl);
  }
}

@media (max-width: 640px) {
  .contact-help-input,
  .contact-help-textarea {
    font-size: 1rem;
  }

  .contact-help-info-box {
    padding: var(--spacing-lg);
  }

  .contact-help-faq-item {
    padding: var(--spacing-lg);
  }
}
.header-motion-studio-mobile-close,.header-motion-studio-mobile-toggle{
  width: 34px;
}

.header-motion-studio-desktop-nav{
  justify-content: flex-end;
}

.portfolio-card{
  display: flex;
  flex-direction: column !important;
}

.portfolio-card__content{
  width: 100% !important;
}

.portfolio-card-content{
  width: 100% !important;
}

.hero-title-index{
  word-break: break-all;
}

.services-cards,.services-cards-container,.services-grid,.services-container{
  display: flex;
  flex-direction: column;
}

.content{
  display: block;
}

.container{
  display: block !important;
}

html{
  scroll-padding-top: 80px;
}

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

input,textarea,select{
  max-width: 100%;
  box-sizing: border-box;
}

#cookieBanner{
  max-width: 100%;
  box-sizing: border-box;
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
}

.card img,.portfolio-card img,[class*="-card"] img{
  flex-shrink: 0;
  align-self: flex-start;
  max-width: 100%;
  height: auto;
}

.header-motion-studio-mobile-menu{
  padding-top: max(env(safe-area-inset-top), 0px);
}
@media (max-width: 480px){
  .header-motion-studio-mobile-menu{
    max-width: 100%;
  }
}

.header-motion-studio-mobile-menu.active{
  z-index: 999;
}

.header-motion-studio-mobile-toggle[aria-expanded="true"]{
  display: none;
}

@media (max-width: 768px) {
  .card-image-motion-design-trends {
    aspect-ratio: 6 / 9;
  }
}
