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

:root {
  
  
  
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f8fafc;
  --color-bg-card-dark: rgba(255, 255, 255, 0.05);
  --color-bg-card-light: #ffffff;
  
  
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #94a3b8;
  --color-text-dark-muted: #64748b;
  
  
  --color-text-light-primary: #1e293b;
  --color-text-light-secondary: #64748b;
  --color-text-light-muted: #9ca3af;
  
  
  --color-primary: #00d9ff;
  --color-primary-hover: #00b8d4;
  --color-secondary: #7c3aed;
  --color-secondary-hover: #6d28d9;
  --color-accent-orange: #ff6b35;
  
  
  --font-primary: 'Outfit', sans-serif;
  --font-mono: 'Space Mono', monospace;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  --shadow-glow-cyan: 0 0 30px rgba(0, 217, 255, 0.3);
  --shadow-glow-purple: 0 0 30px rgba(124, 58, 237, 0.3);
  
  
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-light-primary);
}

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

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

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

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

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  font-size: 1rem;
  line-height: 1.8;
}

.text-small {
  font-size: 0.875rem;
  line-height: 1.6;
}

.text-large {
  font-size: 1.125rem;
  line-height: 1.8;
}

.font-mono {
  font-family: var(--font-mono);
  font-weight: 400;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

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

.bg-light p,
.bg-light li,
.bg-light span {
  color: var(--color-text-light-secondary);
}

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

.bg-dark p,
.bg-dark li,
.bg-dark span {
  color: var(--color-text-dark-secondary);
}

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

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

.bg-light-gray {
  background: var(--color-bg-tertiary);
  color: var(--color-text-light-primary);
}

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

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

.card {
  background: var(--color-bg-card-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

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

.card-dark:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-glow-cyan);
}

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

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

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

.btn-secondary {
  background: var(--color-secondary);
  color: var(--color-text-dark-primary);
}

.btn-secondary:hover {
  background: var(--color-secondary-hover);
  box-shadow: var(--shadow-glow-purple);
  transform: translateY(-2px);
}

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

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

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

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

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

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

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

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

.bg-light a {
  color: var(--color-secondary);
}

.bg-light a:hover {
  color: var(--color-secondary-hover);
}

.bg-dark a {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.px-md { padding-left: var(--space-md); padding-right: var(--space-md); }
.py-md { padding-top: var(--space-md); padding-bottom: var(--space-md); }
.p-lg { padding: var(--space-lg); }

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

.text-muted {
  opacity: 0.75;
}

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  font-weight: 600;
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

.badge-secondary {
  background: var(--color-secondary);
  color: var(--color-text-dark-primary);
}

.badge-light {
  background: rgba(0, 217, 255, 0.1);
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

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

.divider-light {
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

@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 slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

@keyframes glow {
  0%, 100% {
    box-shadow: var(--shadow-glow-cyan);
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.5);
  }
}

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

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

.animate-slide-down {
  animation: slideInDown var(--transition-base);
}

.animate-slide-left {
  animation: slideInLeft var(--transition-base);
}

.animate-slide-right {
  animation: slideInRight var(--transition-base);
}

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

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

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

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

.border-light {
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.border-dark {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.shadow-glow {
  box-shadow: var(--shadow-glow-cyan);
}

.hide-mobile {
  display: none;
}

@media (min-width: 769px) {
  .hide-mobile {
    display: block;
  }
  
  .hide-desktop {
    display: none;
  }
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-tertiary);
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: var(--radius-md);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-hover);
}

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

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

code {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  padding: var(--space-xs) var(--space-sm);
  background: rgba(0, 217, 255, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-sm);
}

.bg-dark code {
  background: rgba(0, 217, 255, 0.15);
}

input, textarea, select {
  font-family: var(--font-primary);
  padding: var(--space-sm) var(--space-md);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

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

.bg-dark input,
.bg-dark textarea,
.bg-dark select {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--color-text-dark-primary);
}

.bg-dark input::placeholder,
.bg-dark textarea::placeholder {
  color: var(--color-text-dark-muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.accent-cyan {
  color: var(--color-primary);
}

.accent-purple {
  color: var(--color-secondary);
}

.accent-orange {
  color: var(--color-accent-orange);
}

.bg-accent-cyan {
  background: rgba(0, 217, 255, 0.1);
}

.bg-accent-purple {
  background: rgba(124, 58, 237, 0.1);
}

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

@media print {
  body {
    background: #fff;
    color: #000;
  }
  
  a {
    text-decoration: underline;
  }
  
  .no-print {
    display: none;
  }
}
.header-workflow-hub {
  background: var(--color-bg-primary);
  padding: clamp(0.75rem, 2vw, 1.25rem) 0;
  position: static;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.header-workflow-hub-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-workflow-hub-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity var(--transition-base);
}

.header-workflow-hub-brand:hover {
  opacity: 0.85;
}

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

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

.header-workflow-hub-desktop-nav {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 2rem);
  flex: 1;
  margin-left: clamp(1.5rem, 4vw, 3rem);
  justify-content: flex-end;
}

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

.header-workflow-hub-nav-link:hover {
  color: var(--color-primary);
}

.header-workflow-hub-cta-button {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  color: var(--color-bg-primary);
  background: var(--color-primary);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  flex-shrink: 0;
}

.header-workflow-hub-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-cyan);
}

.header-workflow-hub-mobile-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-shrink: 0;
  z-index: 101;
}

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

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

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

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

.header-workflow-hub-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg-primary);
  display: flex;
  flex-direction: column;
  padding-top: 4.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: all var(--transition-base);
  z-index: 99;
  overflow-y: auto;
}

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

.header-workflow-hub-mobile-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--color-bg-primary);
  border-bottom: 1px solid rgba(0, 217, 255, 0.1);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem clamp(1rem, 4vw, 2rem);
  z-index: 102;
}

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

.header-workflow-hub-mobile-close:active {
  transform: scale(0.9);
}

.header-workflow-hub-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.header-workflow-hub-mobile-link {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 500;
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  padding: 1.25rem clamp(1rem, 4vw, 2rem);
  border-bottom: 1px solid rgba(0, 217, 255, 0.05);
  transition: all var(--transition-base);
  display: block;
}

.header-workflow-hub-mobile-link:hover {
  color: var(--color-primary);
  background: rgba(0, 217, 255, 0.05);
  padding-left: clamp(1.5rem, 5vw, 2.5rem);
}

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

.header-workflow-hub-mobile-cta:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-glow-cyan);
}

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

  .header-workflow-hub-mobile-menu {
    display: none;
  }

  .header-workflow-hub-desktop-nav {
    display: flex;
  }
}

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

.design-hub-portal section {
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.design-hub-portal p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

.hero-image-block {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

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

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

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

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

.hero-cta-buttons .btn {
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  border-radius: 8px;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.hero-stat-number {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: #00d9ff;
  font-family: 'Space Mono', monospace;
}

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

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

.features-section-index {
  background: #ffffff;
  color: #1e293b;
}

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

.features-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

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

.features-title-index {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
}

.features-subtitle-index {
  font-size: 1rem;
  color: #64748b;
  max-width: 600px;
  line-height: 1.8;
}

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

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

.features-card-index:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 217, 255, 0.15);
  border-color: #00d9ff;
}

.features-icon-index {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(124, 58, 237, 0.2));
  border-radius: 8px;
  color: #00d9ff;
  font-size: 1.5rem;
}

.features-card-title-index {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.4;
}

.features-card-text-index {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
  flex-grow: 1;
}

.features-card-link {
  color: #00d9ff;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 150ms ease;
  display: inline-block;
}

.features-card-link:hover {
  color: #00b8d4;
}

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

.process-section-index {
  background: #0a0f1e;
  color: #ffffff;
}

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

.process-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.process-tag-index {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(124, 58, 237, 0.2);
  color: #7c3aed;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.process-title-index {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.process-subtitle-index {
  font-size: 1rem;
  color: #94a3b8;
  max-width: 600px;
  line-height: 1.8;
}

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

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

.process-step-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #00d9ff;
  font-family: 'Space Mono', monospace;
  line-height: 1;
  min-width: 80px;
}

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

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

.process-step-text-index {
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .process-step-index {
    flex-direction: column;
    gap: 1rem;
  }
  
  .process-step-number {
    min-width: auto;
  }
}

.blog-section-index {
  background: #ffffff;
  color: #1e293b;
}

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

.blog-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

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

.blog-title-index {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
}

.blog-subtitle-index {
  font-size: 1rem;
  color: #64748b;
  max-width: 600px;
  line-height: 1.8;
}

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

.blog-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card-index:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 217, 255, 0.15);
  border-color: #00d9ff;
}

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

.blog-card-img-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.blog-card-title-index {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.4;
}

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

.blog-card-link {
  color: #00d9ff;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 150ms ease;
  display: inline-block;
}

.blog-card-link:hover {
  color: #00b8d4;
}

