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

:root {
  
  
  
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f8fafc;
  --color-bg-card-dark: rgba(255, 255, 255, 0.05);
  --color-bg-card-light: #ffffff;
  --color-bg-accent: #1e293b;
  
  
  --color-text-light: #ffffff;
  --color-text-dark: #1e293b;
  --color-text-secondary-light: #94a3b8;
  --color-text-secondary-dark: #64748b;
  --color-text-muted: #9ca3af;
  
  
  --color-primary: #00d9ff;
  --color-primary-hover: #00b8d4;
  --color-secondary: #ff6b35;
  --color-secondary-hover: #e55a28;
  --color-accent-warm: #f97316;
  --color-accent-cool: #06b6d4;
  
  
  --font-heading: 'Syne', sans-serif;
  --font-primary: 'Outfit', 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;
  --space-4xl: 8rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  --shadow-dark: 0 8px 32px rgba(0, 0, 0, 0.3);
  
  
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  
  
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
}

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

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

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: var(--line-height-normal);
  color: var(--color-text-dark);
  background: var(--color-bg-secondary);
  overflow-x: hidden;
}

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

h1 {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

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

h3 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

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

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

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

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

section {
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}

.section-dark,
.section-hero {
  background: var(--color-bg-primary);
  color: var(--color-text-light);
}

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

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

.section-light,
.section-content {
  background: var(--color-bg-secondary);
  color: var(--color-text-dark);
}

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

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

.section-accent {
  background: var(--color-bg-accent);
  color: var(--color-text-light);
}

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

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

.section-zebra {
  background: var(--color-bg-tertiary);
  color: var(--color-text-dark);
}

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

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

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

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

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

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

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

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

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

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

.btn-secondary {
  background: var(--color-secondary);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-secondary:hover {
  background: var(--color-secondary-hover);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  transform: translateY(-2px);
}

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

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

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

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

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

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

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

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

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

.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

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

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

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

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

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

.px-md { padding: 0 var(--space-md); }
.px-lg { padding: 0 var(--space-lg); }
.py-md { padding: var(--space-md) 0; }
.py-lg { padding: var(--space-lg) 0; }

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

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

.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }

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

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

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
  border-bottom: 2px solid transparent;
}

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

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

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

.img-responsive {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  background: rgba(0, 217, 255, 0.1);
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

.animate-fade-up {
  animation: fadeInUp var(--transition-normal) ease-out;
}

.animate-fade-down {
  animation: fadeInDown var(--transition-normal) ease-out;
}

.animate-fade-left {
  animation: fadeInLeft var(--transition-normal) ease-out;
}

.animate-fade-right {
  animation: fadeInRight var(--transition-normal) ease-out;
}

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

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

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

@media (prefers-color-scheme: dark) {
  body {
    background: var(--color-bg-primary);
    color: var(--color-text-light);
  }
}

@media print {
  body {
    background: #ffffff;
    color: #000000;
  }
  
  section {
    page-break-inside: avoid;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  section {
    padding: var(--space-3xl) 0;
  }
  
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-sm);
  }
  
  section {
    padding: var(--space-2xl) 0;
  }
  
  .flex {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
}
.header-brand-sync {
  background: var(--color-bg-primary);
  border-bottom: 1px solid rgba(0, 217, 255, 0.1);
  position: relative;
  z-index: 100;
  overflow: hidden;
}

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

.header-brand-sync-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

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

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

.header-brand-sync-desktop-nav {
  display: none;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}

.header-brand-sync-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  color: var(--color-text-secondary-light);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
}

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

.header-brand-sync-nav-link:hover {
  color: var(--color-primary);
}

.header-brand-sync-nav-link:hover::after {
  width: 100%;
}

.header-brand-sync-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-bg-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.header-brand-sync-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 217, 255, 0.25);
}

.header-brand-sync-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-right: -0.5rem;
}

.header-brand-sync-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
  transition: all var(--transition-fast);
}

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

.header-brand-sync-mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.header-brand-sync-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-primary);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-normal);
  z-index: 99;
  display: flex;
  flex-direction: column;
}

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

.header-brand-sync-mobile-header {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding: 1rem clamp(1rem, 4vw, 2rem);
  border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

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

.header-brand-sync-mobile-close:active {
  color: var(--color-primary-hover);
}

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

.header-brand-sync-mobile-link {
  padding: 1rem clamp(1rem, 4vw, 2rem);
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 500;
  color: var(--color-text-secondary-light);
  text-decoration: none;
  transition: all var(--transition-fast);
  border-left: 3px solid transparent;
}

.header-brand-sync-mobile-link:active {
  color: var(--color-primary);
  border-left-color: var(--color-primary);
  background: rgba(0, 217, 255, 0.05);
}

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

.header-brand-sync-mobile-cta:active {
  background: var(--color-primary-hover);
  transform: scale(0.98);
}

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

  .header-brand-sync-cta-button {
    display: block;
  }

  .header-brand-sync-mobile-toggle {
    display: none;
  }

  .header-brand-sync-mobile-menu {
    display: none;
  }
}

@media (max-width: 767px) {
  .header-brand-sync-desktop-nav {
    display: none !important;
  }

  .header-brand-sync-cta-button {
    display: none !important;
  }
}

    .brand-hub {
  width: 100%;
  overflow: hidden;
}

.hero-section-index {
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
}

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

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

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

.hero-image-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

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

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

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

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

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

.stat-number-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #00d9ff;
  font-family: 'Syne', sans-serif;
}

.stat-label-index {
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
}

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

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

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

.section-tag-index {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(0, 217, 255, 0.1);
  color: #00d9ff;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  width: fit-content;
}

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

.benefits-subtitle-index {
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin-bottom: 0;
}

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

.benefits-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 300ms ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefits-card-index:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.card-icon-index {
  font-size: 2rem;
  color: #00d9ff;
}

.card-title-index {
  font-size: 1.25rem;
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 0;
}

.card-text-index {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
}

