
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Sora:wght@400;500;600;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-bg-accent: #1e293b;
  
  
  --color-text-light: #ffffff;
  --color-text-dark: #0f172a;
  --color-text-primary-dark: #ffffff;
  --color-text-secondary-dark: #cbd5e1;
  --color-text-muted-dark: #94a3b8;
  --color-text-primary-light: #0f172a;
  --color-text-secondary-light: #475569;
  --color-text-muted-light: #94a3af;
  
  
  --color-primary: #0066cc;
  --color-primary-hover: #0052a3;
  --color-primary-light: #e0efff;
  --color-secondary: #ff6b35;
  --color-secondary-hover: #e55a28;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  
  
  --font-primary: 'Sora', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.3);
  
  
  --lh-tight: 1.2;
  --lh-snug: 1.4;
  --lh-normal: 1.6;
  --lh-relaxed: 1.8;
  
  
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: var(--lh-normal);
  color: var(--color-text-primary-light);
  background: var(--color-bg-secondary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

h1 {
  font-size: var(--text-5xl);
}

h2 {
  font-size: var(--text-4xl);
}

h3 {
  font-size: var(--text-3xl);
}

h4 {
  font-size: var(--text-2xl);
}

h5 {
  font-size: var(--text-xl);
}

h6 {
  font-size: var(--text-lg);
}

p {
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-md);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

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

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

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

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

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

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

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

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-text-light);
}

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

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

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

.section-dark {
  background: var(--color-bg-primary);
  color: var(--color-text-primary-dark);
  padding: var(--space-3xl) 0;
}

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

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

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

.section-dark a:hover {
  color: var(--color-text-light);
}

.section-accent {
  background: var(--color-bg-accent);
  color: var(--color-text-primary-dark);
  padding: var(--space-3xl) 0;
}

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

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

.section-light {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary-light);
  padding: var(--space-3xl) 0;
}

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

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

.section-light a {
  color: var(--color-primary);
}

.section-light-gray {
  background: var(--color-bg-tertiary);
  color: var(--color-text-primary-light);
  padding: var(--space-3xl) 0;
}

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

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

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

.grid-cols-1 {
  grid-template-columns: 1fr;
}

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

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

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

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

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

.flex {
  display: flex;
}

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

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

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

.gap-sm {
  gap: var(--space-sm);
}

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

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

.gap-xl {
  gap: var(--space-xl);
}

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

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

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

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

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

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

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  font-size: var(--text-xs);
  font-weight: 600;
  border-radius: var(--radius-lg);
  letter-spacing: 0.5px;
}

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

.badge-secondary {
  background: rgba(255, 107, 53, 0.1);
  color: var(--color-secondary);
}

.badge-success {
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-success);
}

.badge-dark {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-text-light);
}

.divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin: var(--space-lg) 0;
}

.section-dark .divider {
  background: rgba(255, 255, 255, 0.1);
}

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

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

.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }

.text-muted {
  color: var(--color-text-muted-light);
}

.section-dark .text-muted {
  color: var(--color-text-muted-dark);
}

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

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

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

.animate-slideInUp {
  animation: slideInUp 0.6s ease-out;
}

.animate-slideInDown {
  animation: slideInDown 0.6s ease-out;
}

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

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

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

@media (max-width: 768px) {
  h1 {
    font-size: var(--text-3xl);
  }
  
  h2 {
    font-size: var(--text-2xl);
  }
  
  h3 {
    font-size: var(--text-xl);
  }
}

@media print {
  body {
    background: var(--color-bg-secondary);
    color: var(--color-text-primary-light);
  }
  
  .btn, .card {
    box-shadow: none;
  }
}
.header-sketch-forge {
  background: var(--color-bg-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 100;
}

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

.header-sketch-forge-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.75rem;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}

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

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

.header-sketch-forge-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.375rem);
  color: var(--color-text-light);
  letter-spacing: -0.5px;
}

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

.header-sketch-forge-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

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

.header-sketch-forge-nav-link:hover {
  color: var(--color-text-light);
}

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

.header-sketch-forge-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-text-light);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 600;
  transition: all 0.3s ease;
  flex-shrink: 0;
  border: 1px solid var(--color-primary);
}

.header-sketch-forge-cta-button:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.header-sketch-forge-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-right: -0.5rem;
  transition: all 0.3s ease;
}

.header-sketch-forge-toggle-line {
  width: 24px;
  height: 2px;
  background: var(--color-text-light);
  border-radius: 1px;
  transition: all 0.3s ease;
}

.header-sketch-forge-mobile-toggle[aria-expanded="true"] .header-sketch-forge-toggle-line:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}

.header-sketch-forge-mobile-toggle[aria-expanded="true"] .header-sketch-forge-toggle-line:nth-child(2) {
  opacity: 0;
}

.header-sketch-forge-mobile-toggle[aria-expanded="true"] .header-sketch-forge-toggle-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

.header-sketch-forge-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-primary);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.3s ease;
  z-index: 99;
  overflow-y: auto;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

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

