
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700;800&display=swap');

:root {
  
  --color-bg-primary: #0c1929;
  --color-bg-secondary: #162d50;
  --color-bg-tertiary: #1e3a5f;
  --color-bg-card: rgba(59, 130, 246, 0.08);
  
  
  --color-text-primary: #ffffff;
  --color-text-secondary: #bfdbfe;
  --color-text-muted: #7b9dd4;
  
  
  --color-primary: #3b82f6;
  --color-primary-hover: #60a5fa;
  --color-secondary: #0ea5e9;
  --color-accent-warm: #f59e0b;
  
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 4px 12px rgba(59, 130, 246, 0.1);
  --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.25);
  --shadow-xl: 0 20px 40px rgba(59, 130, 246, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

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

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

h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.5px;
}

h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.3px;
}

h3 {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  font-weight: 700;
  letter-spacing: -0.2px;
}

h4 {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
}

h5 {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 600;
}

h6 {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1.125rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

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

li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

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

section, [class*="-section"] {
  width: 100%;
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--color-secondary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.btn-secondary:hover {
  background: #06b6d4;
  box-shadow: 0 6px 16px rgba(14, 165, 233, 0.4);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: var(--color-primary-hover);
}

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

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

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid rgba(59, 130, 246, 0.15);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.card-body {
  flex: 1;
}

.card-footer {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  align-items: center;
}

.grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

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

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

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

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

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

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

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

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

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: var(--color-primary);
  transition: all 0.3s ease;
}

.icon-lg {
  width: 3rem;
  height: 3rem;
  font-size: 1.5rem;
}

.icon-xl {
  width: 4rem;
  height: 4rem;
  font-size: 2rem;
}

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

.icon-accent {
  color: var(--color-accent-warm);
}

.badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-secondary);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.badge-primary {
  background: rgba(59, 130, 246, 0.2);
  color: var(--color-primary);
  border-color: rgba(59, 130, 246, 0.4);
}

.badge-accent {
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-accent-warm);
  border-color: rgba(245, 158, 11, 0.3);
}

.divider {
  height: 1px;
  background: rgba(59, 130, 246, 0.15);
  margin: var(--space-xl) 0;
}

.divider-vertical {
  width: 1px;
  height: 100%;
  background: rgba(59, 130, 246, 0.15);
}

form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

label {
  font-weight: 500;
  color: var(--color-text-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

input, textarea, select {
  padding: clamp(0.625rem, 1.5vw, 0.875rem) var(--space-md);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-md);
  background: rgba(22, 45, 80, 0.5);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
}

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

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-primary);
  background: rgba(22, 45, 80, 0.8);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit-btn {
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.form-submit-btn:hover {
  background: var(--color-primary-hover);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
}

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

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

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

ul li {
  list-style: none;
  position: relative;
  padding-left: var(--space-lg);
}

ul li:before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

ol li {
  list-style-position: inside;
  color: var(--color-text-primary);
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .flex-md-col {
    flex-direction: column;
  }
  
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .hide-tablet {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .hide-desktop {
    display: none !important;
  }
}

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

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

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

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

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

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

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

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

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

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

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

::-webkit-scrollbar {
  width: 10px;
}

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

::-webkit-scrollbar-thumb {
  background: rgba(59, 130, 246, 0.4);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(59, 130, 246, 0.6);
}

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

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

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

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

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

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

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

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.mt-auto {
  margin-top: auto;
}

.mb-auto {
  margin-bottom: auto;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.overflow-hidden {
  overflow: hidden;
}
:root {
  --color-bg-primary: #0c1929;
  --color-bg-secondary: #162d50;
  --color-bg-tertiary: #1e3a5f;
  --color-bg-card: rgba(59, 130, 246, 0.08);
  --color-text-primary: #ffffff;
  --color-text-secondary: #bfdbfe;
  --color-text-muted: #7b9dd4;
  --color-primary: #3b82f6;
  --color-primary-hover: #60a5fa;
  --color-secondary: #0ea5e9;
  --color-accent-warm: #f59e0b;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 4px 12px rgba(59, 130, 246, 0.1);
  --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.25);
  --shadow-xl: 0 20px 40px rgba(59, 130, 246, 0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.header-identity-forge {
  background: var(--color-bg-primary);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  position: static;
  width: 100%;
  z-index: 100;
  top: 0;
}

.header-identity-forge-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(0.875rem, 2vw, 1.25rem) clamp(1rem, 5vw, 2rem);
  gap: 2rem;
}

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

.header-identity-forge-brand:hover {
  opacity: 0.8;
}

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

.header-identity-forge-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  white-space: nowrap;
}

.header-identity-forge-desktop-nav {
  display: none;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);

  justify-content: flex-end !important;
}

.header-identity-forge-nav-link {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  transition: color 300ms ease;
  position: relative;
}

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

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

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

.header-identity-forge-cta-button {
  background: var(--color-primary);
  color: #0c1929;
  padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  white-space: nowrap;
  transition: all 300ms ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

.header-identity-forge-cta-button:active {
  transform: translateY(0);
}

.header-identity-forge-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: var(--color-text-primary);
  cursor: pointer;
  font-size: 1.25rem;
  transition: color 300ms ease;
  flex-shrink: 0;
}

.header-identity-forge-mobile-toggle:hover {
  color: var(--color-primary);
}

.header-identity-forge-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: var(--color-bg-secondary);
  border-left: 1px solid rgba(59, 130, 246, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 300ms ease;
  z-index: 99;
  overflow-y: auto;
}

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

.header-identity-forge-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.header-identity-forge-mobile-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.header-identity-forge-mobile-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--color-text-secondary);
  cursor: pointer;
  font-size: 1.25rem;
  transition: color 300ms ease;
}

.header-identity-forge-mobile-close:hover {
  color: var(--color-text-primary);
}

.header-identity-forge-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.header-identity-forge-mobile-link {
  color: var(--color-text-secondary);
  text-decoration: none;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all 300ms ease;
  display: block;
}

.header-identity-forge-mobile-link:hover {
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-text-primary);
  padding-left: 1.25rem;
}

.header-identity-forge-mobile-cta {
  background: var(--color-primary);
  color: #0c1929;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  text-align: center;
  transition: all 300ms ease;
  display: block;
}

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

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

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

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

  .header-identity-forge-logo-text {
    font-size: 1.25rem;
  }
}

@media (max-width: 640px) {
  .header-identity-forge-container {
    padding: 0.75rem 1rem;
  }

  .header-identity-forge-logo-text {
    font-size: 1rem;
  }
}

    .branding-hub {
  width: 100%;
}

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

section, [class*="-section"] {
  width: 100%;
  overflow: hidden;
}

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