.featured-posts-section-index {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

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

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

.featured-posts-subtitle-index {
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin-bottom: 0;
}

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

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

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

.post-image-wrapper-index {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.post-card-image-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.post-card-title-index {
  font-size: 1.25rem;
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 0;
}

.post-card-description-index {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
  flex-grow: 1;
}

.post-card-link-index {
  color: #00d9ff;
  font-weight: 600;
  text-decoration: none;
  transition: color 150ms ease;
  align-self: flex-start;
}

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

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

.how-it-works-section-index {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.how-it-works-header-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

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

.how-it-works-subtitle-index {
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin-bottom: 0;
}

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

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

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

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

.step-title-index {
  font-size: 1.25rem;
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 0;
}

.step-text-index {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
}

.statistics-section-index {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

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

.statistics-title-index {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0;
}

.statistics-description-index {
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  color: #94a3b8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

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

.metric-card-index {
  flex: 1 1 250px;
  max-width: 350px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.metric-number-index {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #00d9ff;
  font-family: 'Syne', sans-serif;
  margin-bottom: 0;
}

.metric-label-index {
  font-size: 0.9375rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 0;
}

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

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

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

.faq-title-index {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 0;
}

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

.faq-item-index {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #00d9ff;
}

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

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

.partners-section-index {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

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

.partners-title-index {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 0;
}

.partners-subtitle-index {
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

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

.partner-item-index {
  flex: 1 1 200px;
  max-width: 280px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.partner-icon-index {
  font-size: 2.5rem;
  color: #00d9ff;
}

.partner-name-index {
  font-size: 1.125rem;
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 0;
}

.partner-text-index {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
}

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

.cta-content-index {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cta-box-index {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(255, 107, 53, 0.1));
  border: 1px solid rgba(0, 217, 255, 0.2);
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: 16px;
  text-align: center;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

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

.cta-text-index {
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 0;
}

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

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

.cookie-banner-text-index {
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
  flex: 1 1 auto;
  min-width: 200px;
}

.cookie-banner-buttons-index {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn-accept-index {
  padding: 0.5rem 1.5rem;
  background: #00d9ff;
  color: #0a0f1e;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 150ms ease;
}

.cookie-btn-accept-index:hover {
  background: #00b8d4;
}

.cookie-btn-decline-index {
  padding: 0.5rem 1.5rem;
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 150ms ease;
}

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

@media (max-width: 768px) {
  .hero-content-index {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

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

  .hero-image-block-index {
    flex: 1 1 100%;
    min-height: 300px;
  }

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

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

  .hero-stats-index {
    flex-direction: column;
    gap: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
  }

  .how-it-works-step-index {
    flex-direction: column;
    gap: 1rem;
  }

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

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

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

  .cookie-banner-index {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .cookie-banner-text-index {
    text-align: center;
  }

  .cookie-banner-buttons-index {
    width: 100%;
    justify-content: center;
  }

  .cookie-btn-accept-index,
  .cookie-btn-decline-index {
    flex: 1 1 auto;
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  .hero-stats-index {
    flex-direction: row;
    justify-content: space-around;
    gap: 1rem;
  }

  .stat-item-index {
    align-items: center;
  }

  .stat-number-index {
    font-size: 1.5rem;
  }

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

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

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

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

  .faq-item-index {
    padding: 1.25rem;
  }

  .faq-question-index {
    font-size: 1rem;
  }

  .faq-answer-index {
    font-size: 0.875rem;
  }

  .step-number-index {
    font-size: 1.75rem;
    min-width: 60px;
  }

  .cta-box-index {
    padding: 1.5rem;
  }

  .cta-title-index {
    font-size: 1.25rem;
  }

  .cta-text-index {
    font-size: 0.875rem;
  }
}

    .footer {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  color: var(--color-text-secondary-light);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

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

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

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

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

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

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

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

.footer-nav-list li {
  margin: 0;
  padding: 0;
}

.footer-nav-list a {
  color: var(--color-text-secondary-light);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: color var(--transition-fast);
  display: inline-block;
}

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

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

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

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

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

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

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

.footer-legal-list li {
  margin: 0;
  padding: 0;
}

.footer-legal-list a {
  color: var(--color-text-secondary-light);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: color var(--transition-fast);
  display: inline-block;
}

.footer-legal-list a:hover {
  color: var(--color-primary);
}

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

.footer-copyright p {
  color: var(--color-text-secondary-light);
  font-family: var(--font-primary);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: clamp(1.5rem, 4vw, 2.5rem);
  }

  .footer-about,
  .footer-nav,
  .footer-contact,
  .footer-legal {
    flex: 1 1 100%;
    min-width: auto;
  }

  .footer-nav-list,
  .footer-legal-list {
    gap: 0.5rem;
  }

  .footer-nav-list a,
  .footer-legal-list a {
    font-size: 0.875rem;
  }
}
    

.category-page-professional-image-consistency {
  background: #ffffff;
  color: #1e293b;
}

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

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

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

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

@media (min-width: 1024px) {
  .hero-header-category {
    flex: 1 1 50%;
  }
}

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

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

.hero-visual-category {
  flex: 1 1 100%;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-visual-category {
    flex: 1 1 50%;
  }
}

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

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

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

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

.posts-title-category {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0;
}

.posts-subtitle-category {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: #64748b;
  margin-bottom: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.card-professional-image-consistency {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1 1 clamp(280px, 90vw, 360px);
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.card-professional-image-consistency:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.card-image-category {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.card-title-category {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
  padding: 0 1.25rem;
  padding-top: 1rem;
  margin-bottom: 0;
}

.card-description-category {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  padding: 0 1.25rem;
  margin-bottom: 0;
}

.card-meta-category {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0 1.25rem;
  font-size: 0.85rem;
  color: #94a3b8;
}

.card-reading-time-category,
.card-level-category,
.card-date-category {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #94a3b8;
}

.card-reading-time-category i,
.card-level-category i,
.card-date-category i {
  color: #00d9ff;
  font-size: 0.9rem;
}

.card-link-category {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.25rem;
  background: #f8fafc;
  color: #00d9ff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0.5rem 1.25rem 1.25rem;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.card-link-category:hover {
  background: #00d9ff;
  color: #0a0f1e;
  border-color: #00d9ff;
}

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

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

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

.benefits-title-category {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0;
}

.benefits-intro-category {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: #64748b;
  margin-bottom: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.benefit-item-category {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.benefit-icon-category {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00d9ff;
  font-size: 1.5rem;
}

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

.benefit-title-category {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.benefit-description-category {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
}

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

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

.key-elements-header-category {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.key-elements-title-category {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0;
}

.key-elements-intro-category {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: #94a3b8;
  margin-bottom: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.element-card-category {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1 1 clamp(260px, 90vw, 320px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.element-card-category:hover {
  background: rgba(0, 217, 255, 0.05);
  border-color: rgba(0, 217, 255, 0.3);
  transform: translateY(-4px);
}

.element-number-category {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00d9ff;
  line-height: 1;
}

.element-name-category {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0;
}

.element-text-category {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 0;
}

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

  .hero-header-category {
    flex: 1 1 100%;
  }

  .hero-visual-category {
    flex: 1 1 100%;
  }

  .posts-grid-category {
    gap: 1.5rem;
  }

  .card-professional-image-consistency {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .elements-grid-category {
    gap: 1.5rem;
  }

  .element-card-category {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .hero-section-category {
    padding: 2rem 0;
  }

  .posts-section-category {
    padding: 2rem 0;
  }

  .benefits-section-category {
    padding: 2rem 0;
  }

  .key-elements-section-category {
    padding: 2rem 0;
  }

  .card-title-category {
    padding: 0 1rem;
    padding-top: 0.75rem;
  }

  .card-description-category {
    padding: 0 1rem;
  }

  .card-meta-category {
    padding: 0 1rem;
    gap: 0.75rem;
  }

  .card-link-category {
    margin: 0.5rem 1rem 1rem;
    width: calc(100% - 2rem);
  }

  .element-card-category {
    padding: 1.5rem;
  }

  .benefit-item-category {
    gap: 1rem;
  }

  .benefit-icon-category {
    width: 28px;
    height: 28px;
    font-size: 1.25rem;
  }
}

.main-merkrichtlijnen-opstellen {
  width: 100%;
  overflow-x: hidden;
}

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

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

.breadcrumbs-merkrichtlijnen-opstellen {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 3vw, 3rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #94a3b8;
  flex-wrap: wrap;
}

.breadcrumbs-merkrichtlijnen-opstellen a {
  color: #00d9ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-merkrichtlijnen-opstellen a:hover {
  color: #00b8d4;
}

.breadcrumbs-merkrichtlijnen-opstellen span {
  color: #64748b;
}

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

.hero-text-merkrichtlijnen-opstellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-merkrichtlijnen-opstellen {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-merkrichtlijnen-opstellen {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-meta-merkrichtlijnen-opstellen {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.meta-item-merkrichtlijnen-opstellen {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #94a3b8;
}

.meta-divider-merkrichtlijnen-opstellen {
  color: #475569;
}

.hero-image-merkrichtlijnen-opstellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-merkrichtlijnen-opstellen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-content-merkrichtlijnen-opstellen {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

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

  .hero-title-merkrichtlijnen-opstellen {
    font-size: 2rem;
  }

  .hero-subtitle-merkrichtlijnen-opstellen {
    font-size: 1rem;
  }
}

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

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

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

.intro-text-merkrichtlijnen-opstellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-merkrichtlijnen-opstellen {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.intro-image-merkrichtlijnen-opstellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-merkrichtlijnen-opstellen img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .intro-content-merkrichtlijnen-opstellen {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

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

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

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

.structure-content-merkrichtlijnen-opstellen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.structure-image-merkrichtlijnen-opstellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.structure-image-merkrichtlijnen-opstellen img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.structure-text-merkrichtlijnen-opstellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.structure-title-merkrichtlijnen-opstellen {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.structure-paragraph-merkrichtlijnen-opstellen {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

@media (max-width: 768px) {
  .structure-content-merkrichtlijnen-opstellen {
    flex-direction: column-reverse;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .structure-image-merkrichtlijnen-opstellen,
  .structure-text-merkrichtlijnen-opstellen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.practical-content-merkrichtlijnen-opstellen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.practical-text-merkrichtlijnen-opstellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-title-merkrichtlijnen-opstellen {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.practical-paragraph-merkrichtlijnen-opstellen {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.highlight-box-merkrichtlijnen-opstellen {
  background: #f1f5f9;
  border-left: 4px solid #00d9ff;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: 8px;
  margin-top: clamp(1.5rem, 2vw, 2rem);
}

.highlight-text-merkrichtlijnen-opstellen {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  color: #334155;
  line-height: 1.7;
}

.highlight-text-merkrichtlijnen-opstellen strong {
  color: #0f172a;
  font-weight: 600;
}

.practical-image-merkrichtlijnen-opstellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-image-merkrichtlijnen-opstellen img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .practical-content-merkrichtlijnen-opstellen {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .practical-text-merkrichtlijnen-opstellen,
  .practical-image-merkrichtlijnen-opstellen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

.implementation-title-merkrichtlijnen-opstellen {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(0.5rem, 1.5vw, 1rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.implementation-paragraph-merkrichtlijnen-opstellen {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.steps-wrapper-merkrichtlijnen-opstellen {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
  margin: clamp(2rem, 3vw, 3rem) 0;
  justify-content: center;
}

.step-card-merkrichtlijnen-opstellen {
  flex: 1 1 280px;
  max-width: 340px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: clamp(1.5rem, 2vw, 2rem);
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
  transition: all 0.3s ease;
}

.step-card-merkrichtlijnen-opstellen:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 217, 255, 0.3);
  transform: translateY(-4px);
}

.step-number-merkrichtlijnen-opstellen {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #00d9ff;
  line-height: 1;
  min-width: 60px;
}

.step-body-merkrichtlijnen-opstellen {
  flex: 1;
}

.step-title-merkrichtlijnen-opstellen {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.step-text-merkrichtlijnen-opstellen {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.implementation-image-merkrichtlijnen-opstellen {
  margin-top: clamp(2rem, 3vw, 3rem);
}

.implementation-image-merkrichtlijnen-opstellen img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  max-height: 450px;
}

@media (max-width: 768px) {
  .steps-wrapper-merkrichtlijnen-opstellen {
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .step-card-merkrichtlijnen-opstellen {
    flex: 1 1 100%;
    max-width: 100%;
    flex-direction: column;
  }

  .step-number-merkrichtlijnen-opstellen {
    min-width: auto;
  }
}

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

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

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

.tools-title-merkrichtlijnen-opstellen {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tools-intro-merkrichtlijnen-opstellen {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #475569;
  text-align: center;
  line-height: 1.8;
}

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

.tool-card-merkrichtlijnen-opstellen {
  flex: 1 1 280px;
  max-width: 340px;
  background: #f8fafc;
  border-radius: 12px;
  padding: clamp(1.5rem, 2vw, 2rem);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.tool-card-merkrichtlijnen-opstellen:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: #00d9ff;
}

.tool-icon-merkrichtlijnen-opstellen {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: #00d9ff;
  margin-bottom: clamp(1rem, 1.5vw, 1.25rem);
  height: auto;
}

.tool-icon-merkrichtlijnen-opstellen i {
  display: inline-block;
}

.tool-name-merkrichtlijnen-opstellen {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tool-description-merkrichtlijnen-opstellen {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: #475569;
  line-height: 1.7;
}

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

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

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

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

.conclusion-text-merkrichtlijnen-opstellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-title-merkrichtlijnen-opstellen {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-paragraph-merkrichtlijnen-opstellen {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-image-merkrichtlijnen-opstellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-image-merkrichtlijnen-opstellen img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .conclusion-content-merkrichtlijnen-opstellen {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .conclusion-text-merkrichtlijnen-opstellen,
  .conclusion-image-merkrichtlijnen-opstellen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

.related-title-merkrichtlijnen-opstellen {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-card-merkrichtlijnen-opstellen {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.related-card-merkrichtlijnen-opstellen:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

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

.related-card-img-merkrichtlijnen-opstellen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-title-merkrichtlijnen-opstellen {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-text-merkrichtlijnen-opstellen {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: #475569;
  line-height: 1.7;
}

.related-card-link-merkrichtlijnen-opstellen {
  display: inline-flex;
  align-items: center;
  color: #00d9ff;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  transition: all 0.3s ease;
  margin-top: clamp(0.5rem, 1vw, 0.75rem);
}

.related-card-link-merkrichtlijnen-opstellen:hover {
  color: #00b8d4;
  gap: 0.5rem;
}

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

.disclaimer-section-merkrichtlijnen-opstellen {
  background: #1e293b;
  color: #ffffff;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.disclaimer-content-merkrichtlijnen-opstellen {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid #f97316;
  border-radius: 8px;
  padding: clamp(1.5rem, 2.5vw, 2.5rem);
}

.disclaimer-title-merkrichtlijnen-opstellen {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: #f97316;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-text-merkrichtlijnen-opstellen {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: #cbd5e1;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .disclaimer-section-merkrichtlijnen-opstellen {
    padding: clamp(2rem, 4vw, 3rem) 0;
  }
}

@media (max-width: 480px) {
  .hero-section-merkrichtlijnen-opstellen {
    padding: 2rem 0;
  }

  .breadcrumbs-merkrichtlijnen-opstellen {
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .intro-section-merkrichtlijnen-opstellen,
  .structure-section-merkrichtlijnen-opstellen,
  .practical-section-merkrichtlijnen-opstellen,
  .implementation-section-merkrichtlijnen-opstellen,
  .tools-section-merkrichtlijnen-opstellen,
  .conclusion-section-merkrichtlijnen-opstellen,
  .related-section-merkrichtlijnen-opstellen {
    padding: 2rem 0;
  }

  .step-card-merkrichtlijnen-opstellen {
    flex-direction: column;
    text-align: center;
  }

  .step-number-merkrichtlijnen-opstellen {
    min-width: auto;
  }
}

.main-cross-platform-consistentie {
  width: 100%;
  overflow-x: hidden;
}

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

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

.breadcrumbs-cross-platform-consistentie {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.breadcrumbs-cross-platform-consistentie a {
  color: #00d9ff;
  text-decoration: none;
  transition: color 300ms ease;
}

.breadcrumbs-cross-platform-consistentie a:hover {
  color: #00b8d4;
}

.breadcrumbs-cross-platform-consistentie span {
  color: #64748b;
}

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

.hero-text-wrapper-cross-platform-consistentie {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-cross-platform-consistentie {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-cross-platform-consistentie {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #94a3b8;
  margin-bottom: 2rem;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-meta-cross-platform-consistentie {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.meta-item-cross-platform-consistentie {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #64748b;
}

.meta-item-cross-platform-consistentie i {
  color: #00d9ff;
  font-size: 1.1rem;
}

.hero-image-wrapper-cross-platform-consistentie {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-cross-platform-consistentie {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  max-height: 500px;
  object-fit: cover;
}

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

  .hero-text-wrapper-cross-platform-consistentie,
  .hero-image-wrapper-cross-platform-consistentie {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-meta-cross-platform-consistentie {
    gap: 1rem;
  }
}

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

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

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

.intro-text-block-cross-platform-consistentie {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-cross-platform-consistentie {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-text-cross-platform-consistentie {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-image-block-cross-platform-consistentie {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-cross-platform-consistentie {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  max-height: 400px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

  .intro-text-block-cross-platform-consistentie,
  .intro-image-block-cross-platform-consistentie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.strategy-section-cross-platform-consistentie {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.strategy-text-block-cross-platform-consistentie {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategy-title-cross-platform-consistentie {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.strategy-text-cross-platform-consistentie {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.highlight-box-cross-platform-consistentie {
  background: #ffffff;
  border-left: 4px solid #2563eb;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.highlight-text-cross-platform-consistentie {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: #334155;
  margin: 0;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.strategy-image-block-cross-platform-consistentie {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategy-image-cross-platform-consistentie {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  max-height: 400px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .strategy-content-cross-platform-consistentie {
    flex-direction: column;
    gap: 2rem;
  }

  .strategy-text-block-cross-platform-consistentie,
  .strategy-image-block-cross-platform-consistentie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.technical-content-cross-platform-consistentie {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.technical-image-block-cross-platform-consistentie {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.technical-image-cross-platform-consistentie {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  max-height: 400px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.technical-text-block-cross-platform-consistentie {
  flex: 1 1 50%;
  max-width: 50%;
}

.technical-title-cross-platform-consistentie {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.technical-text-cross-platform-consistentie {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.steps-list-cross-platform-consistentie {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
}

.step-item-cross-platform-consistentie {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-number-cross-platform-consistentie {
  font-size: 2.5rem;
  font-weight: 800;
  color: #00d9ff;
  min-width: 60px;
  text-align: center;
  line-height: 1;
}

.step-info-cross-platform-consistentie {
  flex: 1;
}

.step-title-cross-platform-consistentie {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.step-description-cross-platform-consistentie {
  font-size: 0.95rem;
  color: #475569;
  margin: 0;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .technical-content-cross-platform-consistentie {
    flex-direction: column;
    gap: 2rem;
  }

  .technical-text-block-cross-platform-consistentie,
  .technical-image-block-cross-platform-consistentie {
    flex: 1 1 100%;
    max-width: 100%;
    order: initial;
  }
}

.assets-section-cross-platform-consistentie {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.assets-content-cross-platform-consistentie {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.assets-text-block-cross-platform-consistentie {
  flex: 1 1 50%;
  max-width: 50%;
}

.assets-title-cross-platform-consistentie {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.assets-text-cross-platform-consistentie {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.features-grid-cross-platform-consistentie {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature-card-cross-platform-consistentie {
  flex: 1 1 calc(50% - 0.75rem);
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.feature-card-cross-platform-consistentie:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.feature-icon-cross-platform-consistentie {
  font-size: 2rem;
  color: #00d9ff;
}

.feature-title-cross-platform-consistentie {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.feature-text-cross-platform-consistentie {
  font-size: 0.9rem;
  color: #475569;
  margin: 0;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.assets-image-block-cross-platform-consistentie {
  flex: 1 1 50%;
  max-width: 50%;
}

.assets-image-cross-platform-consistentie {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  max-height: 400px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .assets-content-cross-platform-consistentie {
    flex-direction: column;
    gap: 2rem;
  }

  .assets-text-block-cross-platform-consistentie,
  .assets-image-block-cross-platform-consistentie {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .feature-card-cross-platform-consistentie {
    flex: 1 1 100%;
  }
}

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

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

.implementation-content-cross-platform-consistentie {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.implementation-title-cross-platform-consistentie {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  text-align: center;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.implementation-grid-cross-platform-consistentie {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.implementation-card-cross-platform-consistentie {
  flex: 1 1 calc(50% - 1rem);
  min-width: 280px;
  max-width: 380px;
  background: #f8fafc;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.implementation-card-cross-platform-consistentie:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card-title-cross-platform-consistentie {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-description-cross-platform-consistentie {
  font-size: 0.95rem;
  color: #475569;
  margin: 0;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .implementation-grid-cross-platform-consistentie {
    flex-direction: column;
    gap: 1.5rem;
  }

  .implementation-card-cross-platform-consistentie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.testing-section-cross-platform-consistentie {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.testing-text-block-cross-platform-consistentie {
  flex: 1 1 50%;
  max-width: 50%;
}

.testing-title-cross-platform-consistentie {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.testing-text-cross-platform-consistentie {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.quote-section-cross-platform-consistentie {
  background: #ffffff;
  padding: 2rem;
  border-left: 4px solid #ff6b35;
  border-radius: 8px;
  margin: 2rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.quote-text-cross-platform-consistentie {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #334155;
  font-style: italic;
  margin: 0;
  line-height: 1.8;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.testing-image-block-cross-platform-consistentie {
  flex: 1 1 50%;
  max-width: 50%;
}

.testing-image-cross-platform-consistentie {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  max-height: 400px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .testing-content-cross-platform-consistentie {
    flex-direction: column;
    gap: 2rem;
  }

  .testing-text-block-cross-platform-consistentie,
  .testing-image-block-cross-platform-consistentie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.conclusion-content-cross-platform-consistentie {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.conclusion-title-cross-platform-consistentie {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-text-cross-platform-consistentie {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #94a3b8;
  line-height: 1.7;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-section-cross-platform-consistentie {
  background: rgba(0, 217, 255, 0.1);
  border: 1px solid rgba(0, 217, 255, 0.3);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.cta-title-cross-platform-consistentie {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-text-cross-platform-consistentie {
  font-size: 0.95rem;
  color: #94a3b8;
  margin: 0;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-button-cross-platform-consistentie {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  background: #00d9ff;
  color: #0a0f1e;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 300ms ease;
  box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3);
}

.cta-button-cross-platform-consistentie:hover {
  background: #00b8d4;
  box-shadow: 0 6px 20px rgba(0, 217, 255, 0.4);
  transform: translateY(-2px);
}

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

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

.related-content-cross-platform-consistentie {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.related-title-cross-platform-consistentie {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-cards-cross-platform-consistentie {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.related-card-cross-platform-consistentie {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform 300ms ease, box-shadow 300ms ease;
  border: 1px solid #e2e8f0;
}

.related-card-cross-platform-consistentie:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.related-card-image-cross-platform-consistentie {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.related-card-content-cross-platform-consistentie {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.related-card-title-cross-platform-consistentie {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-text-cross-platform-consistentie {
  font-size: 0.9rem;
  color: #475569;
  margin: 0;
  line-height: 1.6;
  flex: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-link-cross-platform-consistentie {
  display: inline-flex;
  color: #00d9ff;
  font-weight: 600;
  text-decoration: none;
  transition: color 300ms ease;
  align-self: flex-start;
}

.related-card-link-cross-platform-consistentie:hover {
  color: #00b8d4;
}

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

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

.disclaimer-section-cross-platform-consistentie {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

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

.disclaimer-content-cross-platform-consistentie {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-cross-platform-consistentie {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-text-cross-platform-consistentie {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #475569;
  line-height: 1.7;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  section {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }
}

.main-team-training-merktoepassing {
  width: 100%;
  overflow: hidden;
}

.hero-section-team-training-merktoepassing {
  background: linear-gradient(135deg, #0a0f1e 0%, #0f1929 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.hero-text-team-training-merktoepassing {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-team-training-merktoepassing {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--space-md);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-subtitle-team-training-merktoepassing {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.hero-meta-team-training-merktoepassing {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
  margin-top: var(--space-lg);
}

.meta-item-team-training-merktoepassing {
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
}

.meta-divider-team-training-merktoepassing {
  color: #475569;
  opacity: 0.6;
}

.hero-image-team-training-merktoepassing {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-team-training-merktoepassing {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.breadcrumbs-team-training-merktoepassing {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  font-size: 0.875rem;
}

.breadcrumbs-team-training-merktoepassing a {
  color: #00d9ff;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumbs-team-training-merktoepassing a:hover {
  color: #00b8d4;
}

.breadcrumbs-team-training-merktoepassing span {
  color: #475569;
}

.breadcrumbs-team-training-merktoepassing span:last-child {
  color: #cbd5e1;
}

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

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

.intro-text-team-training-merktoepassing {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-team-training-merktoepassing {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.intro-paragraph-team-training-merktoepassing {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.intro-image-team-training-merktoepassing {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-team-training-merktoepassing {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

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

.foundation-title-team-training-merktoepassing {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.foundation-grid-team-training-merktoepassing {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.foundation-item-team-training-merktoepassing {
  flex: 1 1 280px;
  max-width: 380px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.foundation-item-team-training-merktoepassing:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.item-number-team-training-merktoepassing {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #00d9ff;
  line-height: 1;
}

.item-title-team-training-merktoepassing {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
}

.item-text-team-training-merktoepassing {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.foundation-image-team-training-merktoepassing {
  width: 100%;
  margin-top: var(--space-lg);
}

.foundation-img-team-training-merktoepassing {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.training-content-team-training-merktoepassing {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.training-text-team-training-merktoepassing {
  flex: 1 1 50%;
  max-width: 50%;
}

.training-title-team-training-merktoepassing {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.training-steps-team-training-merktoepassing {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.step-block-team-training-merktoepassing {
  border-left: 4px solid #00d9ff;
  padding-left: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.step-header-team-training-merktoepassing {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.step-number-team-training-merktoepassing {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: #00d9ff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.step-title-team-training-merktoepassing {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  line-height: 1.3;
}

.step-text-team-training-merktoepassing {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

.training-image-team-training-merktoepassing {
  flex: 1 1 50%;
  max-width: 50%;
}

.training-img-team-training-merktoepassing {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.platforms-content-team-training-merktoepassing {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.platforms-title-team-training-merktoepassing {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.platforms-wrapper-team-training-merktoepassing {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.platforms-text-team-training-merktoepassing {
  flex: 1 1 50%;
  max-width: 50%;
}

.platforms-paragraph-team-training-merktoepassing {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.platforms-callout-team-training-merktoepassing {
  background: #e0f2fe;
  border-left: 4px solid #00d9ff;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-top: var(--space-lg);
}

.callout-text-team-training-merktoepassing {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #0c4a6e;
  line-height: 1.6;
  margin: 0;
}

.platforms-image-team-training-merktoepassing {
  flex: 1 1 50%;
  max-width: 50%;
}

.platforms-img-team-training-merktoepassing {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.maintenance-section-team-training-merktoepassing {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.maintenance-text-team-training-merktoepassing {
  flex: 1 1 50%;
  max-width: 50%;
}

.maintenance-title-team-training-merktoepassing {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.maintenance-paragraph-team-training-merktoepassing {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.maintenance-image-team-training-merktoepassing {
  flex: 1 1 50%;
  max-width: 50%;
}

.maintenance-img-team-training-merktoepassing {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.closing-section-team-training-merktoepassing {
  background: linear-gradient(135deg, #0a0f1e 0%, #0f1929 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.closing-content-team-training-merktoepassing {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.closing-title-team-training-merktoepassing {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  line-height: 1.2;
}

.closing-paragraph-team-training-merktoepassing {
  font-size: clamp(0.95rem, 1.3vw, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  text-align: center;
}

.closing-cta-team-training-merktoepassing {
  display: flex;
  justify-content: center;
  margin-top: var(--space-lg);
}

.cta-link-team-training-merktoepassing {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  font-size: 1rem;
  font-weight: 600;
  color: #00d9ff;
  border: 2px solid #00d9ff;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.cta-link-team-training-merktoepassing:hover {
  background: #00d9ff;
  color: #0a0f1e;
  transform: translateY(-2px);
}

.related-section-team-training-merktoepassing {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.related-title-team-training-merktoepassing {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

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

.related-card-team-training-merktoepassing {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all var(--transition-normal);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.related-card-team-training-merktoepassing:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.related-image-team-training-merktoepassing {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-img-team-training-merktoepassing {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.related-card-team-training-merktoepassing:hover .related-card-img-team-training-merktoepassing {
  transform: scale(1.05);
}

.related-text-team-training-merktoepassing {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.related-card-title-team-training-merktoepassing {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
  margin: 0;
}

.related-card-desc-team-training-merktoepassing {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.disclaimer-section-team-training-merktoepassing {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-team-training-merktoepassing {
  max-width: 900px;
  margin: 0 auto;
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #00d9ff;
  border-radius: var(--radius-md);
}

.disclaimer-title-team-training-merktoepassing {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.disclaimer-text-team-training-merktoepassing {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-content-team-training-merktoepassing,
  .intro-content-team-training-merktoepassing,
  .training-content-team-training-merktoepassing,
  .platforms-wrapper-team-training-merktoepassing,
  .maintenance-content-team-training-merktoepassing {
    flex-direction: column;
  }

  .hero-text-team-training-merktoepassing,
  .intro-text-team-training-merktoepassing,
  .training-text-team-training-merktoepassing,
  .platforms-text-team-training-merktoepassing,
  .maintenance-text-team-training-merktoepassing,
  .hero-image-team-training-merktoepassing,
  .intro-image-team-training-merktoepassing,
  .training-image-team-training-merktoepassing,
  .platforms-image-team-training-merktoepassing,
  .maintenance-image-team-training-merktoepassing {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .foundation-grid-team-training-merktoepassing {
    flex-direction: column;
  }

  .foundation-item-team-training-merktoepassing {
    flex: 1 1 100%;
  }

  .breadcrumbs-team-training-merktoepassing {
    font-size: 0.75rem;
    gap: var(--space-xs);
  }

  .hero-meta-team-training-merktoepassing {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }
}

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

  .hero-section-team-training-merktoepassing,
  .intro-section-team-training-merktoepassing,
  .foundation-section-team-training-merktoepassing,
  .training-section-team-training-merktoepassing,
  .platforms-section-team-training-merktoepassing,
  .maintenance-section-team-training-merktoepassing,
  .closing-section-team-training-merktoepassing,
  .related-section-team-training-merktoepassing,
  .disclaimer-section-team-training-merktoepassing {
    padding: var(--space-2xl) 0;
  }

  .related-card-team-training-merktoepassing {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.main-digitale-merkassets-beheren {
  width: 100%;
  overflow: hidden;
}

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

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

.breadcrumbs-digitale-merkassets-beheren {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs-digitale-merkassets-beheren a {
  color: #00d9ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-digitale-merkassets-beheren a:hover {
  color: #00b8d4;
  text-decoration: underline;
}

.breadcrumbs-digitale-merkassets-beheren span {
  color: #64748b;
}

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

.hero-text-block-digitale-merkassets-beheren {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-digitale-merkassets-beheren {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: 'Syne', sans-serif;
  letter-spacing: -0.02em;
}

.hero-subtitle-digitale-merkassets-beheren {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-meta-digitale-merkassets-beheren {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: #64748b;
}

.meta-item-digitale-merkassets-beheren {
  color: #64748b;
}

.meta-divider-digitale-merkassets-beheren {
  color: #475569;
}

.hero-image-block-digitale-merkassets-beheren {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

  .hero-text-block-digitale-merkassets-beheren,
  .hero-image-block-digitale-merkassets-beheren {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-title-digitale-merkassets-beheren {
    font-size: 2rem;
  }
}

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

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

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

.intro-text-digitale-merkassets-beheren {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-digitale-merkassets-beheren {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: 'Syne', sans-serif;
  letter-spacing: -0.02em;
}

.intro-paragraph-digitale-merkassets-beheren {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.intro-image-digitale-merkassets-beheren {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-img-digitale-merkassets-beheren {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .intro-content-digitale-merkassets-beheren {
    flex-direction: column;
  }

  .intro-text-digitale-merkassets-beheren,
  .intro-image-digitale-merkassets-beheren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.systems-section-digitale-merkassets-beheren {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.systems-content-digitale-merkassets-beheren {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.systems-text-digitale-merkassets-beheren {
  flex: 1 1 50%;
  max-width: 50%;
}

.systems-title-digitale-merkassets-beheren {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: 'Syne', sans-serif;
  letter-spacing: -0.02em;
}

.systems-paragraph-digitale-merkassets-beheren {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.systems-list-digitale-merkassets-beheren {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.list-item-digitale-merkassets-beheren {
  padding: 0;
}

.list-title-digitale-merkassets-beheren {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
  font-family: 'Syne', sans-serif;
}

.list-text-digitale-merkassets-beheren {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

.systems-image-digitale-merkassets-beheren {
  flex: 1 1 50%;
  max-width: 50%;
}

.systems-image-img-digitale-merkassets-beheren {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .systems-content-digitale-merkassets-beheren {
    flex-direction: column;
  }

  .systems-text-digitale-merkassets-beheren,
  .systems-image-digitale-merkassets-beheren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.tools-header-digitale-merkassets-beheren {
  text-align: center;
  margin-bottom: 3rem;
}

.tools-title-digitale-merkassets-beheren {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: 'Syne', sans-serif;
  letter-spacing: -0.02em;
}

.tools-subtitle-digitale-merkassets-beheren {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #64748b;
  line-height: 1.6;
}

.tools-grid-digitale-merkassets-beheren {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.tool-card-digitale-merkassets-beheren {
  flex: 1 1 300px;
  max-width: 380px;
  background: #f8fafc;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.tool-card-digitale-merkassets-beheren:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.tool-card-title-digitale-merkassets-beheren {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
  font-family: 'Syne', sans-serif;
}

.tool-card-text-digitale-merkassets-beheren {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

.implementation-section-digitale-merkassets-beheren {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.implementation-image-digitale-merkassets-beheren {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-image-img-digitale-merkassets-beheren {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.implementation-text-digitale-merkassets-beheren {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-title-digitale-merkassets-beheren {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: 2rem;
  font-family: 'Syne', sans-serif;
  letter-spacing: -0.02em;
}

.implementation-steps-digitale-merkassets-beheren {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step-block-digitale-merkassets-beheren {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}

.step-number-digitale-merkassets-beheren {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #00d9ff;
  font-family: 'Syne', sans-serif;
  min-width: 80px;
  line-height: 1;
}

.step-content-digitale-merkassets-beheren {
  flex: 1;
}

.step-title-digitale-merkassets-beheren {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
  font-family: 'Syne', sans-serif;
}

.step-text-digitale-merkassets-beheren {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .implementation-content-digitale-merkassets-beheren {
    flex-direction: column;
  }

  .implementation-image-digitale-merkassets-beheren,
  .implementation-text-digitale-merkassets-beheren {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-block-digitale-merkassets-beheren {
    gap: 1rem;
  }

  .step-number-digitale-merkassets-beheren {
    min-width: 60px;
    font-size: 2rem;
  }
}

.best-practices-section-digitale-merkassets-beheren {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.best-practices-header-digitale-merkassets-beheren {
  text-align: center;
  margin-bottom: 3rem;
}

.best-practices-title-digitale-merkassets-beheren {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: 'Syne', sans-serif;
  letter-spacing: -0.02em;
}

.best-practices-subtitle-digitale-merkassets-beheren {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #64748b;
  line-height: 1.6;
}

.practices-cards-digitale-merkassets-beheren {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.practice-card-digitale-merkassets-beheren {
  flex: 1 1 280px;
  max-width: 340px;
  background: #f8fafc;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.practice-card-digitale-merkassets-beheren:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.practice-card-title-digitale-merkassets-beheren {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
  font-family: 'Syne', sans-serif;
}

.practice-card-text-digitale-merkassets-beheren {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
}

.quote-section-digitale-merkassets-beheren {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.featured-quote-digitale-merkassets-beheren {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #00d9ff;
  padding: 2.5rem;
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
}

.quote-text-digitale-merkassets-beheren {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-family: 'Syne', sans-serif;
}

.quote-author-digitale-merkassets-beheren {
  font-size: 0.95rem;
  color: #94a3b8;
  display: block;
}

.sharing-section-digitale-merkassets-beheren {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.sharing-content-digitale-merkassets-beheren {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.sharing-text-digitale-merkassets-beheren {
  flex: 1 1 50%;
  max-width: 50%;
}

.sharing-title-digitale-merkassets-beheren {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: 'Syne', sans-serif;
  letter-spacing: -0.02em;
}

.sharing-paragraph-digitale-merkassets-beheren {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.sharing-image-digitale-merkassets-beheren {
  flex: 1 1 50%;
  max-width: 50%;
}

.sharing-image-img-digitale-merkassets-beheren {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .sharing-content-digitale-merkassets-beheren {
    flex-direction: column;
  }

  .sharing-text-digitale-merkassets-beheren,
  .sharing-image-digitale-merkassets-beheren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-digitale-merkassets-beheren {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.conclusion-content-digitale-merkassets-beheren {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-digitale-merkassets-beheren {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: 2rem;
  font-family: 'Syne', sans-serif;
  letter-spacing: -0.02em;
}

.conclusion-paragraph-digitale-merkassets-beheren {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  text-align: left;
}

.conclusion-cta-digitale-merkassets-beheren {
  margin-top: 2.5rem;
  text-align: center;
}

.btn-conclusion-digitale-merkassets-beheren {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: #00d9ff;
  color: #0a0f1e;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-conclusion-digitale-merkassets-beheren:hover {
  background: #00b8d4;
  transform: translateY(-2px);
}

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

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

.related-header-digitale-merkassets-beheren {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-digitale-merkassets-beheren {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: 'Syne', sans-serif;
  letter-spacing: -0.02em;
}

.related-subtitle-digitale-merkassets-beheren {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #64748b;
  line-height: 1.6;
}

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

.related-card-digitale-merkassets-beheren {
  flex: 1 1 300px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-digitale-merkassets-beheren:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-6px);
}

.related-card-image-digitale-merkassets-beheren {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-img-digitale-merkassets-beheren {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-title-digitale-merkassets-beheren {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  padding: 1.5rem 1.5rem 0.75rem;
  font-family: 'Syne', sans-serif;
}

.related-card-text-digitale-merkassets-beheren {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  padding: 0 1.5rem 1.5rem;
}

.disclaimer-section-digitale-merkassets-beheren {
  background: #f8fafc;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.disclaimer-content-digitale-merkassets-beheren {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #00d9ff;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-digitale-merkassets-beheren {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
  font-family: 'Syne', sans-serif;
}

.disclaimer-text-digitale-merkassets-beheren {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .disclaimer-content-digitale-merkassets-beheren {
    padding: 1.5rem;
  }

  .disclaimer-title-digitale-merkassets-beheren {
    font-size: 1.1rem;
  }

  .disclaimer-text-digitale-merkassets-beheren {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-content-digitale-merkassets-beheren,
  .intro-content-digitale-merkassets-beheren,
  .systems-content-digitale-merkassets-beheren,
  .implementation-content-digitale-merkassets-beheren,
  .sharing-content-digitale-merkassets-beheren {
    flex-direction: column;
  }

  .hero-text-block-digitale-merkassets-beheren,
  .hero-image-block-digitale-merkassets-beheren,
  .intro-text-digitale-merkassets-beheren,
  .intro-image-digitale-merkassets-beheren,
  .systems-text-digitale-merkassets-beheren,
  .systems-image-digitale-merkassets-beheren,
  .implementation-image-digitale-merkassets-beheren,
  .implementation-text-digitale-merkassets-beheren,
  .sharing-text-digitale-merkassets-beheren,
  .sharing-image-digitale-merkassets-beheren {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .breadcrumbs-digitale-merkassets-beheren {
    font-size: 0.75rem;
  }

  .tools-grid-digitale-merkassets-beheren,
  .practices-cards-digitale-merkassets-beheren {
    gap: 1rem;
  }

  .tool-card-digitale-merkassets-beheren,
  .practice-card-digitale-merkassets-beheren {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-block-digitale-merkassets-beheren {
    flex-direction: column;
  }

  .step-number-digitale-merkassets-beheren {
    min-width: auto;
  }

  .featured-quote-digitale-merkassets-beheren {
    padding: 1.5rem;
  }

  .quote-text-digitale-merkassets-beheren {
    font-size: 1.1rem;
  }

  .related-card-digitale-merkassets-beheren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

:root {
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f8fafc;
  --color-bg-tertiary: #f1f5f9;
  --color-text-dark: #1e293b;
  --color-text-secondary: #64748b;
  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --font-heading: 'Syne', sans-serif;
  --font-primary: 'Outfit', sans-serif;
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --radius-lg: 12px;
  --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

.brand-identity-about {
  background: var(--color-bg-primary);
  overflow: hidden;
}

.hero-section-about {
  background: linear-gradient(135deg, var(--color-primary), #1e40af);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.hero-text-about {
  text-align: center;
  max-width: 800px;
}

.hero-title-about {
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.hero-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  color: #e0e7ff;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-visual-about {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

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

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

.stat-number-about {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #ffffff;
  font-family: var(--font-heading);
}

.stat-label-about {
  font-size: 0.875rem;
  color: #e0e7ff;
  text-align: center;
}

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

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

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

.section-tag-about {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.section-title-about {
  font-size: clamp(1.75rem, 5vw + 0.25rem, 2.75rem);
  color: var(--color-text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle-about {
  font-size: clamp(0.95rem, 1.5vw + 0.25rem, 1.1rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.approach-text-about {
  flex: 1 1 45%;
  min-width: 0;
}

.approach-text-about p {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  color: var(--color-text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.approach-text-about p:first-of-type {
  font-weight: 500;
  color: var(--color-text-dark);
}

.approach-image-about {
  flex: 1 1 45%;
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

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

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

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

.consistency-header-about .section-title-about {
  color: var(--color-text-dark);
}

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

.consistency-card-about {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 250px;
  max-width: 350px;
  background: var(--color-bg-secondary);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.consistency-card-about:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.card-icon-about {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 8px;
  font-size: 1.75rem;
  color: var(--color-primary);
}

.card-title-about {
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  color: var(--color-text-dark);
  font-weight: 600;
}

.card-text-about {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

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

.platform-header-about {
  text-align: center;
  margin-bottom: 1rem;
}

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

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

.step-number-about {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
  flex-shrink: 0;
  min-width: 80px;
  line-height: 1;
}

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

.step-title-about {
  font-size: clamp(1.1rem, 2vw + 0.3rem, 1.4rem);
  color: var(--color-text-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.step-text-about {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

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

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

.story-header-about p {
  font-size: clamp(0.95rem, 1.5vw + 0.25rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.story-visual-about {
  width: 100%;
  max-width: 700px;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: block;
}

.story-visual-about img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.featured-quote-about {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.quote-text-about {
  font-size: clamp(1rem, 1.5vw + 0.25rem, 1.2rem);
  color: var(--color-text-dark);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.quote-author-about {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  font-style: normal;
  display: block;
}

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

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

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

.expertise-item-about {
  flex: 1 1 calc(50% - 1rem);
  min-width: 240px;
  max-width: 420px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-primary);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
}

.expertise-item-about:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.expertise-item-title-about {
  font-size: clamp(1.05rem, 2vw + 0.25rem, 1.3rem);
  color: var(--color-text-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.expertise-item-text-about {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.disclaimer-section-about {
  background: #f0f9ff;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #bfdbfe;
}

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

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

.disclaimer-icon-about {
  font-size: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.disclaimer-title-about {
  font-size: clamp(1.1rem, 2vw + 0.3rem, 1.35rem);
  color: var(--color-text-dark);
  font-weight: 600;
}

.disclaimer-text-about {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.disclaimer-text-about p {
  margin-bottom: 0.75rem;
}

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

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

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

  .approach-image-about {
    min-height: 250px;
  }

  .consistency-card-about {
    flex: 1 1 100%;
  }

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

  .step-number-about {
    font-size: 2.5rem;
    min-width: 60px;
  }

  .expertise-item-about {
    flex: 1 1 100%;
  }

  .hero-stats-about {
    gap: 1.5rem;
  }

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

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

@media (max-width: 480px) {
  .consistency-cards-about {
    gap: 1rem;
  }

  .consistency-card-about {
    flex: 1 1 100%;
    min-width: auto;
  }

  .step-number-about {
    font-size: 2rem;
    min-width: 50px;
  }

  .featured-quote-about {
    padding: 1.5rem;
  }

  .quote-text-about {
    font-size: 0.95rem;
  }
}

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

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

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

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

.portfolio-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-light);
  line-height: var(--line-height-tight);
  margin: 0;
}

.portfolio-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw + 0.3rem, 1.25rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-normal);
  margin: 0;
  max-width: 600px;
}

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

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

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

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

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

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

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

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

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

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

.portfolio-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  background-color: transparent;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.portfolio-card:hover {
  transform: translateY(-4px);
}

.portfolio-card__image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

@media (min-width: 768px) {
  .portfolio-card__image {
    height: 320px;
  }
}

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

.portfolio-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.portfolio-card__category {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
  background-color: rgba(0, 217, 255, 0.1);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

.portfolio-card__detail {
  font-family: var(--font-primary);
  font-size: 0.8125rem;
  color: var(--color-text-secondary-light);
  font-weight: 500;
}

.portfolio-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw + 0.2rem, 1.35rem);
  font-weight: 700;
  color: var(--color-text-light);
  line-height: var(--line-height-tight);
  margin: 0;
}

.portfolio-card__description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.2rem, 1rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-normal);
  margin: 0;
}

.portfolio-cta {
  background-color: var(--color-bg-accent);
  padding: var(--space-2xl) var(--space-lg);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.portfolio-cta__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: flex-start;
}

.portfolio-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.3rem, 2.25rem);
  font-weight: 700;
  color: var(--color-text-light);
  line-height: var(--line-height-tight);
  margin: 0;
}

.portfolio-cta__text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw + 0.2rem, 1.1rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-normal);
  margin: 0;
  max-width: 550px;
}

.portfolio-cta__button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.3rem, 1.05rem);
  font-weight: 600;
  color: var(--color-text-dark);
  background-color: var(--color-primary);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
  border: none;
  cursor: pointer;
}

.portfolio-cta__button:hover {
  background-color: var(--color-primary-hover);
  transform: translateX(4px);
}

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

.portfolio-cta__button-text {
  display: inline;
}

.portfolio-cta__button-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

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

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

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

@media (prefers-reduced-motion: reduce) {
  .portfolio-card {
    transition: none;
  }

  .portfolio-card:hover {
    transform: none;
  }

  .portfolio-cta__button {
    transition: none;
  }

  .portfolio-cta__button:hover {
    transform: none;
  }
}

.services-page {
  width: 100%;
  overflow: hidden;
}

.services-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-hero__container {
  max-width: 800px;
  text-align: center;
}

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

.services-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary-light);
  margin: 0;
  line-height: var(--line-height-normal);
  font-weight: 400;
}

.services-content {
  background-color: var(--color-bg-secondary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
}

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

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

.service-card {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

.service-card__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent-cool));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--color-text-dark);
  margin: 0 0 var(--space-md) 0;
  font-weight: 600;
  line-height: var(--line-height-tight);
}

.service-card__text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1rem);
  color: var(--color-text-secondary-dark);
  margin: 0 0 var(--space-lg) 0;
  line-height: var(--line-height-relaxed);
  flex-grow: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transition-fast);
  width: fit-content;
}

.service-card__link:hover {
  color: var(--color-primary-hover);
  transform: translateX(4px);
}

.service-card__link i {
  font-size: 0.75rem;
  transition: transform var(--transition-fast);
}

.service-card__link:hover i {
  transform: translateX(3px);
}

.services-cta {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
}

.services-cta__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.services-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-light);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.services-cta__text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary-light);
  margin: 0 0 var(--space-xl) 0;
  line-height: var(--line-height-normal);
}

.services-cta__button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-normal);
  border: 2px solid var(--color-primary);
  cursor: pointer;
}

.services-cta__button:hover {
  background-color: transparent;
  color: var(--color-primary);
  transform: translateY(-2px);
}

.services-images {
  background-color: var(--color-bg-secondary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
}

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

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

.services-image {
  margin: 0;
  padding: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

.services-image:hover {
  transform: scale(1.02);
}

.services-image__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

  .services-content {
    padding: var(--space-4xl) var(--space-lg);
  }

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

  .services-cta {
    padding: var(--space-4xl) var(--space-lg);
  }

  .services-images {
    padding: var(--space-4xl) var(--space-lg);
  }

  .services-images__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
}

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

  .services-content {
    padding: var(--space-4xl) var(--space-xl);
  }

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

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

  .services-cta {
    padding: var(--space-4xl) var(--space-xl);
  }

  .services-images {
    padding: var(--space-4xl) var(--space-xl);
  }

  .services-images__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }
}

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

  .services-content {
    padding: var(--space-4xl) 2rem;
  }

  .services-cta {
    padding: var(--space-4xl) 2rem;
  }

  .services-images {
    padding: var(--space-4xl) 2rem;
  }

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

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

.brand-legal {
  background-color: var(--color-bg-secondary);
  color: var(--color-text-dark);
  font-family: var(--font-primary);
}

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

.brand-legal .content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-2xl) 0;
}

.brand-legal h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-dark);
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-tight);
}

.brand-legal .updated {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary-dark);
  margin-bottom: var(--space-2xl);
  display: block;
}

.brand-legal h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-dark);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.brand-legal p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-dark);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.brand-legal ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: var(--space-md);
}

.brand-legal li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-dark);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-sm);
  padding-left: var(--space-lg);
  position: relative;
}

.brand-legal li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 600;
}

.brand-legal .contact-section {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--space-3xl);
}

.brand-legal .contact-section h2 {
  margin-top: 0;
  color: var(--color-text-dark);
}

.brand-legal .contact-section p {
  margin-bottom: var(--space-md);
  color: var(--color-text-dark);
}

.brand-legal .contact-section strong {
  color: var(--color-text-dark);
  font-weight: 600;
}

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

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

  .brand-legal .content {
    padding: var(--space-4xl) 0;
  }
}

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

html,
body {
  width: 100%;
  height: 100%;
}

body {
  background-color: var(--color-bg-primary);
  color: var(--color-text-dark);
  font-family: var(--font-primary);
  line-height: var(--line-height-normal);
}

.thank-you-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-section {
  width: 100%;
  padding: var(--space-lg) var(--space-md);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

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

.content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.thank-wrapper {
  text-align: center;
  padding: var(--space-xl) 0;
}

.success-icon {
  width: clamp(3rem, 8vw, 5rem);
  height: clamp(3rem, 8vw, 5rem);
  margin: 0 auto var(--space-lg);
  color: var(--color-primary);
  animation: iconFloat 3s ease-in-out infinite;
}

.success-icon svg {
  width: 100%;
  height: 100%;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.thank-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-family: var(--font-heading);
  color: var(--color-text-light);
  font-weight: 700;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.thank-lead {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.thank-message {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-xl);
  padding: 0 var(--space-md);
}

.thank-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  padding: var(--space-xl);
  background-color: var(--color-bg-card-dark);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 217, 255, 0.1);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-light);
}

.highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  background-color: rgba(0, 217, 255, 0.15);
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.highlight-text {
  font-weight: 500;
}

.btn-home {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  font-weight: 600;
  transition: all var(--transition-normal);
  border: 2px solid var(--color-primary);
  cursor: pointer;
}

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

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

@media (min-width: 640px) {
  .thank-section {
    padding: var(--space-2xl) var(--space-md);
  }

  .thank-wrapper {
    padding: var(--space-2xl) 0;
  }

  .thank-message {
    padding: 0;
  }

  .thank-highlights {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .highlight-item {
    flex: 0 1 auto;
  }
}

@media (min-width: 768px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-md);
  }

  .thank-wrapper {
    padding: var(--space-3xl) 0;
  }

  .thank-highlights {
    padding: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--space-4xl) var(--space-md);
  }

  .thank-wrapper {
    padding: var(--space-4xl) 0;
  }

  .btn-home {
    padding: var(--space-md) var(--space-2xl);
  }
}

@media (prefers-reduced-motion: reduce) {
  .success-icon {
    animation: none;
  }

  .btn-home {
    transition: none;
  }
}

:root {
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f8fafc;
  --color-bg-card-dark: rgba(255, 255, 255, 0.05);
  --color-bg-card-light: #ffffff;
  --color-bg-accent: #1e293b;
  --color-text-light: #ffffff;
  --color-text-dark: #1e293b;
  --color-text-secondary-light: #94a3b8;
  --color-text-secondary-dark: #64748b;
  --color-text-muted: #9ca3af;
  --color-primary: #00d9ff;
  --color-primary-hover: #00b8d4;
  --color-secondary: #ff6b35;
  --color-secondary-hover: #e55a28;
  --color-accent-warm: #f97316;
  --color-accent-cool: #06b6d4;
  --font-heading: 'Syne', sans-serif;
  --font-primary: 'Outfit', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  --shadow-dark: 0 8px 32px rgba(0, 0, 0, 0.3);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
}

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

html, body {
  width: 100%;
  height: 100%;
}

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

.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-accent) 100%);
  position: relative;
  overflow: hidden;
}

.error-page::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
  opacity: 0.08;
  border-radius: 50%;
  pointer-events: none;
}

.error-page::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--color-accent-cool) 0%, transparent 70%);
  opacity: 0.06;
  border-radius: 50%;
  pointer-events: none;
}

.error-section {
  width: 100%;
  padding: var(--space-lg) var(--space-sm);
  position: relative;
  z-index: 1;
}

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

.content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.error-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.error-visual {
  width: 100%;
  margin-bottom: var(--space-lg);
}

.error-code-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  color: var(--color-primary);
  text-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
  margin: 0;
  padding: var(--space-lg) 0;
  animation: pulse 3s ease-in-out infinite;
}

.error-decoration {
  height: 4px;
  width: 80px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent-cool), var(--color-secondary));
  border-radius: var(--radius-2xl);
  margin: var(--space-lg) auto 0;
  animation: slideIn 0.8s ease-out 0.2s both;
}

.error-message {
  width: 100%;
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.error-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-xl);
  padding: 0 var(--space-sm);
}

.error-content-box {
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
  backdrop-filter: blur(10px);
}

.error-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.error-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  text-align: left;
}

.error-list li {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-normal);
  padding-left: var(--space-lg);
  position: relative;
}

.error-list li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-accent-cool);
  font-weight: bold;
}

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-2xl);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  border-color: var(--color-primary);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
  transform: translateY(-2px);
}

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

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

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

@keyframes slideIn {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 80px;
    opacity: 1;
  }
}

@media (min-width: 640px) {
  .error-section {
    padding: var(--space-2xl) var(--space-lg);
  }

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

  .error-content-box {
    padding: var(--space-xl);
  }

  .error-list li {
    padding-left: var(--space-xl);
  }
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-3xl) var(--space-2xl);
  }

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

  .error-description {
    padding: 0;
  }

  .error-content-box {
    padding: var(--space-2xl);
    margin-bottom: var(--space-2xl);
  }

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

  .error-list li {
    padding-left: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-4xl) var(--space-3xl);
  }

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

  .error-code:hover {
    text-shadow: 0 0 40px rgba(0, 217, 255, 0.5);
  }

  .btn-primary:hover {
    transform: translateY(-3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-code,
  .error-decoration,
  .error-wrapper,
  .btn-primary {
    animation: none !important;
    transition: none !important;
  }

  .btn-primary:hover {
    transform: none;
  }
}

.contact-say-hello {
  width: 100%;
  background: var(--color-bg-primary);
}

.contact-say-hello-hero {
  padding: var(--space-2xl) 0 var(--space-3xl);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-say-hello-hero-content {
  text-align: center;
}

.contact-say-hello-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-light);
  font-weight: 700;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.contact-say-hello-lead {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-relaxed);
  max-width: 600px;
  margin: 0 auto;
}

.contact-say-hello-main {
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.contact-say-hello-main-content {
  width: 100%;
}

.contact-say-hello-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3xl);
  width: 100%;
}

.contact-say-hello-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-say-hello-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-say-hello-form-header h2,
.contact-say-hello-info-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-light);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.contact-say-hello-form-header p,
.contact-say-hello-info-header p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary-light);
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-relaxed);
}

.contact-say-hello-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-say-hello-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.contact-say-hello-label {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-weight: 600;
  color: var(--color-text-light);
  display: block;
}

.contact-say-hello-input,
.contact-say-hello-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-text-light);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  transition: all var(--transition-normal);
}

.contact-say-hello-input::placeholder,
.contact-say-hello-textarea::placeholder {
  color: var(--color-text-secondary-light);
  opacity: 0.6;
}

.contact-say-hello-input:focus,
.contact-say-hello-textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
}

.contact-say-hello-input:hover,
.contact-say-hello-textarea:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.contact-say-hello-textarea {
  min-height: 140px;
  resize: vertical;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: var(--line-height-relaxed);
}

.contact-say-hello-form-privacy {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-relaxed);
  margin-top: var(--space-sm);
}

.contact-say-hello-form-privacy a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-weight: 600;
}

.contact-say-hello-form-privacy a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-say-hello-submit {
  width: 100%;
  padding: 1rem var(--space-lg);
  background: var(--color-primary);
  color: var(--color-text-dark);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-normal);
  letter-spacing: 0.5px;
  margin-top: var(--space-sm);
}

.contact-say-hello-submit:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 217, 255, 0.2);
}

.contact-say-hello-submit:active {
  transform: translateY(0);
  box-shadow: 0 4px 8px rgba(0, 217, 255, 0.15);
}

.contact-say-hello-submit:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.2);
}

.contact-say-hello-info-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.contact-say-hello-info-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
}

.contact-say-hello-info-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.contact-say-hello-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 217, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.contact-say-hello-info-content {
  flex: 1;
}

.contact-say-hello-info-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--color-text-light);
  font-weight: 700;
  margin-bottom: var(--space-xs);
  letter-spacing: -0.01em;
}

.contact-say-hello-info-content p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-xs);
}

.contact-say-hello-info-content a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-weight: 600;
}

.contact-say-hello-info-content a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-say-hello-info-note {
  display: block;
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  color: var(--color-text-secondary-dark);
  font-style: italic;
  margin-top: var(--space-xs);
}

.contact-say-hello-info-expertise {
  padding: var(--space-lg);
  background: rgba(0, 217, 255, 0.05);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: var(--radius-lg);
}

.contact-say-hello-info-expertise h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--color-text-light);
  font-weight: 700;
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

.contact-say-hello-expertise-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-say-hello-expertise-list li {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-secondary-light);
  display: flex;
  align-items: center;
  padding-left: var(--space-md);
  position: relative;
  line-height: var(--line-height-relaxed);
}

.contact-say-hello-expertise-list li::before {
  content: '';
  position: absolute;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
}

@media (min-width: 768px) {
  .contact-say-hello-hero {
    padding: var(--space-3xl) 0 var(--space-4xl);
  }

  .contact-say-hello-main {
    padding: var(--space-4xl) 0;
  }

  .contact-say-hello-grid {
    gap: var(--space-4xl);
  }

  .contact-say-hello-form-wrapper {
    flex: 1 1 calc(50% - var(--space-2xl));
  }

  .contact-say-hello-info-wrapper {
    flex: 1 1 calc(50% - var(--space-2xl));
  }
}

@media (min-width: 1024px) {
  .contact-say-hello-hero {
    padding: var(--space-4xl) 0 var(--space-4xl);
  }

  .contact-say-hello-main {
    padding: var(--space-4xl) 0 var(--space-4xl);
  }
}