.header-sketch-forge-mobile-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header-sketch-forge-mobile-close {
  background: none;
  border: none;
  color: var(--color-text-light);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.header-sketch-forge-mobile-link {
  padding: 1rem 1.5rem;
  color: var(--color-text-secondary-dark);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.header-sketch-forge-mobile-link:hover {
  color: var(--color-text-light);
  background: rgba(255, 255, 255, 0.03);
  padding-left: 2rem;
}

.header-sketch-forge-mobile-cta {
  padding: 1rem 1.5rem;
  margin-top: auto;
  background: var(--color-primary);
  color: var(--color-text-light);
  text-decoration: none;
  text-align: center;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  margin: 2rem 1.5rem 1.5rem 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid var(--color-primary);
}

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

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

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

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

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

@media (min-width: 1024px) {
  .header-sketch-forge-nav-link {
    font-size: 1rem;
  }

  .header-sketch-forge-cta-button {
    font-size: 1rem;
  }
}

    .wireframe-hub {
  width: 100%;
}

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

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

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

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

.hero-image-index {
  flex: 1 1 45%;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
}

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

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

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

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

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

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

.stat-number-index {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #0066cc;
  line-height: 1;
}

.stat-label-index {
  font-size: clamp(0.75rem, 1.5vw, 0.95rem);
  color: #94a3b8;
  font-weight: 500;
}

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

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

.featured-header-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-tag-index {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(0, 102, 204, 0.1);
  color: #0066cc;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  align-self: center;
}

.featured-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-weight: 700;
  line-height: 1.2;
}

.featured-subtitle-index {
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.1rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

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

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

.featured-card-index:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.featured-card-img-index {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

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

.featured-card-title-index {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.35rem);
  color: #0f172a;
  font-weight: 700;
  line-height: 1.3;
}

.featured-card-text-index {
  font-size: clamp(0.85rem, 1.5vw + 0.5rem, 0.95rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.featured-card-link-index {
  color: #0066cc;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.featured-card-link-index:hover {
  color: #0052a3;
  text-decoration: underline;
}

.featured-cta-index {
  text-align: center;
  margin-top: 1rem;
}

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

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

.process-header-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

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

.process-subtitle-index {
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.1rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

.process-steps-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

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

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

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

.step-title-index {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.35rem);
  color: #ffffff;
  font-weight: 700;
}

.step-text-index {
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

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

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

.benefits-header-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.benefits-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-weight: 700;
  line-height: 1.2;
}

.benefits-subtitle-index {
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.1rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

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

.benefit-card-index {
  flex: 1 1 280px;
  max-width: 320px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
  text-align: center;
}

.benefit-card-index:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.benefit-icon-index {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #0066cc;
  display: flex;
  justify-content: center;
}

.benefit-title-index {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.2rem);
  color: #0f172a;
  font-weight: 700;
}

.benefit-text-index {
  font-size: clamp(0.85rem, 1.5vw + 0.5rem, 0.95rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

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

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

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

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

.tools-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-weight: 700;
  line-height: 1.2;
}

.tools-intro-index {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.tools-list-index {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 0;
}

.tool-item-index {
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1rem);
  color: #334155;
  line-height: 1.6;
  padding-left: 0;
}

.tool-item-index strong {
  color: #0f172a;
  font-weight: 700;
}

.tools-note-index {
  font-size: clamp(0.85rem, 1.5vw + 0.5rem, 0.95rem);
  color: #64748b;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
  padding: 1.25rem;
  background: #f1f5f9;
  border-left: 4px solid #0066cc;
  border-radius: 6px;
}

.tools-image-index {
  flex: 1 1 45%;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.tools-img-index {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

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

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

.faq-header-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.faq-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
}

.faq-subtitle-index {
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.1rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

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

.faq-item-index {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.faq-question-index {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.2rem);
  color: #ffffff;
  font-weight: 700;
  margin: 0;
}

.faq-answer-index {
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

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

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

.portfolio-header-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.portfolio-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-weight: 700;
  line-height: 1.2;
}

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

.portfolio-item-index {
  flex: 1 1 300px;
  max-width: 380px;
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

.portfolio-item-index:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

.portfolio-item-content-index {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
}

.portfolio-item-title-index {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.35rem);
  color: #ffffff;
  font-weight: 700;
}

.portfolio-item-text-index {
  font-size: clamp(0.85rem, 1.5vw + 0.5rem, 0.95rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}

.portfolio-cta-index {
  text-align: center;
  margin-top: 1rem;
}

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

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

@media (min-width: 1024px) {
  .cta-content-index {
    flex-direction: row;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: stretch;
  }
}

.cta-box-index {
  flex: 1 1 45%;
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.2);
}

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

.cta-text-index {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin: 0;
}

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

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

.cta-info-item-index {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cta-info-title-index {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.2rem);
  color: #0f172a;
  font-weight: 700;
}

.cta-info-text-index {
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

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

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

.cookie-banner-text-index {
  color: #e2e8f0;
  font-size: clamp(0.8rem, 1.5vw + 0.5rem, 0.95rem);
  margin: 0;
  flex: 1 1 200px;
  min-width: 200px;
  text-align: center;
}

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

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: 0.6rem 1.25rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept-index {
  background: #0066cc;
  color: #ffffff;
}

.cookie-btn-accept-index:hover {
  background: #0052a3;
}

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

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

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

  .tools-content-index {
    flex-direction: column;
  }

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

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

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

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

  .portfolio-item-index {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .featured-card-index {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .benefit-card-index {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .portfolio-item-index {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

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

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

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

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

.footer-about h3 {
  color: var(--color-text-light);
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  letter-spacing: -0.3px;
}

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

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

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

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

.footer-nav a,
.footer-legal a {
  color: var(--color-text-secondary-dark);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: color 0.25s ease, text-decoration 0.25s ease;
  display: inline-block;
}

.footer-nav a:hover,
.footer-legal a:hover {
  color: var(--color-text-light);
  text-decoration: underline;
  text-decoration-offset: 4px;
}

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

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

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

.footer-copyright p {
  color: var(--color-text-muted-dark);
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 1vw, 0.938rem);
  margin: 0;
  letter-spacing: 0.3px;
}

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

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

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

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

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

  .footer-copyright {
    flex: 1 1 100%;
    margin-top: clamp(1rem, 2vw, 1.5rem);
  }
}

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

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

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

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

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

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

  .footer-nav-list,
  .footer-legal-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(1rem, 3vw, 1.5rem);
  }

  .footer-nav a,
  .footer-legal a {
    padding-right: clamp(1rem, 2vw, 1.5rem);
  }
}
    

.category-page-wireframing-prototyping {
  background: var(--color-bg-secondary);
}

.hero-section-wireframing-prototyping {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.hero-title-wireframing-prototyping {
  color: #0f172a;
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  line-height: 1.2;
  font-weight: 700;
}

.hero-subtitle-wireframing-prototyping {
  color: #475569;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  font-weight: 500;
}

.hero-description-wireframing-prototyping {
  color: #64748b;
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.1rem);
  line-height: 1.8;
}

.hero-visual-wireframing-prototyping {
  flex: 1 1 45%;
  min-height: 350px;
}

.hero-image-wireframing-prototyping {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

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

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

  .hero-visual-wireframing-prototyping {
    flex: 1 1 100%;
    min-height: 300px;
  }
}

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

  .hero-visual-wireframing-prototyping {
    min-height: 250px;
  }
}

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

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

.posts-header-wireframing-prototyping {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.posts-title-wireframing-prototyping {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.posts-subtitle-wireframing-prototyping {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

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

.card-wireframing-prototyping {
  flex: 1 1 300px;
  max-width: 420px;
  background: var(--color-bg-card-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  transition: all 0.3s ease;
}

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

.card-wireframing-prototyping img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin: 0 -1.25rem -1rem -1.25rem;
  width: calc(100% + 2.5rem);
}

.card-title-wireframing-prototyping {
  color: #0f172a;
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.35rem);
  line-height: 1.3;
  font-weight: 700;
}

.card-description-wireframing-prototyping {
  color: #475569;
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1rem);
  line-height: 1.6;
  flex-grow: 1;
}

.card-meta-wireframing-prototyping {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex-wrap: wrap;
  padding-top: clamp(0.75rem, 1vw, 1rem);
  border-top: 1px solid #e2e8f0;
  font-size: clamp(0.8rem, 1vw + 0.5rem, 0.95rem);
}

.card-reading-time-wireframing-prototyping,
.card-level-wireframing-prototyping,
.card-date-wireframing-prototyping {
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-reading-time-wireframing-prototyping i,
.card-level-wireframing-prototyping i,
.card-date-wireframing-prototyping i {
  color: #2563eb;
  font-size: 0.9em;
}

.card-link-wireframing-prototyping {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
  margin-top: auto;
}

.card-link-wireframing-prototyping:hover {
  color: #0052a3;
  gap: 0.75rem;
}

.card-link-wireframing-prototyping::after {
  content: '';
  transition: transform 0.3s ease;
}

.card-link-wireframing-prototyping:hover::after {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .posts-grid-wireframing-prototyping {
    flex-direction: column;
  }

  .card-wireframing-prototyping {
    flex: 1 1 100%;
  }
}

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

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

.benefits-header-wireframing-prototyping {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.benefits-title-wireframing-prototyping {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

.benefits-intro-wireframing-prototyping {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

.benefits-text-wireframing-prototyping {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.benefits-paragraph-wireframing-prototyping {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-secondary);
  border-left: 4px solid #2563eb;
  border-radius: var(--radius-md);
}

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

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

.tools-header-wireframing-prototyping {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.tools-title-wireframing-prototyping {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.tools-intro-wireframing-prototyping {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

.tools-list-wireframing-prototyping {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 900px;
  margin: 0 auto;
}

.tool-item-wireframing-prototyping {
  background: #f8fafc;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.tool-item-wireframing-prototyping:hover {
  border-color: #2563eb;
  box-shadow: var(--shadow-md);
}

.tool-name-wireframing-prototyping {
  color: #0f172a;
  font-size: clamp(1.05rem, 2vw + 0.5rem, 1.35rem);
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
}

.tool-description-wireframing-prototyping {
  color: #475569;
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1rem);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .tools-list-wireframing-prototyping {
    grid-template-columns: 1fr;
  }
}

.main-wireframe-basis-beginnen {
  width: 100%;
  overflow: hidden;
}

.breadcrumbs-wireframe-basis-beginnen {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.breadcrumbs-wireframe-basis-beginnen a {
  color: #0066cc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-wireframe-basis-beginnen a:hover {
  color: #0052a3;
  text-decoration: underline;
}

.breadcrumbs-wireframe-basis-beginnen span {
  color: #cbd5e1;
  margin: 0 0.25rem;
}

.hero-section-wireframe-basis-beginnen {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.hero-text-wireframe-basis-beginnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-wireframe-basis-beginnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-badge-wireframe-basis-beginnen {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(0, 102, 204, 0.15);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-title-wireframe-basis-beginnen {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}

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

.hero-meta-wireframe-basis-beginnen {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.meta-item-wireframe-basis-beginnen {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: 0.875rem;
}

.meta-item-wireframe-basis-beginnen i {
  color: #3b82f6;
}

.hero-img-wireframe-basis-beginnen {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero-content-wireframe-basis-beginnen {
    flex-direction: column;
  }
  
  .hero-text-wireframe-basis-beginnen,
  .hero-image-wireframe-basis-beginnen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.intro-section-wireframe-basis-beginnen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.intro-text-wrapper-wireframe-basis-beginnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-wrapper-wireframe-basis-beginnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-wireframe-basis-beginnen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}

.intro-paragraph-wireframe-basis-beginnen {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.intro-highlight-wireframe-basis-beginnen {
  background: #f0f9ff;
  border-left: 4px solid #0066cc;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.highlight-text-wireframe-basis-beginnen {
  color: #0f172a;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.intro-image-wrapper-wireframe-basis-beginnen img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-content-wireframe-basis-beginnen {
    flex-direction: column;
  }
  
  .intro-text-wrapper-wireframe-basis-beginnen,
  .intro-image-wrapper-wireframe-basis-beginnen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.tools-content-wireframe-basis-beginnen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.tools-header-wireframe-basis-beginnen {
  text-align: center;
  margin-bottom: 1rem;
}

.tools-title-wireframe-basis-beginnen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

.tools-subtitle-wireframe-basis-beginnen {
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

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

.tool-card-wireframe-basis-beginnen {
  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);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.tool-card-wireframe-basis-beginnen:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.tool-icon-wireframe-basis-beginnen {
  font-size: 2rem;
  color: #0066cc;
}

.tool-name-wireframe-basis-beginnen {
  font-size: 1.125rem;
  color: #0f172a;
  margin: 0;
  font-weight: 700;
}

.tool-description-wireframe-basis-beginnen {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .tool-card-wireframe-basis-beginnen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.process-section-wireframe-basis-beginnen {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.process-header-wireframe-basis-beginnen {
  text-align: center;
  margin-bottom: 1rem;
}

.process-title-wireframe-basis-beginnen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

.process-subtitle-wireframe-basis-beginnen {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

.steps-container-wireframe-basis-beginnen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 3rem;
}

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

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

.step-content-wireframe-basis-beginnen {
  flex: 1;
}

.step-title-wireframe-basis-beginnen {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.step-text-wireframe-basis-beginnen {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

.process-image-wireframe-basis-beginnen {
  margin-top: 2rem;
}

.process-image-wireframe-basis-beginnen img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
}

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

.mistakes-section-wireframe-basis-beginnen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.mistakes-content-wireframe-basis-beginnen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.mistakes-text-wrapper-wireframe-basis-beginnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.mistakes-image-wrapper-wireframe-basis-beginnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.mistakes-title-wireframe-basis-beginnen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}

.mistakes-intro-wireframe-basis-beginnen {
  font-size: 1rem;
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.mistakes-list-wireframe-basis-beginnen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mistake-item-wireframe-basis-beginnen {
  padding: 1.5rem;
  background: #f8fafc;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
}

.mistake-heading-wireframe-basis-beginnen {
  font-size: 1.125rem;
  color: #0f172a;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.mistake-text-wireframe-basis-beginnen {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.mistakes-image-wrapper-wireframe-basis-beginnen img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .mistakes-content-wireframe-basis-beginnen {
    flex-direction: column;
  }
  
  .mistakes-text-wrapper-wireframe-basis-beginnen,
  .mistakes-image-wrapper-wireframe-basis-beginnen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.tips-section-wireframe-basis-beginnen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.tips-content-wireframe-basis-beginnen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.tips-title-wireframe-basis-beginnen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}

.tips-intro-wireframe-basis-beginnen {
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 1rem;
}

.tips-grid-wireframe-basis-beginnen {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.tip-card-wireframe-basis-beginnen {
  flex: 1 1 calc(33.333% - 1.5rem);
  max-width: 340px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.tip-card-wireframe-basis-beginnen:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.tip-number-wireframe-basis-beginnen {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0066cc;
  line-height: 1;
}

.tip-heading-wireframe-basis-beginnen {
  font-size: 1.125rem;
  color: #0f172a;
  margin: 0;
  font-weight: 700;
}

.tip-text-wireframe-basis-beginnen {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .tip-card-wireframe-basis-beginnen {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .tip-card-wireframe-basis-beginnen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-wireframe-basis-beginnen {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-wireframe-basis-beginnen {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-wireframe-basis-beginnen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}

.conclusion-text-wireframe-basis-beginnen {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-cta-wireframe-basis-beginnen {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-text-wireframe-basis-beginnen {
  font-size: 1rem;
  color: #94a3b8;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cta-button-wireframe-basis-beginnen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  background: #0066cc;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button-wireframe-basis-beginnen:hover {
  background: #0052a3;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(0, 102, 204, 0.3);
}

.disclaimer-section-wireframe-basis-beginnen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.disclaimer-content-wireframe-basis-beginnen {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  border-left: 4px solid #3b82f6;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.disclaimer-icon-wireframe-basis-beginnen {
  font-size: 1.5rem;
  color: #3b82f6;
  margin-bottom: 1rem;
}

.disclaimer-title-wireframe-basis-beginnen {
  font-size: 1.25rem;
  color: #0f172a;
  margin-bottom: 1rem;
  font-weight: 700;
}

.disclaimer-text-wireframe-basis-beginnen {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.8;
  margin: 0;
}

.related-section-wireframe-basis-beginnen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.related-title-wireframe-basis-beginnen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}

.related-subtitle-wireframe-basis-beginnen {
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 1rem;
}

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

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

.related-card-wireframe-basis-beginnen:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.related-image-wrapper-wireframe-basis-beginnen {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f8fafc;
}

.related-image-wrapper-wireframe-basis-beginnen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-title-wireframe-basis-beginnen {
  font-size: 1.125rem;
  color: #0f172a;
  margin: 0;
  font-weight: 700;
  line-height: 1.4;
}

.related-card-description-wireframe-basis-beginnen {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.related-link-wireframe-basis-beginnen {
  display: inline-flex;
  align-items: center;
  color: #0066cc;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  margin-top: 0.5rem;
}

.related-link-wireframe-basis-beginnen:hover {
  color: #0052a3;
}

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

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

@media (max-width: 768px) {
  .hero-title-wireframe-basis-beginnen,
  .intro-title-wireframe-basis-beginnen,
  .tools-title-wireframe-basis-beginnen,
  .process-title-wireframe-basis-beginnen,
  .mistakes-title-wireframe-basis-beginnen,
  .tips-title-wireframe-basis-beginnen,
  .conclusion-title-wireframe-basis-beginnen,
  .related-title-wireframe-basis-beginnen {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .meta-item-wireframe-basis-beginnen {
    font-size: 0.8rem;
  }

  .steps-container-wireframe-basis-beginnen {
    gap: 1.5rem;
  }
}

.main-schets-naar-digitaal-wireframing {
  width: 100%;
  overflow-x: hidden;
}

.hero-section-schets-naar-digitaal-wireframing {
  background: #0a0f1e;
  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;
}

.breadcrumbs-schets-naar-digitaal-wireframing {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-schets-naar-digitaal-wireframing a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-schets-naar-digitaal-wireframing a:hover {
  color: #93c5fd;
  text-decoration: underline;
}

.breadcrumbs-schets-naar-digitaal-wireframing span {
  color: #64748b;
}

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

.hero-text-schets-naar-digitaal-wireframing {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-schets-naar-digitaal-wireframing {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-schets-naar-digitaal-wireframing {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-schets-naar-digitaal-wireframing {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-meta-schets-naar-digitaal-wireframing {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: #94a3b8;
}

.meta-item-schets-naar-digitaal-wireframing {
  color: #94a3b8;
}

.meta-divider-schets-naar-digitaal-wireframing {
  color: #475569;
}

.hero-img-schets-naar-digitaal-wireframing {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  max-height: 500px;
}

@media (max-width: 768px) {
  .hero-content-schets-naar-digitaal-wireframing {
    flex-direction: column;
  }

  .hero-text-schets-naar-digitaal-wireframing,
  .hero-image-schets-naar-digitaal-wireframing {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.intro-section-schets-naar-digitaal-wireframing {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-schets-naar-digitaal-wireframing {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-schets-naar-digitaal-wireframing {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-schets-naar-digitaal-wireframing {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-schets-naar-digitaal-wireframing {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-schets-naar-digitaal-wireframing {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-img-schets-naar-digitaal-wireframing {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  max-height: 450px;
}

@media (max-width: 768px) {
  .intro-content-schets-naar-digitaal-wireframing {
    flex-direction: column;
  }

  .intro-text-schets-naar-digitaal-wireframing,
  .intro-image-schets-naar-digitaal-wireframing {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.process-section-schets-naar-digitaal-wireframing {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.process-header-schets-naar-digitaal-wireframing {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.process-title-schets-naar-digitaal-wireframing {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.process-subtitle-schets-naar-digitaal-wireframing {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: #cbd5e1;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

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

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

.step-number-schets-naar-digitaal-wireframing {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  color: #60a5fa;
  line-height: 1;
  flex-shrink: 0;
  min-width: clamp(60px, 8vw, 100px);
}

.step-content-schets-naar-digitaal-wireframing {
  flex: 1;
  padding-top: clamp(0.25rem, 1vw, 0.5rem);
}

.step-title-schets-naar-digitaal-wireframing {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.step-text-schets-naar-digitaal-wireframing {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: #cbd5e1;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .process-step-schets-naar-digitaal-wireframing {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-schets-naar-digitaal-wireframing {
    font-size: 2rem;
    min-width: 50px;
  }
}

.tools-section-schets-naar-digitaal-wireframing {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tools-header-schets-naar-digitaal-wireframing {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.tools-title-schets-naar-digitaal-wireframing {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tools-subtitle-schets-naar-digitaal-wireframing {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: #475569;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.tools-grid-schets-naar-digitaal-wireframing {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.tool-card-schets-naar-digitaal-wireframing {
  flex: 1 1 calc(50% - 1rem);
  max-width: 350px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool-card-schets-naar-digitaal-wireframing:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.tool-icon-schets-naar-digitaal-wireframing {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: #0066cc;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tool-name-schets-naar-digitaal-wireframing {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tool-description-schets-naar-digitaal-wireframing {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #475569;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .tool-card-schets-naar-digitaal-wireframing {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.techniques-section-schets-naar-digitaal-wireframing {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.techniques-wrapper-schets-naar-digitaal-wireframing {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.techniques-text-schets-naar-digitaal-wireframing {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-image-schets-naar-digitaal-wireframing {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-title-schets-naar-digitaal-wireframing {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.techniques-paragraph-schets-naar-digitaal-wireframing {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.techniques-list-schets-naar-digitaal-wireframing {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.technique-item-schets-naar-digitaal-wireframing {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #f8fafc;
  border-left: 4px solid #0066cc;
  border-radius: 6px;
}

.technique-name-schets-naar-digitaal-wireframing {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.technique-desc-schets-naar-digitaal-wireframing {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #475569;
  line-height: 1.6;
}

.techniques-img-schets-naar-digitaal-wireframing {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  max-height: 450px;
}

@media (max-width: 768px) {
  .techniques-wrapper-schets-naar-digitaal-wireframing {
    flex-direction: column;
  }

  .techniques-text-schets-naar-digitaal-wireframing,
  .techniques-image-schets-naar-digitaal-wireframing {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.best-practices-section-schets-naar-digitaal-wireframing {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.best-practices-header-schets-naar-digitaal-wireframing {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.best-practices-title-schets-naar-digitaal-wireframing {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.best-practices-subtitle-schets-naar-digitaal-wireframing {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: #cbd5e1;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.best-practices-wrapper-schets-naar-digitaal-wireframing {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.practice-card-schets-naar-digitaal-wireframing {
  flex: 1 1 calc(50% - 1rem);
  max-width: 350px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.practice-card-schets-naar-digitaal-wireframing:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(96, 165, 250, 0.5);
  transform: translateY(-4px);
}

.practice-title-schets-naar-digitaal-wireframing {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.practice-text-schets-naar-digitaal-wireframing {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #cbd5e1;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .practice-card-schets-naar-digitaal-wireframing {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.workflow-section-schets-naar-digitaal-wireframing {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.workflow-wrapper-schets-naar-digitaal-wireframing {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.workflow-image-schets-naar-digitaal-wireframing {
  flex: 1 1 50%;
  max-width: 50%;
}

.workflow-text-schets-naar-digitaal-wireframing {
  flex: 1 1 50%;
  max-width: 50%;
}

.workflow-img-schets-naar-digitaal-wireframing {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  max-height: 450px;
}

.workflow-title-schets-naar-digitaal-wireframing {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.workflow-paragraph-schets-naar-digitaal-wireframing {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

@media (max-width: 768px) {
  .workflow-wrapper-schets-naar-digitaal-wireframing {
    flex-direction: column-reverse;
  }

  .workflow-image-schets-naar-digitaal-wireframing,
  .workflow-text-schets-naar-digitaal-wireframing {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.quote-section-schets-naar-digitaal-wireframing {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.featured-quote-schets-naar-digitaal-wireframing {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #60a5fa;
  background: rgba(96, 165, 250, 0.05);
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
}

.quote-text-schets-naar-digitaal-wireframing {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-style: italic;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.quote-author-schets-naar-digitaal-wireframing {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #cbd5e1;
  display: block;
  font-style: normal;
  font-weight: 500;
}

.conclusion-section-schets-naar-digitaal-wireframing {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-schets-naar-digitaal-wireframing {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-schets-naar-digitaal-wireframing {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-text-schets-naar-digitaal-wireframing {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  text-align: center;
}

.related-section-schets-naar-digitaal-wireframing {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-schets-naar-digitaal-wireframing {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.related-title-schets-naar-digitaal-wireframing {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-subtitle-schets-naar-digitaal-wireframing {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: #475569;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.related-cards-schets-naar-digitaal-wireframing {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-schets-naar-digitaal-wireframing {
  flex: 1 1 calc(33.333% - 1.5rem);
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-schets-naar-digitaal-wireframing:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.related-image-schets-naar-digitaal-wireframing {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-img-schets-naar-digitaal-wireframing {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-content-schets-naar-digitaal-wireframing {
  padding: clamp(1.25rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-schets-naar-digitaal-wireframing {
  font-size: clamp(0.95rem, 1.5vw, 1.2rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-text-schets-naar-digitaal-wireframing {
  font-size: clamp(0.8rem, 0.95vw, 0.9rem);
  color: #475569;
  line-height: 1.6;
}

.related-link-schets-naar-digitaal-wireframing {
  display: inline-block;
  font-size: clamp(0.8rem, 0.95vw, 0.9rem);
  color: #0066cc;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: 0.25rem;
}

.related-link-schets-naar-digitaal-wireframing:hover {
  color: #0052a3;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-card-schets-naar-digitaal-wireframing {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .related-card-schets-naar-digitaal-wireframing {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.disclaimer-section-schets-naar-digitaal-wireframing {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-content-schets-naar-digitaal-wireframing {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.disclaimer-title-schets-naar-digitaal-wireframing {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-text-schets-naar-digitaal-wireframing {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #cbd5e1;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .disclaimer-content-schets-naar-digitaal-wireframing {
    padding: clamp(1.5rem, 3vw, 2rem);
  }
}

.main-low-fidelity-prototypes-interactiviteit {
  width: 100%;
  overflow: hidden;
}

.hero-section-low-fidelity-prototypes-interactiviteit {
  background: #0a0f1e;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.breadcrumbs-low-fidelity-prototypes-interactiviteit {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.95rem);
}

.breadcrumbs-low-fidelity-prototypes-interactiviteit a {
  color: #06b6d4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-low-fidelity-prototypes-interactiviteit a:hover {
  color: #ffffff;
}

.breadcrumbs-low-fidelity-prototypes-interactiviteit span {
  color: #64748b;
}

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

.hero-text-wrapper-low-fidelity-prototypes-interactiviteit {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-low-fidelity-prototypes-interactiviteit {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-subtitle-low-fidelity-prototypes-interactiviteit {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.2rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-meta-low-fidelity-prototypes-interactiviteit {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.meta-item-low-fidelity-prototypes-interactiviteit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: #94a3b8;
}

.meta-item-low-fidelity-prototypes-interactiviteit i {
  color: #06b6d4;
  font-size: 1.1em;
}

.hero-image-wrapper-low-fidelity-prototypes-interactiviteit {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-low-fidelity-prototypes-interactiviteit {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .hero-content-low-fidelity-prototypes-interactiviteit {
    flex-direction: column;
  }

  .hero-text-wrapper-low-fidelity-prototypes-interactiviteit,
  .hero-image-wrapper-low-fidelity-prototypes-interactiviteit {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-meta-low-fidelity-prototypes-interactiviteit {
    flex-direction: column;
    gap: 1rem;
  }
}

.intro-section-low-fidelity-prototypes-interactiviteit {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-low-fidelity-prototypes-interactiviteit {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-low-fidelity-prototypes-interactiviteit {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-low-fidelity-prototypes-interactiviteit {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.intro-paragraph-low-fidelity-prototypes-interactiviteit {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.intro-image-low-fidelity-prototypes-interactiviteit {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-element-low-fidelity-prototypes-interactiviteit {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .intro-content-low-fidelity-prototypes-interactiviteit {
    flex-direction: column;
  }

  .intro-text-low-fidelity-prototypes-interactiviteit,
  .intro-image-low-fidelity-prototypes-interactiviteit {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.why-interactive-section-low-fidelity-prototypes-interactiviteit {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.why-content-low-fidelity-prototypes-interactiviteit {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.why-text-low-fidelity-prototypes-interactiviteit {
  flex: 1 1 50%;
  max-width: 50%;
}

.why-title-low-fidelity-prototypes-interactiviteit {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.why-paragraph-low-fidelity-prototypes-interactiviteit {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.benefits-cards-low-fidelity-prototypes-interactiviteit {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-card-low-fidelity-prototypes-interactiviteit {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 8px;
  border-left: 4px solid #0066cc;
  transition: all 0.3s ease;
}

.benefit-card-low-fidelity-prototypes-interactiviteit:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.benefit-icon-low-fidelity-prototypes-interactiviteit {
  font-size: 2rem;
  color: #0066cc;
}

.benefit-title-low-fidelity-prototypes-interactiviteit {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.3rem);
  color: #0f172a;
  font-weight: 600;
  line-height: 1.3;
}

.benefit-text-low-fidelity-prototypes-interactiviteit {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

.why-image-low-fidelity-prototypes-interactiviteit {
  flex: 1 1 50%;
  max-width: 50%;
}

.why-image-element-low-fidelity-prototypes-interactiviteit {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .why-content-low-fidelity-prototypes-interactiviteit {
    flex-direction: column;
  }

  .why-text-low-fidelity-prototypes-interactiviteit,
  .why-image-low-fidelity-prototypes-interactiviteit {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.tools-section-low-fidelity-prototypes-interactiviteit {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tools-content-low-fidelity-prototypes-interactiviteit {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.tools-header-low-fidelity-prototypes-interactiviteit {
  text-align: center;
}

.tools-title-low-fidelity-prototypes-interactiviteit {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.tools-intro-low-fidelity-prototypes-interactiviteit {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #cbd5e1;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

.tools-grid-low-fidelity-prototypes-interactiviteit {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.tool-card-low-fidelity-prototypes-interactiviteit {
  flex: 1 1 calc(50% - 1rem);
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.tool-card-low-fidelity-prototypes-interactiviteit:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(6, 182, 212, 0.3);
  transform: translateY(-4px);
}

.tool-name-low-fidelity-prototypes-interactiviteit {
  font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.4rem);
  color: #ffffff;
  font-weight: 600;
  line-height: 1.3;
}

.tool-description-low-fidelity-prototypes-interactiviteit {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

.tool-price-low-fidelity-prototypes-interactiviteit {
  display: inline-block;
  font-size: 0.85rem;
  color: #06b6d4;
  background: rgba(6, 182, 212, 0.1);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .tool-card-low-fidelity-prototypes-interactiviteit {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.process-section-low-fidelity-prototypes-interactiviteit {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.process-content-low-fidelity-prototypes-interactiviteit {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.process-header-low-fidelity-prototypes-interactiviteit {
  text-align: center;
}

.process-title-low-fidelity-prototypes-interactiviteit {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.process-intro-low-fidelity-prototypes-interactiviteit {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

.steps-wrapper-low-fidelity-prototypes-interactiviteit {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.process-step-low-fidelity-prototypes-interactiviteit {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.process-step-low-fidelity-prototypes-interactiviteit:hover {
  background: #f1f5f9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.step-number-low-fidelity-prototypes-interactiviteit {
  flex-shrink: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0066cc;
  line-height: 1;
  min-width: 70px;
}

.step-content-low-fidelity-prototypes-interactiviteit {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.step-title-low-fidelity-prototypes-interactiviteit {
  font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.4rem);
  color: #0f172a;
  font-weight: 600;
  line-height: 1.3;
}

.step-text-low-fidelity-prototypes-interactiviteit {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: #475569;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .process-step-low-fidelity-prototypes-interactiviteit {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-low-fidelity-prototypes-interactiviteit {
    min-width: auto;
  }
}

.best-practices-section-low-fidelity-prototypes-interactiviteit {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.best-practices-content-low-fidelity-prototypes-interactiviteit {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.best-practices-text-low-fidelity-prototypes-interactiviteit {
  flex: 1 1 50%;
  max-width: 50%;
}

.best-practices-title-low-fidelity-prototypes-interactiviteit {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.best-practices-intro-low-fidelity-prototypes-interactiviteit {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.tips-list-low-fidelity-prototypes-interactiviteit {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tip-item-low-fidelity-prototypes-interactiviteit {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-left: 1.5rem;
  border-left: 3px solid #0066cc;
}

.tip-title-low-fidelity-prototypes-interactiviteit {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: #0f172a;
  font-weight: 600;
  line-height: 1.3;
}

.tip-text-low-fidelity-prototypes-interactiviteit {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

.best-practices-image-low-fidelity-prototypes-interactiviteit {
  flex: 1 1 50%;
  max-width: 50%;
}

.best-practices-image-element-low-fidelity-prototypes-interactiviteit {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .best-practices-content-low-fidelity-prototypes-interactiviteit {
    flex-direction: column;
  }

  .best-practices-text-low-fidelity-prototypes-interactiviteit,
  .best-practices-image-low-fidelity-prototypes-interactiviteit {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-low-fidelity-prototypes-interactiviteit {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-low-fidelity-prototypes-interactiviteit {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.conclusion-title-low-fidelity-prototypes-interactiviteit {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.conclusion-text-low-fidelity-prototypes-interactiviteit {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #cbd5e1;
  line-height: 1.8;
}

.conclusion-quote-low-fidelity-prototypes-interactiviteit {
  padding: 2rem;
  background: rgba(6, 182, 212, 0.1);
  border-left: 4px solid #06b6d4;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1rem 0;
}

.quote-text-low-fidelity-prototypes-interactiviteit {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.3rem);
  color: #ffffff;
  line-height: 1.7;
  font-style: italic;
}

.quote-author-low-fidelity-prototypes-interactiviteit {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: #94a3b8;
  font-style: normal;
}

.disclaimer-section-low-fidelity-prototypes-interactiviteit {
  background: #1e293b;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-low-fidelity-prototypes-interactiviteit {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-low-fidelity-prototypes-interactiviteit {
  font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.4rem);
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.disclaimer-text-low-fidelity-prototypes-interactiviteit {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 0.95rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.related-section-low-fidelity-prototypes-interactiviteit {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-low-fidelity-prototypes-interactiviteit {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.related-title-low-fidelity-prototypes-interactiviteit {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  line-height: 1.2;
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.related-subtitle-low-fidelity-prototypes-interactiviteit {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  line-height: 1.6;
  text-align: center;
}

.related-cards-wrapper-low-fidelity-prototypes-interactiviteit {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-low-fidelity-prototypes-interactiviteit {
  flex: 1 1 calc(33.333% - 1.5rem);
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.related-card-low-fidelity-prototypes-interactiviteit:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: #ffffff;
}

.related-image-wrapper-low-fidelity-prototypes-interactiviteit {
  overflow: hidden;
  border-radius: 8px;
  height: 200px;
}

.related-card-image-low-fidelity-prototypes-interactiviteit {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-text-low-fidelity-prototypes-interactiviteit {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-card-title-low-fidelity-prototypes-interactiviteit {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.3rem);
  color: #0f172a;
  font-weight: 600;
  line-height: 1.3;
}

.related-card-description-low-fidelity-prototypes-interactiviteit {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

.related-link-low-fidelity-prototypes-interactiviteit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #0066cc;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
}

.related-link-low-fidelity-prototypes-interactiviteit:hover {
  color: #0052a3;
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .related-card-low-fidelity-prototypes-interactiviteit {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .related-card-low-fidelity-prototypes-interactiviteit {
    flex: 1 1 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
}

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

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

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

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

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

.prototyping-studio-about {
  background: #0f172a;
  color: #ffffff;
  font-family: var(--font-primary);
}

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

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

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

.hero-title-about {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
}

.hero-subtitle-about {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #cbd5e1;
  max-width: 700px;
  line-height: 1.6;
  margin: 0;
}

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

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

.stat-number-about {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
}

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

.hero-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  margin-top: 2rem;
  display: block;
  object-fit: cover;
}

.foundation-section-about {
  background: #0f172a;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.section-header-about {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.section-tag-about {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  border-radius: 20px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.section-title-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.section-subtitle-about {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: #cbd5e1;
  max-width: 700px;
  margin: 1rem auto 0;
  line-height: 1.6;
}

.foundation-text-about {
  max-width: 850px;
  margin: 0 auto;
}

.foundation-text-about p {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin: 0 0 1.25rem 0;
}

.foundation-text-about p:last-child {
  margin-bottom: 0;
}

.story-visual-about {
  width: 100%;
  max-width: 850px;
  height: auto;
  border-radius: 12px;
  margin-top: 2rem;
  display: block;
  object-fit: cover;
}

.expertise-section-about {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.expertise-card-about {
  flex: 1 1 280px;
  max-width: 350px;
  background: rgba(203, 213, 225, 0.05);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.expertise-card-about:hover {
  transform: translateY(-6px);
  border-color: rgba(6, 182, 212, 0.4);
  background: rgba(203, 213, 225, 0.08);
}

.card-icon-about {
  font-size: 2.5rem;
  color: #06b6d4;
  height: 60px;
  display: flex;
  align-items: center;
}

.card-title-about {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
}

.card-text-about {
  font-size: 0.9rem;
  color: #94a3b8;
  margin: 0;
  line-height: 1.6;
}

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

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

.process-steps-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 4vw, 3rem);
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.process-step-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step-about:not(:last-child) {
  padding-bottom: clamp(2rem, 3vw, 2.5rem);
  border-bottom: 1px solid rgba(6, 182, 212, 0.2);
}

.step-number-about {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
  margin: 0;
}

.step-title-about {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
}

.step-text-about {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #cbd5e1;
  margin: 0;
  line-height: 1.7;
}

.approach-visual-about {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  margin-top: 1rem;
  display: block;
  object-fit: cover;
}

.values-section-about {
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.values-intro-about {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.values-intro-about p {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #cbd5e1;
  margin: 0;
  line-height: 1.7;
}

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

.value-item-about {
  flex: 1 1 220px;
  max-width: 280px;
  text-align: center;
}

.value-name-about {
  font-size: 1.05rem;
  font-weight: 700;
  color: #06b6d4;
  margin: 0 0 0.75rem 0;
  line-height: 1.4;
}

.value-desc-about {
  font-size: 0.875rem;
  color: #94a3b8;
  margin: 0;
  line-height: 1.6;
}

.quote-section-about {
  background: #0f172a;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.quote-content-about {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 850px;
  margin: 0 auto;
}

.featured-quote-about {
  padding: clamp(2rem, 3vw, 2.5rem);
  border-left: 4px solid #06b6d4;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 8px;
  margin: 0;
}

.quote-text-about {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #ffffff;
  font-style: italic;
  line-height: 1.8;
  margin: 0 0 1rem 0;
}

.quote-author-about {
  font-size: 0.9rem;
  color: #cbd5e1;
  margin: 0;
  display: block;
}

.cta-final-about {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  padding: clamp(2.5rem, 4vw, 3.5rem);
  border-radius: 12px;
  text-align: center;
  color: #ffffff;
}

.cta-title-about {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.75rem 0;
  line-height: 1.4;
}

.cta-text-about {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  line-height: 1.6;
}

.disclaimer-section-about {
  background: rgba(203, 213, 225, 0.03);
  border-top: 1px solid rgba(6, 182, 212, 0.15);
  padding: clamp(3rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-header-about {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-icon-about {
  font-size: 1.25rem;
  color: #06b6d4;
  flex-shrink: 0;
}

.disclaimer-title-about {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
}

.disclaimer-text-about {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-stats-about {
    gap: 1.5rem;
  }

  .stat-number-about {
    font-size: 2rem;
  }

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

  .expertise-cards-about {
    gap: 1rem;
  }

  .expertise-card-about {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .process-step-about {
    gap: 1rem;
  }

  .values-list-about {
    gap: 1rem;
  }

  .value-item-about {
    flex: 1 1 150px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .expertise-cards-about {
    gap: 1.5rem;
  }

  .expertise-card-about {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .values-list-about {
    gap: 2rem;
  }

  .value-item-about {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (min-width: 1025px) {
  .expertise-cards-about {
    gap: 2rem;
  }

  .expertise-card-about {
    flex: 1 1 calc(33.333% - 1.35rem);
  }

  .values-list-about {
    gap: 2.5rem;
  }

  .value-item-about {
    flex: 1 1 calc(25% - 1.875rem);
  }
}

.portfolio-page {
  width: 100%;
  background-color: var(--color-bg-primary);
}

.portfolio-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
}

.portfolio-hero-container {
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-text-light);
  line-height: var(--lh-tight);
  margin: 0 0 var(--space-md) 0;
}

.portfolio-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--lh-normal);
  margin: 0;
  max-width: 600px;
}

.portfolio-projects {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
}

.portfolio-projects-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.portfolio-card {
  background-color: var(--color-bg-card-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.portfolio-card:hover {
  border-color: rgba(0, 102, 204, 0.3);
  background-color: rgba(255, 255, 255, 0.08);
}

.portfolio-card-image {
  width: 100%;
  height: 240px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  overflow: hidden;
}

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

.portfolio-card-content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-card-tag {
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
  display: inline-block;
  width: fit-content;
}

.portfolio-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 3vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-light);
  line-height: var(--lh-tight);
  margin: 0 0 var(--space-sm) 0;
}

.portfolio-card-description {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  color: var(--color-text-secondary-dark);
  line-height: var(--lh-normal);
  margin: 0 0 var(--space-md) 0;
  flex-grow: 1;
}

.portfolio-card-meta {
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  color: var(--color-text-muted-dark);
  margin: 0;
  font-weight: 500;
}

.portfolio-cta {
  background-color: var(--color-bg-accent);
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
}

.portfolio-cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text-light);
  line-height: var(--lh-tight);
  margin: 0 0 var(--space-md) 0;
}

.portfolio-cta-description {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--lh-normal);
  margin: 0 0 var(--space-lg) 0;
}

.portfolio-cta-button {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--color-primary);
}

.portfolio-cta-button:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .portfolio-hero {
    padding: var(--space-3xl) var(--space-lg);
  }

  .portfolio-projects {
    padding: var(--space-3xl) var(--space-lg);
  }

  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

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

  .portfolio-card-image {
    height: 280px;
  }

  .portfolio-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-hero {
    padding: var(--space-3xl) var(--space-xl);
  }

  .portfolio-projects {
    padding: var(--space-3xl) var(--space-xl);
  }

  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .portfolio-card-image {
    height: 300px;
  }

  .portfolio-cta {
    padding: var(--space-3xl) var(--space-xl);
  }
}

@media (min-width: 1280px) {
  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.services-page {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary-dark);
  font-family: var(--font-primary);
}

.services-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.services-hero-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-text-light);
  margin: 0 0 var(--space-sm) 0;
  line-height: var(--lh-tight);
}

.services-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary-dark);
  margin: 0;
  line-height: var(--lh-snug);
}

@media (min-width: 768px) {
  .services-hero {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: 4rem var(--space-xl);
  }
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

@media (min-width: 768px) {
  .services-container {
    padding: 0 var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-container {
    padding: 0 var(--space-xl);
  }
}

.services-content {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .services-content {
    padding: var(--space-3xl) 0;
  }
}

@media (min-width: 1024px) {
  .services-content {
    padding: 4rem 0;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

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

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }
}

.services-card {
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.services-card:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.services-card-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(0, 102, 204, 0.15);
  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.5rem;
}

.services-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-light);
  margin: 0 0 var(--space-sm) 0;
  line-height: var(--lh-snug);
}

.services-card-description {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary-dark);
  margin: 0;
  line-height: var(--lh-relaxed);
  flex-grow: 1;
}

@media (min-width: 768px) {
  .services-card {
    padding: var(--space-2xl);
  }
}

.services-process {
  background-color: var(--color-bg-accent);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .services-process {
    padding: var(--space-3xl) 0;
  }
}

@media (min-width: 1024px) {
  .services-process {
    padding: 4rem 0;
  }
}

.services-process-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--color-text-light);
  margin: 0 0 var(--space-2xl) 0;
  text-align: center;
  line-height: var(--lh-tight);
}

@media (min-width: 768px) {
  .services-process-title {
    margin-bottom: var(--space-3xl);
  }
}

.services-process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

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

@media (min-width: 1024px) {
  .services-process-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
  }
}

.services-process-item {
  text-align: center;
}

.services-process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.services-process-step {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-light);
  margin: 0 0 var(--space-sm) 0;
  line-height: var(--lh-snug);
}

.services-process-text {
  font-size: clamp(0.875rem, 1vw, 0.975rem);
  color: var(--color-text-secondary-dark);
  margin: 0;
  line-height: var(--lh-normal);
}

.services-cta {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .services-cta {
    padding: var(--space-3xl) 0;
  }
}

@media (min-width: 1024px) {
  .services-cta {
    padding: 4rem 0;
  }
}

.services-cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

@media (min-width: 768px) {
  .services-cta-content {
    padding: 0 var(--space-lg);
  }
}

.services-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--color-text-light);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--lh-tight);
}

.services-cta-text {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary-dark);
  margin: 0 0 var(--space-lg) 0;
  line-height: var(--lh-normal);
}

.services-cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-lg);
  font-family: var(--font-heading);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.services-cta-button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .services-cta-button {
    padding: var(--space-md) var(--space-2xl);
  }
}

: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-bg-accent: #1e293b;
  --color-text-light: #ffffff;
  --color-text-dark: #0f172a;
  --color-text-primary-dark: #ffffff;
  --color-text-secondary-dark: #cbd5e1;
  --color-text-muted-dark: #94a3b8;
  --color-text-primary-light: #0f172a;
  --color-text-secondary-light: #475569;
  --color-text-muted-light: #94a3af;
  --color-primary: #0066cc;
  --color-primary-hover: #0052a3;
  --color-primary-light: #e0efff;
  --color-secondary: #ff6b35;
  --color-secondary-hover: #e55a28;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --font-primary: 'Sora', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.3);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --lh-tight: 1.2;
  --lh-snug: 1.4;
  --lh-normal: 1.6;
  --lh-relaxed: 1.8;
}

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

.docs-zone {
  background-color: var(--color-bg-secondary);
  color: var(--color-text-primary-light);
  font-family: var(--font-primary);
  overflow: hidden;
}

.docs-zone .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
  width: 100%;
  overflow: hidden;
}

.docs-zone .content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.docs-zone h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-sm);
  line-height: var(--lh-tight);
}

.docs-zone .last-updated {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-muted-light);
  margin-bottom: var(--space-2xl);
  font-style: italic;
}

.docs-zone h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: var(--color-text-primary-light);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  line-height: var(--lh-snug);
}

.docs-zone p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-light);
  margin-bottom: var(--space-md);
  line-height: var(--lh-relaxed);
}

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

.docs-zone li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-light);
  margin-bottom: var(--space-sm);
  line-height: var(--lh-relaxed);
}

.docs-zone section {
  margin-bottom: var(--space-2xl);
}

.docs-zone .contact-section {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--space-3xl);
}

.docs-zone .contact-section h2 {
  color: var(--color-text-primary-light);
  margin-top: 0;
}

.docs-zone .contact-section p {
  color: var(--color-text-secondary-light);
  margin-bottom: var(--space-sm);
}

.docs-zone .contact-section strong {
  color: var(--color-text-primary-light);
  font-weight: 600;
}

@media (min-width: 768px) {
  .docs-zone .container {
    padding: 0 var(--space-lg);
  }

  .docs-zone .content {
    padding: var(--space-3xl) 0;
  }
}

@media (min-width: 1024px) {
  .docs-zone .container {
    padding: 0 var(--space-2xl);
  }

  .docs-zone .content {
    padding: var(--space-3xl) 0;
  }
}

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

html, body {
  width: 100%;
  height: 100%;
  background-color: var(--color-bg-primary);
  font-family: var(--font-primary);
}

.thank-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-primary);
}

.thank-section {
  width: 100%;
  padding: var(--space-lg) var(--space-md);
  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;
}

.thank-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-lg);
  padding: var(--space-2xl) var(--space-md);
}

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.thank-icon svg {
  width: clamp(60px, 12vw, 100px);
  height: clamp(60px, 12vw, 100px);
  animation: successPulse 0.8s ease-out;
}

@keyframes successPulse {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.thank-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  letter-spacing: -0.5px;
  line-height: var(--lh-tight);
  margin: var(--space-md) 0 var(--space-sm) 0;
}

.thank-lead {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--color-text-secondary-dark);
  font-weight: 500;
  line-height: var(--lh-snug);
  margin: var(--space-sm) 0 var(--space-lg) 0;
  letter-spacing: -0.3px;
}

.thank-description {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--lh-relaxed);
  margin: var(--space-md) 0;
  opacity: 0.95;
}

.thank-next {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--lh-relaxed);
  margin: var(--space-md) 0 var(--space-xl) 0;
  opacity: 0.9;
}

.thank-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.875rem, 1.5vw, 1.25rem) clamp(1.75rem, 4vw, 2.5rem);
  background-color: var(--color-primary);
  color: var(--color-text-light);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 600;
  font-family: var(--font-primary);
  letter-spacing: -0.3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-md);
  margin-top: var(--space-xl);
  border: 2px solid var(--color-primary);
  cursor: pointer;
}

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

.thank-button:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

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

@media (min-width: 640px) {
  .thank-section {
    padding: var(--space-2xl) var(--space-md);
  }

  .thank-wrapper {
    padding: var(--space-3xl) var(--space-lg);
    gap: var(--space-xl);
  }

  .thank-icon {
    margin-bottom: var(--space-lg);
  }

  .thank-title {
    margin: var(--space-lg) 0 var(--space-md) 0;
  }

  .thank-lead {
    margin: var(--space-md) 0 var(--space-xl) 0;
  }

  .thank-description {
    margin: var(--space-lg) 0;
  }

  .thank-next {
    margin: var(--space-lg) 0 var(--space-2xl) 0;
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-xl);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

  .thank-wrapper {
    padding: var(--space-3xl) var(--space-2xl);
    gap: var(--space-2xl);
  }

  .thank-icon {
    margin-bottom: var(--space-xl);
  }

  .thank-title {
    margin: var(--space-xl) 0 var(--space-lg) 0;
  }

  .thank-lead {
    margin: var(--space-lg) 0 var(--space-2xl) 0;
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  }

  .thank-description {
    margin: var(--space-xl) 0;
    font-size: clamp(0.95rem, 1.1vw, 1.125rem);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }

  .thank-next {
    margin: var(--space-xl) 0 var(--space-3xl) 0;
    font-size: clamp(0.95rem, 1.1vw, 1.125rem);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }

  .thank-button {
    padding: clamp(1rem, 1.8vw, 1.5rem) clamp(2rem, 5vw, 3rem);
    font-size: clamp(0.95rem, 1.05vw, 1.15rem);
    margin-top: var(--space-2xl);
  }
}

@media (prefers-reduced-motion: reduce) {
  .thank-icon svg {
    animation: none;
    opacity: 1;
    transform: scale(1);
  }

  .thank-button {
    transition: none;
  }

  .thank-button:hover {
    transform: none;
  }

  .thank-button:active {
    transform: none;
  }
}

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

html, body {
  width: 100%;
  height: 100%;
}

.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  background-color: var(--color-bg-primary);
  font-family: var(--font-primary);
}

.error-section {
  width: 100%;
  padding: var(--space-lg);
  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;
  justify-content: center;
  text-align: center;
  gap: var(--space-xl);
}

.error-visual {
  position: relative;
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.error-code-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  line-height: 1;
  position: relative;
  z-index: 2;
  margin: 0;
}

.error-decoration {
  position: absolute;
  width: clamp(150px, 40vw, 300px);
  height: clamp(150px, 40vw, 300px);
  background-color: var(--color-bg-card-dark);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

.error-message {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  line-height: var(--lh-tight);
  margin: 0;
}

.error-description {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--lh-relaxed);
  margin: 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.error-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: var(--space-md);
  margin: var(--space-lg) 0;
  width: 100%;
}

.feature-item {
  background-color: var(--color-bg-card-dark);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  line-height: 1;
}

.feature-item p {
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.4;
  margin: 0;
}

.btn-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 600;
  color: var(--color-text-light);
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-lg);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
  margin-top: var(--space-md);
  position: relative;
  overflow: hidden;
}

.btn-home::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary-hover);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-home:hover {
  color: var(--color-text-light);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

.btn-home:hover::before {
  left: 0;
}

.btn-home:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 102, 204, 0.2);
}

@media (min-width: 640px) {
  .error-section {
    padding: var(--space-xl);
  }

  .error-visual {
    height: 250px;
    margin-bottom: var(--space-2xl);
  }

  .error-features {
    gap: var(--space-lg);
  }
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-2xl) var(--space-lg);
  }

  .error-wrapper {
    gap: var(--space-2xl);
  }

  .error-visual {
    height: 300px;
  }

  .error-features {
    grid-template-columns: repeat(3, 1fr);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl) var(--space-lg);
  }

  .error-wrapper {
    gap: var(--space-3xl);
  }

  .error-visual {
    height: 350px;
    margin-bottom: var(--space-2xl);
  }

  .feature-item:hover {
    transform: translateY(-4px);
  }

  .btn-home:hover {
    box-shadow: 0 12px 30px rgba(0, 102, 204, 0.35);
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-decoration {
    animation: none;
  }

  .feature-item,
  .btn-home {
    transition: none;
  }

  .btn-home::before {
    transition: none;
  }
}

.contact-reach-us {
  width: 100%;
  background: var(--color-bg-primary);
}

.contact-reach-us-hero {
  width: 100%;
  padding: 3rem var(--space-sm);
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-accent) 100%);
  overflow: hidden;
}

.contact-reach-us-hero-content {
  margin: 0 auto;
}

.contact-reach-us-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-text-light);
  margin: 0;
  line-height: var(--lh-tight);
}

.contact-reach-us-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: var(--color-text-secondary-dark);
  margin: var(--space-md) 0 0 0;
  line-height: var(--lh-normal);
  max-width: 600px;
}

@media (min-width: 768px) {
  .contact-reach-us-hero {
    padding: 4.5rem var(--space-sm);
  }
}

@media (min-width: 1024px) {
  .contact-reach-us-hero {
    padding: 6rem var(--space-sm);
  }
}

.contact-reach-us-main {
  width: 100%;
  padding: 3rem var(--space-sm);
  background: var(--color-bg-primary);
  overflow: hidden;
}

.contact-reach-us-main-content {
  margin: 0 auto;
}

.contact-reach-us-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
}

.contact-reach-us-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-reach-us-form-header {
  margin-bottom: var(--space-lg);
}

.contact-reach-us-form-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: var(--color-text-light);
  margin: 0;
  line-height: var(--lh-tight);
}

.contact-reach-us-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

.contact-reach-us-label {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-secondary-dark);
  text-transform: capitalize;
}

.contact-reach-us-input,
.contact-reach-us-textarea {
  font-family: var(--font-primary);
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-text-light);
  font-size: var(--text-base);
  transition: all 0.3s ease;
}

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

.contact-reach-us-input:focus,
.contact-reach-us-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

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

.contact-reach-us-submit {
  font-family: var(--font-primary);
  width: 100%;
  padding: 1rem 2rem;
  background: var(--color-primary);
  color: var(--color-text-dark);
  border: none;
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: var(--space-sm);
}

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

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

.contact-reach-us-privacy-notice {
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  color: var(--color-text-muted-dark);
  margin: var(--space-sm) 0 0 0;
  line-height: var(--lh-normal);
}

.contact-reach-us-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-reach-us-privacy-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-reach-us-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-reach-us-info-header {
  margin-bottom: var(--space-lg);
}

.contact-reach-us-info-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: var(--color-text-light);
  margin: 0;
  line-height: var(--lh-tight);
}

.contact-reach-us-info-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.contact-reach-us-info-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.contact-reach-us-info-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}

.contact-reach-us-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 102, 204, 0.15);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.contact-reach-us-info-content {
  flex: 1;
}

.contact-reach-us-info-content h3 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text-light);
  margin: 0 0 0.5rem 0;
  line-height: var(--lh-tight);
}

.contact-reach-us-info-content p {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  color: var(--color-text-secondary-dark);
  margin: 0;
  line-height: var(--lh-normal);
}

.contact-reach-us-info-content a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-reach-us-info-content a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-reach-us-info-extra {
  padding: var(--space-lg);
  background: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
}

.contact-reach-us-info-extra h3 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text-light);
  margin: 0 0 var(--space-sm) 0;
  line-height: var(--lh-tight);
}

.contact-reach-us-info-extra p {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  color: var(--color-text-secondary-dark);
  margin: 0;
  line-height: var(--lh-normal);
}

@media (min-width: 768px) {
  .contact-reach-us-main {
    padding: 4.5rem var(--space-sm);
  }

  .contact-reach-us-grid {
    gap: 4rem;
  }

  .contact-reach-us-form-wrapper {
    flex: 0 1 calc(50% - 2rem);
  }

  .contact-reach-us-info-wrapper {
    flex: 0 1 calc(50% - 2rem);
  }
}

@media (min-width: 1024px) {
  .contact-reach-us-main {
    padding: 6rem var(--space-sm);
  }

  .contact-reach-us-grid {
    gap: 5rem;
  }

  .contact-reach-us-form-wrapper {
    flex: 0 1 calc(45% - 2.5rem);
  }

  .contact-reach-us-info-wrapper {
    flex: 0 1 calc(55% - 2.5rem);
  }
}

@media (min-width: 1440px) {
  .contact-reach-us-hero {
    padding: 8rem var(--space-sm);
  }

  .contact-reach-us-main {
    padding: 8rem var(--space-sm);
  }
}
.main-gebruikersfeedback-wireframes-testen {
  width: 100%;
  overflow: hidden;
}

.hero-section-gebruikersfeedback-wireframes-testen {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.breadcrumbs-gebruikersfeedback-wireframes-testen {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.breadcrumbs-gebruikersfeedback-wireframes-testen a {
  color: #0066cc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-gebruikersfeedback-wireframes-testen a:hover {
  color: #0052a3;
  text-decoration: underline;
}

.breadcrumbs-gebruikersfeedback-wireframes-testen span {
  color: #cbd5e1;
  margin: 0 0.25rem;
}

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

.hero-text-block-gebruikersfeedback-wireframes-testen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-gebruikersfeedback-wireframes-testen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-badge-gebruikersfeedback-wireframes-testen {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(0, 102, 204, 0.15);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-title-gebruikersfeedback-wireframes-testen {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}

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

.hero-meta-gebruikersfeedback-wireframes-testen {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.meta-item-gebruikersfeedback-wireframes-testen {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: 0.875rem;
}

.meta-item-gebruikersfeedback-wireframes-testen i {
  color: #3b82f6;
}

.hero-image-gebruikersfeedback-wireframes-testen {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero-content-gebruikersfeedback-wireframes-testen {
    flex-direction: column;
  }
  
  .hero-text-block-gebruikersfeedback-wireframes-testen,
  .hero-image-block-gebruikersfeedback-wireframes-testen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.intro-section-gebruikersfeedback-wireframes-testen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.intro-text-block-gebruikersfeedback-wireframes-testen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-block-gebruikersfeedback-wireframes-testen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-gebruikersfeedback-wireframes-testen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}

.intro-paragraph-gebruikersfeedback-wireframes-testen {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.intro-image-block-gebruikersfeedback-wireframes-testen img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-content-gebruikersfeedback-wireframes-testen {
    flex-direction: column;
  }
  
  .intro-text-block-gebruikersfeedback-wireframes-testen,
  .intro-image-block-gebruikersfeedback-wireframes-testen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-one-gebruikersfeedback-wireframes-testen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.content-text-one-gebruikersfeedback-wireframes-testen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-one-gebruikersfeedback-wireframes-testen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-one-gebruikersfeedback-wireframes-testen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}

.content-paragraph-one-gebruikersfeedback-wireframes-testen {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.content-image-one-gebruikersfeedback-wireframes-testen img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

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

.content-section-two-gebruikersfeedback-wireframes-testen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.content-image-two-gebruikersfeedback-wireframes-testen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-text-two-gebruikersfeedback-wireframes-testen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-two-gebruikersfeedback-wireframes-testen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}

.content-paragraph-two-gebruikersfeedback-wireframes-testen {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.content-image-two-gebruikersfeedback-wireframes-testen img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .content-wrapper-two-gebruikersfeedback-wireframes-testen {
    flex-direction: column-reverse;
  }
  
  .content-image-two-gebruikersfeedback-wireframes-testen,
  .content-text-two-gebruikersfeedback-wireframes-testen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-three-gebruikersfeedback-wireframes-testen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.content-text-three-gebruikersfeedback-wireframes-testen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-three-gebruikersfeedback-wireframes-testen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-three-gebruikersfeedback-wireframes-testen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}

.content-paragraph-three-gebruikersfeedback-wireframes-testen {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.content-image-three-gebruikersfeedback-wireframes-testen img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

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

.content-section-four-gebruikersfeedback-wireframes-testen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.content-image-four-gebruikersfeedback-wireframes-testen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-text-four-gebruikersfeedback-wireframes-testen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-four-gebruikersfeedback-wireframes-testen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}

.content-paragraph-four-gebruikersfeedback-wireframes-testen {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.content-image-four-gebruikersfeedback-wireframes-testen img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .content-wrapper-four-gebruikersfeedback-wireframes-testen {
    flex-direction: column-reverse;
  }
  
  .content-image-four-gebruikersfeedback-wireframes-testen,
  .content-text-four-gebruikersfeedback-wireframes-testen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.insight-section-gebruikersfeedback-wireframes-testen {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.insight-content-gebruikersfeedback-wireframes-testen {
  max-width: 900px;
  margin: 0 auto;
}

.insight-box-gebruikersfeedback-wireframes-testen {
  padding: clamp(2rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
}

.insight-title-gebruikersfeedback-wireframes-testen {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 700;
}

.insight-text-gebruikersfeedback-wireframes-testen {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.2rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.insight-attribution-gebruikersfeedback-wireframes-testen {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: #94a3b8;
  font-style: normal;
}

.implementation-section-gebruikersfeedback-wireframes-testen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.implementation-content-gebruikersfeedback-wireframes-testen {
  max-width: 1000px;
  margin: 0 auto;
}

.implementation-title-gebruikersfeedback-wireframes-testen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
  line-height: 1.2;
  font-weight: 700;
}

.implementation-steps-gebruikersfeedback-wireframes-testen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.step-card-gebruikersfeedback-wireframes-testen {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.step-card-gebruikersfeedback-wireframes-testen:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.step-number-gebruikersfeedback-wireframes-testen {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0066cc;
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
}

.step-content-gebruikersfeedback-wireframes-testen {
  flex: 1;
}

.step-title-gebruikersfeedback-wireframes-testen {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #0f172a;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.step-text-gebruikersfeedback-wireframes-testen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.05rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

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

.conclusion-section-gebruikersfeedback-wireframes-testen {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-gebruikersfeedback-wireframes-testen {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-gebruikersfeedback-wireframes-testen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}

.conclusion-text-gebruikersfeedback-wireframes-testen {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.cta-box-gebruikersfeedback-wireframes-testen {
  margin-top: 2.5rem;
  padding: clamp(2rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-align: center;
}

.cta-title-gebruikersfeedback-wireframes-testen {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-text-gebruikersfeedback-wireframes-testen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.05rem);
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cta-button-gebruikersfeedback-wireframes-testen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  background: #0066cc;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button-gebruikersfeedback-wireframes-testen:hover {
  background: #0052a3;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(0, 102, 204, 0.3);
}

.related-section-gebruikersfeedback-wireframes-testen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.related-title-gebruikersfeedback-wireframes-testen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}

.related-subtitle-gebruikersfeedback-wireframes-testen {
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 1rem;
}

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

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

.related-card-gebruikersfeedback-wireframes-testen:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.related-image-gebruikersfeedback-wireframes-testen {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f8fafc;
}

.related-image-gebruikersfeedback-wireframes-testen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-text-gebruikersfeedback-wireframes-testen {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.related-card-title-gebruikersfeedback-wireframes-testen {
  font-size: 1.125rem;
  color: #0f172a;
  margin: 0;
  font-weight: 700;
  line-height: 1.4;
}

.related-card-description-gebruikersfeedback-wireframes-testen {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.related-link-gebruikersfeedback-wireframes-testen {
  display: inline-flex;
  align-items: center;
  color: #0066cc;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  margin-top: 0.5rem;
}

.related-link-gebruikersfeedback-wireframes-testen:hover {
  color: #0052a3;
}

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

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

.disclaimer-section-gebruikersfeedback-wireframes-testen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.disclaimer-content-gebruikersfeedback-wireframes-testen {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  border-left: 4px solid #3b82f6;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.disclaimer-title-gebruikersfeedback-wireframes-testen {
  font-size: 1.25rem;
  color: #0f172a;
  margin-bottom: 1rem;
  font-weight: 700;
}

.disclaimer-text-gebruikersfeedback-wireframes-testen {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.8;
  margin: 0;
}