.blog-footer {
  text-align: center;
  margin-top: 1rem;
}

.btn-outline-index {
  background: transparent;
  border: 2px solid #1e293b;
  color: #1e293b;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 250ms ease;
}

.btn-outline-index:hover {
  background: #1e293b;
  color: #ffffff;
}

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

.testimonials-section-index {
  background: #f8fafc;
  color: #1e293b;
}

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

.testimonials-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.testimonials-tag-index {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.testimonials-title-index {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
}

.testimonials-subtitle-index {
  font-size: 1rem;
  color: #64748b;
  max-width: 600px;
  line-height: 1.8;
}

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

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

.testimonial-card-index:hover {
  box-shadow: 0 10px 30px rgba(0, 217, 255, 0.15);
  border-color: #00d9ff;
}

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

.testimonial-text-index {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.8;
  font-style: italic;
  border-left: 3px solid #00d9ff;
  padding-left: 1rem;
}

.testimonial-author-index {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.author-name-index {
  font-weight: 600;
  color: #1e293b;
  font-size: 0.95rem;
}

.author-role-index {
  font-size: 0.85rem;
  color: #94a3b8;
}

@media (max-width: 768px) {
  .testimonials-grid {
    flex-direction: column;
  }
  
  .testimonial-card-index {
    flex: 1 1 100%;
    max-width: none;
  }
}

.faq-section-index {
  background: #ffffff;
  color: #1e293b;
}

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

.faq-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

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

.faq-title-index {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
}

.faq-subtitle-index {
  font-size: 1rem;
  color: #64748b;
  max-width: 600px;
  line-height: 1.8;
}

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

.faq-item-index {
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-question-index {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
  line-height: 1.4;
}

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

@media (max-width: 768px) {
  .faq-list {
    gap: 1rem;
  }
}

.cta-section-index {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a1f3a 100%);
  color: #ffffff;
}

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

.cta-box-index {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

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

.cta-text-index {
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.8;
}

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

.cta-buttons .btn {
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  border-radius: 8px;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline-cta {
  background: transparent;
  border: 2px solid #00d9ff;
  color: #00d9ff;
}

.btn-outline-cta:hover {
  background: #00d9ff;
  color: #000;
}

.cta-info-index {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.cta-info-block {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-info-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.cta-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cta-info-list li {
  font-size: 0.95rem;
  color: #94a3b8;
  padding-left: 1.5rem;
  position: relative;
}

.cta-info-list li:before {
  content: '';
  position: absolute;
  left: 0;
  color: #00d9ff;
  font-weight: bold;
}

@media (max-width: 768px) {
  .cta-content {
    flex-direction: column;
  }
  
  .cta-box-index,
  .cta-info-index {
    flex: 1 1 100%;
  }
  
  .cta-info-index {
    flex-direction: row;
    gap: 1rem;
  }
  
  .cta-info-block {
    flex: 1;
  }
}

.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);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.cookie-banner-text-index {
  color: #e2e8f0;
  margin: 0;
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  flex: 1 1 auto;
  min-width: 200px;
  line-height: 1.6;
}

.cookie-banner-buttons-index {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn-accept,
.cookie-btn-decline {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.875rem;
  transition: all 150ms ease;
  font-family: 'Outfit', sans-serif;
}

.cookie-btn-accept {
  background: #00d9ff;
  color: #000000;
}

.cookie-btn-accept:hover {
  background: #00b8d4;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

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

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

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cookie-banner-text-index {
    min-width: auto;
    width: 100%;
    text-align: center;
  }
  
  .cookie-banner-buttons-index {
    width: 100%;
    justify-content: center;
  }
}

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

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

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

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

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

.footer-nav-list,
.footer-legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

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

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

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

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

.footer-contact p:last-child {
  margin-bottom: 0;
}

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

.footer-copyright p {
  color: var(--color-text-dark-muted);
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  margin: 0;
  font-family: var(--font-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2.5rem, 5vw, 4rem);
    grid-template-areas:
      "about nav"
      "contact legal"
      "copyright copyright";
  }

  .footer-about {
    grid-area: about;
  }

  .footer-nav {
    grid-area: nav;
  }

  .footer-contact {
    grid-area: contact;
  }

  .footer-legal {
    grid-area: legal;
  }

  .footer-copyright {
    grid-area: copyright;
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    grid-template-areas:
      "about nav contact legal"
      "copyright copyright copyright copyright";
  }
}

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

.category-page-web-design-tools {
  width: 100%;
}

.hero-section-web-design-tools {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a1f3a 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

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

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

.hero-subtitle-web-design-tools {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #94a3b8;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.hero-intro-web-design-tools {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: center;
  text-align: center;
}

.hero-text-web-design-tools {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #cbd5e1;
  line-height: 1.8;
  max-width: 650px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.95rem, 1vw, 1rem);
}

.btn-primary {
  background: #00d9ff;
  color: #000;
}

.btn-primary:hover {
  background: #00b8d4;
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  background: #7c3aed;
  color: #ffffff;
}

.btn-secondary:hover {
  background: #6d28d9;
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.3);
  transform: translateY(-2px);
}

.btn-sm {
  padding: clamp(0.5rem, 1.5vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(0.85rem, 0.9vw, 0.95rem);
}

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

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

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

.posts-title-web-design-tools {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  letter-spacing: -0.02em;
}

.posts-subtitle-web-design-tools {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #64748b;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

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

.card-web-design-tools {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex: 1 1 clamp(280px, 30vw, 380px);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-web-design-tools:hover {
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.card-image-web-design-tools {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.card-title-web-design-tools {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.card-description-web-design-tools {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #64748b;
  line-height: 1.7;
  flex-grow: 1;
}

.card-meta-web-design-tools {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  color: #94a3b8;
  padding-top: clamp(0.75rem, 1.5vw, 1rem);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.card-reading-web-design-tools,
.card-level-web-design-tools,
.card-date-web-design-tools {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
}

.card-reading-web-design-tools i,
.card-level-web-design-tools i,
.card-date-web-design-tools i {
  color: #7c3aed;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
}

.card-web-design-tools .btn-sm {
  align-self: flex-start;
  margin-top: clamp(0.5rem, 1vw, 0.75rem);
}

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

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

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

.insights-title-web-design-tools {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  letter-spacing: -0.02em;
}

.insights-subtitle-web-design-tools {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #64748b;
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto;
}

.insights-list-web-design-tools {
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 3vw, 2.5rem);
}

.insight-item-web-design-tools {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #7c3aed;
}

.insight-number-web-design-tools {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #7c3aed;
  line-height: 1;
  min-width: clamp(70px, 10vw, 100px);
  text-align: center;
}

.insight-text-web-design-tools {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
}

.insight-heading-web-design-tools {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.insight-description-web-design-tools {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #64748b;
  line-height: 1.8;
}

.tools-overview-section-web-design-tools {
  background: linear-gradient(135deg, #1a1f3a 0%, #0a0f1e 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.tools-overview-header-web-design-tools {
  text-align: center;
}

.tools-overview-title-web-design-tools {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.tools-overview-list-web-design-tools {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  justify-content: center;
}

.tool-tag-web-design-tools {
  display: inline-flex;
  align-items: center;
  padding: clamp(0.65rem, 1.5vw, 0.9rem) clamp(1.25rem, 2vw, 1.75rem);
  background: rgba(0, 217, 255, 0.1);
  border: 1px solid #00d9ff;
  border-radius: 24px;
  color: #00d9ff;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: 500;
  transition: all 0.3s ease;
}

.tool-tag-web-design-tools:hover {
  background: rgba(0, 217, 255, 0.2);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
  transform: translateY(-2px);
}

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

  .posts-section-web-design-tools {
    padding: 2rem 0;
  }

  .insights-section-web-design-tools {
    padding: 2rem 0;
  }

  .tools-overview-section-web-design-tools {
    padding: 2rem 0;
  }

  .posts-grid-web-design-tools {
    flex-direction: column;
    align-items: center;
  }

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

  .insight-item-web-design-tools {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .insight-number-web-design-tools {
    text-align: center;
  }

  .tools-overview-list-web-design-tools {
    flex-direction: column;
    align-items: center;
  }

  .tool-tag-web-design-tools {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .posts-grid-web-design-tools {
    gap: clamp(1rem, 3vw, 2rem);
  }

  .card-web-design-tools {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (min-width: 1024px) {
  .posts-grid-web-design-tools {
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .card-web-design-tools {
    flex: 1 1 calc(25% - 1.875rem);
  }
}

a {
  color: #7c3aed;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #6d28d9;
  text-decoration: underline;
}

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

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

.main-figma-sketch-prototype {
  width: 100%;
  overflow: hidden;
}

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

.breadcrumbs-figma-sketch-prototype {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.breadcrumbs-figma-sketch-prototype a {
  color: #00d9ff;
  text-decoration: none;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.breadcrumbs-figma-sketch-prototype a:hover {
  color: #00b8d4;
}

.breadcrumbs-figma-sketch-prototype span {
  color: #64748b;
}

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

.hero-text-figma-sketch-prototype {
  flex: 1 1 45%;
}

.hero-meta-figma-sketch-prototype {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.meta-item-figma-sketch-prototype {
  color: #94a3b8;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-separator-figma-sketch-prototype {
  color: #475569;
}

.hero-title-figma-sketch-prototype {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-description-figma-sketch-prototype {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 0;
}

.hero-image-figma-sketch-prototype {
  flex: 1 1 45%;
  min-height: 300px;
}

.hero-image-figma-sketch-prototype img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .hero-content-figma-sketch-prototype {
    flex-direction: column;
  }

  .hero-text-figma-sketch-prototype {
    flex: 1 1 100%;
  }

  .hero-image-figma-sketch-prototype {
    flex: 1 1 100%;
    min-height: 250px;
  }

  .hero-title-figma-sketch-prototype {
    margin-bottom: 1rem;
  }
}

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

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

.intro-text-figma-sketch-prototype {
  flex: 1 1 45%;
}

.intro-title-figma-sketch-prototype {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.intro-paragraph-figma-sketch-prototype {
  font-size: clamp(0.95rem, 1.2vw, 1.0625rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.intro-image-figma-sketch-prototype {
  flex: 1 1 45%;
  min-height: 300px;
}

.intro-image-figma-sketch-prototype img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .intro-content-figma-sketch-prototype {
    flex-direction: column;
  }

  .intro-text-figma-sketch-prototype {
    flex: 1 1 100%;
  }

  .intro-image-figma-sketch-prototype {
    flex: 1 1 100%;
    min-height: 250px;
  }
}

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

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

.foundation-image-figma-sketch-prototype {
  flex: 1 1 45%;
  min-height: 300px;
}

.foundation-image-figma-sketch-prototype img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.foundation-text-figma-sketch-prototype {
  flex: 1 1 45%;
}

.foundation-title-figma-sketch-prototype {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.foundation-paragraph-figma-sketch-prototype {
  font-size: clamp(0.95rem, 1.2vw, 1.0625rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.foundation-list-figma-sketch-prototype {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.list-item-figma-sketch-prototype {
  color: #475569;
  font-size: clamp(0.95rem, 1.2vw, 1.0625rem);
  line-height: 1.8;
  margin-bottom: 0.75rem;
  padding-left: 1.75rem;
  position: relative;
}

.list-item-figma-sketch-prototype::before {
  content: "";
  position: absolute;
  left: 0;
  color: #00d9ff;
  font-weight: bold;
}

@media (max-width: 768px) {
  .foundation-content-figma-sketch-prototype {
    flex-direction: column-reverse;
  }

  .foundation-text-figma-sketch-prototype {
    flex: 1 1 100%;
  }

  .foundation-image-figma-sketch-prototype {
    flex: 1 1 100%;
    min-height: 250px;
  }
}

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

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

.design-text-figma-sketch-prototype {
  flex: 1 1 45%;
}

.design-title-figma-sketch-prototype {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.design-paragraph-figma-sketch-prototype {
  font-size: clamp(0.95rem, 1.2vw, 1.0625rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.design-image-figma-sketch-prototype {
  flex: 1 1 45%;
  min-height: 300px;
}

.design-image-figma-sketch-prototype img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .design-content-figma-sketch-prototype {
    flex-direction: column;
  }

  .design-text-figma-sketch-prototype {
    flex: 1 1 100%;
  }

  .design-image-figma-sketch-prototype {
    flex: 1 1 100%;
    min-height: 250px;
  }
}

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

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

.prototype-image-figma-sketch-prototype {
  flex: 1 1 45%;
  min-height: 300px;
}

.prototype-image-figma-sketch-prototype img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.prototype-text-figma-sketch-prototype {
  flex: 1 1 45%;
}

.prototype-title-figma-sketch-prototype {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.prototype-paragraph-figma-sketch-prototype {
  font-size: clamp(0.95rem, 1.2vw, 1.0625rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.prototype-highlight-figma-sketch-prototype {
  background: rgba(0, 217, 255, 0.08);
  border-left: 4px solid #00d9ff;
  padding: 1.25rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.highlight-text-figma-sketch-prototype {
  color: #1e293b;
  font-size: clamp(0.95rem, 1.2vw, 1.0625rem);
  line-height: 1.8;
  margin: 0;
}

.highlight-text-figma-sketch-prototype strong {
  color: #0a0f1e;
  font-weight: 600;
}

@media (max-width: 768px) {
  .prototype-content-figma-sketch-prototype {
    flex-direction: column-reverse;
  }

  .prototype-text-figma-sketch-prototype {
    flex: 1 1 100%;
  }

  .prototype-image-figma-sketch-prototype {
    flex: 1 1 100%;
    min-height: 250px;
  }
}

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

.workflow-header-figma-sketch-prototype {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.workflow-title-figma-sketch-prototype {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.workflow-subtitle-figma-sketch-prototype {
  font-size: clamp(0.95rem, 1.2vw, 1.0625rem);
  color: #94a3b8;
  line-height: 1.6;
}

.workflow-grid-figma-sketch-prototype {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.workflow-card-figma-sketch-prototype {
  flex: 1 1 calc(25% - 1.5rem);
  min-width: 220px;
  max-width: 300px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.workflow-card-figma-sketch-prototype:hover {
  border-color: #00d9ff;
  background: rgba(0, 217, 255, 0.05);
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.2);
}

.card-number-figma-sketch-prototype {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #00d9ff;
  line-height: 1;
  margin-bottom: 1rem;
  font-family: 'Space Mono', monospace;
}

.card-title-figma-sketch-prototype {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.card-text-figma-sketch-prototype {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .workflow-card-figma-sketch-prototype {
    flex: 1 1 calc(50% - 1.5rem);
  }
}

@media (max-width: 768px) {
  .workflow-card-figma-sketch-prototype {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.featured-quote-figma-sketch-prototype {
  background: #f8fafc;
  border-left: 4px solid #7c3aed;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 8px;
  margin: 0;
}

.quote-text-figma-sketch-prototype {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #1e293b;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.25rem;
  margin: 0 0 1.25rem 0;
}

.quote-author-figma-sketch-prototype {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  font-style: normal;
  font-weight: 500;
  display: block;
}

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

.tips-content-figma-sketch-prototype {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.tips-title-figma-sketch-prototype {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
}

.tips-list-figma-sketch-prototype {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.tip-item-figma-sketch-prototype {
  flex: 1 1 calc(50% - 1rem);
  min-width: 250px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
}

.tip-heading-figma-sketch-prototype {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #00d9ff;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.tip-text-figma-sketch-prototype {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .tip-item-figma-sketch-prototype {
    flex: 1 1 100%;
  }
}

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

.conclusion-content-figma-sketch-prototype {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-figma-sketch-prototype {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.conclusion-text-figma-sketch-prototype {
  font-size: clamp(0.95rem, 1.2vw, 1.0625rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.conclusion-text-figma-sketch-prototype:last-child {
  margin-bottom: 0;
}

.disclaimer-section-figma-sketch-prototype {
  background: #f8fafc;
  padding: clamp(2rem, 5vw, 3rem) 0;
  overflow: hidden;
}

.disclaimer-box-figma-sketch-prototype {
  background: #ffffff;
  border-left: 4px solid #ff6b35;
  border-radius: 8px;
  padding: clamp(1.5rem, 3vw, 2rem);
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-figma-sketch-prototype {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #1e293b;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.disclaimer-text-figma-sketch-prototype {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

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

.related-header-figma-sketch-prototype {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-title-figma-sketch-prototype {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.related-subtitle-figma-sketch-prototype {
  font-size: clamp(0.95rem, 1.2vw, 1.0625rem);
  color: #94a3b8;
  line-height: 1.6;
}

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

.related-card-figma-sketch-prototype {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.related-card-figma-sketch-prototype:hover {
  border-color: #00d9ff;
  background: rgba(0, 217, 255, 0.08);
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.2);
}

.related-image-figma-sketch-prototype {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: rgba(0, 217, 255, 0.1);
}

.related-image-figma-sketch-prototype img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.related-card-title-figma-sketch-prototype {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  color: #ffffff;
  line-height: 1.4;
  margin: 0;
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem) 0.5rem;
  font-weight: 600;
}

.related-card-text-figma-sketch-prototype {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  padding: 0.5rem clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem);
  margin: 0;
  flex-grow: 1;
}

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

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

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

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

.main-color-theory-web-design {
  width: 100%;
  overflow: hidden;
}

.hero-section-color-theory-web-design {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-content-color-theory-web-design {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

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

.hero-text-color-theory-web-design {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .hero-text-color-theory-web-design {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

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

.hero-subtitle-color-theory-web-design {
  color: #94a3b8;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.15rem);
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-color-theory-web-design {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.meta-item-color-theory-web-design {
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-divider-color-theory-web-design {
  color: #64748b;
}

.hero-image-color-theory-web-design {
  flex: 1 1 100%;
  max-width: 100%;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-image-color-theory-web-design {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

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

.breadcrumbs-color-theory-web-design {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: 0.875rem;
}

.breadcrumbs-color-theory-web-design a {
  color: #00d9ff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-color-theory-web-design a:hover {
  color: #00b8d4;
  text-decoration: underline;
}

.breadcrumbs-color-theory-web-design span {
  color: #64748b;
}

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

.intro-content-color-theory-web-design {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 1024px) {
  .intro-content-color-theory-web-design {
    flex-direction: row;
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
  }
}

.intro-text-color-theory-web-design {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .intro-text-color-theory-web-design {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.intro-title-color-theory-web-design {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-color-theory-web-design {
  color: #475569;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-color-theory-web-design {
  flex: 1 1 100%;
  max-width: 100%;
  width: 100%;
}

@media (min-width: 1024px) {
  .intro-image-color-theory-web-design {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.intro-img-color-theory-web-design {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.color-wheel-section-color-theory-web-design {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.color-wheel-content-color-theory-web-design {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 1024px) {
  .color-wheel-content-color-theory-web-design {
    flex-direction: row;
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
  }
}

.color-wheel-text-color-theory-web-design {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .color-wheel-text-color-theory-web-design {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.color-wheel-title-color-theory-web-design {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.color-wheel-paragraph-color-theory-web-design {
  color: #94a3b8;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.color-wheel-list-color-theory-web-design {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-item-color-theory-web-design {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.bold-color-theory-web-design {
  color: #ffffff;
  font-weight: 600;
}

.color-wheel-image-color-theory-web-design {
  flex: 1 1 100%;
  max-width: 100%;
  width: 100%;
}

@media (min-width: 1024px) {
  .color-wheel-image-color-theory-web-design {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.color-wheel-img-color-theory-web-design {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.contrast-section-color-theory-web-design {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.contrast-content-color-theory-web-design {
  display: flex;
  flex-direction: column-reverse;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 1024px) {
  .contrast-content-color-theory-web-design {
    flex-direction: row;
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
  }
}

.contrast-image-color-theory-web-design {
  flex: 1 1 100%;
  max-width: 100%;
  width: 100%;
}

@media (min-width: 1024px) {
  .contrast-image-color-theory-web-design {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.contrast-img-color-theory-web-design {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.contrast-text-color-theory-web-design {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .contrast-text-color-theory-web-design {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.contrast-title-color-theory-web-design {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.contrast-paragraph-color-theory-web-design {
  color: #475569;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.psychology-section-color-theory-web-design {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.psychology-content-color-theory-web-design {
  display: flex;
  flex-direction: column;
}

.psychology-title-color-theory-web-design {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.psychology-intro-color-theory-web-design {
  color: #94a3b8;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.8;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.psychology-cards-color-theory-web-design {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.psychology-card-color-theory-web-design {
  flex: 1 1 calc(50% - 1rem);
  min-width: 250px;
  max-width: 280px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.psychology-card-color-theory-web-design:hover {
  border-color: #00d9ff;
  background: rgba(0, 217, 255, 0.08);
  transform: translateY(-4px);
}

@media (max-width: 768px) {
  .psychology-card-color-theory-web-design {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.card-title-color-theory-web-design {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.card-text-color-theory-web-design {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.7;
}

.practical-section-color-theory-web-design {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practical-content-color-theory-web-design {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 1024px) {
  .practical-content-color-theory-web-design {
    flex-direction: row;
    align-items: flex-start;
    gap: clamp(2rem, 5vw, 4rem);
  }
}

.practical-text-color-theory-web-design {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .practical-text-color-theory-web-design {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.practical-title-color-theory-web-design {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.practical-intro-color-theory-web-design {
  color: #475569;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.practical-steps-color-theory-web-design {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.practical-step-color-theory-web-design {
  display: flex;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.step-number-color-theory-web-design {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  flex-shrink: 0;
  line-height: 1;
}

.step-content-color-theory-web-design {
  flex: 1;
}

.step-title-color-theory-web-design {
  color: #1e293b;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-text-color-theory-web-design {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.7;
}

.practical-image-color-theory-web-design {
  flex: 1 1 100%;
  max-width: 100%;
  width: 100%;
}

@media (min-width: 1024px) {
  .practical-image-color-theory-web-design {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.practical-img-color-theory-web-design {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.tools-section-color-theory-web-design {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tools-content-color-theory-web-design {
  display: flex;
  flex-direction: column;
}

.tools-title-color-theory-web-design {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tools-intro-color-theory-web-design {
  color: #475569;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.8;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.tools-list-color-theory-web-design {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-items: stretch;
}

.tools-item-color-theory-web-design {
  background: #ffffff;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.tools-item-color-theory-web-design:hover {
  border-color: #64748b;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.tools-item-title-color-theory-web-design {
  color: #1e293b;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.tools-item-text-color-theory-web-design {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.7;
}

.conclusion-section-color-theory-web-design {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-color-theory-web-design {
  display: flex;
  flex-direction: column;
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-color-theory-web-design {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-paragraph-color-theory-web-design {
  color: #94a3b8;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-highlight-color-theory-web-design {
  background: rgba(0, 217, 255, 0.08);
  border-left: 4px solid #00d9ff;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 8px;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.highlight-text-color-theory-web-design {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.8;
}

.strong-color-theory-web-design {
  color: #ffffff;
  font-weight: 600;
}

.disclaimer-section-color-theory-web-design {
  background: #f8fafc;
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-color-theory-web-design {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-color-theory-web-design {
  color: #1e293b;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-color-theory-web-design {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.7;
}

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

.related-content-color-theory-web-design {
  display: flex;
  flex-direction: column;
}

.related-title-color-theory-web-design {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-cards-color-theory-web-design {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.related-card-color-theory-web-design {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-color-theory-web-design:hover {
  border-color: #00d9ff;
  background: rgba(0, 217, 255, 0.08);
  transform: translateY(-4px);
}

.related-card-link-color-theory-web-design {
  display: block;
  text-decoration: none;
  color: inherit;
}

.related-card-image-color-theory-web-design {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-img-color-theory-web-design {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-text-color-theory-web-design {
  padding: clamp(1.5rem, 2vw, 2rem);
}

.related-card-title-color-theory-web-design {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.related-card-desc-color-theory-web-design {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.6;
}

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

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

.main-mobile-first-responsive-design {
  width: 100%;
  overflow: hidden;
}

.hero-section-mobile-first-responsive-design {
  background: #ffffff;
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.breadcrumbs-mobile-first-responsive-design {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: 0.875rem;
}

.breadcrumb-link-mobile-first-responsive-design {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-mobile-first-responsive-design:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.breadcrumb-separator-mobile-first-responsive-design {
  color: #9ca3af;
  margin: 0 0.25rem;
}

.breadcrumb-current-mobile-first-responsive-design {
  color: #4b5563;
  font-weight: 500;
}

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

.hero-text-wrapper-mobile-first-responsive-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-mobile-first-responsive-design {
  font-size: clamp(1.75rem, 5vw + 1rem, 3rem);
  color: #1e293b;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-mobile-first-responsive-design {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #64748b;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-meta-mobile-first-responsive-design {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.meta-item-mobile-first-responsive-design {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.meta-label-mobile-first-responsive-design {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9ca3af;
}

.meta-value-mobile-first-responsive-design {
  font-size: 0.95rem;
  color: #1e293b;
  font-weight: 500;
}

.hero-image-wrapper-mobile-first-responsive-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-mobile-first-responsive-design {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .hero-content-mobile-first-responsive-design {
    flex-direction: column;
  }
  
  .hero-text-wrapper-mobile-first-responsive-design,
  .hero-image-wrapper-mobile-first-responsive-design {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .breadcrumbs-mobile-first-responsive-design {
    font-size: 0.8rem;
  }
}

.intro-section-mobile-first-responsive-design {
  background: #f8fafc;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.intro-content-mobile-first-responsive-design {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-mobile-first-responsive-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-mobile-first-responsive-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-mobile-first-responsive-design {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #64748b;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-mobile-first-responsive-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-item-mobile-first-responsive-design {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-content-mobile-first-responsive-design {
    flex-direction: column;
  }
  
  .intro-text-mobile-first-responsive-design,
  .intro-image-mobile-first-responsive-design {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.benefits-section-mobile-first-responsive-design {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

.benefits-title-mobile-first-responsive-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1e293b;
  font-weight: 700;
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.benefits-cards-wrapper-mobile-first-responsive-design {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.benefit-card-mobile-first-responsive-design {
  flex: 1 1 calc(50% - 1rem);
  min-width: 280px;
  max-width: 350px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.benefit-card-mobile-first-responsive-design:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: #2563eb;
}

.benefit-icon-mobile-first-responsive-design {
  font-size: 2rem;
  color: #2563eb;
}

.benefit-card-title-mobile-first-responsive-design {
  font-size: 1.1rem;
  color: #1e293b;
  font-weight: 600;
  margin: 0;
}

.benefit-card-text-mobile-first-responsive-design {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .benefit-card-mobile-first-responsive-design {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.implementation-section-mobile-first-responsive-design {
  background: #f8fafc;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.implementation-wrapper-mobile-first-responsive-design {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.implementation-text-mobile-first-responsive-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-title-mobile-first-responsive-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.implementation-paragraph-mobile-first-responsive-design {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #64748b;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.implementation-steps-mobile-first-responsive-design {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.step-item-mobile-first-responsive-design {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-number-mobile-first-responsive-design {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #2563eb;
  flex-shrink: 0;
  min-width: 60px;
  text-align: center;
}

.step-text-mobile-first-responsive-design {
  flex: 1;
}

.step-title-mobile-first-responsive-design {
  font-size: 1.05rem;
  color: #1e293b;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.step-description-mobile-first-responsive-design {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

.implementation-image-mobile-first-responsive-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-image-item-mobile-first-responsive-design {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .implementation-wrapper-mobile-first-responsive-design {
    flex-direction: column;
  }
  
  .implementation-text-mobile-first-responsive-design,
  .implementation-image-mobile-first-responsive-design {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .step-number-mobile-first-responsive-design {
    min-width: 50px;
  }
}

.tools-section-mobile-first-responsive-design {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.tools-content-mobile-first-responsive-design {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
}

.tools-title-mobile-first-responsive-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1e293b;
  font-weight: 700;
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tools-wrapper-mobile-first-responsive-design {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.tools-text-mobile-first-responsive-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.tools-paragraph-mobile-first-responsive-design {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #64748b;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.tools-list-mobile-first-responsive-design {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.tool-item-mobile-first-responsive-design {
  padding: 1rem;
  background: #f8fafc;
  border-left: 3px solid #2563eb;
  border-radius: 4px;
}

.tool-name-mobile-first-responsive-design {
  font-size: 1rem;
  color: #1e293b;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.tool-description-mobile-first-responsive-design {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.tools-image-mobile-first-responsive-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.tools-image-item-mobile-first-responsive-design {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .tools-wrapper-mobile-first-responsive-design {
    flex-direction: column;
  }
  
  .tools-text-mobile-first-responsive-design,
  .tools-image-mobile-first-responsive-design {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.best-practices-section-mobile-first-responsive-design {
  background: #f8fafc;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.best-practices-content-mobile-first-responsive-design {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
}

.best-practices-title-mobile-first-responsive-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1e293b;
  font-weight: 700;
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.checklist-wrapper-mobile-first-responsive-design {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 3vw, 3rem);
  justify-content: center;
}

.checklist-column-mobile-first-responsive-design {
  flex: 1 1 calc(50% - 1rem);
  min-width: 250px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checklist-item-mobile-first-responsive-design {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.75rem;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.checklist-icon-mobile-first-responsive-design {
  font-size: 1.2rem;
  color: #16a34a;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.checklist-text-mobile-first-responsive-design {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .checklist-wrapper-mobile-first-responsive-design {
    flex-direction: column;
  }
  
  .checklist-column-mobile-first-responsive-design {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.quote-section-mobile-first-responsive-design {
  background: #0a0f1e;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.quote-content-mobile-first-responsive-design {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.featured-quote-mobile-first-responsive-design {
  border-left: 4px solid #00d9ff;
  padding: clamp(2rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  text-align: center;
}

.quote-text-mobile-first-responsive-design {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: #ffffff;
  font-style: italic;
  line-height: 1.8;
  margin: 0 0 1rem 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.quote-author-mobile-first-responsive-design {
  font-size: 0.95rem;
  color: #94a3b8;
  display: block;
  font-style: normal;
}

.conclusion-section-mobile-first-responsive-design {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-mobile-first-responsive-design {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-mobile-first-responsive-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1e293b;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-paragraph-mobile-first-responsive-design {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #64748b;
  line-height: 1.8;
}

.cta-box-mobile-first-responsive-design {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  text-align: center;
  margin-top: 2rem;
}

.cta-title-mobile-first-responsive-design {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-text-mobile-first-responsive-design {
  font-size: 0.95rem;
  color: #dbeafe;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.btn-cta-mobile-first-responsive-design {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  background: #ffffff;
  color: #2563eb;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-primary);
  font-size: 1rem;
}

.btn-cta-mobile-first-responsive-design:hover {
  background: #f0f9ff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.disclaimer-section-mobile-first-responsive-design {
  background: #f8fafc;
  padding: clamp(2rem, 4vw, 3rem) 0;
  overflow: hidden;
}

.disclaimer-content-mobile-first-responsive-design {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  border-left: 4px solid #fbbf24;
}

.disclaimer-title-mobile-first-responsive-design {
  font-size: 1.05rem;
  color: #1e293b;
  font-weight: 600;
  margin: 0;
}

.disclaimer-text-mobile-first-responsive-design {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

.related-posts-section-mobile-first-responsive-design {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.related-content-mobile-first-responsive-design {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
}

.related-title-mobile-first-responsive-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1e293b;
  font-weight: 700;
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-card-mobile-first-responsive-design {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.related-card-mobile-first-responsive-design:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border-color: #2563eb;
}

.related-image-mobile-first-responsive-design {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f0f9ff;
}

.related-card-image-mobile-first-responsive-design {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-body-mobile-first-responsive-design {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.related-card-title-mobile-first-responsive-design {
  font-size: 1.05rem;
  color: #1e293b;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.related-card-description-mobile-first-responsive-design {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

@media (max-width: 1024px) {
  .related-card-mobile-first-responsive-design {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .related-card-mobile-first-responsive-design {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title-mobile-first-responsive-design,
  .intro-title-mobile-first-responsive-design,
  .benefits-title-mobile-first-responsive-design,
  .implementation-title-mobile-first-responsive-design,
  .tools-title-mobile-first-responsive-design,
  .best-practices-title-mobile-first-responsive-design,
  .related-title-mobile-first-responsive-design,
  .conclusion-title-mobile-first-responsive-design {
    word-break: break-word;
  }
  
  .step-number-mobile-first-responsive-design {
    min-width: 45px;
    font-size: 1.5rem;
  }
  
  .checklist-wrapper-mobile-first-responsive-design {
    gap: 1rem;
  }
  
  .checklist-column-mobile-first-responsive-design {
    gap: 0.75rem;
  }
  
  .hero-meta-mobile-first-responsive-design {
    gap: 1rem;
  }
}

.main-user-testing-feedback-integration {
  width: 100%;
  background: #ffffff;
  color: #1e293b;
}

.hero-section-user-testing-feedback-integration {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.breadcrumbs-user-testing-feedback-integration {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs-user-testing-feedback-integration a {
  color: #00d9ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-user-testing-feedback-integration a:hover {
  color: #00b8d4;
}

.breadcrumbs-user-testing-feedback-integration span {
  color: #64748b;
}

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

.hero-text-user-testing-feedback-integration {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-user-testing-feedback-integration {
  color: #ffffff;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero-subtitle-user-testing-feedback-integration {
  color: #94a3b8;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.hero-meta-user-testing-feedback-integration {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #64748b;
  font-size: 0.875rem;
}

.meta-item-user-testing-feedback-integration {
  display: inline-block;
}

.meta-divider-user-testing-feedback-integration {
  color: #475569;
}

.hero-image-user-testing-feedback-integration {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-user-testing-feedback-integration {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .hero-content-user-testing-feedback-integration {
    flex-direction: column;
  }
  
  .hero-text-user-testing-feedback-integration,
  .hero-image-user-testing-feedback-integration {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .breadcrumbs-user-testing-feedback-integration {
    font-size: 0.75rem;
    gap: 0.25rem;
  }
}

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

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

.intro-text-user-testing-feedback-integration {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-user-testing-feedback-integration {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.intro-paragraph-user-testing-feedback-integration {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-image-user-testing-feedback-integration {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-user-testing-feedback-integration {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .intro-content-user-testing-feedback-integration {
    flex-direction: column;
  }
  
  .intro-text-user-testing-feedback-integration,
  .intro-image-user-testing-feedback-integration {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.methods-section-user-testing-feedback-integration {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.methods-content-user-testing-feedback-integration {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.methods-header-user-testing-feedback-integration {
  text-align: center;
}

.methods-title-user-testing-feedback-integration {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.methods-subtitle-user-testing-feedback-integration {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
}

.methods-grid-user-testing-feedback-integration {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.method-card-user-testing-feedback-integration {
  flex: 1 1 calc(50% - 1rem);
  max-width: 350px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.method-card-user-testing-feedback-integration:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.card-number-user-testing-feedback-integration {
  color: #00d9ff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  font-family: 'Space Mono', monospace;
  line-height: 1;
}

.card-title-user-testing-feedback-integration {
  color: #1e293b;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}

.card-text-user-testing-feedback-integration {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .method-card-user-testing-feedback-integration {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .methods-grid-user-testing-feedback-integration {
    flex-direction: column;
  }
}

.process-section-user-testing-feedback-integration {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.process-content-user-testing-feedback-integration {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.process-text-user-testing-feedback-integration {
  flex: 1 1 50%;
  max-width: 50%;
}

.process-title-user-testing-feedback-integration {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.process-intro-user-testing-feedback-integration {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.steps-list-user-testing-feedback-integration {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item-user-testing-feedback-integration {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.step-item-user-testing-feedback-integration:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.step-heading-user-testing-feedback-integration {
  color: #1e293b;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.step-text-user-testing-feedback-integration {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.7;
}

.process-image-user-testing-feedback-integration {
  flex: 1 1 50%;
  max-width: 50%;
}

.process-img-user-testing-feedback-integration {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .process-content-user-testing-feedback-integration {
    flex-direction: column;
  }
  
  .process-text-user-testing-feedback-integration,
  .process-image-user-testing-feedback-integration {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.feedback-section-user-testing-feedback-integration {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.feedback-image-user-testing-feedback-integration {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.feedback-img-user-testing-feedback-integration {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.feedback-text-user-testing-feedback-integration {
  flex: 1 1 50%;
  max-width: 50%;
}

.feedback-title-user-testing-feedback-integration {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.feedback-intro-user-testing-feedback-integration {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.feedback-paragraph-user-testing-feedback-integration {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.feedback-highlight-user-testing-feedback-integration {
  background: rgba(0, 217, 255, 0.1);
  border-left: 4px solid #00d9ff;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.highlight-text-user-testing-feedback-integration {
  color: #1e293b;
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .feedback-content-user-testing-feedback-integration {
    flex-direction: column;
  }
  
  .feedback-image-user-testing-feedback-integration {
    order: 0;
  }
  
  .feedback-image-user-testing-feedback-integration,
  .feedback-text-user-testing-feedback-integration {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.tools-content-user-testing-feedback-integration {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.tools-header-user-testing-feedback-integration {
  text-align: center;
}

.tools-title-user-testing-feedback-integration {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.tools-subtitle-user-testing-feedback-integration {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
}

.tools-grid-user-testing-feedback-integration {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.tool-item-user-testing-feedback-integration {
  flex: 1 1 calc(50% - 1rem);
  max-width: 320px;
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tool-item-user-testing-feedback-integration:hover {
  border-color: #00d9ff;
  box-shadow: 0 4px 12px rgba(0, 217, 255, 0.1);
}

.tool-name-user-testing-feedback-integration {
  color: #1e293b;
  font-size: 1.1rem;
  font-weight: 600;
}

.tool-description-user-testing-feedback-integration {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .tool-item-user-testing-feedback-integration {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .tools-grid-user-testing-feedback-integration {
    flex-direction: column;
  }
}

.template-section-user-testing-feedback-integration {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.template-content-user-testing-feedback-integration {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.template-text-user-testing-feedback-integration {
  flex: 1 1 50%;
  max-width: 50%;
}

.template-title-user-testing-feedback-integration {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.template-intro-user-testing-feedback-integration {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.template-box-user-testing-feedback-integration {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.template-item-user-testing-feedback-integration {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.template-item-user-testing-feedback-integration:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.template-label-user-testing-feedback-integration {
  color: #1e293b;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
}

.template-field-user-testing-feedback-integration {
  color: #64748b;
  font-size: 0.9rem;
  font-family: 'Space Mono', monospace;
  background: #f8fafc;
  padding: 0.75rem;
  border-radius: 6px;
  display: block;
}

.template-note-user-testing-feedback-integration {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
  font-style: italic;
}

.template-image-user-testing-feedback-integration {
  flex: 1 1 50%;
  max-width: 50%;
}

.template-img-user-testing-feedback-integration {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .template-content-user-testing-feedback-integration {
    flex-direction: column;
  }
  
  .template-text-user-testing-feedback-integration,
  .template-image-user-testing-feedback-integration {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-user-testing-feedback-integration {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-user-testing-feedback-integration {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-user-testing-feedback-integration {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.conclusion-text-user-testing-feedback-integration {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.cta-box-user-testing-feedback-integration {
  background: linear-gradient(135deg, #00d9ff, #7c3aed);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 2rem;
  text-align: center;
}

.cta-title-user-testing-feedback-integration {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.cta-text-user-testing-feedback-integration {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

@media (max-width: 768px) {
  .cta-box-user-testing-feedback-integration {
    padding: 1.5rem;
  }
}

.related-section-user-testing-feedback-integration {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-user-testing-feedback-integration {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-header-user-testing-feedback-integration {
  text-align: center;
}

.related-title-user-testing-feedback-integration {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.related-subtitle-user-testing-feedback-integration {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
}

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

.related-card-user-testing-feedback-integration {
  flex: 1 1 calc(33.333% - 1rem);
  max-width: 340px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-user-testing-feedback-integration:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.related-image-user-testing-feedback-integration {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-img-user-testing-feedback-integration {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-user-testing-feedback-integration:hover .related-img-user-testing-feedback-integration {
  transform: scale(1.05);
}

.related-info-user-testing-feedback-integration {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.related-card-title-user-testing-feedback-integration {
  color: #1e293b;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
}

.related-card-text-user-testing-feedback-integration {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
  flex-grow: 1;
}

.related-link-user-testing-feedback-integration {
  color: #00d9ff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.related-link-user-testing-feedback-integration:hover {
  color: #00b8d4;
}

@media (max-width: 1024px) {
  .related-card-user-testing-feedback-integration {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .related-card-user-testing-feedback-integration {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .related-grid-user-testing-feedback-integration {
    flex-direction: column;
  }
}

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

.disclaimer-content-user-testing-feedback-integration {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-user-testing-feedback-integration {
  color: #1e293b;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.disclaimer-text-user-testing-feedback-integration {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .disclaimer-section-user-testing-feedback-integration {
    padding: 1.5rem 0;
  }
}

@media (max-width: 480px) {
  .hero-title-user-testing-feedback-integration,
  .intro-title-user-testing-feedback-integration,
  .process-title-user-testing-feedback-integration,
  .feedback-title-user-testing-feedback-integration,
  .template-title-user-testing-feedback-integration,
  .conclusion-title-user-testing-feedback-integration,
  .tools-title-user-testing-feedback-integration,
  .methods-title-user-testing-feedback-integration,
  .related-title-user-testing-feedback-integration {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

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

.design-studio-narrative-about {
  background: var(--color-bg-primary);
  color: var(--color-text-dark-primary);
  font-family: var(--font-primary);
}

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

section {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin: 0;
}

p {
  margin: 0;
  line-height: 1.6;
}

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

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

.hero-genesis-header-about {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-genesis-title-about {
  color: var(--color-text-dark-primary);
  font-size: clamp(2.25rem, 6vw + 0.5rem, 3.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
}

.hero-genesis-subtitle-about {
  color: var(--color-text-dark-secondary);
  font-size: clamp(1rem, 2vw + 0.25rem, 1.375rem);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.hero-genesis-visual-about {
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

.studio-stats-grid-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3rem);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.stat-block-about {
  flex: 1 1 150px;
  text-align: center;
  padding: clamp(1rem, 2vw, 1.5rem);
}

.stat-number-about {
  color: var(--color-primary);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label-about {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.workflow-evolution-section-about {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 217, 255, 0.1);
}

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

.section-header-workflow-about {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.section-tag-workflow-about {
  display: inline-block;
  padding: 0.375rem 1.25rem;
  background: rgba(0, 217, 255, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title-workflow-about {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1rem;
}

.section-description-workflow-about {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.timeline-process-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
  max-width: 900px;
  margin: 0 auto;
}

.timeline-step-about {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: rgba(0, 217, 255, 0.05);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.step-number-timeline-about {
  color: var(--color-primary);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  flex-shrink: 0;
  min-width: 60px;
}

.step-body-timeline-about {
  flex: 1;
}

.step-title-timeline-about {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  margin-bottom: 0.5rem;
}

.step-text-timeline-about {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.6;
}

.expertise-framework-section-about {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 217, 255, 0.1);
}

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

.expertise-header-about {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.expertise-tag-about {
  display: inline-block;
  padding: 0.375rem 1.25rem;
  background: rgba(124, 58, 237, 0.1);
  color: var(--color-secondary);
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.expertise-title-about {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1rem;
}

.expertise-description-about {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

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

.expertise-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  padding: clamp(1.75rem, 2vw, 2.25rem);
  background: rgba(0, 217, 255, 0.03);
  border: 1px solid rgba(0, 217, 255, 0.15);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

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

.card-icon-expertise-about {
  font-size: clamp(2rem, 3vw, 2.75rem);
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.card-title-expertise-about {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  margin-bottom: 0.75rem;
}

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

.philosophy-insight-section-about {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 217, 255, 0.1);
}

.philosophy-insight-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 900px;
  margin: 0 auto;
}

.philosophy-split-about {
  display: flex;
  flex-direction: column !important;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 768px) {
  .philosophy-split-about {
    flex-direction: row;
    align-items: flex-start;
  }
}

.philosophy-text-about {
  flex: 1 1 45%;
}

.philosophy-visual-about {
  flex: 1 1 45%;
  width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.philosophy-heading-about {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  margin-bottom: 1.5rem;
}

.philosophy-body-about {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  line-height: 1.7;
}

.philosophy-body-about p {
  margin-bottom: 1rem;
}

.philosophy-body-about p:last-child {
  margin-bottom: 0;
}

.insight-quote-section-about {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 217, 255, 0.1);
}

.insight-quote-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 900px;
  margin: 0 auto;
}

.featured-quote-about {
  padding: clamp(2rem, 3vw, 3rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(0, 217, 255, 0.05);
  border-radius: var(--radius-md);
  margin: 0;
}

.quote-text-about {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.quote-author-about {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  display: block;
  font-style: normal;
}

.dutch-operations-section-about {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 217, 255, 0.1);
}

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

.dutch-header-about {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.dutch-tag-about {
  display: inline-block;
  padding: 0.375rem 1.25rem;
  background: rgba(255, 107, 53, 0.1);
  color: var(--color-accent-orange);
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.dutch-title-about {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1rem;
}

.dutch-description-about {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.dutch-visual-about {
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: clamp(1.5rem, 3vw, 2.5rem) auto 0;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

.cta-engagement-section-about {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(124, 58, 237, 0.1));
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 217, 255, 0.15);
}

.cta-engagement-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-engagement-box-about {
  background: rgba(0, 217, 255, 0.08);
  padding: clamp(2.5rem, 4vw, 3.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 217, 255, 0.2);
}

.cta-heading-about {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
}

.cta-description-about {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.cta-button-about {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: var(--color-primary);
  color: var(--color-bg-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
}

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

.disclaimer-transparency-section-about {
  background: var(--color-bg-primary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 217, 255, 0.1);
}

.disclaimer-transparency-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-header-about {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.disclaimer-icon-about {
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.disclaimer-title-about {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  margin: 0;
}

.disclaimer-text-about {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.8125rem, 1.25vw, 0.9375rem);
  line-height: 1.7;
  opacity: 0.95;
}

@media (max-width: 768px) {
  .timeline-step-about {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-timeline-about {
    min-width: 50px;
  }

  .philosophy-split-about {
    flex-direction: column;
  }

  .philosophy-visual-about {
    max-height: 300px;
  }
}

@media (min-width: 1024px) {
  .hero-genesis-section-about {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .workflow-evolution-section-about,
  .expertise-framework-section-about,
  .philosophy-insight-section-about,
  .insight-quote-section-about,
  .dutch-operations-section-about,
  .cta-engagement-section-about {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

.portfolio-page {
  width: 100%;
  background-color: var(--color-bg-primary);
}

.portfolio-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.portfolio-hero__container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.portfolio-hero__title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin: 0 0 var(--space-md) 0;
  letter-spacing: -0.02em;
}

.portfolio-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-dark-secondary);
  margin: 0;
  max-width: 600px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .portfolio-hero {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-hero {
    padding: var(--space-4xl) var(--space-lg);
  }

  .portfolio-hero__title {
    margin-bottom: var(--space-lg);
  }
}

.portfolio-projects {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.portfolio-projects__container {
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-projects__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .portfolio-projects {
    padding: var(--space-3xl) var(--space-lg);
  }

  .portfolio-projects__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .portfolio-projects {
    padding: var(--space-4xl) var(--space-lg);
  }

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

.portfolio-card {
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(0, 217, 255, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.portfolio-card:hover {
  border-color: rgba(0, 217, 255, 0.4);
  box-shadow: var(--shadow-glow-cyan);
  transform: translateY(-4px);
}

.portfolio-card__image-wrapper {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(124, 58, 237, 0.1));
}

.portfolio-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.portfolio-card:hover .portfolio-card__image {
  transform: scale(1.05);
}

.portfolio-card__content {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.portfolio-card__tag {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
  width: fit-content;
}

.portfolio-card__title {
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.3;
}

.portfolio-card__description {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: var(--color-text-dark-secondary);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.6;
  flex: 1;
}

.portfolio-card__meta {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-text-dark-muted);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .portfolio-card__image-wrapper {
    height: 280px;
  }
}

.portfolio-cta {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
  border-top: 1px solid rgba(0, 217, 255, 0.1);
}

.portfolio-cta__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-cta__title {
  font-family: var(--font-primary);
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin: 0 0 var(--space-md) 0;
  letter-spacing: -0.02em;
}

.portfolio-cta__description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  color: var(--color-text-dark-secondary);
  margin: 0 0 var(--space-lg) 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.portfolio-cta__button {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-bg-primary);
  background-color: var(--color-primary);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid var(--color-primary);
  letter-spacing: 0.05em;
}

.portfolio-cta__button:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-cyan);
}

@media (min-width: 768px) {
  .portfolio-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-cta {
    padding: var(--space-4xl) var(--space-lg);
  }
}

.services-page {
  width: 100%;
}

.services-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.services-hero__container {
  max-width: 800px;
  text-align: center;
  width: 100%;
}

.services-hero__title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.services-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
}

.services-content {
  background-color: var(--color-bg-secondary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
}

.services-content__container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.services-card {
  background-color: var(--color-bg-tertiary);
  border: 1px solid rgba(0, 217, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
}

.services-card:hover {
  border-color: rgba(0, 217, 255, 0.3);
  box-shadow: 0 8px 20px rgba(0, 217, 255, 0.08);
}

.services-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(124, 58, 237, 0.1));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--color-primary);
  font-size: 1.75rem;
}

.services-card__title {
  font-family: var(--font-primary);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
  margin-bottom: var(--space-sm);
}

.services-card__description {
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--color-text-light-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.services-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

.services-card__features li {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: var(--color-text-light-secondary);
  padding-left: 24px;
  position: relative;
}

.services-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 600;
}

.services-cta {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
}

.services-cta__container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

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

.services-cta__title {
  font-family: var(--font-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.services-cta__description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-dark-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.services-cta__button {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
  cursor: pointer;
}

.services-cta__button:hover {
  background-color: transparent;
  color: var(--color-primary);
  box-shadow: var(--shadow-glow-cyan);
}

.services-cta__image {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.services-cta__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  .services-hero {
    padding: var(--space-3xl) var(--space-lg);
    min-height: 320px;
  }

  .services-content {
    padding: var(--space-4xl) var(--space-lg);
  }

  .services-cta {
    padding: var(--space-4xl) var(--space-lg);
  }
}

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

  .services-cta__container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }

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

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

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

  .services-hero {
    padding: var(--space-4xl) var(--space-xl);
    min-height: 360px;
  }

  .services-content {
    padding: var(--space-4xl) var(--space-xl);
  }

  .services-cta {
    padding: var(--space-4xl) var(--space-xl);
  }
}

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

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

.legal-docs {
  background-color: var(--color-bg-secondary);
  color: var(--color-text-light-primary);
  font-family: var(--font-primary);
}

.legal-docs .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.legal-docs .legal-docs-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) 0;
}

.legal-docs h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-light-primary);
  margin-bottom: var(--space-md);
  font-weight: 700;
  line-height: 1.3;
}

.legal-docs .updated-date {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-light-secondary);
  margin-bottom: var(--space-2xl);
  display: block;
}

.legal-docs h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-light-primary);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  font-weight: 700;
  line-height: 1.3;
}

.legal-docs p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-light-primary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.legal-docs ul {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.legal-docs li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-light-primary);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.legal-docs strong {
  color: var(--color-text-light-primary);
  font-weight: 700;
}

.legal-docs .contact-section {
  background-color: var(--color-bg-tertiary);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-lg);
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-2xl);
  border-radius: var(--radius-md);
}

.legal-docs .contact-section h2 {
  margin-top: 0;
  color: var(--color-text-light-primary);
}

.legal-docs .contact-section p {
  color: var(--color-text-light-primary);
  margin-bottom: var(--space-sm);
}

.legal-docs .contact-section p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .legal-docs .legal-docs-content {
    padding: var(--space-4xl) 0;
  }

  .legal-docs .container {
    padding: 0 var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .legal-docs .legal-docs-content {
    padding: var(--space-4xl) 0;
  }

  .legal-docs .container {
    padding: 0 var(--space-xl);
  }
}

.thank-you-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.thank-you-section {
  width: 100%;
  padding: var(--space-2xl) var(--space-sm);
}

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

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

.thank-you-wrapper {
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  animation: scaleIn 0.6s ease-out;
}

.success-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.4));
}

h1 {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin: 0 0 var(--space-md) 0;
  letter-spacing: -0.5px;
}

.lead-text {
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--color-primary);
  margin: 0 0 var(--space-lg) 0;
  font-weight: 600;
}

.description-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.8;
  margin: 0 0 var(--space-lg) 0;
}

.next-steps-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.8;
  margin: 0 0 var(--space-2xl) 0;
}

.btn-primary {
  display: inline-block;
  padding: var(--space-sm) var(--space-xl);
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  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 var(--color-primary);
  transition: all var(--transition-base);
  cursor: pointer;
  box-shadow: var(--shadow-glow-cyan);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  box-shadow: 0 0 40px rgba(0, 217, 255, 0.5);
  transform: translateY(-2px);
}

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 768px) {
  .thank-you-section {
    padding: var(--space-3xl) var(--space-lg);
  }

  .success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-2xl);
  }

  h1 {
    margin: 0 0 var(--space-lg) 0;
  }

  .lead-text {
    margin: 0 0 var(--space-xl) 0;
  }

  .description-text {
    margin: 0 0 var(--space-lg) 0;
  }

  .next-steps-text {
    margin: 0 0 var(--space-3xl) 0;
  }

  .btn-primary {
    padding: var(--space-md) var(--space-2xl);
    font-size: 1.1rem;
  }
}

@media (min-width: 1024px) {
  .thank-you-section {
    padding: var(--space-4xl) var(--space-lg);
  }

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

  .success-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-3xl);
  }

  h1 {
    margin: 0 0 var(--space-lg) 0;
  }

  .lead-text {
    margin: 0 0 var(--space-xl) 0;
  }

  .description-text {
    margin: 0 0 var(--space-lg) 0;
  }

  .next-steps-text {
    margin: 0 0 var(--space-3xl) 0;
  }
}

* {
  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);
  overflow: hidden;
  padding: var(--space-md);
}

.error-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.error-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2xl);
  text-align: center;
}

.error-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.error-code-container {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-family: var(--font-primary);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  letter-spacing: -2px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  animation: float 3s ease-in-out infinite;
}

.error-decoration {
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.1;
  animation: pulse 4s ease-in-out infinite;
  z-index: -1;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.15;
  }
}

.error-message {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.error-message h1 {
  font-family: var(--font-primary);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.2;
}

.error-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-primary);
  font-weight: 600;
  margin-top: var(--space-xs);
}

.error-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.8;
  margin-top: var(--space-sm);
}

.error-actions {
  display: flex;
  justify-content: center;
  margin-top: var(--space-lg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  gap: var(--space-xs);
  text-align: center;
  min-width: 200px;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  box-shadow: var(--shadow-glow-cyan);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 217, 255, 0.4);
}

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

.error-hint {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background-color: var(--color-bg-card-dark);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 217, 255, 0.2);
}

.error-hint p {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 0.9vw + 0.5rem, 1rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 640px) {
  .error-page {
    padding: var(--space-lg);
  }
  
  .error-wrapper {
    gap: var(--space-3xl);
  }
  
  .error-code-container {
    width: 280px;
    height: 280px;
  }
  
  .error-decoration {
    width: 320px;
    height: 320px;
  }
  
  .error-message {
    gap: var(--space-lg);
  }
}

@media (min-width: 768px) {
  .error-page {
    padding: var(--space-xl);
  }
  
  .error-wrapper {
    gap: var(--space-3xl);
  }
  
  .container {
    padding: 0 var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .error-code-container {
    width: 320px;
    height: 320px;
  }
  
  .error-decoration {
    width: 380px;
    height: 380px;
  }
}

.contact-contact-page {
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.contact-contact-hero {
  background-color: var(--color-bg-primary);
  padding: 4rem 1rem 3rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.contact-contact-hero-content {
  text-align: center;
}

.contact-contact-hero-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.contact-contact-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-contact-hero {
    padding: 6rem 2rem 4rem;
  }
}

@media (min-width: 1024px) {
  .contact-contact-hero {
    padding: 8rem 2rem 5rem;
  }
}

.contact-contact-main {
  background-color: var(--color-bg-primary);
  padding: 3rem 1rem;
  overflow: hidden;
}

.contact-contact-main-content {
  width: 100%;
}

.contact-contact-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .contact-contact-grid {
    flex-direction: row;
    gap: 4rem;
  }
}

@media (min-width: 1024px) {
  .contact-contact-main {
    padding: 5rem 2rem;
  }

  .contact-contact-grid {
    gap: 5rem;
  }
}

.contact-contact-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .contact-contact-form-wrapper {
    flex: 1 1 45%;
    max-width: 500px;
  }
}

.contact-contact-form-title {
  font-family: var(--font-primary);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
  margin-bottom: 2rem;
  letter-spacing: -0.3px;
}

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

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

.contact-contact-label {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 0.9vw, 0.95rem);
  font-weight: 500;
  color: var(--color-text-dark-primary);
  letter-spacing: 0.3px;
}

.contact-contact-input,
.contact-contact-textarea {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  width: 100%;
  padding: 0.875rem 1.125rem;
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(0, 217, 255, 0.15);
  border-radius: var(--radius-md);
  color: var(--color-text-dark-primary);
  transition: all var(--transition-base);
  box-sizing: border-box;
}

.contact-contact-input::placeholder,
.contact-contact-textarea::placeholder {
  color: var(--color-text-dark-muted);
}

.contact-contact-input:focus,
.contact-contact-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: rgba(0, 217, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
}

.contact-contact-input:hover:not(:focus),
.contact-contact-textarea:hover:not(:focus) {
  border-color: rgba(0, 217, 255, 0.25);
}

.contact-contact-textarea {
  resize: vertical;
  min-height: 140px;
  font-family: var(--font-primary);
}

.contact-contact-form-privacy {
  margin-top: 0.5rem;
}

.contact-contact-privacy-text {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.85vw, 0.9rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
}

.contact-contact-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
  border-bottom: 1px solid transparent;
}

.contact-contact-privacy-link:hover {
  color: var(--color-primary-hover);
  border-bottom-color: var(--color-primary);
}

.contact-contact-submit {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  letter-spacing: 0.3px;
  margin-top: 0.5rem;
}

.contact-contact-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

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

.contact-contact-submit:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.2);
}

.contact-contact-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .contact-contact-info-wrapper {
    flex: 1 1 45%;
  }
}

.contact-contact-info-title {
  font-family: var(--font-primary);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
  margin-bottom: 2rem;
  letter-spacing: -0.3px;
}

.contact-contact-info-group {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.contact-contact-info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact-contact-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(0, 217, 255, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.25rem;
  transition: all var(--transition-base);
}

.contact-contact-info-item:hover .contact-contact-info-icon {
  border-color: var(--color-primary);
  background-color: rgba(0, 217, 255, 0.05);
  box-shadow: 0 0 15px rgba(0, 217, 255, 0.15);
}

.contact-contact-info-content {
  flex: 1;
}

.contact-contact-info-label {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.2px;
}

.contact-contact-info-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 0.95vw, 1rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
  margin: 0;
}

.contact-contact-info-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.contact-contact-info-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-contact-info-extra {
  padding: 1.5rem;
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(0, 217, 255, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  transition: all var(--transition-base);
}

.contact-contact-info-extra:hover {
  border-color: rgba(0, 217, 255, 0.2);
  background-color: rgba(0, 217, 255, 0.03);
}

.contact-contact-info-extra-title {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.2px;
}

.contact-contact-info-extra-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 0.95vw, 1rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
  margin: 0;
}

.contact-contact-cta {
  background-color: var(--color-bg-primary);
  padding: 3rem 1rem;
  overflow: hidden;
  border-top: 1px solid rgba(0, 217, 255, 0.1);
}

.contact-contact-cta-content {
  text-align: center;
}

.contact-contact-cta-title {
  font-family: var(--font-primary);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.4px;
}

.contact-contact-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-contact-cta-button {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  padding: 0.95rem 2.5rem;
  background-color: var(--color-secondary);
  color: var(--color-text-dark-primary);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  letter-spacing: 0.3px;
}

.contact-contact-cta-button:hover {
  background-color: var(--color-secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

.contact-contact-cta-button:active {
  transform: translateY(0);
}

.contact-contact-cta-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
}

@media (min-width: 768px) {
  .contact-contact-cta {
    padding: 4rem 2rem;
  }
}

@media (min-width: 1024px) {
  .contact-contact-cta {
    padding: 5rem 2rem;
  }
}

@media (max-width: 480px) {
  .contact-contact-form,
  .contact-contact-form-row {
    gap: 1.25rem;
  }

  .contact-contact-info-item {
    gap: 1rem;
  }

  .contact-contact-info-icon {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
}
.header-workflow-hub-mobile-toggle.active{
  display: none;
}