.hero-gradient-mesh {
  position: absolute;
  width: 600px;
  height: 600px;
  top: -100px;
  right: -150px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-glow-orb-primary {
  position: absolute;
  width: 300px;
  height: 300px;
  top: 10%;
  left: -80px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-glow-orb-secondary {
  position: absolute;
  width: 250px;
  height: 250px;
  bottom: 10%;
  right: -50px;
  background: rgba(14, 165, 233, 0.06);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-accent-1 {
  position: absolute;
  width: 200px;
  height: 250px;
  top: 20%;
  right: 10%;
  background: rgba(96, 165, 250, 0.05);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

.hero-floating-accent-2 {
  position: absolute;
  width: 180px;
  height: 180px;
  bottom: 15%;
  left: 5%;
  background: rgba(14, 165, 233, 0.04);
  border-radius: 40% 60% 50% 50%;
  z-index: 2;
  pointer-events: none;
}

.hero-accent-line {
  position: absolute;
  width: 300px;
  height: 2px;
  top: 25%;
  left: 10%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-corner-shape {
  position: absolute;
  width: 150px;
  height: 150px;
  bottom: 5%;
  right: 8%;
  background: rgba(59, 130, 246, 0.03);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #bfdbfe;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

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

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

.hero-stat-number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #3b82f6;
  display: block;
  line-height: 1;
}

.hero-stat-label {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #7b9dd4;
  font-weight: 500;
}

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

@media (max-width: 768px) {
  .hero-section {
    padding: 2.5rem 0;
  }
  
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-cta-group .btn {
    width: 100%;
  }
}

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

.about-accent-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  top: -50px;
  left: -100px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.about-shape-organic {
  position: absolute;
  width: 280px;
  height: 320px;
  bottom: 10%;
  right: 5%;
  background: rgba(14, 165, 233, 0.06);
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  z-index: 2;
  pointer-events: none;
}

.about-line-element {
  position: absolute;
  width: 200px;
  height: 1px;
  top: 30%;
  right: 15%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

.about-float-panel {
  position: absolute;
  width: 180px;
  height: 140px;
  top: 50%;
  left: 3%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(59, 130, 246, 0.08);
  border-radius: 12px;
  transform: rotate(-8deg);
  z-index: 1;
  pointer-events: none;
}

.about-color-field {
  position: absolute;
  width: 350px;
  height: 350px;
  bottom: -50px;
  left: 20%;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.about-accent-orb {
  position: absolute;
  width: 200px;
  height: 200px;
  top: 15%;
  right: -40px;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.about-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.about-text-block {
  flex: 1 1 300px;
  min-width: 300px;
}

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

.about-description {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-key-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-point {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(59, 130, 246, 0.08);
  border-left: 3px solid #3b82f6;
  border-radius: 8px;
}

.about-point-title {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.about-point-text {
  font-size: 0.9375rem;
  color: #7b9dd4;
  line-height: 1.6;
}

.about-image-block {
  flex: 1 1 300px;
  min-width: 300px;
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

@media (max-width: 768px) {
  .about-section {
    padding: 2.5rem 0;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-text-block,
  .about-image-block {
    flex: 1 1 100%;
  }
}

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

.methodology-glow-top {
  position: absolute;
  width: 500px;
  height: 500px;
  top: -100px;
  right: -80px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.methodology-shape-accent {
  position: absolute;
  width: 250px;
  height: 250px;
  top: 40%;
  left: -60px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 50% 40% 50% 50%;
  z-index: 2;
  pointer-events: none;
}

.methodology-line-vertical {
  position: absolute;
  width: 2px;
  height: 60%;
  top: 20%;
  left: 50%;
  background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.15), transparent);
  z-index: 1;
  pointer-events: none;
  transform: translateX(-50%);
}

.methodology-float-element {
  position: absolute;
  width: 160px;
  height: 120px;
  bottom: 15%;
  right: 8%;
  background: rgba(96, 165, 250, 0.03);
  border: 1px solid rgba(59, 130, 246, 0.08);
  border-radius: 10px;
  transform: rotate(5deg);
  z-index: 1;
  pointer-events: none;
}

.methodology-color-wash {
  position: absolute;
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: 10%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.methodology-accent-corner {
  position: absolute;
  width: 120px;
  height: 120px;
  top: 5%;
  left: 5%;
  background: rgba(59, 130, 246, 0.04);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.methodology-header {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 3rem;
}

.methodology-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

.methodology-subtitle {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

.methodology-steps {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.methodology-step {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.15);
}

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

.methodology-step-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.methodology-step-title {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

.methodology-step-text {
  font-size: 0.9375rem;
  color: #7b9dd4;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .methodology-section {
    padding: 2.5rem 0;
  }
  
  .methodology-step {
    flex-direction: column;
    gap: 1rem;
  }
  
  .methodology-step-number {
    min-width: auto;
  }
}

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

.featured-glow-accent {
  position: absolute;
  width: 450px;
  height: 450px;
  top: -80px;
  left: -120px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.featured-shape-blob {
  position: absolute;
  width: 300px;
  height: 300px;
  bottom: 5%;
  right: 3%;
  background: rgba(14, 165, 233, 0.05);
  border-radius: 55% 45% 52% 48% / 48% 55% 45% 52%;
  z-index: 2;
  pointer-events: none;
}

.featured-line-element {
  position: absolute;
  width: 250px;
  height: 2px;
  top: 20%;
  left: 10%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.featured-float-card {
  position: absolute;
  width: 200px;
  height: 150px;
  top: 35%;
  right: 8%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  transform: rotate(-5deg);
  z-index: 1;
  pointer-events: none;
}

.featured-color-field {
  position: absolute;
  width: 350px;
  height: 350px;
  bottom: -80px;
  left: 50%;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.07) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
  transform: translateX(-50%);
}

.featured-header {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 3rem;
}

.featured-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

.featured-subtitle {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

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

.featured-card {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.featured-card-image-wrapper {
  width: 100%;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(59, 130, 246, 0.1);
}

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

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

.featured-card-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.featured-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.featured-card-text {
  font-size: 0.9375rem;
  color: #7b9dd4;
  line-height: 1.7;
}

.featured-card-link {
  color: #60a5fa;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease, color 0.3s ease;
}

.featured-card-link:hover {
  color: #3b82f6;
  gap: 0.75rem;
}

.featured-cta {
  position: relative;
  z-index: 10;
  text-align: center;
}

@media (max-width: 768px) {
  .featured-posts-section {
    padding: 2.5rem 0;
  }
  
  .featured-card {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

.benefits-glow-primary {
  position: absolute;
  width: 500px;
  height: 500px;
  top: -100px;
  right: -150px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.benefits-glow-secondary {
  position: absolute;
  width: 350px;
  height: 350px;
  bottom: 10%;
  left: -100px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.benefits-shape-accent {
  position: absolute;
  width: 200px;
  height: 250px;
  top: 30%;
  right: 5%;
  background: rgba(96, 165, 250, 0.05);
  border-radius: 40% 60% 45% 55%;
  z-index: 2;
  pointer-events: none;
}

.benefits-line-decoration {
  position: absolute;
  width: 300px;
  height: 1px;
  bottom: 30%;
  left: 10%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

.benefits-float-element {
  position: absolute;
  width: 180px;
  height: 140px;
  top: 15%;
  left: 5%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(59, 130, 246, 0.08);
  border-radius: 10px;
  transform: rotate(8deg);
  z-index: 1;
  pointer-events: none;
}

.benefits-color-mesh {
  position: absolute;
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: 10%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.07) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.benefits-header {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 3rem;
}

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

.benefits-subtitle {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

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

.benefits-card {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.benefits-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.3);
  background: rgba(59, 130, 246, 0.12);
}

.benefits-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.2);
  border-radius: 10px;
  color: #3b82f6;
  font-size: 1.5rem;
}

.benefits-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
}

.benefits-card-text {
  font-size: 0.9375rem;
  color: #7b9dd4;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .benefits-section {
    padding: 2.5rem 0;
  }
  
  .benefits-card {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

.testimonial-glow-accent {
  position: absolute;
  width: 400px;
  height: 400px;
  top: -80px;
  left: -100px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.testimonial-shape-element {
  position: absolute;
  width: 280px;
  height: 280px;
  bottom: 10%;
  right: 5%;
  background: rgba(14, 165, 233, 0.06);
  border-radius: 50% 45% 48% 52%;
  z-index: 2;
  pointer-events: none;
}

.testimonial-line-accent {
  position: absolute;
  width: 250px;
  height: 2px;
  top: 25%;
  right: 15%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

.testimonial-float-shape {
  position: absolute;
  width: 160px;
  height: 120px;
  top: 50%;
  left: 5%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(59, 130, 246, 0.08);
  border-radius: 10px;
  z-index: 1;
  pointer-events: none;
}

.testimonial-color-field {
  position: absolute;
  width: 350px;
  height: 350px;
  bottom: -80px;
  left: 30%;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.testimonial-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: flex-start;
}

.testimonial-quote {
  flex: 1 1 300px;
  min-width: 300px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #3b82f6;
  background: rgba(59, 130, 246, 0.08);
  margin: 0;
}

.testimonial-quote-text {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.6;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.9375rem;
  color: #7b9dd4;
  font-style: normal;
}

.testimonial-insights {
  flex: 1 1 300px;
  min-width: 300px;
}

.testimonial-insights-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.testimonial-insights-text {
  font-size: 0.9375rem;
  color: #bfdbfe;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .testimonial-section {
    padding: 2.5rem 0;
  }
  
  .testimonial-content {
    flex-direction: column;
  }
  
  .testimonial-quote,
  .testimonial-insights {
    flex: 1 1 100%;
  }
}

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

.contact-glow-primary {
  position: absolute;
  width: 500px;
  height: 500px;
  top: -100px;
  right: -150px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.contact-shape-accent {
  position: absolute;
  width: 250px;
  height: 250px;
  bottom: 15%;
  left: -60px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 55% 45% 50% 50%;
  z-index: 2;
  pointer-events: none;
}

.contact-line-element {
  position: absolute;
  width: 300px;
  height: 2px;
  top: 20%;
  left: 10%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

.contact-float-panel {
  position: absolute;
  width: 200px;
  height: 160px;
  top: 40%;
  right: 8%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  transform: rotate(-6deg);
  z-index: 1;
  pointer-events: none;
}

.contact-color-mesh {
  position: absolute;
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: 50%;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
  transform: translateX(-50%);
}

.contact-accent-orb {
  position: absolute;
  width: 200px;
  height: 200px;
  bottom: 20%;
  right: 5%;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.contact-header {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 3rem;
}

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

.contact-subtitle {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

.contact-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
}

.contact-form-wrapper {
  flex: 1 1 400px;
  min-width: 300px;
}

.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #e2e8f0;
}

.contact-input,
.contact-textarea {
  padding: clamp(0.75rem, 1.5vw, 0.875rem) 1rem;
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 8px;
  background: rgba(22, 45, 80, 0.5);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
}

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

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  border-color: #3b82f6;
  background: rgba(22, 45, 80, 0.8);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contact-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit-btn {
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #3b82f6;
  color: #0f172a;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.contact-submit-btn:hover {
  background: #60a5fa;
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
}

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

.contact-privacy {
  font-size: 0.75rem;
  color: #7b9dd4;
  text-align: center;
  margin-top: 0.5rem;
}

.contact-privacy-link {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-privacy-link:hover {
  color: #3b82f6;
  text-decoration: underline;
}

.contact-info-block {
  flex: 1 1 400px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.contact-info-item {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 8px;
  color: #3b82f6;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-info-label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #ffffff;
}

.contact-info-description {
  font-size: 0.875rem;
  color: #7b9dd4;
  line-height: 1.6;
}

.contact-faq {
  padding: clamp(1.25rem, 2vw, 1.5rem);
  background: rgba(59, 130, 246, 0.08);
  border-radius: 8px;
  border-left: 3px solid #3b82f6;
}

.contact-faq-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.contact-faq-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-faq-item {
  font-size: 0.875rem;
  color: #7b9dd4;
  padding-left: 1rem;
  position: relative;
}

.contact-faq-item:before {
  content: '';
  position: absolute;
  left: 0;
  color: #3b82f6;
}

@media (max-width: 768px) {
  .contact-section {
    padding: 2.5rem 0;
  }
  
  .contact-content {
    flex-direction: column;
  }
  
  .contact-form-wrapper,
  .contact-info-block {
    flex: 1 1 100%;
  }
}

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

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

.cookie-banner-text {
  color: #e2e8f0;
  margin: 0;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  line-height: 1.5;
  flex: 1 1 250px;
  text-align: center;
}

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

.cookie-btn-accept,
.cookie-btn-decline {
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border: none;
}

.cookie-btn-accept {
  background: #3b82f6;
  color: #0f172a;
}

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

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

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

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-banner-text {
    width: 100%;
    text-align: center;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    justify-content: center;
  }
}

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

.opacity-75 {
  opacity: 0.75;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

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

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

.footer-content {
  display: block;
}

.footer-about-section {
  display: block;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.footer-about-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 1.875rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.5px;
}

.footer-about-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1vw, 1rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-width: 600px;
}

.footer-navigation-section,
.footer-contact-section,
.footer-legal-section {
  display: block;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.footer-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.3px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
}

.footer-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding-bottom: 2px;
}

.footer-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-nav-link:hover {
  color: var(--color-primary);
}

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

.footer-contact-info {
  display: block;
}

.footer-contact-item {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.footer-contact-label {
  display: block;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.footer-contact-value {
  display: block;
  color: var(--color-text-secondary);
}

.footer-legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
}

.footer-legal-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding-bottom: 2px;
}

.footer-legal-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-secondary);
  transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-legal-link:hover {
  color: var(--color-secondary);
}

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

.footer-copyright-section {
  display: block;
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(59, 130, 246, 0.1);
  text-align: center;
}

.footer-copyright {
  font-family: var(--font-primary);
  font-size: clamp(0.8125rem, 0.9vw, 0.875rem);
  color: var(--color-text-muted);
  margin: 0;
  letter-spacing: 0.3px;
}

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

  .footer-about-section {
    grid-area: about;
    margin-bottom: 0;
    padding-bottom: clamp(2rem, 4vw, 3rem);
  }

  .footer-navigation-section {
    grid-area: nav;
    margin-bottom: 0;
  }

  .footer-contact-section {
    grid-area: contact;
    margin-bottom: 0;
  }

  .footer-legal-section {
    grid-area: legal;
    margin-bottom: 0;
    padding-top: clamp(2rem, 4vw, 3rem);
    border-top: 1px solid rgba(59, 130, 246, 0.1);
  }

  .footer-copyright-section {
    grid-area: copyright;
    padding-top: clamp(2rem, 4vw, 3rem);
    border-top: 1px solid rgba(59, 130, 246, 0.1);
  }

  .footer-nav,
  .footer-legal-nav {
    flex-direction: column;
    gap: clamp(0.875rem, 1.5vw, 1.25rem);
  }

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

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

  .footer-about-section {
    padding-bottom: 0;
    border-bottom: none;
  }

  .footer-legal-section {
    padding-top: 0;
    border-top: none;
    margin-bottom: 0;
  }

  .footer-copyright-section {
    padding-top: clamp(2.5rem, 5vw, 3.5rem);
    border-top: 1px solid rgba(59, 130, 246, 0.1);
  }

  .footer-contact-item {
    margin-bottom: 0.875rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-nav-link,
  .footer-legal-link,
  .footer-nav-link::after,
  .footer-legal-link::after {
    transition: none;
  }
}
    

.main.category-page-personal-branding {
  width: 100%;
  overflow-x: hidden;
}

.hero-section-personal-branding {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: var(--color-bg-primary);
}

.hero-decorative-glow-1 {
  position: absolute;
  top: -100px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-decorative-glow-2 {
  position: absolute;
  bottom: 50px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-decorative-shape-1 {
  position: absolute;
  top: 15%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.hero-decorative-mesh {
  position: absolute;
  bottom: -50px;
  right: 10%;
  width: 300px;
  height: 300px;
  background: rgba(14, 165, 233, 0.06);
  border-radius: 45% 55% 30% 70% / 60% 35% 65% 40%;
  z-index: 1;
  pointer-events: none;
}

.hero-content-personal-branding {
  position: relative;
  z-index: 10;
  max-width: 700px;
}

.hero-tag-personal-branding {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-secondary);
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.hero-title-personal-branding {
  font-size: clamp(2rem, 6vw + 0.5rem, 3.75rem);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.hero-description-personal-branding {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-stats-personal-branding {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

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

.hero-stat-number-personal-branding {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.hero-stat-label-personal-branding {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.hero-buttons-personal-branding {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-buttons-personal-branding .btn {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
}

.posts-section-personal-branding {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: var(--color-bg-secondary);
}

.posts-decorative-accent-1 {
  position: absolute;
  top: 50px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.posts-decorative-accent-2 {
  position: absolute;
  bottom: 100px;
  right: -120px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.posts-header-personal-branding {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.posts-title-personal-branding {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.3px;
}

.posts-subtitle-personal-branding {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.posts-grid-personal-branding {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.card-personal-branding {
  flex: 1 1 320px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-personal-branding:hover {
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 16px 48px rgba(59, 130, 246, 0.15);
  transform: translateY(-6px);
}

.card-personal-branding img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
}

.card-title-personal-branding {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.3;
  letter-spacing: -0.2px;
}

.card-description-personal-branding {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
  flex: 1;
}

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

.card-reading-time-personal-branding,
.card-level-personal-branding,
.card-date-personal-branding {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.card-reading-time-personal-branding i,
.card-level-personal-branding i,
.card-date-personal-branding i {
  color: var(--color-primary);
  font-size: 0.875rem;
}

.card-link-personal-branding {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 1rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.card-link-personal-branding:hover {
  color: var(--color-primary-hover);
  transform: translateX(4px);
}

.insights-section-personal-branding {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: var(--color-bg-tertiary);
}

.insights-decorative-shape-1 {
  position: absolute;
  top: 100px;
  right: 5%;
  width: 280px;
  height: 280px;
  background: rgba(14, 165, 233, 0.07);
  border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.insights-decorative-glow {
  position: absolute;
  bottom: -80px;
  left: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.insights-content-personal-branding {
  position: relative;
  z-index: 10;
}

.insights-title-personal-branding {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.3px;
}

.insights-intro-personal-branding {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  margin-bottom: 3rem;
  max-width: 700px;
  line-height: 1.7;
}

.insights-steps-personal-branding {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.insights-step-personal-branding {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(59, 130, 246, 0.06);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  transition: all 0.3s ease;
}

.insights-step-personal-branding:hover {
  background: rgba(59, 130, 246, 0.1);
  transform: translateX(4px);
}

.insights-step-number-personal-branding {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: var(--color-primary);
  flex-shrink: 0;
  min-width: 60px;
  text-align: center;
}

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

.insights-step-title-personal-branding {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.3;
}

.insights-step-text-personal-branding {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
}

.quote-section-personal-branding {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-primary);
}

.quote-decorative-accent {
  position: absolute;
  top: 50%;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.quote-wrapper-personal-branding {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}

.quote-block-personal-branding {
  padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2.5rem);
  border-left: 5px solid var(--color-primary);
  background: rgba(59, 130, 246, 0.08);
  border-radius: 0 12px 12px 0;
  margin: 0;
}

.quote-text-personal-branding {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-primary);
  font-style: italic;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  letter-spacing: -0.2px;
}

.quote-author-personal-branding {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.resources-section-personal-branding {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: var(--color-bg-secondary);
}

.resources-decorative-glow-1 {
  position: absolute;
  top: -100px;
  left: -120px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.resources-decorative-glow-2 {
  position: absolute;
  bottom: 50px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.resources-decorative-shape {
  position: absolute;
  top: 30%;
  right: 8%;
  width: 250px;
  height: 250px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.resources-content-personal-branding {
  position: relative;
  z-index: 10;
}

.resources-title-personal-branding {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: -0.3px;
}

.resources-intro-personal-branding {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

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

.resources-feature-personal-branding {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.15);
  text-align: center;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.resources-feature-personal-branding:hover {
  border-color: rgba(59, 130, 246, 0.3);
  background: rgba(59, 130, 246, 0.1);
  transform: translateY(-4px);
}

.resources-feature-icon-personal-branding {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.5rem;
}

.resources-feature-title-personal-branding {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.3;
}

.resources-feature-text-personal-branding {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .hero-stats-personal-branding {
    gap: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }

  .hero-buttons-personal-branding {
    flex-direction: column;
  }

  .hero-buttons-personal-branding .btn {
    width: 100%;
  }

  .insights-step-personal-branding {
    gap: 1.5rem;
    padding: 1.25rem;
  }

  .insights-step-number-personal-branding {
    font-size: 1.75rem;
    min-width: 50px;
  }

  .card-personal-branding {
    flex: 1 1 100%;
    max-width: none;
  }

  .resources-feature-personal-branding {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

  .resources-feature-personal-branding {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (min-width: 1024px) {
  .card-personal-branding {
    flex: 1 1 320px;
  }

  .resources-feature-personal-branding {
    flex: 1 1 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

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

.card-link-personal-branding:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.main-waardepropositie-bepalen {
  width: 100%;
  background: #0c1929;
}

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

.hero-section-waardepropositie-bepalen {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #0c1929;
  position: relative;
  overflow: hidden;
}

.breadcrumbs-waardepropositie-bepalen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs-waardepropositie-bepalen a,
.breadcrumbs-waardepropositie-bepalen span {
  color: #7b9dd4;
  text-decoration: none;
}

.breadcrumbs-waardepropositie-bepalen a:hover {
  color: #3b82f6;
  text-decoration: underline;
}

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

.hero-text-wrapper-waardepropositie-bepalen {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title-waardepropositie-bepalen {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.5px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-waardepropositie-bepalen {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #bfdbfe;
  line-height: 1.6;
  font-weight: 400;
}

.hero-meta-waardepropositie-bepalen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.meta-badge-waardepropositie-bepalen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #bfdbfe;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.meta-badge-waardepropositie-bepalen i {
  color: #3b82f6;
}

.hero-image-waardepropositie-bepalen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-waardepropositie-bepalen {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.12);
}

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

  .hero-text-wrapper-waardepropositie-bepalen,
  .hero-image-waardepropositie-bepalen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.intro-section-waardepropositie-bepalen {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.intro-content-waardepropositie-bepalen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.intro-text-waardepropositie-bepalen {
  flex: 1 1 60%;
}

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

.intro-description-waardepropositie-bepalen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-highlight-waardepropositie-bepalen {
  flex: 1 1 40%;
  display: flex;
  align-items: center;
}

.highlight-box-waardepropositie-bepalen {
  background: #f3e8ff;
  border-left: 4px solid #7c3aed;
  padding: 2rem;
  border-radius: 12px;
}

.highlight-text-waardepropositie-bepalen {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #1e1b4b;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.highlight-author-waardepropositie-bepalen {
  font-size: 0.875rem;
  color: #6b7280;
  font-style: normal;
}

@media (max-width: 768px) {
  .intro-content-waardepropositie-bepalen {
    flex-direction: column;
  }

  .intro-text-waardepropositie-bepalen,
  .intro-highlight-waardepropositie-bepalen {
    flex: 1 1 100%;
  }
}

.framework-section-waardepropositie-bepalen {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #162d50;
  position: relative;
  overflow: hidden;
}

.framework-header-waardepropositie-bepalen {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-waardepropositie-bepalen {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.framework-title-waardepropositie-bepalen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.framework-subtitle-waardepropositie-bepalen {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

.steps-container-waardepropositie-bepalen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-card-waardepropositie-bepalen {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.15);
}

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

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

.step-title-waardepropositie-bepalen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
}

.step-text-waardepropositie-bepalen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .step-card-waardepropositie-bepalen {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-waardepropositie-bepalen {
    min-width: auto;
  }
}

.implementation-section-waardepropositie-bepalen {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.implementation-wrapper-waardepropositie-bepalen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.implementation-text-waardepropositie-bepalen {
  flex: 1 1 50%;
}

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

.implementation-description-waardepropositie-bepalen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.implementation-list-waardepropositie-bepalen {
  margin-left: 0;
  margin-bottom: 1.5rem;
  list-style: none;
}

.list-item-waardepropositie-bepalen {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #374151;
  line-height: 1.7;
}

.list-item-waardepropositie-bepalen:before {
  content: '';
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: 700;
}

.implementation-conclusion-waardepropositie-bepalen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  font-weight: 500;
}

.implementation-image-waardepropositie-bepalen {
  flex: 1 1 50%;
  max-width: 50%;
}

.impl-img-waardepropositie-bepalen {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .implementation-wrapper-waardepropositie-bepalen {
    flex-direction: column;
  }

  .implementation-text-waardepropositie-bepalen,
  .implementation-image-waardepropositie-bepalen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.deepdive-section-waardepropositie-bepalen {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #0c1929;
  position: relative;
  overflow: hidden;
}

.deepdive-wrapper-waardepropositie-bepalen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.deepdive-image-waardepropositie-bepalen {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.deepdive-img-waardepropositie-bepalen {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.12);
}

.deepdive-text-waardepropositie-bepalen {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.deepdive-title-waardepropositie-bepalen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.deepdive-description-waardepropositie-bepalen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.8;
}

.insight-box-waardepropositie-bepalen {
  background: rgba(59, 130, 246, 0.1);
  border-left: 4px solid #3b82f6;
  padding: 1.5rem;
  border-radius: 12px;
}

.insight-title-waardepropositie-bepalen {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.insight-list-waardepropositie-bepalen {
  margin-left: 0;
  list-style: none;
}

.insight-list-waardepropositie-bepalen li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.insight-list-waardepropositie-bepalen li:before {
  content: '';
  position: absolute;
  left: 0;
  color: #60a5fa;
  font-weight: 700;
}

@media (max-width: 768px) {
  .deepdive-wrapper-waardepropositie-bepalen {
    flex-direction: column;
  }

  .deepdive-image-waardepropositie-bepalen {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }

  .deepdive-text-waardepropositie-bepalen {
    flex: 1 1 100%;
  }
}

.conclusion-section-waardepropositie-bepalen {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #1e3a5f;
  position: relative;
  overflow: hidden;
}

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

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

.conclusion-text-waardepropositie-bepalen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.cta-section-waardepropositie-bepalen {
  margin-top: 2rem;
}

.cta-button-waardepropositie-bepalen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #3b82f6;
  color: #ffffff;
  border-radius: 12px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.cta-button-waardepropositie-bepalen:hover {
  background: #60a5fa;
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
}

.related-section-waardepropositie-bepalen {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.related-header-waardepropositie-bepalen {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-waardepropositie-bepalen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.related-subtitle-waardepropositie-bepalen {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  color: #64748b;
}

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

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

.related-card-waardepropositie-bepalen:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.related-card-image-waardepropositie-bepalen {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

.related-card-waardepropositie-bepalen:hover .related-img-waardepropositie-bepalen {
  transform: scale(1.05);
}

.related-card-content-waardepropositie-bepalen {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.related-card-title-waardepropositie-bepalen {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.related-card-text-waardepropositie-bepalen {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  flex: 1;
}

.related-link-waardepropositie-bepalen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #3b82f6;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  margin-top: auto;
}

.related-link-waardepropositie-bepalen:hover {
  color: #60a5fa;
  transform: translateX(4px);
}

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

.disclaimer-section-waardepropositie-bepalen {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e5e7eb;
}

.disclaimer-content-waardepropositie-bepalen {
  max-width: 900px;
  margin: 0 auto;
  background: #f3f4f6;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border-left: 4px solid #6b7280;
}

.disclaimer-title-waardepropositie-bepalen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

.disclaimer-text-waardepropositie-bepalen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .breadcrumbs-waardepropositie-bepalen {
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .hero-meta-waardepropositie-bepalen {
    gap: 0.75rem;
  }

  .meta-badge-waardepropositie-bepalen {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
  }

  .section-tag-waardepropositie-bepalen {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
  }
}

@media (min-width: 768px) {
  .hero-section-waardepropositie-bepalen {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .intro-section-waardepropositie-bepalen {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .framework-section-waardepropositie-bepalen {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .implementation-section-waardepropositie-bepalen {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .deepdive-section-waardepropositie-bepalen {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .conclusion-section-waardepropositie-bepalen {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .related-section-waardepropositie-bepalen {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

.main-online-merkpresence {
  width: 100%;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

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

.hero-section-online-merkpresence {
  background: linear-gradient(135deg, #0c1929 0%, #162d50 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.hero-text-wrapper-online-merkpresence {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title-online-merkpresence {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.article-meta-online-merkpresence {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.meta-badge-online-merkpresence {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #bfdbfe;
}

.meta-badge-online-merkpresence i {
  color: #3b82f6;
  font-size: 0.875rem;
}

.hero-image-wrapper-online-merkpresence {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-online-merkpresence {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

@media (max-width: 768px) {
  .hero-content-online-merkpresence {
    flex-direction: column;
  }
  
  .hero-text-wrapper-online-merkpresence,
  .hero-image-wrapper-online-merkpresence {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .article-meta-online-merkpresence {
    flex-direction: column;
    gap: 0.75rem;
  }
}

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

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

.intro-text-online-merkpresence {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-description-online-merkpresence {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.intro-image-online-merkpresence {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-online-merkpresence {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.fundamentals-header-online-merkpresence {
  text-align: center;
  margin-bottom: 3rem;
}

.fundamentals-title-online-merkpresence {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.fundamentals-subtitle-online-merkpresence {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
}

.fundamentals-wrapper-online-merkpresence {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.fundamentals-text-online-merkpresence {
  flex: 1 1 50%;
  max-width: 50%;
}

.fundamentals-subheading-online-merkpresence {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.fundamentals-content-online-merkpresence {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.fundamentals-list-online-merkpresence {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fundamentals-item-online-merkpresence {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.fundamentals-item-online-merkpresence:before {
  content: '';
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: 700;
}

.fundamentals-image-online-merkpresence {
  flex: 1 1 50%;
  max-width: 50%;
}

.fundamentals-img-online-merkpresence {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .fundamentals-wrapper-online-merkpresence {
    flex-direction: column;
  }
  
  .fundamentals-text-online-merkpresence,
  .fundamentals-image-online-merkpresence {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .fundamentals-header-online-merkpresence {
    margin-bottom: 2rem;
  }
}

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

.strategy-header-online-merkpresence {
  text-align: center;
  margin-bottom: 3rem;
}

.strategy-title-online-merkpresence {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
}

.strategy-steps-online-merkpresence {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.strategy-step-online-merkpresence {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
}

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

.strategy-step-content-online-merkpresence {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.strategy-step-title-online-merkpresence {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: #1e293b;
}

.strategy-step-text-online-merkpresence {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .strategy-step-online-merkpresence {
    padding: 1rem;
    gap: 1rem;
  }
  
  .strategy-step-number-online-merkpresence {
    min-width: 50px;
  }
}

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

.platforms-header-online-merkpresence {
  text-align: center;
  margin-bottom: 3rem;
}

.platforms-title-online-merkpresence {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.platforms-subtitle-online-merkpresence {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
}

.platforms-wrapper-online-merkpresence {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: 3rem;
}

.platforms-text-online-merkpresence {
  flex: 1 1 50%;
  max-width: 50%;
}

.platforms-subheading-online-merkpresence {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.platforms-content-online-merkpresence {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.platforms-image-online-merkpresence {
  flex: 1 1 50%;
  max-width: 50%;
}

.platforms-img-online-merkpresence {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.featured-quote-online-merkpresence {
  padding: 2rem 2.5rem;
  border-left: 4px solid #3b82f6;
  background: #ffffff;
  margin: 2rem 0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.quote-text-online-merkpresence {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #0f172a;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-author-online-merkpresence {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

@media (max-width: 768px) {
  .platforms-wrapper-online-merkpresence {
    flex-direction: column;
  }
  
  .platforms-text-online-merkpresence,
  .platforms-image-online-merkpresence {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.engagement-wrapper-online-merkpresence {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.engagement-image-online-merkpresence {
  flex: 1 1 50%;
  max-width: 50%;
}

.engagement-img-online-merkpresence {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.engagement-text-online-merkpresence {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.engagement-description-online-merkpresence {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.engagement-tips-online-merkpresence {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.engagement-tips-title-online-merkpresence {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.engagement-tips-list-online-merkpresence {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.engagement-tip-item-online-merkpresence {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.engagement-tip-item-online-merkpresence:before {
  content: '';
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: 700;
}

@media (max-width: 768px) {
  .engagement-wrapper-online-merkpresence {
    flex-direction: column;
  }
  
  .engagement-image-online-merkpresence,
  .engagement-text-online-merkpresence {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.optimization-header-online-merkpresence {
  text-align: center;
  margin-bottom: 3rem;
}

.optimization-title-online-merkpresence {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.optimization-subtitle-online-merkpresence {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
}

.optimization-cards-online-merkpresence {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.optimization-card-online-merkpresence {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.optimization-card-online-merkpresence:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.optimization-card-icon-online-merkpresence {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 10px;
  color: #3b82f6;
  font-size: 1.5rem;
}

.optimization-card-title-online-merkpresence {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: #1e293b;
}

.optimization-card-text-online-merkpresence {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .optimization-card-online-merkpresence {
    flex: 1 1 100%;
    max-width: none;
  }
}

.conclusion-section-online-merkpresence {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.conclusion-text-online-merkpresence {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.conclusion-cta-online-merkpresence {
  margin-top: 2rem;
  padding: 2rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.conclusion-cta-title-online-merkpresence {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.conclusion-cta-text-online-merkpresence {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.6;
}

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

.related-header-online-merkpresence {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-online-merkpresence {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.related-subtitle-online-merkpresence {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
}

.related-cards-online-merkpresence {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.related-card-online-merkpresence {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #f8fafc;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e2e8f0;
}

.related-card-online-merkpresence:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.related-img-online-merkpresence {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-online-merkpresence {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1rem, 3vw, 1.5rem);
}

.related-card-title-online-merkpresence {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.related-card-text-online-merkpresence {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.6;
}

.related-card-link-online-merkpresence {
  display: inline-block;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
  margin-top: 0.5rem;
  transition: color 0.2s ease;
}

.related-card-link-online-merkpresence:hover {
  color: #60a5fa;
}

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

.disclaimer-section-online-merkpresence {
  background: #f8fafc;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  border-top: 1px solid #e2e8f0;
  overflow: hidden;
}

.disclaimer-content-online-merkpresence {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.disclaimer-title-online-merkpresence {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.disclaimer-text-online-merkpresence {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
}

.breadcrumbs-online-merkpresence {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-online-merkpresence a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-online-merkpresence a:hover {
  color: #93c5fd;
  text-decoration: underline;
}

.breadcrumbs-online-merkpresence span {
  color: #7b9dd4;
  margin: 0 0.25rem;
}

.breadcrumbs-online-merkpresence span:last-child {
  color: #cbd5e1;
  font-weight: 500;
}

@media (max-width: 768px) {
  .breadcrumbs-online-merkpresence {
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
  }
}

.main-thought-leadership-opbouwen {
      background: #0c1929;
    }

    .hero-section-thought-leadership-opbouwen {
      background: #0c1929;
      padding: clamp(3rem, 8vw, 6rem) 0;
      position: relative;
      overflow: hidden;
    }

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

    .breadcrumbs-thought-leadership-opbouwen {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 2rem;
      font-size: clamp(0.75rem, 1vw, 0.875rem);
    }

    .breadcrumbs-thought-leadership-opbouwen a {
      color: #60a5fa;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .breadcrumbs-thought-leadership-opbouwen a:hover {
      color: #93c5fd;
    }

    .breadcrumbs-thought-leadership-opbouwen span {
      color: #7b9dd4;
    }

    .hero-wrapper-thought-leadership-opbouwen {
      display: flex;
      flex-direction: row;
      gap: clamp(2rem, 4vw, 4rem);
      align-items: center;
    }

    .hero-content-thought-leadership-opbouwen {
      flex: 1 1 50%;
      max-width: 50%;
    }

    .hero-image-thought-leadership-opbouwen {
      flex: 1 1 50%;
      max-width: 50%;
    }

    .hero-title-thought-leadership-opbouwen {
      font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 1.5rem;
      line-height: 1.15;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .hero-meta-thought-leadership-opbouwen {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .hero-meta-badge-thought-leadership-opbouwen {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1rem;
      background: rgba(59, 130, 246, 0.15);
      border-radius: 20px;
      font-size: 0.875rem;
      color: #bfdbfe;
      border: 1px solid rgba(59, 130, 246, 0.3);
    }

    .hero-description-thought-leadership-opbouwen {
      font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
      color: #bfdbfe;
      line-height: 1.7;
      margin-bottom: 2rem;
    }

    .hero-cta-thought-leadership-opbouwen {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .hero-image-thought-leadership-opbouwen img {
      width: 100%;
      height: auto;
      border-radius: 12px;
      display: block;
      box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
    }

    @media (max-width: 768px) {
      .hero-wrapper-thought-leadership-opbouwen {
        flex-direction: column;
      }

      .hero-content-thought-leadership-opbouwen,
      .hero-image-thought-leadership-opbouwen {
        flex: 1 1 100%;
        max-width: 100%;
      }

      .hero-meta-thought-leadership-opbouwen {
        gap: 1rem;
      }
    }

    .intro-section-thought-leadership-opbouwen {
      background: #162d50;
      padding: clamp(3rem, 8vw, 6rem) 0;
      overflow: hidden;
    }

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

    .intro-wrapper-thought-leadership-opbouwen {
      display: flex;
      flex-direction: row;
      gap: clamp(2rem, 4vw, 4rem);
      align-items: center;
    }

    .intro-text-thought-leadership-opbouwen {
      flex: 1 1 50%;
      max-width: 50%;
    }

    .intro-image-thought-leadership-opbouwen {
      flex: 1 1 50%;
      max-width: 50%;
    }

    .intro-title-thought-leadership-opbouwen {
      font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 1.5rem;
      line-height: 1.2;
    }

    .intro-description-thought-leadership-opbouwen {
      font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
      color: #bfdbfe;
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }

    .intro-image-thought-leadership-opbouwen img {
      width: 100%;
      height: auto;
      border-radius: 12px;
      display: block;
      box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
    }

    @media (max-width: 768px) {
      .intro-wrapper-thought-leadership-opbouwen {
        flex-direction: column;
      }

      .intro-text-thought-leadership-opbouwen,
      .intro-image-thought-leadership-opbouwen {
        flex: 1 1 100%;
        max-width: 100%;
      }
    }

    .content-section-thought-leadership-opbouwen {
      background: #0c1929;
      padding: clamp(3rem, 8vw, 6rem) 0;
      overflow: hidden;
    }

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

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

    .content-text-thought-leadership-opbouwen {
      flex: 1 1 50%;
      max-width: 50%;
    }

    .content-image-thought-leadership-opbouwen {
      flex: 1 1 50%;
      max-width: 50%;
    }

    .content-title-thought-leadership-opbouwen {
      font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 1.5rem;
      line-height: 1.2;
    }

    .content-text-block-thought-leadership-opbouwen {
      font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
      color: #bfdbfe;
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }

    .content-highlight-thought-leadership-opbouwen {
      padding: 1.5rem;
      background: rgba(59, 130, 246, 0.1);
      border-left: 4px solid #3b82f6;
      border-radius: 8px;
      margin: 2rem 0;
    }

    .content-highlight-text-thought-leadership-opbouwen {
      font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
      color: #93c5fd;
      line-height: 1.6;
    }

    .content-image-thought-leadership-opbouwen img {
      width: 100%;
      height: auto;
      border-radius: 12px;
      display: block;
      box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
    }

    @media (max-width: 768px) {
      .content-wrapper-thought-leadership-opbouwen {
        flex-direction: column;
      }

      .content-text-thought-leadership-opbouwen,
      .content-image-thought-leadership-opbouwen {
        flex: 1 1 100%;
        max-width: 100%;
      }
    }

    .strategies-section-thought-leadership-opbouwen {
      background: #162d50;
      padding: clamp(3rem, 8vw, 6rem) 0;
      overflow: hidden;
    }

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

    .strategies-header-thought-leadership-opbouwen {
      text-align: center;
      margin-bottom: 3rem;
    }

    .strategies-tag-thought-leadership-opbouwen {
      display: inline-block;
      padding: 0.375rem 1rem;
      background: rgba(59, 130, 246, 0.2);
      color: #60a5fa;
      border-radius: 20px;
      font-size: 0.875rem;
      font-weight: 600;
      margin-bottom: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .strategies-title-thought-leadership-opbouwen {
      font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 1rem;
      line-height: 1.2;
    }

    .strategies-subtitle-thought-leadership-opbouwen {
      font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
      color: #bfdbfe;
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .strategies-cards-thought-leadership-opbouwen {
      display: flex;
      flex-wrap: wrap;
      gap: clamp(1.5rem, 3vw, 2rem);
      justify-content: center;
    }

    .strategies-card-thought-leadership-opbouwen {
      flex: 1 1 300px;
      max-width: 380px;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding: clamp(1.5rem, 3vw, 2rem);
      background: rgba(59, 130, 246, 0.08);
      border: 1px solid rgba(59, 130, 246, 0.2);
      border-radius: 12px;
      transition: all 0.3s ease;
    }

    .strategies-card-thought-leadership-opbouwen:hover {
      border-color: rgba(59, 130, 246, 0.4);
      box-shadow: 0 12px 24px rgba(59, 130, 246, 0.12);
      transform: translateY(-4px);
    }

    .strategies-card-icon-thought-leadership-opbouwen {
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(59, 130, 246, 0.15);
      border-radius: 10px;
      color: #60a5fa;
      font-size: 1.5rem;
    }

    .strategies-card-title-thought-leadership-opbouwen {
      font-size: clamp(1rem, 2vw, 1.25rem);
      font-weight: 600;
      color: #ffffff;
    }

    .strategies-card-text-thought-leadership-opbouwen {
      font-size: 0.9375rem;
      color: #bfdbfe;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .strategies-card-thought-leadership-opbouwen {
        flex: 1 1 100%;
        max-width: none;
      }
    }

    .quote-section-thought-leadership-opbouwen {
      background: #0c1929;
      padding: clamp(3rem, 8vw, 6rem) 0;
      overflow: hidden;
    }

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

    .quote-block-thought-leadership-opbouwen {
      max-width: 800px;
      margin: 0 auto;
      padding: clamp(2rem, 5vw, 3rem);
      border-left: 4px solid #3b82f6;
      background: rgba(59, 130, 246, 0.08);
      border-radius: 8px;
    }

    .quote-text-thought-leadership-opbouwen {
      font-size: clamp(1.25rem, 2vw, 1.5rem);
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 1.5rem;
      line-height: 1.6;
      font-style: italic;
    }

    .quote-author-thought-leadership-opbouwen {
      font-size: 0.9375rem;
      color: #93c5fd;
      font-style: normal;
    }

    .conclusion-section-thought-leadership-opbouwen {
      background: #162d50;
      padding: clamp(3rem, 8vw, 6rem) 0;
      overflow: hidden;
    }

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

    .conclusion-wrapper-thought-leadership-opbouwen {
      display: flex;
      flex-direction: row;
      gap: clamp(2rem, 4vw, 4rem);
      align-items: center;
    }

    .conclusion-text-thought-leadership-opbouwen {
      flex: 1 1 50%;
      max-width: 50%;
    }

    .conclusion-image-thought-leadership-opbouwen {
      flex: 1 1 50%;
      max-width: 50%;
    }

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

    .conclusion-description-thought-leadership-opbouwen {
      font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
      color: #bfdbfe;
      line-height: 1.7;
      margin-bottom: 2rem;
    }

    .conclusion-cta-thought-leadership-opbouwen {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
      background: #3b82f6;
      color: #ffffff;
      text-decoration: none;
      border-radius: 10px;
      font-weight: 600;
      font-size: clamp(0.875rem, 1vw, 1rem);
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    }

    .conclusion-cta-thought-leadership-opbouwen:hover {
      background: #60a5fa;
      box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
      transform: translateY(-2px);
    }

    .conclusion-image-thought-leadership-opbouwen img {
      width: 100%;
      height: auto;
      border-radius: 12px;
      display: block;
      box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
    }

    @media (max-width: 768px) {
      .conclusion-wrapper-thought-leadership-opbouwen {
        flex-direction: column;
      }

      .conclusion-text-thought-leadership-opbouwen,
      .conclusion-image-thought-leadership-opbouwen {
        flex: 1 1 100%;
        max-width: 100%;
      }
    }

    .disclaimer-section-thought-leadership-opbouwen {
      background: #0c1929;
      padding: clamp(3rem, 8vw, 6rem) 0;
      overflow: hidden;
    }

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

    .disclaimer-box-thought-leadership-opbouwen {
      max-width: 900px;
      margin: 0 auto;
      padding: clamp(1.5rem, 3vw, 2.5rem);
      background: rgba(59, 130, 246, 0.06);
      border: 1px solid rgba(59, 130, 246, 0.2);
      border-radius: 10px;
    }

    .disclaimer-title-thought-leadership-opbouwen {
      font-size: clamp(1rem, 2vw, 1.25rem);
      font-weight: 600;
      color: #93c5fd;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .disclaimer-text-thought-leadership-opbouwen {
      font-size: clamp(0.875rem, 1vw, 1rem);
      color: #bfdbfe;
      line-height: 1.7;
    }

    .related-section-thought-leadership-opbouwen {
      background: #162d50;
      padding: clamp(3rem, 8vw, 6rem) 0;
      overflow: hidden;
    }

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

    .related-header-thought-leadership-opbouwen {
      text-align: center;
      margin-bottom: 3rem;
    }

    .related-title-thought-leadership-opbouwen {
      font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 1rem;
      line-height: 1.2;
    }

    .related-cards-thought-leadership-opbouwen {
      display: flex;
      flex-wrap: wrap;
      gap: clamp(1.5rem, 3vw, 2rem);
      justify-content: center;
    }

    .related-card-thought-leadership-opbouwen {
      flex: 1 1 320px;
      max-width: 380px;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      background: rgba(59, 130, 246, 0.08);
      border: 1px solid rgba(59, 130, 246, 0.2);
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .related-card-thought-leadership-opbouwen:hover {
      border-color: rgba(59, 130, 246, 0.4);
      box-shadow: 0 12px 24px rgba(59, 130, 246, 0.12);
      transform: translateY(-4px);
    }

    .related-image-thought-leadership-opbouwen {
      width: 100%;
      height: 220px;
      overflow: hidden;
      background: rgba(59, 130, 246, 0.1);
    }

    .related-image-thought-leadership-opbouwen img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .related-content-thought-leadership-opbouwen {
      padding: clamp(1.25rem, 2vw, 1.75rem);
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .related-card-title-thought-leadership-opbouwen {
      font-size: clamp(1rem, 2vw, 1.125rem);
      font-weight: 600;
      color: #ffffff;
      line-height: 1.3;
    }

    .related-card-text-thought-leadership-opbouwen {
      font-size: 0.875rem;
      color: #bfdbfe;
      line-height: 1.6;
    }

    .related-card-link-thought-leadership-opbouwen {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: #60a5fa;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.875rem;
      margin-top: 0.5rem;
      transition: all 0.3s ease;
    }

    .related-card-link-thought-leadership-opbouwen:hover {
      color: #93c5fd;
      gap: 0.75rem;
    }

    @media (max-width: 768px) {
      .related-card-thought-leadership-opbouwen {
        flex: 1 1 100%;
        max-width: none;
      }
    }

    ul {
      margin-left: 1.5rem;
      margin-bottom: 1.5rem;
    }

    li {
      list-style: none;
      position: relative;
      padding-left: 1.5rem;
      margin-bottom: 0.75rem;
      font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
      color: #bfdbfe;
      line-height: 1.7;
    }

    li:before {
      content: '';
      position: absolute;
      left: 0;
      color: #60a5fa;
      font-weight: 700;
    }

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

    .btn-primary {
      background: #3b82f6;
      color: #ffffff;
      box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    }

    .btn-primary:hover {
      background: #60a5fa;
      box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
      transform: translateY(-2px);
    }

    .btn-secondary {
      background: transparent;
      color: #60a5fa;
      border: 2px solid #60a5fa;
    }

    .btn-secondary:hover {
      background: rgba(59, 130, 246, 0.1);
      border-color: #93c5fd;
      color: #93c5fd;
    }

.main-merkplan-ontwikkelen {
  width: 100%;
  overflow-x: hidden;
}

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

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

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

.hero-title-merkplan-ontwikkelen {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.hero-subtitle-merkplan-ontwikkelen {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #bfdbfe;
  line-height: 1.6;
  font-weight: 400;
}

.hero-meta-merkplan-ontwikkelen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.meta-badge-merkplan-ontwikkelen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.meta-badge-merkplan-ontwikkelen i {
  font-size: 0.875rem;
}

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

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

.stat-number-merkplan-ontwikkelen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
}

.stat-label-merkplan-ontwikkelen {
  font-size: 0.875rem;
  color: #7b9dd4;
  font-weight: 500;
}

.hero-image-block-merkplan-ontwikkelen {
  flex: 1 1 55%;
  position: relative;
}

.hero-image-merkplan-ontwikkelen {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

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

.breadcrumbs-merkplan-ontwikkelen a {
  color: #60a5fa;
  transition: color 0.3s ease;
}

.breadcrumbs-merkplan-ontwikkelen a:hover {
  color: #93c5fd;
}

.breadcrumbs-merkplan-ontwikkelen span {
  color: #475569;
}

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

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

  .hero-stats-merkplan-ontwikkelen {
    justify-content: space-between;
  }
}

.intro-section-merkplan-ontwikkelen {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-merkplan-ontwikkelen {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.intro-description-merkplan-ontwikkelen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.7;
}

.intro-image-merkplan-ontwikkelen {
  flex: 1 1 55%;
}

.intro-image-merkplan-ontwikkelen img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

@media (max-width: 768px) {
  .intro-content-merkplan-ontwikkelen {
    flex-direction: column;
  }

  .intro-text-merkplan-ontwikkelen,
  .intro-image-merkplan-ontwikkelen {
    flex: 1 1 100%;
  }
}

.foundation-section-merkplan-ontwikkelen {
  background: #1e3a5f;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.section-header-merkplan-ontwikkelen {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-tag-merkplan-ontwikkelen {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  border: 1px solid rgba(59, 130, 246, 0.4);
}

.foundation-title-merkplan-ontwikkelen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.foundation-subtitle-merkplan-ontwikkelen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

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

.foundation-card-merkplan-ontwikkelen {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(59, 130, 246, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
}

.foundation-card-merkplan-ontwikkelen:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.15);
}

.card-icon-merkplan-ontwikkelen {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.2);
  border-radius: 10px;
  color: #60a5fa;
  font-size: 1.5rem;
}

.card-title-merkplan-ontwikkelen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
}

.card-text-merkplan-ontwikkelen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .foundation-card-merkplan-ontwikkelen {
    flex: 1 1 100%;
    max-width: none;
  }
}

.process-section-merkplan-ontwikkelen {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.process-title-merkplan-ontwikkelen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.process-subtitle-merkplan-ontwikkelen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

.process-steps-merkplan-ontwikkelen {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 2rem);
  margin-top: clamp(2rem, 5vw, 4rem);
}

.process-step-merkplan-ontwikkelen {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(59, 130, 246, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.15);
  transition: all 0.3s ease;
}

.process-step-merkplan-ontwikkelen:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.1);
}

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

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

.step-title-merkplan-ontwikkelen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
}

.step-text-merkplan-ontwikkelen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .process-step-merkplan-ontwikkelen {
    flex-direction: column;
  }

  .step-number-merkplan-ontwikkelen {
    min-width: auto;
  }
}

.strategy-section-merkplan-ontwikkelen {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.strategy-text-merkplan-ontwikkelen {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.strategy-description-merkplan-ontwikkelen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.7;
}

.strategy-subtitle-merkplan-ontwikkelen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
  margin-top: 1rem;
}

.strategy-text-merkplan-ontwikkelen > p:nth-of-type(2),
.strategy-text-merkplan-ontwikkelen > p:nth-of-type(3),
.strategy-text-merkplan-ontwikkelen > p:nth-of-type(4) {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  line-height: 1.7;
}

.strategy-image-merkplan-ontwikkelen {
  flex: 1 1 55%;
}

.strategy-image-merkplan-ontwikkelen img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

@media (max-width: 768px) {
  .strategy-content-merkplan-ontwikkelen {
    flex-direction: column;
  }

  .strategy-text-merkplan-ontwikkelen,
  .strategy-image-merkplan-ontwikkelen {
    flex: 1 1 100%;
  }
}

.quote-section-merkplan-ontwikkelen {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.featured-quote-merkplan-ontwikkelen {
  padding: clamp(2rem, 4vw, 3.5rem) clamp(2rem, 5vw, 4rem);
  border-left: 4px solid #3b82f6;
  background: rgba(59, 130, 246, 0.08);
  margin: 0;
  border-radius: 8px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.quote-text-merkplan-ontwikkelen {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  font-style: italic;
}

.quote-author-merkplan-ontwikkelen {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #7b9dd4;
  font-style: normal;
  font-weight: 500;
  display: block;
}

.implementation-section-merkplan-ontwikkelen {
  background: #1e3a5f;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.implementation-image-merkplan-ontwikkelen {
  flex: 1 1 45%;
}

.implementation-image-merkplan-ontwikkelen img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.implementation-text-merkplan-ontwikkelen {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.implementation-subtitle-merkplan-ontwikkelen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
  margin-top: 1rem;
}

.implementation-text-merkplan-ontwikkelen > p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .implementation-content-merkplan-ontwikkelen {
    flex-direction: column;
  }

  .implementation-image-merkplan-ontwikkelen,
  .implementation-text-merkplan-ontwikkelen {
    flex: 1 1 100%;
  }
}

.next-steps-section-merkplan-ontwikkelen {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.next-steps-header-merkplan-ontwikkelen {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.next-steps-title-merkplan-ontwikkelen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.next-steps-description-merkplan-ontwikkelen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

.next-steps-list-merkplan-ontwikkelen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 900px;
  margin: 0 auto;
}

.next-step-item-merkplan-ontwikkelen {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(59, 130, 246, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.15);
}

.step-bullet-merkplan-ontwikkelen {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #3b82f6;
  font-weight: 800;
  flex-shrink: 0;
  min-width: 40px;
}

.step-item-text-merkplan-ontwikkelen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.step-item-title-merkplan-ontwikkelen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
}

.step-item-description-merkplan-ontwikkelen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  line-height: 1.6;
}

.cta-section-merkplan-ontwikkelen {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.cta-box-merkplan-ontwikkelen {
  background: linear-gradient(135deg, #0c1929 0%, #1e3a5f 100%);
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(59, 130, 246, 0.2);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
  max-width: 800px;
  margin: 0 auto;
}

.cta-title-merkplan-ontwikkelen {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-text-merkplan-ontwikkelen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cta-button-merkplan-ontwikkelen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #3b82f6;
  color: #ffffff;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.cta-button-merkplan-ontwikkelen:hover {
  background: #60a5fa;
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
}

.disclaimer-section-merkplan-ontwikkelen {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-box-merkplan-ontwikkelen {
  background: rgba(59, 130, 246, 0.08);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-left: 4px solid #3b82f6;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-merkplan-ontwikkelen {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.disclaimer-text-merkplan-ontwikkelen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  line-height: 1.7;
  margin: 0;
}

.related-section-merkplan-ontwikkelen {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-merkplan-ontwikkelen {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.related-title-merkplan-ontwikkelen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.related-subtitle-merkplan-ontwikkelen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
}

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

.related-card-merkplan-ontwikkelen {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-merkplan-ontwikkelen:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.15);
}

.related-card-image-merkplan-ontwikkelen {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-card-img-merkplan-ontwikkelen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-title-merkplan-ontwikkelen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.related-card-text-merkplan-ontwikkelen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  line-height: 1.6;
  flex: 1;
}

.related-card-link-merkplan-ontwikkelen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #60a5fa;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: 0.5rem;
}

.related-card-link-merkplan-ontwikkelen:hover {
  color: #93c5fd;
  gap: 0.75rem;
}

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

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

html {
  scroll-behavior: smooth;
}

.main-professioneel-netwerken {
  width: 100%;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

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

.hero-section-professioneel-netwerken {
  background: linear-gradient(135deg, #0c1929 0%, #162d50 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

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

.hero-title-professioneel-netwerken {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.hero-subtitle-professioneel-netwerken {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #bfdbfe;
  line-height: 1.6;
  max-width: 500px;
}

.article-meta-professioneel-netwerken {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.meta-badge-professioneel-netwerken {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #bfdbfe;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.meta-badge-professioneel-netwerken i {
  color: #3b82f6;
  font-size: 0.875rem;
}

.hero-image-block-professioneel-netwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-professioneel-netwerken {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.breadcrumbs-professioneel-netwerken {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #7b9dd4;
}

.breadcrumbs-professioneel-netwerken a {
  color: #3b82f6;
  transition: color 0.2s ease;
}

.breadcrumbs-professioneel-netwerken a:hover {
  color: #60a5fa;
}

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

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

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

.intro-text-block-professioneel-netwerken {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.intro-text-professioneel-netwerken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.intro-image-block-professioneel-netwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

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

@media (max-width: 768px) {
  .intro-content-professioneel-netwerken {
    flex-direction: column;
  }
  
  .intro-text-block-professioneel-netwerken,
  .intro-image-block-professioneel-netwerken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.strategy-section-professioneel-netwerken {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.strategy-header-professioneel-netwerken {
  text-align: center;
  margin-bottom: 3rem;
}

.strategy-tag-professioneel-netwerken {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.strategy-title-professioneel-netwerken {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.strategy-subtitle-professioneel-netwerken {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

.steps-professioneel-netwerken {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-card-professioneel-netwerken {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.step-card-professioneel-netwerken:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
}

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

.step-content-professioneel-netwerken {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.step-title-professioneel-netwerken {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
}

.step-text-professioneel-netwerken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  line-height: 1.6;
}

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

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

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

.methods-text-block-professioneel-netwerken {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.methods-text-professioneel-netwerken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.methods-list-professioneel-netwerken {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.method-item-professioneel-netwerken {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  background: #ffffff;
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.method-item-professioneel-netwerken:hover {
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
  transform: translateX(4px);
}

.method-title-professioneel-netwerken {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
}

.method-description-professioneel-netwerken {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.methods-image-block-professioneel-netwerken {
  flex: 1 1 50%;
  max-width: 50%;
}

.methods-image-professioneel-netwerken {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .methods-content-professioneel-netwerken {
    flex-direction: column;
  }
  
  .methods-text-block-professioneel-netwerken,
  .methods-image-block-professioneel-netwerken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.challenges-section-professioneel-netwerken {
  background: #1e3a5f;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.challenges-header-professioneel-netwerken {
  text-align: center;
  margin-bottom: 3rem;
}

.challenges-title-professioneel-netwerken {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.challenges-subtitle-professioneel-netwerken {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

.obstacles-wrapper-professioneel-netwerken {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.obstacle-card-professioneel-netwerken {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.obstacle-card-professioneel-netwerken:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
}

.obstacle-title-professioneel-netwerken {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
}

.obstacle-text-professioneel-netwerken {
  font-size: 0.9375rem;
  color: #bfdbfe;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .obstacle-card-professioneel-netwerken {
    flex: 1 1 100%;
    max-width: none;
  }
}

.quote-section-professioneel-netwerken {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.featured-quote-professioneel-netwerken {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3.5rem);
  border-left: 4px solid #3b82f6;
  background: rgba(59, 130, 246, 0.08);
  margin: 0 auto;
  max-width: 800px;
  border-radius: 8px;
}

.quote-text-professioneel-netwerken {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-style: italic;
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.quote-author-professioneel-netwerken {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #bfdbfe;
  font-style: normal;
  font-weight: 500;
  display: block;
}

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

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

.implementation-image-block-professioneel-netwerken {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

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

.implementation-text-block-professioneel-netwerken {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.implementation-text-professioneel-netwerken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.action-items-professioneel-netwerken {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.action-item-professioneel-netwerken {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  background: #f8fafc;
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
}

.action-title-professioneel-netwerken {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
}

.action-description-professioneel-netwerken {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .implementation-content-professioneel-netwerken {
    flex-direction: column;
  }
  
  .implementation-image-block-professioneel-netwerken,
  .implementation-text-block-professioneel-netwerken {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }
}

.conclusion-section-professioneel-netwerken {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.conclusion-title-professioneel-netwerken {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.conclusion-text-professioneel-netwerken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-cta-professioneel-netwerken {
  margin-top: 2rem;
  padding: 2rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 12px;
}

.cta-heading-professioneel-netwerken {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.cta-text-professioneel-netwerken {
  font-size: 0.9375rem;
  color: #bfdbfe;
  margin-bottom: 1.5rem;
}

.cta-button-professioneel-netwerken {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #3b82f6;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.cta-button-professioneel-netwerken:hover {
  background: #60a5fa;
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
}

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

.related-header-professioneel-netwerken {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-professioneel-netwerken {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.related-subtitle-professioneel-netwerken {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
}

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

.related-card-professioneel-netwerken {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.related-card-professioneel-netwerken:hover {
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.1);
  transform: translateY(-4px);
}

.related-card-image-professioneel-netwerken {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.related-card-content-professioneel-netwerken {
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.related-card-title-professioneel-netwerken {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.related-card-description-professioneel-netwerken {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  flex: 1;
}

.related-card-link-professioneel-netwerken {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #3b82f6;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
  align-self: flex-start;
}

.related-card-link-professioneel-netwerken:hover {
  color: #60a5fa;
  gap: 0.75rem;
}

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

.disclaimer-section-professioneel-netwerken {
  background: #1e3a5f;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-professioneel-netwerken {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
}

.disclaimer-title-professioneel-netwerken {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.disclaimer-text-professioneel-netwerken {
  font-size: 0.9375rem;
  color: #bfdbfe;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-section-professioneel-netwerken,
  .intro-section-professioneel-netwerken,
  .strategy-section-professioneel-netwerken,
  .methods-section-professioneel-netwerken,
  .challenges-section-professioneel-netwerken,
  .quote-section-professioneel-netwerken,
  .implementation-section-professioneel-netwerken,
  .conclusion-section-professioneel-netwerken,
  .related-section-professioneel-netwerken,
  .disclaimer-section-professioneel-netwerken {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }
  
  .step-card-professioneel-netwerken {
    padding: 1.25rem;
  }
  
  .article-meta-professioneel-netwerken {
    gap: 0.75rem;
  }
  
  .meta-badge-professioneel-netwerken {
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-section-professioneel-netwerken,
  .intro-section-professioneel-netwerken,
  .strategy-section-professioneel-netwerken,
  .methods-section-professioneel-netwerken,
  .challenges-section-professioneel-netwerken,
  .quote-section-professioneel-netwerken,
  .implementation-section-professioneel-netwerken,
  .conclusion-section-professioneel-netwerken,
  .related-section-professioneel-netwerken,
  .disclaimer-section-professioneel-netwerken {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-professioneel-netwerken,
  .intro-section-professioneel-netwerken,
  .strategy-section-professioneel-netwerken,
  .methods-section-professioneel-netwerken,
  .challenges-section-professioneel-netwerken,
  .quote-section-professioneel-netwerken,
  .implementation-section-professioneel-netwerken,
  .conclusion-section-professioneel-netwerken,
  .related-section-professioneel-netwerken,
  .disclaimer-section-professioneel-netwerken {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }
}

:root {
  --color-bg-primary: #0c1929;
  --color-bg-secondary: #162d50;
  --color-bg-tertiary: #1e3a5f;
  --color-bg-card: rgba(59, 130, 246, 0.08);
  --color-text-primary: #ffffff;
  --color-text-secondary: #bfdbfe;
  --color-text-muted: #7b9dd4;
  --color-primary: #3b82f6;
  --color-primary-hover: #60a5fa;
  --color-secondary: #0ea5e9;
  --color-accent-warm: #f59e0b;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 4px 12px rgba(59, 130, 246, 0.1);
  --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.25);
  --shadow-xl: 0 20px 40px rgba(59, 130, 246, 0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 5vw, 2rem);
  padding-right: clamp(1rem, 5vw, 2rem);
}

.personal-brand-narrative-about {
  width: 100%;
}

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

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

.hero-identity-title-about {
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-identity-subtitle-about {
  font-size: clamp(1.125rem, 2.5vw + 0.5rem, 1.375rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  line-height: 1.5;
}

.hero-identity-image-about {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: clamp(1.5rem, 3vw, 2.5rem) auto 0;
  box-shadow: var(--shadow-xl);
}

.hero-identity-stats-about {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(2rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.stat-item-about {
  flex: 0 1 auto;
  text-align: center;
}

.stat-number-about {
  display: block;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--color-secondary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-about {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-muted);
  font-weight: 500;
}

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

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

.philosophy-intro-about {
  max-width: 800px;
}

.philosophy-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(15, 174, 229, 0.2);
  color: var(--color-secondary);
  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.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.philosophy-description-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.philosophy-highlights-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(1.5rem, 2vw, 2rem);
}

.highlight-item-about {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1 1 250px;
}

.highlight-icon-about {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.highlight-text-about {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.highlight-title-about {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

.highlight-detail-about {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

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

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

.methodology-header-about {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(1rem, 2vw, 1.5rem);
}

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

.methodology-subtitle-about {
  font-size: clamp(0.9375rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.methodology-steps-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.methodology-step-about {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 2vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-secondary);
}

.step-number-about {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-secondary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
}

.step-content-about {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-about {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.step-description-about {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

.transformation-content-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

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

.transformation-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(245, 158, 11, 0.2);
  color: var(--color-accent-warm);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.transformation-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.transformation-description-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.transformation-benefits-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item-about {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.benefit-check-about {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-secondary);
  border-radius: 50%;
  color: var(--color-bg-primary);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.benefit-text-about {
  font-size: clamp(0.9375rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
}

.transformation-image-about {
  flex: 1 1 300px;
  min-width: 280px;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

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

.vision-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 850px;
  margin: 0 auto;
}

.vision-quote-about {
  padding: clamp(2rem, 3vw, 2.5rem);
  background: var(--color-bg-secondary);
  border-left: 4px solid var(--color-accent-warm);
  border-radius: var(--radius-lg);
}

.vision-quote-text-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-primary);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.vision-quote-author-about {
  font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
  color: var(--color-text-muted);
  font-style: normal;
}

.vision-closing-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.vision-closing-title-about {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.vision-closing-text-about {
  font-size: clamp(0.9375rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

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

.disclaimer-notice-content-about {
  max-width: 800px;
}

.disclaimer-header-about {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.disclaimer-icon-about {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.disclaimer-title-about {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.disclaimer-text-about {
  font-size: clamp(0.8125rem, 1.2vw, 0.9375rem);
  color: var(--color-text-muted);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero-identity-section-about {
    padding: 5rem 0;
  }

  .philosophy-foundation-section-about {
    padding: 5rem 0;
  }

  .methodology-framework-section-about {
    padding: 5rem 0;
  }

  .transformation-impact-section-about {
    padding: 5rem 0;
  }

  .vision-promise-section-about {
    padding: 5rem 0;
  }

  .disclaimer-notice-section-about {
    padding: 3.5rem 0;
  }

  .methodology-step-about {
    gap: 2rem;
  }

  .transformation-image-about {
    flex: 1 1 400px;
  }
}

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

  .philosophy-foundation-section-about {
    padding: 6rem 0;
  }

  .methodology-framework-section-about {
    padding: 6rem 0;
  }

  .transformation-impact-section-about {
    padding: 6rem 0;
  }

  .vision-promise-section-about {
    padding: 6rem 0;
  }

  .disclaimer-notice-section-about {
    padding: 4rem 0;
  }
}

.identity-docs {
  font-family: var(--font-primary);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.identity-docs .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

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

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

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

.privacy-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-muted);
}

.privacy-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.privacy-content {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

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

.privacy-section {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.privacy-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.privacy-section h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: var(--color-text-secondary);
  line-height: 1.25;
  margin-top: 1rem;
}

.privacy-section p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.privacy-section ul,
.privacy-section ol {
  margin-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.privacy-section li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.privacy-contact {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
  margin-top: clamp(2rem, 5vw, 3rem);
}

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

.privacy-contact h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-label {
  font-weight: 600;
  color: var(--color-text-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.contact-value {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
}

@media (min-width: 768px) {
  .privacy-hero {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }

  .privacy-content {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }

  .privacy-contact {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }
}

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

  .privacy-content {
    padding: 6rem 0;
  }

  .privacy-contact {
    padding: 6rem 0;
  }
}

.thank-page {
  width: 100%;
}

.thank-section {
  background: var(--color-bg-primary);
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  max-width: 700px;
  margin: 0 auto;
}

.thank-icon {
  font-size: clamp(3.5rem, 12vw, 6rem);
  color: var(--color-primary);
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
  animation: icon-pulse 2s ease-in-out;
}

@keyframes icon-pulse {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-section h1 {
  color: var(--color-text-primary);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  line-height: 1.15;
  font-weight: 700;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-lead {
  color: var(--color-secondary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-description {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-next-steps {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  width: 100%;
  margin: clamp(0.5rem, 2vw, 1.5rem) 0;
  text-align: left;
}

.thank-next-steps h3 {
  color: var(--color-primary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  line-height: 1.3;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  font-weight: 600;
}

.steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.steps-list li {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  padding-left: clamp(1.75rem, 4vw, 2.5rem);
  position: relative;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.steps-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: clamp(1.125rem, 2vw, 1.375rem);
  height: clamp(1.125rem, 2vw, 1.375rem);
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7em;
  color: var(--color-bg-primary);
  font-weight: bold;
}

.steps-list li:nth-child(1)::before {
  content: '1';
}

.steps-list li:nth-child(2)::before {
  content: '2';
}

.steps-list li:nth-child(3)::before {
  content: '3';
}

.thank-closing {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin: clamp(0.5rem, 2vw, 1rem) 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.875rem, 1.5vw, 1.25rem) clamp(1.75rem, 4vw, 2.5rem);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

@media (min-width: 768px) {
  .thank-section {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

  .thank-icon {
    margin-bottom: clamp(0.75rem, 2vw, 1.5rem);
  }

  .thank-next-steps {
    margin: clamp(1rem, 3vw, 2rem) 0;
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: 6rem 0;
    min-height: 100vh;
  }

  .thank-content {
    gap: 2.5rem;
  }

  .thank-icon {
    margin-bottom: 1.5rem;
  }

  .thank-next-steps {
    margin: 2rem 0;
  }
}

@media (min-width: 1440px) {
  .thank-content {
    gap: 3rem;
  }
}

.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  position: relative;
}

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

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  position: relative;
  z-index: 2;
}

.error-decoration {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  z-index: 1;
}

.error-decoration-1 {
  width: clamp(200px, 40vw, 500px);
  height: clamp(200px, 40vw, 500px);
  background: var(--color-primary);
  top: -10%;
  right: -5%;
  animation: float 6s ease-in-out infinite;
}

.error-decoration-2 {
  width: clamp(150px, 30vw, 400px);
  height: clamp(150px, 30vw, 400px);
  background: var(--color-secondary);
  bottom: -5%;
  left: -3%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(30px);
  }
}

.error-code-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 1rem);
}

.error-code {
  font-size: clamp(3rem, 15vw, 8rem);
  font-weight: 900;
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -0.05em;
  text-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
  margin: 0;
  animation: slideDown 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.error-accent {
  height: 4px;
  width: clamp(80px, 30vw, 200px);
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  border-radius: 2px;
}

.error-title {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-description {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
  max-width: 500px;
  font-weight: 500;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-subtext {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
  max-width: 450px;
  font-style: italic;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(60px, 12vw, 100px);
  height: clamp(60px, 12vw, 100px);
  background: rgba(59, 130, 246, 0.1);
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  color: var(--color-primary);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.95rem, 1.5vw, 1.0625rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-family: var(--font-primary);
  cursor: pointer;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn-primary {
  background: var(--color-primary);
  color: #000000;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(59, 130, 246, 0.2);
}

.error-footer {
  font-size: clamp(0.8125rem, 1.2vw, 0.9375rem);
  color: var(--color-text-muted);
  margin: clamp(0.5rem, 2vw, 1rem) 0 0 0;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .error-section {
    padding: 4rem 0;
  }

  .error-code-wrapper {
    gap: 1.25rem;
  }

  .error-decoration-1 {
    width: 400px;
    height: 400px;
  }

  .error-decoration-2 {
    width: 300px;
    height: 300px;
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: 6rem 0;
    min-height: 100vh;
  }

  .error-content {
    gap: 3rem;
  }

  .error-code-wrapper {
    gap: 1.5rem;
    margin-bottom: 1rem;
  }

  .error-decoration-1 {
    width: 500px;
    height: 500px;
  }

  .error-decoration-2 {
    width: 400px;
    height: 400px;
  }

  .btn-primary:hover {
    transform: translateY(-4px);
  }
}

@media (min-width: 1440px) {
  .error-content {
    gap: 3.5rem;
  }

  .error-decoration-1 {
    width: 600px;
    height: 600px;
  }

  .error-decoration-2 {
    width: 450px;
    height: 450px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-code {
    animation: none;
  }

  .error-icon-wrapper {
    animation: none;
  }

  .error-decoration-1,
  .error-decoration-2 {
    animation: none;
  }

  .btn-primary:hover {
    transform: none;
  }

  .btn-primary:active {
    transform: none;
  }
}

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

@media print {
  .error-decoration {
    display: none;
  }

  .error-icon-wrapper {
    border-color: #000;
    color: #000;
  }

  .error-code {
    color: #000;
    text-shadow: none;
  }
}