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

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

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

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

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

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

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

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

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  margin-bottom: var(--space-md);
}

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

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

p {
  margin-bottom: var(--space-md);
  font-weight: 400;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
}

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

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

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

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

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

.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 {
  color: var(--color-text-primary-light);
}

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

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

.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 {
  color: var(--color-text-primary-light);
}

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

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

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

.text-accent-gold {
  color: var(--color-accent-gold);
}

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

.btn-primary {
  background: var(--color-primary);
  color: var(--color-bg-primary);
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 212, 255, 0.4);
}

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

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

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

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

.btn-light:hover {
  border-color: var(--color-text-primary-light);
  background: var(--color-bg-tertiary);
  transform: translateY(-2px);
}

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

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

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

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

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.card {
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
  overflow: hidden;
}

.card-light {
  background: var(--color-bg-secondary);
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
}

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

.card-dark {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1024px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

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

.flex {
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

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

.badge-secondary {
  background: rgba(255, 107, 157, 0.1);
  color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
}

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

.badge-light {
  background: var(--color-bg-tertiary);
  color: var(--color-text-primary-light);
  border: 1px solid #cbd5e1;
}

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

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

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

.section-dark a:hover {
  color: #00ffff;
}

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

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

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

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

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

.divider {
  height: 1px;
  background: #e2e8f0;
  margin: var(--space-lg) 0;
}

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

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

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

blockquote {
  padding-left: var(--space-lg);
  border-left: 4px solid var(--color-primary);
  margin: var(--space-lg) 0;
  font-style: italic;
  color: var(--color-text-secondary-light);
}

.section-dark blockquote {
  color: var(--color-text-secondary-dark);
  border-left-color: var(--color-primary);
}

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

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

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

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

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

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

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(0, 212, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
  }
}

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

.animate-fade-down {
  animation: fadeInDown 0.6s ease-out;
}

.animate-fade-left {
  animation: fadeInLeft 0.6s ease-out;
}

.animate-fade-right {
  animation: fadeInRight 0.6s ease-out;
}

.animate-slide-in {
  animation: slideInFromBottom 0.8s ease-out;
}

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

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

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

.italic {
  font-style: italic;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.hidden {
  display: none;
}

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

@media (max-width: 768px) {
  h1 {
    margin-bottom: var(--space-md);
  }
  
  h2 {
    margin-bottom: var(--space-sm);
  }
  
  .section-dark,
  .section-light,
  .section-light-gray {
    padding: var(--space-2xl) 0;
  }
}

@media (max-width: 480px) {
  .btn {
    width: 100%;
  }
  
  .section-dark,
  .section-light,
  .section-light-gray {
    padding: var(--space-xl) 0;
  }
  
  .card-padding {
    padding: var(--space-md);
  }
}

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

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

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

.section-dark ::selection {
  background: var(--color-primary);
  color: var(--color-bg-primary);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: var(--font-primary);
}

.header-merkwerk-studio {
  background: var(--color-bg-primary);
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
  position: static;
  width: 100%;
  z-index: 100;
}

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

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

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

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

.header-merkwerk-studio-logo-text {
  font-weight: 700;
  font-size: clamp(1rem, 2vw + 0.25rem, 1.35rem);
  color: var(--color-text-primary-dark);
  letter-spacing: -0.5px;
}

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

.header-merkwerk-studio-nav-link {
  color: var(--color-text-secondary-dark);
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  font-weight: 500;
  transition: color var(--transition-base);
  position: relative;
}

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

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

.header-merkwerk-studio-nav-link:hover::after {
  width: 100%;
}

.header-merkwerk-studio-cta-button {
  display: none;
  background: var(--color-primary);
  color: var(--color-bg-primary);
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-base);
  white-space: nowrap;
  flex-shrink: 0;
}

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

.header-merkwerk-studio-mobile-toggle {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 0;
  flex-shrink: 0;
  z-index: 101;
}

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

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

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

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

.header-merkwerk-studio-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-primary);
  display: flex;
  flex-direction: column;
  padding-top: 70px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-base);
  z-index: 99;
  border-left: 1px solid rgba(0, 212, 255, 0.1);
}

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

.header-merkwerk-studio-mobile-header {
  display: flex;
  justify-content: flex-end;
  padding: 1rem;
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

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

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

.header-merkwerk-studio-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 1rem 0;
  overflow-y: auto;
  flex-grow: 1;
}

.header-merkwerk-studio-mobile-link {
  color: var(--color-text-secondary-dark);
  text-decoration: none;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 212, 255, 0.05);
  transition: all var(--transition-base);
}

.header-merkwerk-studio-mobile-link:hover {
  background: rgba(0, 212, 255, 0.05);
  color: var(--color-primary);
  padding-left: 2rem;
}

.header-merkwerk-studio-mobile-cta {
  background: var(--color-primary);
  color: var(--color-bg-primary);
  padding: 1rem 1.5rem;
  margin: 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: all var(--transition-base);
}

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

@media (min-width: 768px) {
  .header-merkwerk-studio-container {
    height: 75px;
  }

  .header-merkwerk-studio-desktop-nav {
    display: flex;
  }

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

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

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

@media (min-width: 1024px) {
  .header-merkwerk-studio-container {
    height: 80px;
  }

  .header-merkwerk-studio-logo-text {
    font-size: 1.5rem;
  }

  .header-merkwerk-studio-desktop-nav {
    gap: 3rem;
    margin-left: 4rem;
  }

  .header-merkwerk-studio-nav-link {
    font-size: 1rem;
  }

  .header-merkwerk-studio-cta-button {
    padding: 0.85rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .header-merkwerk-studio-logo-img {
    width: 36px;
    height: 36px;
  }

  .header-merkwerk-studio-mobile-links {
    gap: 0;
  }

  .header-merkwerk-studio-mobile-link:last-of-type {
    border-bottom: none;
  }
}

    .brand-studio-index {
  display: block;
  width: 100%;
  background: #ffffff;
}

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

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

.hero-text-block-index {
  flex: 1 1 45%;
  min-width: 250px;
}

.hero-image-block-index {
  flex: 1 1 45%;
  min-width: 250px;
}

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

.hero-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: #94a3b8;
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.6;
}

.hero-cta-group-index {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: clamp(2rem, 3vw, 3rem);
}

.hero-cta-group-index .btn {
  flex: 0 1 auto;
}

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

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

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

.hero-stat-label-index {
  font-size: 0.85rem;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

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

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

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

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

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

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

.how-it-works-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.how-it-works-header-index {
  text-align: center;
}

.how-it-works-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #0f172a;
  margin-bottom: 1rem;
}

.how-it-works-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #64748b;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.how-it-works-steps-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
}

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

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

.step-content-index {
  flex: 1;
  padding-top: 0.5rem;
}

.step-title-index {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.step-text-index {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #475569;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .how-it-works-step-index {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-index {
    min-width: auto;
  }
}

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

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

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

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

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

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

.feature-card-index {
  flex: 1 1 280px;
  max-width: 360px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-card-index:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-6px);
}

.feature-icon-index {
  font-size: 2.5rem;
  color: #00d4ff;
}

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

.feature-card-text-index {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .features-grid-index {
    flex-direction: column;
    gap: 1.5rem;
  }

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

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

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

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

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

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

.benefits-text-block-index {
  flex: 1 1 45%;
  min-width: 250px;
}

.benefits-image-block-index {
  flex: 1 1 45%;
  min-width: 250px;
}

.benefits-intro-text-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.7;
}

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

.benefit-item-index {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
}

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

.benefit-text-index {
  flex: 1;
}

.benefit-title-index {
  font-size: 1.1rem;
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.benefit-description-index {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #64748b;
  line-height: 1.6;
}

.benefits-image-index {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

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

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

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

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

.featured-post-card-index:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  border-color: #cbd5e1;
}

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

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

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

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

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

.featured-post-card-text-index {
  font-size: clamp(0.9rem, 1.5vw, 0.95rem);
  color: #64748b;
  line-height: 1.6;
  flex: 1;
}

.featured-post-link-index {
  display: inline-block;
  font-size: 0.9rem;
  color: #00d4ff;
  font-weight: 600;
  margin-top: auto;
  transition: all 0.3s ease;
}

.featured-post-card-index:hover .featured-post-link-index {
  color: #00ffff;
  transform: translateX(4px);
}

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

@media (max-width: 768px) {
  .featured-posts-cards-index {
    flex-direction: column;
  }

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

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

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

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

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

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

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

.faq-item-index {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

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

.faq-question-index {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

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

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

.cta-final-content-index {
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.cta-final-title-index {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: #ffffff;
  font-weight: 700;
}

.cta-final-text-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #cbd5e1;
  max-width: 500px;
  line-height: 1.7;
}

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

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

.cookie-banner-text-index {
  color: #f1f5f9;
  margin: 0;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  line-height: 1.5;
  max-width: 400px;
}

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

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

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

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

.cookie-btn-decline-index {
  background: transparent;
  color: #f1f5f9;
  border: 1px solid rgba(241, 245, 249, 0.3);
}

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

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

  .cookie-banner-text-index {
    width: 100%;
    text-align: center;
    max-width: none;
  }

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

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

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

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

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

  .benefits-layout-index {
    flex-direction: column;
  }

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

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

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

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

.footer-about {
  display: block;
  max-width: 540px;
}

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

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

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

.footer-nav-list,
.footer-legal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

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

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

.footer-contact {
  display: block;
}

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

.footer-contact p:first-of-type {
  margin-top: 0;
}

.footer-copyright {
  display: block;
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.footer-copyright p {
  color: var(--color-text-muted-dark);
  font-size: clamp(0.8rem, 0.9vw, 0.875rem);
  margin: 0;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

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

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

  .footer-copyright {
    flex: 1 1 100%;
    padding-top: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
  }
}

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

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

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

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

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

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

.category-page-web-design-branding-netherlands {
  width: 100%;
  overflow-x: hidden;
}

.hero-section-web-design-branding-netherlands {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a1f3a 100%);
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
  position: relative;
}

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

.hero-text-wrapper-web-design-branding-netherlands {
  max-width: 700px;
  margin: 0 auto;
}

.hero-title-web-design-branding-netherlands {
  color: #ffffff;
  font-size: clamp(2.25rem, 5vw + 1rem, 4rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
}

.hero-subtitle-web-design-branding-netherlands {
  color: #94a3b8;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 0;
}

.hero-accent-web-design-branding-netherlands {
  width: 120px;
  height: 120px;
  background: rgba(0, 212, 255, 0.1);
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}

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

.featured-content-web-design-branding-netherlands {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.featured-card-web-design-branding-netherlands {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.featured-card-web-design-branding-netherlands:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  transform: translateY(-8px);
}

.featured-card-image-wrapper-web-design-branding-netherlands {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.featured-card-image-web-design-branding-netherlands {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.featured-card-text-web-design-branding-netherlands {
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.featured-card-title-web-design-branding-netherlands {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
}

.featured-card-description-web-design-branding-netherlands {
  color: #64748b;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.7;
  margin: 0;
}

.featured-card-meta-web-design-branding-netherlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 1.5rem);
  align-items: center;
  padding: clamp(1rem, 2vw, 1.5rem) 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.featured-meta-item-web-design-branding-netherlands {
  color: #64748b;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.featured-meta-item-web-design-branding-netherlands i {
  color: #00d4ff;
  font-size: 1rem;
}

.featured-card-link-web-design-branding-netherlands {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #00d4ff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
  padding: 0.5rem 0;
}

.featured-card-link-web-design-branding-netherlands:hover {
  color: #00b8d4;
  transform: translateX(4px);
}

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

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

.posts-header-web-design-branding-netherlands {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.posts-title-web-design-branding-netherlands {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.posts-subtitle-web-design-branding-netherlands {
  color: #64748b;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.7;
  margin: 0;
}

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

.card-web-design-branding-netherlands {
  flex: 1 1 clamp(280px, 45vw, 400px);
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.card-web-design-branding-netherlands:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-6px);
}

.card-image-wrapper-web-design-branding-netherlands {
  width: 100%;
  height: auto;
  overflow: hidden;
  background: #f1f5f9;
}

.card-image-web-design-branding-netherlands {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.card-web-design-branding-netherlands:hover .card-image-web-design-branding-netherlands {
  transform: scale(1.05);
}

.card-text-wrapper-web-design-branding-netherlands {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.card-title-web-design-branding-netherlands {
  color: #1e293b;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.card-description-web-design-branding-netherlands {
  color: #64748b;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.card-meta-web-design-branding-netherlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.8rem, 2vw, 1.2rem);
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

.card-meta-item-web-design-branding-netherlands {
  color: #64748b;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.card-meta-item-web-design-branding-netherlands i {
  color: #00d4ff;
  font-size: 0.9rem;
}

.card-link-web-design-branding-netherlands {
  color: #00d4ff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
}

.card-link-web-design-branding-netherlands:hover {
  color: #00b8d4;
  transform: translateX(4px);
}

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

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

.insights-header-web-design-branding-netherlands {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.insights-title-web-design-branding-netherlands {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.insights-intro-web-design-branding-netherlands {
  color: #64748b;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.7;
  margin: 0;
}

.insights-grid-web-design-branding-netherlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: center;
}

.insight-item-web-design-branding-netherlands {
  flex: 1 1 clamp(250px, 45vw, 350px);
  padding: clamp(2rem, 3vw, 2.5rem);
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #00d4ff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.insight-number-web-design-branding-netherlands {
  color: #00d4ff;
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1;
}

.insight-item-title-web-design-branding-netherlands {
  color: #1e293b;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  font-family: 'Sora', sans-serif;
}

.insight-item-text-web-design-branding-netherlands {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

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

.resources-content-web-design-branding-netherlands {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 5vw, 4rem);
}

.resources-header-web-design-branding-netherlands {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.resources-title-web-design-branding-netherlands {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.resources-intro-web-design-branding-netherlands {
  color: #94a3b8;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.7;
  margin: 0;
}

.resources-checklist-web-design-branding-netherlands {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 800px;
  margin: 0 auto;
}

.checklist-item-web-design-branding-netherlands {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
}

.checklist-icon-web-design-branding-netherlands {
  color: #00d4ff;
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.checklist-text-web-design-branding-netherlands {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.checklist-title-web-design-branding-netherlands {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  font-family: 'Sora', sans-serif;
}

.checklist-description-web-design-branding-netherlands {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-section-web-design-branding-netherlands {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
  }

  .featured-card-web-design-branding-netherlands {
    flex-direction: column;
  }

  .featured-card-image-wrapper-web-design-branding-netherlands {
    min-height: 250px;
  }

  .posts-grid-web-design-branding-netherlands {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

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

  .insights-grid-web-design-branding-netherlands {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .insight-item-web-design-branding-netherlands {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .resources-checklist-web-design-branding-netherlands {
    gap: clamp(1.5rem, 2vw, 2rem);
  }

  .checklist-item-web-design-branding-netherlands {
    gap: clamp(1rem, 2vw, 1.5rem);
  }
}

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

  .posts-title-web-design-branding-netherlands {
    font-size: 1.5rem;
  }

  .featured-card-title-web-design-branding-netherlands {
    font-size: 1.4rem;
  }

  .card-title-web-design-branding-netherlands {
    font-size: 1rem;
  }

  .hero-accent-web-design-branding-netherlands {
    width: 80px;
    height: 80px;
  }
}

.main-kleurkeuzes-merkidentiteit {
  width: 100%;
  overflow-x: hidden;
}

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

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

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

.hero-text-kleurkeuzes-merkidentiteit {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-subtitle-kleurkeuzes-merkidentiteit {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #94a3b8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.6;
  font-weight: 400;
}

.hero-meta-kleurkeuzes-merkidentiteit {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.meta-item-kleurkeuzes-merkidentiteit {
  font-size: 0.95rem;
  color: #64748b;
  font-weight: 500;
}

.meta-divider-kleurkeuzes-merkidentiteit {
  color: #64748b;
  opacity: 0.5;
}

.hero-image-kleurkeuzes-merkidentiteit {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-kleurkeuzes-merkidentiteit {
  width: 100%;
  height: auto;
  border-radius: clamp(8px, 2vw, 16px);
  display: block;
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.breadcrumbs-kleurkeuzes-merkidentiteit {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.breadcrumbs-kleurkeuzes-merkidentiteit a {
  color: #00d4ff;
  text-decoration: none;
  transition: color 250ms ease;
}

.breadcrumbs-kleurkeuzes-merkidentiteit a:hover {
  color: #00ffff;
  text-decoration: underline;
}

.breadcrumbs-kleurkeuzes-merkidentiteit span {
  color: #64748b;
}

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

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

.intro-text-kleurkeuzes-merkidentiteit {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-kleurkeuzes-merkidentiteit {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-family: 'Playfair Display', serif;
}

.intro-paragraph-kleurkeuzes-merkidentiteit {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #64748b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
  font-weight: 400;
}

.intro-image-kleurkeuzes-merkidentiteit {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-kleurkeuzes-merkidentiteit {
  width: 100%;
  height: auto;
  border-radius: clamp(8px, 2vw, 16px);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.psychology-section-kleurkeuzes-merkidentiteit {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.psychology-image-kleurkeuzes-merkidentiteit {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.psychology-img-kleurkeuzes-merkidentiteit {
  width: 100%;
  height: auto;
  border-radius: clamp(8px, 2vw, 16px);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.psychology-text-kleurkeuzes-merkidentiteit {
  flex: 1 1 50%;
  max-width: 50%;
}

.psychology-title-kleurkeuzes-merkidentiteit {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-family: 'Playfair Display', serif;
}

.psychology-paragraph-kleurkeuzes-merkidentiteit {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #64748b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
  font-weight: 400;
}

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

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

.framework-title-kleurkeuzes-merkidentiteit {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-family: 'Playfair Display', serif;
  text-align: center;
}

.framework-intro-kleurkeuzes-merkidentiteit {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #94a3b8;
  text-align: center;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.6;
}

.steps-wrapper-kleurkeuzes-merkidentiteit {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 2vw, 2rem);
  justify-content: center;
}

.step-card-kleurkeuzes-merkidentiteit {
  flex: 1 1 calc(50% - 1rem);
  max-width: 350px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: clamp(8px, 2vw, 16px);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  backdrop-filter: blur(10px);
  transition: all 250ms ease;
}

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

.step-number-kleurkeuzes-merkidentiteit {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #00d4ff;
  line-height: 1;
  font-family: 'Playfair Display', serif;
}

.step-content-kleurkeuzes-merkidentiteit {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-title-kleurkeuzes-merkidentiteit {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  font-family: 'Playfair Display', serif;
}

.step-text-kleurkeuzes-merkidentiteit {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #94a3b8;
  line-height: 1.6;
  font-weight: 400;
}

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

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

.palette-text-kleurkeuzes-merkidentiteit {
  flex: 1 1 50%;
  max-width: 50%;
}

.palette-title-kleurkeuzes-merkidentiteit {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-family: 'Playfair Display', serif;
}

.palette-paragraph-kleurkeuzes-merkidentiteit {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #64748b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
  font-weight: 400;
}

.palette-image-kleurkeuzes-merkidentiteit {
  flex: 1 1 50%;
  max-width: 50%;
}

.palette-img-kleurkeuzes-merkidentiteit {
  width: 100%;
  height: auto;
  border-radius: clamp(8px, 2vw, 16px);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.accessibility-section-kleurkeuzes-merkidentiteit {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.accessibility-title-kleurkeuzes-merkidentiteit {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-family: 'Playfair Display', serif;
  text-align: center;
}

.accessibility-intro-kleurkeuzes-merkidentiteit {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #64748b;
  text-align: center;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.6;
}

.accessibility-wrapper-kleurkeuzes-merkidentiteit {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.accessibility-image-kleurkeuzes-merkidentiteit {
  flex: 1 1 50%;
  max-width: 50%;
}

.accessibility-img-kleurkeuzes-merkidentiteit {
  width: 100%;
  height: auto;
  border-radius: clamp(8px, 2vw, 16px);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.accessibility-text-kleurkeuzes-merkidentiteit {
  flex: 1 1 50%;
  max-width: 50%;
}

.accessibility-paragraph-kleurkeuzes-merkidentiteit {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #64748b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
  font-weight: 400;
}

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

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

.practical-title-kleurkeuzes-merkidentiteit {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-family: 'Playfair Display', serif;
  text-align: center;
}

.practical-intro-kleurkeuzes-merkidentiteit {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #94a3b8;
  text-align: center;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.6;
}

.practical-list-kleurkeuzes-merkidentiteit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1.5rem, 2vw, 2rem);
  justify-content: center;
}

.list-item-kleurkeuzes-merkidentiteit {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: clamp(8px, 2vw, 16px);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  backdrop-filter: blur(10px);
}

.list-title-kleurkeuzes-merkidentiteit {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  font-family: 'Playfair Display', serif;
}

.list-text-kleurkeuzes-merkidentiteit {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #94a3b8;
  line-height: 1.6;
  font-weight: 400;
}

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

.conclusion-content-kleurkeuzes-merkidentiteit {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-kleurkeuzes-merkidentiteit {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-family: 'Playfair Display', serif;
}

.conclusion-text-kleurkeuzes-merkidentiteit {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #64748b;
  line-height: 1.7;
  font-weight: 400;
}

.conclusion-cta-kleurkeuzes-merkidentiteit {
  background: linear-gradient(135deg, #00d4ff, #00a8cc);
  border-radius: clamp(12px, 2vw, 20px);
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: center;
  justify-content: center;
  margin-top: clamp(1rem, 2vw, 2rem);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.25);
}

.cta-title-kleurkeuzes-merkidentiteit {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  color: #0a0f1e;
  line-height: 1.3;
  font-family: 'Playfair Display', serif;
}

.cta-text-kleurkeuzes-merkidentiteit {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: #0a0f1e;
  line-height: 1.6;
  font-weight: 500;
  opacity: 0.95;
}

.conclusion-cta-kleurkeuzes-merkidentiteit .btn {
  background: #0a0f1e;
  color: #00d4ff;
  border: 2px solid #0a0f1e;
  font-weight: 700;
  transition: all 250ms ease;
}

.conclusion-cta-kleurkeuzes-merkidentiteit .btn:hover {
  background: #00d4ff;
  color: #0a0f1e;
  transform: translateY(-2px);
}

.disclaimer-section-kleurkeuzes-merkidentiteit {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(2rem, 4vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-kleurkeuzes-merkidentiteit {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-kleurkeuzes-merkidentiteit {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  font-family: 'Playfair Display', serif;
}

.disclaimer-text-kleurkeuzes-merkidentiteit {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: #64748b;
  line-height: 1.7;
  font-weight: 400;
}

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

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

.related-title-kleurkeuzes-merkidentiteit {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-family: 'Playfair Display', serif;
  text-align: center;
}

.related-subtitle-kleurkeuzes-merkidentiteit {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #94a3b8;
  text-align: center;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.6;
}

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

.related-card-kleurkeuzes-merkidentiteit {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: clamp(12px, 2vw, 20px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 250ms ease;
  backdrop-filter: blur(10px);
}

.related-card-kleurkeuzes-merkidentiteit:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
}

.related-image-kleurkeuzes-merkidentiteit {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.related-card-img-kleurkeuzes-merkidentiteit {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.related-card-kleurkeuzes-merkidentiteit:hover .related-card-img-kleurkeuzes-merkidentiteit {
  transform: scale(1.05);
}

.related-card-text-kleurkeuzes-merkidentiteit {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  flex-grow: 1;
}

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

.related-card-description-kleurkeuzes-merkidentiteit {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #94a3b8;
  line-height: 1.6;
  font-weight: 400;
  flex-grow: 1;
}

.related-card-link-kleurkeuzes-merkidentiteit {
  color: #00d4ff;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  transition: all 250ms ease;
  align-self: flex-start;
}

.related-card-link-kleurkeuzes-merkidentiteit:hover {
  color: #00ffff;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .hero-content-kleurkeuzes-merkidentiteit,
  .intro-content-kleurkeuzes-merkidentiteit,
  .psychology-content-kleurkeuzes-merkidentiteit,
  .palette-content-kleurkeuzes-merkidentiteit,
  .accessibility-wrapper-kleurkeuzes-merkidentiteit {
    flex-direction: column;
  }

  .hero-text-kleurkeuzes-merkidentiteit,
  .hero-image-kleurkeuzes-merkidentiteit,
  .intro-text-kleurkeuzes-merkidentiteit,
  .intro-image-kleurkeuzes-merkidentiteit,
  .psychology-image-kleurkeuzes-merkidentiteit,
  .psychology-text-kleurkeuzes-merkidentiteit,
  .palette-text-kleurkeuzes-merkidentiteit,
  .palette-image-kleurkeuzes-merkidentiteit,
  .accessibility-image-kleurkeuzes-merkidentiteit,
  .accessibility-text-kleurkeuzes-merkidentiteit {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .psychology-image-kleurkeuzes-merkidentiteit {
    order: 0;
  }

  .step-card-kleurkeuzes-merkidentiteit {
    flex: 1 1 100%;
  }

  .related-card-kleurkeuzes-merkidentiteit {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  .hero-section-kleurkeuzes-merkidentiteit,
  .intro-section-kleurkeuzes-merkidentiteit,
  .psychology-section-kleurkeuzes-merkidentiteit,
  .framework-section-kleurkeuzes-merkidentiteit,
  .palette-section-kleurkeuzes-merkidentiteit,
  .accessibility-section-kleurkeuzes-merkidentiteit,
  .practical-section-kleurkeuzes-merkidentiteit,
  .conclusion-section-kleurkeuzes-merkidentiteit,
  .disclaimer-section-kleurkeuzes-merkidentiteit,
  .related-section-kleurkeuzes-merkidentiteit {
    padding: clamp(2rem, 5vw, 4rem) 0;
  }

  .steps-wrapper-kleurkeuzes-merkidentiteit,
  .practical-list-kleurkeuzes-merkidentiteit {
    flex-direction: column;
  }

  .step-card-kleurkeuzes-merkidentiteit,
  .list-item-kleurkeuzes-merkidentiteit {
    flex: 1 1 100%;
  }

  .related-cards-kleurkeuzes-merkidentiteit {
    flex-direction: column;
  }

  .related-card-kleurkeuzes-merkidentiteit {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .conclusion-cta-kleurkeuzes-merkidentiteit {
    padding: clamp(1.5rem, 3vw, 2.5rem);
  }
}

@media (max-width: 480px) {
  .hero-meta-kleurkeuzes-merkidentiteit {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .meta-divider-kleurkeuzes-merkidentiteit {
    display: none;
  }

  .breadcrumbs-kleurkeuzes-merkidentiteit {
    font-size: 0.8rem;
  }

  .related-image-kleurkeuzes-merkidentiteit {
    height: 150px;
  }

  .related-card-text-kleurkeuzes-merkidentiteit {
    padding: 1rem;
  }
}

.main-sterke-merkidentiteit {
  width: 100%;
  overflow-x: hidden;
}

.hero-section-sterke-merkidentiteit {
  background: #ffffff;
  padding: 3rem 0 4rem 0;
  overflow: hidden;
}

.breadcrumbs-sterke-merkidentiteit {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  color: #64748b;
}

.breadcrumbs-sterke-merkidentiteit a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-sterke-merkidentiteit a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.breadcrumbs-sterke-merkidentiteit span {
  color: #cbd5e1;
}

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

.hero-text-sterke-merkidentiteit {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-badge-sterke-merkidentiteit {
  display: inline-block;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.hero-title-sterke-merkidentiteit {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-subtitle-sterke-merkidentiteit {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-meta-sterke-merkidentiteit {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 1rem;
}

.meta-item-sterke-merkidentiteit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
  font-size: 0.95rem;
  font-weight: 500;
}

.meta-item-sterke-merkidentiteit i {
  color: #2563eb;
  font-size: 1.1rem;
}

.hero-image-sterke-merkidentiteit {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-sterke-merkidentiteit {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .hero-content-sterke-merkidentiteit {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-text-sterke-merkidentiteit,
  .hero-image-sterke-merkidentiteit {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-img-sterke-merkidentiteit {
    max-height: 300px;
  }

  .hero-meta-sterke-merkidentiteit {
    flex-direction: column;
    gap: 1rem;
  }
}

.intro-section-sterke-merkidentiteit {
  background: #f8fafc;
  padding: 4rem 0;
  overflow: hidden;
}

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

.intro-text-sterke-merkidentiteit {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-paragraph-sterke-merkidentiteit {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-image-sterke-merkidentiteit {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-sterke-merkidentiteit {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .intro-content-sterke-merkidentiteit {
    flex-direction: column;
    gap: 2rem;
  }

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

  .intro-img-sterke-merkidentiteit {
    max-height: 300px;
  }
}

.foundations-section-sterke-merkidentiteit {
  background: #ffffff;
  padding: 4rem 0;
  overflow: hidden;
}

.foundations-header-sterke-merkidentiteit {
  text-align: center;
  margin-bottom: 3rem;
}

.foundations-title-sterke-merkidentiteit {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.foundations-subtitle-sterke-merkidentiteit {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #64748b;
}

.foundations-wrapper-sterke-merkidentiteit {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.foundations-text-sterke-merkidentiteit {
  flex: 1 1 50%;
  max-width: 50%;
}

.foundations-paragraph-sterke-merkidentiteit {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.pillar-list-sterke-merkidentiteit {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pillar-item-sterke-merkidentiteit {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.pillar-number-sterke-merkidentiteit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #2563eb;
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.pillar-text-sterke-merkidentiteit {
  flex: 1;
}

.pillar-title-sterke-merkidentiteit {
  font-size: 1.1rem;
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pillar-description-sterke-merkidentiteit {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

.foundations-image-sterke-merkidentiteit {
  flex: 1 1 50%;
  max-width: 50%;
}

.foundations-img-sterke-merkidentiteit {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .foundations-wrapper-sterke-merkidentiteit {
    flex-direction: column;
    gap: 2rem;
  }

  .foundations-text-sterke-merkidentiteit,
  .foundations-image-sterke-merkidentiteit {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .foundations-img-sterke-merkidentiteit {
    max-height: 300px;
  }
}

.colors-section-sterke-merkidentiteit {
  background: #f8fafc;
  padding: 4rem 0;
  overflow: hidden;
}

.colors-wrapper-sterke-merkidentiteit {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.colors-image-sterke-merkidentiteit {
  flex: 1 1 50%;
  max-width: 50%;
}

.colors-img-sterke-merkidentiteit {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.colors-text-sterke-merkidentiteit {
  flex: 1 1 50%;
  max-width: 50%;
}

.colors-title-sterke-merkidentiteit {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.colors-paragraph-sterke-merkidentiteit {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.colors-highlight-sterke-merkidentiteit {
  background: rgba(37, 99, 235, 0.08);
  border-left: 4px solid #2563eb;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.highlight-text-sterke-merkidentiteit {
  font-size: 0.95rem;
  color: #1e293b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .colors-wrapper-sterke-merkidentiteit {
    flex-direction: column;
    gap: 2rem;
  }

  .colors-image-sterke-merkidentiteit,
  .colors-text-sterke-merkidentiteit {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .colors-img-sterke-merkidentiteit {
    max-height: 300px;
  }
}

.consistency-section-sterke-merkidentiteit {
  background: #ffffff;
  padding: 4rem 0;
  overflow: hidden;
}

.consistency-wrapper-sterke-merkidentiteit {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.consistency-text-sterke-merkidentiteit {
  flex: 1 1 50%;
  max-width: 50%;
}

.consistency-title-sterke-merkidentiteit {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.consistency-paragraph-sterke-merkidentiteit {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.consistency-steps-sterke-merkidentiteit {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.step-card-sterke-merkidentiteit {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 8px;
}

.step-number-sterke-merkidentiteit {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2563eb;
  min-width: 50px;
}

.step-text-sterke-merkidentiteit {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

.consistency-image-sterke-merkidentiteit {
  flex: 1 1 50%;
  max-width: 50%;
}

.consistency-img-sterke-merkidentiteit {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .consistency-wrapper-sterke-merkidentiteit {
    flex-direction: column;
    gap: 2rem;
  }

  .consistency-text-sterke-merkidentiteit,
  .consistency-image-sterke-merkidentiteit {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .consistency-img-sterke-merkidentiteit {
    max-height: 300px;
  }
}

.voice-section-sterke-merkidentiteit {
  background: #f8fafc;
  padding: 4rem 0;
  overflow: hidden;
}

.voice-wrapper-sterke-merkidentiteit {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.voice-image-sterke-merkidentiteit {
  flex: 1 1 50%;
  max-width: 50%;
}

.voice-img-sterke-merkidentiteit {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.voice-text-sterke-merkidentiteit {
  flex: 1 1 50%;
  max-width: 50%;
}

.voice-title-sterke-merkidentiteit {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.voice-paragraph-sterke-merkidentiteit {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.voice-quote-sterke-merkidentiteit {
  background: #ffffff;
  border-left: 4px solid #2563eb;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 8px;
}

.quote-text-sterke-merkidentiteit {
  font-size: 1.1rem;
  color: #1e293b;
  font-style: italic;
  line-height: 1.8;
  font-weight: 500;
}

@media (max-width: 768px) {
  .voice-wrapper-sterke-merkidentiteit {
    flex-direction: column;
    gap: 2rem;
  }

  .voice-image-sterke-merkidentiteit,
  .voice-text-sterke-merkidentiteit {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .voice-img-sterke-merkidentiteit {
    max-height: 300px;
  }
}

.implementation-section-sterke-merkidentiteit {
  background: #ffffff;
  padding: 4rem 0;
  overflow: hidden;
}

.implementation-header-sterke-merkidentiteit {
  text-align: center;
  margin-bottom: 3rem;
}

.implementation-title-sterke-merkidentiteit {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.implementation-subtitle-sterke-merkidentiteit {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #64748b;
}

.implementation-grid-sterke-merkidentiteit {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.implementation-card-sterke-merkidentiteit {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 250px;
  max-width: 320px;
  background: #f8fafc;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: all 0.3s ease;
}

.implementation-card-sterke-merkidentiteit:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: #2563eb;
}

.card-icon-sterke-merkidentiteit {
  font-size: 2.5rem;
  color: #2563eb;
  margin-bottom: 1rem;
}

.card-title-sterke-merkidentiteit {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

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

@media (max-width: 1024px) {
  .implementation-card-sterke-merkidentiteit {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .implementation-card-sterke-merkidentiteit {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-sterke-merkidentiteit {
  background: #f8fafc;
  padding: 4rem 0;
  overflow: hidden;
}

.conclusion-content-sterke-merkidentiteit {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-sterke-merkidentiteit {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2rem;
}

.conclusion-paragraph-sterke-merkidentiteit {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-checklist-sterke-merkidentiteit {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  margin: 2.5rem 0;
  border: 1px solid #e2e8f0;
  text-align: left;
}

.checklist-title-sterke-merkidentiteit {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1.5rem;
  text-align: left;
}

.checklist-list-sterke-merkidentiteit {
  list-style: none;
  margin: 0;
  padding: 0;
}

.checklist-item-sterke-merkidentiteit {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 0.75rem 0;
  font-size: 0.95rem;
  color: #475569;
  border-bottom: 1px solid #e2e8f0;
}

.checklist-item-sterke-merkidentiteit:last-child {
  border-bottom: none;
}

.checklist-item-sterke-merkidentiteit i {
  color: #10b981;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.cta-box-sterke-merkidentiteit {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  color: #ffffff;
  text-align: center;
  margin-top: 3rem;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.cta-title-sterke-merkidentiteit {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-text-sterke-merkidentiteit {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #e0e7ff;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.related-section-sterke-merkidentiteit {
  background: #ffffff;
  padding: 4rem 0;
  overflow: hidden;
}

.related-header-sterke-merkidentiteit {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-sterke-merkidentiteit {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.related-subtitle-sterke-merkidentiteit {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #64748b;
}

.related-grid-sterke-merkidentiteit {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.related-card-sterke-merkidentiteit {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 250px;
  max-width: 350px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-sterke-merkidentiteit:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: #2563eb;
}

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

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

.related-card-sterke-merkidentiteit:hover .related-image-sterke-merkidentiteit img {
  transform: scale(1.05);
}

.related-content-sterke-merkidentiteit {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.related-card-title-sterke-merkidentiteit {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.related-card-text-sterke-merkidentiteit {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.read-more-sterke-merkidentiteit {
  color: #2563eb;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.related-card-sterke-merkidentiteit:hover .read-more-sterke-merkidentiteit {
  color: #1d4ed8;
}

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

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

.disclaimer-section-sterke-merkidentiteit {
  background: #f0f4f8;
  padding: 3rem 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-sterke-merkidentiteit {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.disclaimer-icon-sterke-merkidentiteit {
  font-size: 2rem;
  color: #2563eb;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.disclaimer-title-sterke-merkidentiteit {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.disclaimer-text-sterke-merkidentiteit {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .disclaimer-content-sterke-merkidentiteit {
    flex-direction: column;
    gap: 1rem;
  }

  .disclaimer-icon-sterke-merkidentiteit {
    margin-top: 0;
  }

  .conclusion-checklist-sterke-merkidentiteit {
    text-align: center;
  }

  .checklist-item-sterke-merkidentiteit {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-section-sterke-merkidentiteit,
  .intro-section-sterke-merkidentiteit,
  .foundations-section-sterke-merkidentiteit,
  .colors-section-sterke-merkidentiteit,
  .consistency-section-sterke-merkidentiteit,
  .voice-section-sterke-merkidentiteit,
  .implementation-section-sterke-merkidentiteit,
  .conclusion-section-sterke-merkidentiteit,
  .related-section-sterke-merkidentiteit {
    padding: 2rem 0;
  }

  .breadcrumbs-sterke-merkidentiteit {
    font-size: 0.8rem;
  }

  .hero-meta-sterke-merkidentiteit {
    gap: 1rem;
  }

  .pillar-list-sterke-merkidentiteit {
    gap: 1rem;
  }

  .step-card-sterke-merkidentiteit {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-sterke-merkidentiteit {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }

  .cta-box-sterke-merkidentiteit {
    padding: 2rem 1rem;
  }
}

.main-website-design-conversie {
  width: 100%;
  background: #ffffff;
}

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

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

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

.hero-text-wrapper-website-design-conversie {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.hero-subtitle-website-design-conversie {
  color: #64748b;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-meta-website-design-conversie {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.meta-item-website-design-conversie {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: 0.95rem;
}

.meta-item-website-design-conversie i {
  color: #00d4ff;
  font-size: 1rem;
}

.hero-image-wrapper-website-design-conversie {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.breadcrumbs-website-design-conversie {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.breadcrumbs-website-design-conversie a {
  color: #00d4ff;
  text-decoration: none;
  transition: color 150ms ease;
}

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

.breadcrumbs-website-design-conversie span {
  color: #cbd5e1;
}

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

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

.intro-text-wrapper-website-design-conversie {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-website-design-conversie {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-text-website-design-conversie {
  color: #374151;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-image-wrapper-website-design-conversie {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.content-one-section-website-design-conversie {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-one-text-website-design-conversie {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-one-title-website-design-conversie {
  color: #1e293b;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-one-text-website-design-conversie {
  color: #374151;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.content-one-list-website-design-conversie {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  list-style: disc;
}

.content-one-list-website-design-conversie li {
  color: #374151;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.content-one-image-wrapper-website-design-conversie {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-one-image-website-design-conversie {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.content-two-section-website-design-conversie {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-two-image-wrapper-website-design-conversie {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-two-image-website-design-conversie {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.content-two-text-website-design-conversie {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-two-title-website-design-conversie {
  color: #1e293b;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-two-text-website-design-conversie {
  color: #374151;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.content-three-section-website-design-conversie {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-three-text-website-design-conversie {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-three-title-website-design-conversie {
  color: #1e293b;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-three-text-website-design-conversie {
  color: #374151;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.highlight-box-website-design-conversie {
  background: rgba(0, 212, 255, 0.08);
  border-left: 4px solid #00d4ff;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.highlight-title-website-design-conversie {
  color: #1e293b;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.highlight-text-website-design-conversie {
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.content-three-image-wrapper-website-design-conversie {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-three-image-website-design-conversie {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.content-four-section-website-design-conversie {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-four-image-wrapper-website-design-conversie {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-four-image-website-design-conversie {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.content-four-text-website-design-conversie {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-four-title-website-design-conversie {
  color: #1e293b;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-four-text-website-design-conversie {
  color: #374151;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

.conclusion-content-website-design-conversie {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-website-design-conversie {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.conclusion-text-website-design-conversie {
  color: #374151;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.8;
}

.cta-box-website-design-conversie {
  background: linear-gradient(135deg, #00d4ff, #00b8d4);
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 12px;
  margin-top: 2rem;
  text-align: center;
}

.cta-title-website-design-conversie {
  color: #0a0f1e;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.cta-text-website-design-conversie {
  color: #0a0f1e;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.cta-button-website-design-conversie {
  background: #0a0f1e;
  color: #00d4ff;
  border: 2px solid #0a0f1e;
}

.cta-button-website-design-conversie:hover {
  background: transparent;
  color: #0a0f1e;
}

.disclaimer-section-website-design-conversie {
  background: #f8fafc;
  padding: clamp(2rem, 5vw, 3rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-website-design-conversie {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-website-design-conversie {
  color: #1e293b;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.disclaimer-text-website-design-conversie {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.7;
  font-style: italic;
}

.related-section-website-design-conversie {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.related-content-website-design-conversie {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.related-title-website-design-conversie {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

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

.related-card-website-design-conversie {
  flex: 1 1 300px;
  max-width: 350px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 250ms ease;
  display: flex;
  flex-direction: column;
}

.related-card-website-design-conversie:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.related-card-image-website-design-conversie {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-img-website-design-conversie {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-text-website-design-conversie {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.related-card-title-website-design-conversie {
  color: #1e293b;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
}

.related-card-description-website-design-conversie {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-website-design-conversie {
  color: #00d4ff;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 150ms ease;
  margin-top: 0.5rem;
}

.related-card-link-website-design-conversie:hover {
  color: #00b8d4;
}

.related-card-link-website-design-conversie i {
  font-size: 0.85rem;
}

@media (max-width: 1024px) {
  .hero-content-website-design-conversie,
  .intro-content-website-design-conversie,
  .content-one-wrapper-website-design-conversie,
  .content-two-wrapper-website-design-conversie,
  .content-three-wrapper-website-design-conversie,
  .content-four-wrapper-website-design-conversie {
    flex-direction: column;
  }
  
  .hero-text-wrapper-website-design-conversie,
  .hero-image-wrapper-website-design-conversie,
  .intro-text-wrapper-website-design-conversie,
  .intro-image-wrapper-website-design-conversie,
  .content-one-text-website-design-conversie,
  .content-one-image-wrapper-website-design-conversie,
  .content-two-image-wrapper-website-design-conversie,
  .content-two-text-website-design-conversie,
  .content-three-text-website-design-conversie,
  .content-three-image-wrapper-website-design-conversie,
  .content-four-image-wrapper-website-design-conversie,
  .content-four-text-website-design-conversie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-section-website-design-conversie,
  .intro-section-website-design-conversie,
  .content-one-section-website-design-conversie,
  .content-two-section-website-design-conversie,
  .content-three-section-website-design-conversie,
  .content-four-section-website-design-conversie,
  .conclusion-section-website-design-conversie,
  .related-section-website-design-conversie {
    padding: clamp(2rem, 5vw, 4rem) 0;
  }
  
  .hero-meta-website-design-conversie {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .meta-item-website-design-conversie {
    width: 100%;
  }
  
  .related-card-website-design-conversie {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .cta-button-website-design-conversie {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-website-design-conversie {
    font-size: 0.85rem;
  }
  
  .hero-title-website-design-conversie,
  .intro-title-website-design-conversie,
  .content-one-title-website-design-conversie,
  .content-two-title-website-design-conversie,
  .content-three-title-website-design-conversie,
  .content-four-title-website-design-conversie,
  .conclusion-title-website-design-conversie,
  .related-title-website-design-conversie {
    margin-bottom: 1rem;
  }
  
  .hero-image-website-design-conversie,
  .intro-image-website-design-conversie,
  .content-one-image-website-design-conversie,
  .content-two-image-website-design-conversie,
  .content-three-image-website-design-conversie,
  .content-four-image-website-design-conversie {
    max-height: 300px;
  }
  
  .highlight-box-website-design-conversie {
    padding: 1rem;
  }
  
  .related-card-text-website-design-conversie {
    padding: 1rem;
  }
  
  .cta-box-website-design-conversie {
    padding: clamp(1.5rem, 4vw, 2rem);
  }
}

.main-logo-ontwerp-principes {
  width: 100%;
}

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

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

.hero-text-logo-ontwerp-principes {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-logo-ontwerp-principes {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-logo-ontwerp-principes {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.breadcrumbs-logo-ontwerp-principes {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: #94a3b8;
}

.breadcrumbs-logo-ontwerp-principes a {
  color: #00d4ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-logo-ontwerp-principes a:hover {
  color: #00ffff;
  text-decoration: underline;
}

.breadcrumbs-logo-ontwerp-principes span {
  color: #64748b;
}

.hero-badge-logo-ontwerp-principes {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: rgba(0, 212, 255, 0.1);
  color: #00d4ff;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.85rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 212, 255, 0.3);
}

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

.hero-lead-logo-ontwerp-principes {
  color: #cbd5e1;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-logo-ontwerp-principes {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding-top: clamp(1rem, 2vw, 1.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-item-logo-ontwerp-principes {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
}

.meta-item-logo-ontwerp-principes i {
  color: #00d4ff;
  font-size: 0.9rem;
}

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

  .hero-text-logo-ontwerp-principes,
  .hero-image-logo-ontwerp-principes {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.intro-text-logo-ontwerp-principes {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-logo-ontwerp-principes {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-logo-ontwerp-principes img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.intro-title-logo-ontwerp-principes {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.intro-paragraph-logo-ontwerp-principes {
  color: #374151;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

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

  .intro-text-logo-ontwerp-principes,
  .intro-image-logo-ontwerp-principes {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.principles-section-logo-ontwerp-principes {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.principles-header-logo-ontwerp-principes {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.principles-title-logo-ontwerp-principes {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  line-height: 1.2;
}

.principles-subtitle-logo-ontwerp-principes {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin: 0;
}

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

.principle-card-logo-ontwerp-principes {
  flex: 1 1 calc(50% - 1rem);
  max-width: 400px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.principle-card-logo-ontwerp-principes:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  border-color: #cbd5e1;
}

.principle-number-logo-ontwerp-principes {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #00d4ff;
  line-height: 1;
  font-family: 'Playfair Display', serif;
}

.principle-card-title-logo-ontwerp-principes {
  color: #1e293b;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  margin: 0;
  line-height: 1.3;
}

.principle-card-text-logo-ontwerp-principes {
  color: #475569;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .principle-card-logo-ontwerp-principes {
    flex: 1 1 calc(100% - 1rem);
  }
}

@media (max-width: 768px) {
  .principle-card-logo-ontwerp-principes {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.psychology-section-logo-ontwerp-principes {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.psychology-wrapper-logo-ontwerp-principes {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.psychology-image-logo-ontwerp-principes {
  flex: 1 1 50%;
  max-width: 50%;
}

.psychology-image-logo-ontwerp-principes img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.psychology-text-logo-ontwerp-principes {
  flex: 1 1 50%;
  max-width: 50%;
}

.psychology-title-logo-ontwerp-principes {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.psychology-paragraph-logo-ontwerp-principes {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.psychology-highlight-logo-ontwerp-principes {
  background: rgba(0, 212, 255, 0.1);
  border-left: 4px solid #00d4ff;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.highlight-text-logo-ontwerp-principes {
  color: #e0e7ff;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

.highlight-text-logo-ontwerp-principes strong {
  color: #00d4ff;
}

@media (max-width: 768px) {
  .psychology-wrapper-logo-ontwerp-principes {
    flex-direction: column;
  }

  .psychology-image-logo-ontwerp-principes,
  .psychology-text-logo-ontwerp-principes {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.process-section-logo-ontwerp-principes {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.process-header-logo-ontwerp-principes {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.process-title-logo-ontwerp-principes {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  line-height: 1.2;
}

.process-subtitle-logo-ontwerp-principes {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin: 0;
}

.process-steps-logo-ontwerp-principes {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.step-item-logo-ontwerp-principes {
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-item-logo-ontwerp-principes:hover {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.step-number-logo-ontwerp-principes {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #00d4ff;
  line-height: 1;
  font-family: 'Playfair Display', serif;
}

.step-title-logo-ontwerp-principes {
  color: #1e293b;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin: 0;
  line-height: 1.3;
}

.step-text-logo-ontwerp-principes {
  color: #475569;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

.process-image-logo-ontwerp-principes {
  margin-top: clamp(2rem, 4vw, 3rem);
}

.process-image-logo-ontwerp-principes img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.mistakes-section-logo-ontwerp-principes {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.mistakes-header-logo-ontwerp-principes {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.mistakes-title-logo-ontwerp-principes {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin: 0;
  line-height: 1.2;
}

.mistakes-wrapper-logo-ontwerp-principes {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.mistakes-text-logo-ontwerp-principes {
  flex: 1 1 50%;
  max-width: 50%;
}

.mistakes-image-logo-ontwerp-principes {
  flex: 1 1 50%;
  max-width: 50%;
}

.mistakes-image-logo-ontwerp-principes img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.mistakes-paragraph-logo-ontwerp-principes {
  color: #374151;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

@media (max-width: 768px) {
  .mistakes-wrapper-logo-ontwerp-principes {
    flex-direction: column;
  }

  .mistakes-text-logo-ontwerp-principes,
  .mistakes-image-logo-ontwerp-principes {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.cta-section-logo-ontwerp-principes {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a1f2e 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.cta-content-logo-ontwerp-principes {
  text-align: center;
}

.cta-title-logo-ontwerp-principes {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.cta-text-logo-ontwerp-principes {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button-logo-ontwerp-principes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #00d4ff;
  color: #0a0f1e;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.cta-button-logo-ontwerp-principes:hover {
  background: #00ffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 212, 255, 0.5);
}

.disclaimer-section-logo-ontwerp-principes {
  background: #ffffff;
  padding: clamp(2rem, 4vw, 3rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-logo-ontwerp-principes {
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  border-left: 4px solid #64748b;
}

.disclaimer-title-logo-ontwerp-principes {
  color: #1e293b;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  line-height: 1.3;
}

.disclaimer-text-logo-ontwerp-principes {
  color: #475569;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

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

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

.related-title-logo-ontwerp-principes {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  text-align: center;
  margin: 0;
  line-height: 1.2;
}

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

.related-card-logo-ontwerp-principes {
  flex: 1 1 calc(33.333% - 1.5rem);
  max-width: 380px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-logo-ontwerp-principes:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.related-card-image-logo-ontwerp-principes {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-logo-ontwerp-principes img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-logo-ontwerp-principes:hover .related-card-image-logo-ontwerp-principes img {
  transform: scale(1.05);
}

.related-card-content-logo-ontwerp-principes {
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.related-card-title-logo-ontwerp-principes {
  color: #ffffff;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin: 0;
  line-height: 1.3;
}

.related-card-text-logo-ontwerp-principes {
  color: #cbd5e1;
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
}

.related-card-link-logo-ontwerp-principes {
  color: #00d4ff;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  transition: color 0.3s ease;
  margin-top: auto;
}

.related-card-link-logo-ontwerp-principes:hover {
  color: #00ffff;
  text-decoration: underline;
}

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

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

@media (max-width: 480px) {
  .hero-section-logo-ontwerp-principes,
  .intro-section-logo-ontwerp-principes,
  .principles-section-logo-ontwerp-principes,
  .psychology-section-logo-ontwerp-principes,
  .process-section-logo-ontwerp-principes,
  .mistakes-section-logo-ontwerp-principes,
  .cta-section-logo-ontwerp-principes,
  .disclaimer-section-logo-ontwerp-principes,
  .related-section-logo-ontwerp-principes {
    padding: clamp(2rem, 4vw, 3rem) 0;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background: var(--color-bg-secondary);
  color: var(--color-text-primary-light);
  overflow-x: hidden;
}

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

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

.merkwerk-brand-narrative-about {
  background: var(--color-bg-secondary);
  overflow: hidden;
}

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

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

.hero-gateway-text-about {
  text-align: center;
  max-width: 900px;
}

.hero-gateway-title-about {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary-light);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

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

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

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

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

.stat-label-about {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary-light);
  font-weight: 600;
}

.hero-visual-about {
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: clamp(1.5rem, 3vw, 2.5rem) auto 0;
  border-radius: var(--radius-xl);
  display: block;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

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

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

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

.section-tag-about {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.philosophy-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary-light);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.philosophy-description-about {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-light);
  line-height: 1.7;
}

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

.philosophy-block-about {
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid #2563eb;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.philosophy-block-about:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.philosophy-block-title-about {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  margin-bottom: 0.75rem;
}

.philosophy-block-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary-light);
  line-height: 1.6;
}

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

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

.methodology-header-about {
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

.methodology-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary-light);
  margin-bottom: 1rem;
}

.methodology-subtitle-about {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-light);
  line-height: 1.7;
}

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

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

.step-number-about {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #2563eb;
  min-width: clamp(3rem, 5vw, 4rem);
  line-height: 1;
  flex-shrink: 0;
}

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

.step-title-about {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  margin-bottom: 0.75rem;
}

.step-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary-light);
  line-height: 1.6;
}

.expertise-image-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  border-radius: var(--radius-xl);
  display: block;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

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

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

.services-header-about {
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

.services-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary-light);
  margin-bottom: 1rem;
}

.services-intro-about {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-light);
  line-height: 1.7;
}

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

.service-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-secondary);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.service-icon-about {
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: #2563eb;
  display: inline-block;
  width: clamp(3rem, 4vw, 4rem);
  height: clamp(3rem, 4vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-title-about {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
}

.service-card-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary-light);
  line-height: 1.6;
}

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

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

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

.brand-promise-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary-light);
  margin-bottom: 1.5rem;
}

.featured-quote-about {
  background: #f9fafb;
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 5px solid #2563eb;
  border-radius: var(--radius-lg);
  max-width: 800px;
  margin: clamp(2rem, 3vw, 2.5rem) auto;
  box-shadow: var(--shadow-sm);
}

.quote-text-about {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-primary-light);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.quote-author-about {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary-light);
  display: block;
  font-style: normal;
  font-weight: 600;
}

.disclaimer-section-about {
  background: #f3f4f6;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e5e7eb;
}

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

.disclaimer-heading-about {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-icon-about {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: #2563eb;
}

.disclaimer-text-about {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary-light);
  line-height: 1.7;
}

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

  .step-number-about {
    min-width: auto;
  }

  .hero-visual-about,
  .expertise-image-about {
    margin-left: 0;
    margin-right: 0;
  }

  .services-cards-about {
    flex-direction: column;
    align-items: stretch;
  }

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

@media (min-width: 769px) and (max-width: 1024px) {
  .services-cards-about {
    flex-direction: column;
    align-items: center;
  }

  .service-card-about {
    flex: 0 1 380px;
  }
}

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

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

.portfolio-page {
  width: 100%;
}

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

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

.portfolio-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.1;
}

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

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

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

  .portfolio-hero__title {
    margin-bottom: var(--space-lg);
  }
}

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

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

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

.portfolio-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.portfolio-card__image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.2);
}

.portfolio-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-base);
}

.portfolio-card:hover .portfolio-card__image img {
  transform: scale(1.05);
}

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

.portfolio-card__tag {
  display: inline-block;
  background-color: rgba(0, 212, 255, 0.15);
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.3;
}

.portfolio-card__description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-text-secondary-dark);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.6;
  flex: 1;
}

.portfolio-card__detail {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  color: var(--color-text-muted-dark);
  display: block;
}

@media (min-width: 768px) {
  .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: 280px;
  }
}

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

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

  .portfolio-card__image {
    height: 320px;
  }
}

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

.portfolio-cta__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.2;
}

.portfolio-cta__text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: var(--color-text-secondary-dark);
  margin: 0 0 var(--space-xl) 0;
  line-height: 1.6;
}

.portfolio-cta__button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
  cursor: pointer;
}

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

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

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

.services-page {
  width: 100%;
  overflow: hidden;
}

.services-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) var(--space-md);
  text-align: center;
  overflow: hidden;
}

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

.services-hero-title {
  font-family: var(--font-heading);
  color: var(--color-text-primary-dark);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.services-hero-subtitle {
  font-family: var(--font-primary);
  color: var(--color-text-secondary-dark);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  font-weight: 400;
}

.services-grid-section {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
}

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

.service-card {
  background-color: var(--color-bg-card);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-lg);
  transition: all var(--transition-base);
  overflow: hidden;
}

.service-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.service-card-icon {
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  display: inline-block;
}

.service-card-icon svg {
  width: 48px;
  height: 48px;
  display: block;
}

.service-card-title {
  font-family: var(--font-heading);
  color: var(--color-text-primary-dark);
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

.service-card-description {
  font-family: var(--font-primary);
  color: var(--color-text-secondary-dark);
  font-size: clamp(0.95rem, 1.5vw + 0.4rem, 1.1rem);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  font-weight: 400;
}

.service-card img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin-top: var(--space-lg);
  display: block;
  object-fit: cover;
  max-height: 250px;
}

.services-cta-section {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) var(--space-md) var(--space-4xl);
  text-align: center;
  overflow: hidden;
}

.services-cta-container {
  max-width: 700px;
  margin: 0 auto;
}

.services-cta-title {
  font-family: var(--font-heading);
  color: var(--color-text-primary-dark);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

.services-cta-description {
  font-family: var(--font-primary);
  color: var(--color-text-secondary-dark);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.2rem);
  line-height: 1.6;
  margin-bottom: var(--space-2xl);
  font-weight: 400;
}

.services-cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  font-weight: 600;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
  cursor: pointer;
}

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

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

  .services-grid-section {
    padding: var(--space-4xl) var(--space-lg);
  }

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

  .services-cta-section {
    padding: var(--space-4xl) var(--space-lg) var(--space-4xl);
  }

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

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

  .services-grid-section {
    padding: var(--space-4xl) var(--space-xl);
  }

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

  .services-cta-section {
    padding: var(--space-4xl) var(--space-xl);
  }

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

  .service-card:hover {
    box-shadow: var(--shadow-lg);
  }
}

@media (max-width: 767px) {
  .services-grid-container {
    gap: var(--space-xl);
  }

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

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

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

.legal-hub .legal-hub-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) 0;
}

.legal-hub h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-sm);
  font-weight: 700;
  line-height: 1.2;
}

.legal-hub .last-updated {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary-light);
  margin-bottom: var(--space-2xl);
  font-style: italic;
}

.legal-hub h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary-light);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  font-weight: 700;
  line-height: 1.3;
}

.legal-hub p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.legal-hub strong {
  color: var(--color-text-primary-light);
  font-weight: 600;
}

.legal-hub ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.legal-hub li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary-light);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.legal-hub .contact-section {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-xl);
}

.legal-hub .contact-section h2 {
  margin-top: 0;
  color: var(--color-text-primary-light);
}

.legal-hub .contact-section p {
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-sm);
}

.legal-hub .contact-section p:last-child {
  margin-bottom: 0;
}

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

  .legal-hub .legal-hub-content {
    padding: var(--space-4xl) 0;
  }

  .legal-hub .contact-section {
    padding: var(--space-3xl);
  }
}

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

  .legal-hub .legal-hub-content {
    padding: var(--space-4xl) 0;
  }
}

.thank-you-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) 0;
}

.thank-section {
  width: 100%;
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

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

.content {
  max-width: 600px;
  margin: 0 auto;
}

.thank-wrapper {
  text-align: center;
  animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

.thank-icon {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-lg);
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.3);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.thank-icon svg {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3));
}

.thank-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-md);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.thank-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.thank-message {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.thank-next-steps {
  background-color: var(--color-bg-card);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-2xl);
  text-align: left;
}

.steps-title {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: var(--space-md);
  text-align: center;
  margin: 0 0 var(--space-lg) 0;
}

.steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(255, 107, 157, 0.2) 100%);
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-text {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
  padding-top: 4px;
}

.btn-return {
  display: inline-block;
  padding: var(--space-md) var(--space-2xl);
  background: linear-gradient(135deg, var(--color-primary) 0%, #00b8d4 100%);
  color: var(--color-bg-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  box-shadow: 0 8px 20px rgba(0, 212, 255, 0.25);
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.btn-return:hover {
  background: linear-gradient(135deg, var(--color-primary-hover) 0%, #0099b3 100%);
  box-shadow: 0 12px 30px rgba(0, 212, 255, 0.35);
  transform: translateY(-2px);
}

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

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

  .thank-next-steps {
    padding: var(--space-xl);
  }

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

  .step-number {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--space-4xl) var(--space-xl);
  }

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

  .thank-icon svg {
    width: 100px;
    height: 100px;
  }

  .thank-wrapper {
    padding: var(--space-2xl);
  }
}

@media (prefers-reduced-motion: reduce) {
  .thank-wrapper,
  .thank-icon {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .btn-return {
    transition: none;
  }

  .btn-return:hover {
    transform: none;
  }
}

.error-page {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary-dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.error-section {
  width: 100%;
  padding: var(--space-2xl) var(--space-sm);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.error-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

.error-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 157, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

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

.content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.error-visual {
  margin-bottom: var(--space-3xl);
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code-wrapper {
  position: relative;
  display: inline-block;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 15vw, 8rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
  animation: floatError 6s ease-in-out infinite;
}

.error-decoration {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.2;
  animation: rotateDecoration 20s linear infinite;
}

.error-decoration::before {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  border: 2px solid var(--color-secondary);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.1;
  animation: rotateDecoration 30s linear infinite reverse;
}

.error-message {
  position: relative;
  z-index: 2;
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--color-text-primary-dark);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.error-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-dark);
  margin: 0 0 var(--space-xl) 0;
  line-height: 1.7;
  font-weight: 400;
}

.error-description {
  background-color: var(--color-bg-card);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  margin-bottom: var(--space-2xl);
  backdrop-filter: blur(10px);
}

.error-description p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 0.95vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary-dark);
  margin: 0;
  line-height: 1.7;
  font-weight: 400;
}

.error-cta {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
  color: var(--color-bg-primary);
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left var(--transition-base);
  z-index: 1;
}

.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(0, 212, 255, 0.35);
  transform: translateY(-2px);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary span {
  position: relative;
  z-index: 2;
}

@keyframes floatError {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes rotateDecoration {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-3xl) var(--space-md);
  }

  .error-visual {
    margin-bottom: var(--space-3xl);
    height: 320px;
  }

  .error-description {
    padding: var(--space-xl) var(--space-2xl);
  }

  .btn {
    padding: var(--space-md) var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-4xl) var(--space-lg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .error-visual {
    margin-bottom: var(--space-4xl);
    height: 360px;
  }

  .error-title {
    margin-bottom: var(--space-lg);
  }

  .error-subtitle {
    margin-bottom: var(--space-2xl);
  }

  .btn:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 480px) {
  .error-visual {
    height: 240px;
    margin-bottom: var(--space-2xl);
  }

  .error-code {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .error-title {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
  }

  .error-subtitle {
    font-size: clamp(0.875rem, 0.9vw + 0.5rem, 0.95rem);
  }

  .error-decoration {
    width: 80px;
    height: 80px;
  }

  .error-decoration::before {
    width: 120px;
    height: 120px;
  }
}

.contact-get-in-touch {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary-dark);
  overflow: hidden;
}

.contact-get-in-touch-hero {
  background-color: var(--color-bg-primary);
  padding: 4rem var(--space-md) 3rem;
  overflow: hidden;
}

.contact-get-in-touch-hero-content {
  text-align: center;
}

.contact-get-in-touch-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.contact-get-in-touch-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-get-in-touch-hero {
    padding: 6rem var(--space-md) 4rem;
  }

  .contact-get-in-touch-hero-title {
    margin-bottom: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .contact-get-in-touch-hero {
    padding: 8rem var(--space-md) 5rem;
  }
}

.contact-get-in-touch-main {
  background-color: var(--color-bg-primary);
  padding: 3rem var(--space-md);
  overflow: hidden;
}

.contact-get-in-touch-main-content {
  width: 100%;
}

.contact-get-in-touch-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  width: 100%;
}

.contact-get-in-touch-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-get-in-touch-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .contact-get-in-touch-form-wrapper {
    flex: 1 1 45%;
    min-width: 350px;
  }

  .contact-get-in-touch-info-wrapper {
    flex: 1 1 45%;
    min-width: 350px;
  }
}

@media (min-width: 1024px) {
  .contact-get-in-touch-form-wrapper {
    flex: 1 1 50%;
  }

  .contact-get-in-touch-info-wrapper {
    flex: 1 1 50%;
  }
}

.contact-get-in-touch-form-header {
  margin-bottom: 2rem;
}

.contact-get-in-touch-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.contact-get-in-touch-form-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
}

.contact-get-in-touch-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-get-in-touch-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.contact-get-in-touch-label {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-secondary-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-get-in-touch-input,
.contact-get-in-touch-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-text-primary-dark);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  line-height: 1.5;
  transition: all var(--transition-base);
}

.contact-get-in-touch-input::placeholder,
.contact-get-in-touch-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-get-in-touch-input:focus,
.contact-get-in-touch-textarea:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.15);
}

.contact-get-in-touch-input:hover:not(:focus),
.contact-get-in-touch-textarea:hover:not(:focus) {
  border-color: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.07);
}

.contact-get-in-touch-textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-get-in-touch-submit {
  width: 100%;
  padding: 1rem 2rem;
  background-color: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

.contact-get-in-touch-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.contact-get-in-touch-submit:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.contact-get-in-touch-form-privacy {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  color: var(--color-text-muted-dark);
  line-height: 1.5;
  text-align: center;
}

.contact-get-in-touch-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-weight: 500;
}

.contact-get-in-touch-privacy-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-get-in-touch-info-header {
  margin-bottom: 2rem;
}

.contact-get-in-touch-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.contact-get-in-touch-info-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
}

.contact-get-in-touch-info-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.contact-get-in-touch-info-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.contact-get-in-touch-info-item:hover {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 212, 255, 0.3);
}

.contact-get-in-touch-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(255, 107, 157, 0.2) 100%);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: var(--radius-md);
  flex-shrink: 0;
  font-size: 1.25rem;
  color: var(--color-primary);
}

.contact-get-in-touch-info-content {
  flex: 1;
}

.contact-get-in-touch-info-item-title {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-primary-dark);
  margin-bottom: 0.25rem;
}

.contact-get-in-touch-info-item-text {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
  margin: 0;
}

.contact-get-in-touch-info-link {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-weight: 500;
}

.contact-get-in-touch-info-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-get-in-touch-info-additional {
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(255, 107, 157, 0.05) 100%);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: var(--radius-lg);
}

.contact-get-in-touch-info-additional-title {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-primary-dark);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.contact-get-in-touch-info-list-item {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  color: var(--color-text-secondary-dark);
  line-height: 1.5;
  padding-left: 1.5rem;
  position: relative;
}

.contact-get-in-touch-info-list-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.4rem;
  height: 0.4rem;
  background-color: var(--color-primary);
  border-radius: 50%;
}

@media (min-width: 768px) {
  .contact-get-in-touch-main {
    padding: 4rem var(--space-md);
  }

  .contact-get-in-touch-grid {
    gap: 4rem;
  }
}

@media (min-width: 1024px) {
  .contact-get-in-touch-main {
    padding: 6rem var(--space-md);
  }

  .contact-get-in-touch-grid {
    gap: 5rem;
  }
}

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

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

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