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

:root {
  
  
  --color-bg-dark-primary: #0a0f1e;
  --color-bg-dark-secondary: #0f172a;
  
  
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  
  
  --color-bg-card-dark: rgba(255, 255, 255, 0.05);
  --color-bg-card-light: #ffffff;
  
  
  --color-text-light: #ffffff;
  --color-text-light-secondary: #e2e8f0;
  --color-text-light-muted: #94a3b8;
  
  
  --color-text-dark: #0f172a;
  --color-text-dark-secondary: #475569;
  --color-text-dark-muted: #64748b;
  
  
  --color-primary: #d97706;
  --color-primary-hover: #ea580c;
  --color-primary-light: #fef3c7;
  --color-secondary: #0369a1;
  --color-secondary-hover: #0284c7;
  --color-accent-gold: #f59e0b;
  --color-accent-blue: #3b82f6;
  
  
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 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);
  
  
  --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: 16px;
  font-weight: 400;
  line-height: var(--line-height-normal);
  color: var(--color-text-dark);
  background: var(--color-bg-light-primary);
}

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, 5vw, 4rem);
  margin-bottom: var(--space-lg);
}

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

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

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

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

h6 {
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

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

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

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

.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-hero {
  background: linear-gradient(135deg, var(--color-bg-dark-primary) 0%, var(--color-bg-dark-secondary) 100%);
  color: var(--color-text-light);
  padding: var(--space-4xl) var(--space-lg);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.section-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.section-hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 900px;
}

.hero-content h1 {
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.hero-content p {
  color: var(--color-text-light-secondary);
  font-size: 1.25rem;
  margin-bottom: var(--space-xl);
  line-height: var(--line-height-relaxed);
}

.hero-accent {
  color: var(--color-accent-gold);
  font-weight: 600;
}

.section-content {
  background: var(--color-bg-light-primary);
  color: var(--color-text-dark);
  padding: var(--space-4xl) var(--space-lg);
}

.section-content h2 {
  color: var(--color-text-dark);
  margin-bottom: var(--space-xl);
}

.section-content p {
  color: var(--color-text-dark-secondary);
  font-size: 1.1rem;
}

.section-features {
  background: var(--color-bg-dark-secondary);
  color: var(--color-text-light);
  padding: var(--space-4xl) var(--space-lg);
}

.section-features h2 {
  color: var(--color-text-light);
  margin-bottom: var(--space-3xl);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.feature-card {
  background: var(--color-bg-card-dark);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(217, 119, 6, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  background: rgba(217, 119, 6, 0.1);
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-card h3 {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.feature-card h3::before {
  content: '';
  display: block;
  width: 4px;
  height: 24px;
  background: linear-gradient(180deg, var(--color-primary), var(--color-accent-gold));
  border-radius: var(--radius-sm);
}

.feature-card p {
  color: var(--color-text-light-muted);
  font-size: 0.95rem;
}

.section-accent {
  background: linear-gradient(135deg, var(--color-bg-light-secondary) 0%, #f1f5f9 100%);
  color: var(--color-text-dark);
  padding: var(--space-4xl) var(--space-lg);
}

.section-accent h2 {
  color: var(--color-text-dark);
  margin-bottom: var(--space-xl);
}

.grid-2-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
  align-items: center;
}

.grid-3-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.card {
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all 0.3s ease;
}

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

.card-light:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.card-dark {
  background: var(--color-bg-card-dark);
  color: var(--color-text-light);
  border: 1px solid rgba(217, 119, 6, 0.2);
}

.card-dark:hover {
  border-color: var(--color-primary);
  background: rgba(217, 119, 6, 0.1);
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: var(--font-primary);
  letter-spacing: 0.5px;
}

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

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

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

.btn-secondary:hover {
  background: var(--color-primary);
  color: #ffffff;
}

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

.btn-light:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  background: var(--color-primary-light);
  color: var(--color-text-dark);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-dark {
  background: rgba(217, 119, 6, 0.2);
  color: var(--color-accent-gold);
}

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

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

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

code {
  background: var(--color-bg-light-secondary);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  color: var(--color-primary);
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
  margin: var(--space-3xl) 0;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .section-hero,
  .section-content,
  .section-features,
  .section-accent {
    padding: var(--space-3xl) var(--space-md);
  }
  
  .grid-2-col,
  .grid-3-col {
    grid-template-columns: 1fr;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
}

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

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

@media print {
  body {
    background: var(--color-bg-light-primary);
    color: var(--color-text-dark);
  }
  
  .section-hero,
  .section-features {
    background: #f8fafc;
    color: var(--color-text-dark);
  }
}

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

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

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

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

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

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

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

.transition { transition: all 0.3s ease; }
.no-wrap { white-space: nowrap; }
.header-precision-hub {
  background: var(--color-bg-light-primary);
  border-bottom: 1px solid #e2e8f0;
  position: static;
  z-index: 100;
  overflow: hidden;
}

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

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

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

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

.header-precision-hub-brand:hover .header-precision-hub-logo-text {
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.header-precision-hub-desktop-nav {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex: 1;
  justify-content: center;
}

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

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

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

.header-precision-hub-nav-link:hover::after {
  width: 100%;
}

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

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

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

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

.header-precision-hub-mobile-toggle.active .header-precision-hub-mobile-toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

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

.header-precision-hub-mobile-toggle.active .header-precision-hub-mobile-toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.header-precision-hub-mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  background: var(--color-bg-light-primary);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.3s ease;
  z-index: 99;
  border-top: 1px solid #e2e8f0;
}

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

.header-precision-hub-mobile-header {
  display: flex;
  justify-content: flex-end;
  padding: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

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

.header-precision-hub-mobile-close:hover {
  color: var(--color-primary);
}

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

.header-precision-hub-mobile-link {
  padding: 1rem 1.5rem;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  color: var(--color-text-dark);
  text-decoration: none;
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.3s ease;
}

.header-precision-hub-mobile-link:hover {
  background: var(--color-primary-light);
  color: var(--color-primary);
  padding-left: 2rem;
}

.header-precision-hub-mobile-cta {
  padding: 1rem 1.5rem;
  margin: 1rem;
  background: var(--color-primary);
  color: var(--color-text-light);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 0.3s ease;
  display: block;
}

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

@media (min-width: 768px) {
  .header-precision-hub-container {
    height: 80px;
    gap: 3rem;
  }

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

  .header-precision-hub-cta-button {
    display: block;
  }

  .header-precision-hub-mobile-toggle {
    display: none;
  }

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

@media (min-width: 1024px) {
  .header-precision-hub-container {
    gap: 4rem;
  }

  .header-precision-hub-desktop-nav {
    gap: 3rem;
  }
}

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

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

.hero-section-index::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content-index {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-title-index {
  color: #ffffff;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: clamp(1rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hero-subtitle-index {
  color: #e2e8f0;
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

.hero-buttons-index {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.btn-primary-index {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #d97706;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary-index:hover {
  background: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(217, 119, 6, 0.3);
}

.btn-secondary-index {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: transparent;
  color: #ffffff;
  border: 2px solid #d97706;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  cursor: pointer;
  font-family: inherit;
}

.btn-secondary-index:hover {
  background: #d97706;
  transform: translateY(-2px);
}

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

.benefits-header-index {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.section-tag-index {
  display: inline-block;
  padding: 0.35rem clamp(0.75rem, 1.5vw, 1rem);
  background: rgba(217, 119, 6, 0.1);
  color: #d97706;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.benefits-title-index {
  color: #0f172a;
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.benefits-subtitle-index {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: 0;
}

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

.benefit-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  background: #f8fafc;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-card-index:hover {
  border-color: #d97706;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.1);
  transform: translateY(-4px);
}

.benefit-icon-index {
  font-size: 2rem;
  color: #d97706;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

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

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

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

.about-header-index {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.about-title-index {
  color: #0f172a;
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.about-split-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.about-text-index {
  flex: 1 1 45%;
  min-width: 280px;
}

.about-paragraph-index {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.75;
  margin-bottom: clamp(1.25rem, 2vw, 1.5rem);
}

.about-features-list-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: clamp(1.5rem, 2.5vw, 2rem);
}

.feature-item-index {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #0f172a;
  font-size: 0.95rem;
}

.feature-check-index {
  color: #d97706;
  font-weight: 700;
  font-size: 1.25rem;
}

.feature-text-index {
  color: #475569;
}

.about-image-index {
  flex: 1 1 45%;
  min-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-index {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .about-split-index {
    flex-direction: column;
  }
  
  .about-text-index,
  .about-image-index {
    flex: 1 1 100%;
  }
}

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

.statistics-content-index {
  text-align: center;
}

.stats-header-index {
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.stats-title-index {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.stats-subtitle-index {
  color: #e2e8f0;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
}

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

.stat-card-index {
  flex: 1 1 240px;
  max-width: 320px;
  background: rgba(255, 255, 255, 0.05);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  border-radius: 8px;
  border: 1px solid rgba(217, 119, 6, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-card-index:hover {
  border-color: #d97706;
  background: rgba(217, 119, 6, 0.1);
}

.stat-number-large-index {
  color: #f59e0b;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
}

.stat-description-index {
  color: #e2e8f0;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.how-it-works-section-index {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.how-header-index {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.how-title-index {
  color: #0f172a;
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.how-subtitle-index {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin: 0;
}

.steps-container-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: center;
}

.step-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.step-number-index {
  color: #d97706;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
}

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

.step-title-index {
  color: #0f172a;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  margin: 0;
}

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

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

.testimonials-header-index {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.testimonials-title-index {
  color: #0f172a;
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

.testimonial-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #d97706;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.testimonial-card-index:hover {
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.1);
}

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

.quote-text-index {
  color: #0f172a;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.7;
  font-style: italic;
  margin: 0;
}

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

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

.author-role-index {
  color: #64748b;
  font-size: 0.85rem;
}

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

.featured-header-index {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.featured-title-index {
  color: #0f172a;
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.featured-subtitle-index {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin: 0;
}

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

.featured-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.featured-card-index:hover {
  border-color: #d97706;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.1);
  transform: translateY(-4px);
}

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

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

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

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

.featured-card-text-index {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.featured-link-index {
  color: #d97706;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 0.5rem;
}

.featured-link-index:hover {
  color: #ea580c;
  transform: translateX(4px);
}

.featured-cta-index {
  text-align: center;
  padding: clamp(2rem, 3vw, 3rem);
  background: #f8fafc;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.featured-cta-text-index {
  color: #0f172a;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin: 0;
  font-weight: 500;
}

.featured-cta-button-index {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #d97706;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
}

.featured-cta-button-index:hover {
  background: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(217, 119, 6, 0.3);
}

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

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

.cta-box-index {
  background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
  padding: clamp(2.5rem, 4vw, 4rem);
  border-radius: 8px;
  text-align: center;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.cta-title-index {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

.cta-button-index {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: #d97706;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  cursor: pointer;
  border: none;
  font-family: inherit;
  margin-top: 0.5rem;
}

.cta-button-index:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

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

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

.cookie-banner-buttons-index {
  display: flex;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  flex-wrap: wrap;
}

.cookie-btn-accept-index {
  padding: 0.5rem clamp(1rem, 1.5vw, 1.25rem);
  background: #d97706;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  transition: all 0.3s ease;
  font-family: inherit;
}

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

.cookie-btn-decline-index {
  padding: 0.5rem clamp(1rem, 1.5vw, 1.25rem);
  background: transparent;
  color: #e2e8f0;
  border: 1px solid rgba(226, 232, 240, 0.3);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  transition: all 0.3s ease;
  font-family: inherit;
}

.cookie-btn-decline-index:hover {
  border-color: rgba(226, 232, 240, 0.6);
  background: rgba(226, 232, 240, 0.1);
}

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

@media (max-width: 768px) {
  .hero-buttons-index {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn-primary-index,
  .btn-secondary-index {
    width: 100%;
    text-align: center;
  }
  
  .stats-grid-index,
  .benefits-grid-index,
  .steps-container-index,
  .testimonials-grid-index,
  .featured-cards-index {
    gap: 1.5rem;
  }
  
  .stat-card-index,
  .benefit-card-index,
  .step-card-index,
  .testimonial-card-index,
  .featured-card-index {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .cookie-banner-index {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cookie-banner-text-index {
    width: 100%;
    text-align: center;
  }
  
  .cookie-banner-buttons-index {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn-accept-index,
  .cookie-btn-decline-index {
    flex: 1;
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  .hero-title-index {
    font-size: 1.75rem;
  }
  
  .benefits-title-index,
  .about-title-index,
  .how-title-index,
  .testimonials-title-index,
  .featured-title-index,
  .stats-title-index {
    font-size: 1.5rem;
  }
  
  .hero-stats-index {
    gap: 1.5rem;
  }
  
  .stat-number-index {
    font-size: 1.75rem;
  }
  
  .featured-cta-button-index,
  .cta-button-index {
    width: 100%;
  }
}

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

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

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

.footer-about {
  display: block;
}

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

.footer-about p {
  color: var(--color-text-light-muted);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 420px;
}

.footer-nav {
  display: block;
}

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

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

.footer-link {
  font-family: var(--font-primary);
  color: var(--color-text-light-muted);
  font-size: clamp(0.875rem, 1vw, 0.975rem);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  line-height: var(--line-height-normal);
}

.footer-link:hover {
  color: var(--color-primary);
  transform: translateX(2px);
}

.footer-contact {
  display: block;
}

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

.footer-contact-details p {
  font-family: var(--font-primary);
  color: var(--color-text-light-muted);
  font-size: clamp(0.875rem, 1vw, 0.975rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.footer-legal {
  display: block;
}

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

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

.footer-copyright p {
  font-family: var(--font-primary);
  color: var(--color-text-light-muted);
  font-size: clamp(0.8125rem, 0.9vw, 0.9375rem);
  line-height: var(--line-height-normal);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2rem, 5vw, 3rem);
    align-items: start;
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  .footer-copyright {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-about {
    grid-column: 1 / 2;
  }

  .footer-nav {
    grid-column: 2 / 3;
  }

  .footer-contact {
    grid-column: 3 / 4;
  }

  .footer-legal {
    grid-column: 1 / -1;
  }

  .footer-copyright {
    grid-column: 1 / -1;
  }

  .footer-nav-list {
    flex-direction: column;
  }

  .footer-legal-list {
    flex-direction: row;
  }
}
    

.category-page-attention-to-detail-quality {
  width: 100%;
}

.hero-section-category {
  background: linear-gradient(135deg, #0a0f1e 0%, #0f172a 100%);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.hero-header-category {
  text-align: center;
}

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

.hero-subtitle-category {
  color: #f59e0b;
  font-size: clamp(1rem, 2vw + 0.3rem, 1.5rem);
  font-weight: 600;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-description-category {
  max-width: 900px;
  margin: 0 auto;
}

.hero-text-category {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1vw + 0.4rem, 1.15rem);
  line-height: 1.75;
  margin: 0;
}

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

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

.posts-header-category {
  text-align: center;
}

.posts-title-category {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 700;
}

.posts-subtitle-category {
  color: #64748b;
  font-size: clamp(0.95rem, 1vw + 0.4rem, 1.1rem);
  margin: 0;
}

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

.card-attention-to-detail-quality {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.card-attention-to-detail-quality:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(217, 119, 6, 0.15);
  border-color: #f59e0b;
}

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

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

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

.card-description-category {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.3rem, 0.95rem);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

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

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

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

.card-link-category {
  display: inline-block;
  color: #d97706;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

.card-link-category:hover {
  color: #ea580c;
  border-bottom-color: #d97706;
}

.principles-section-category {
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1526 100%);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.principles-header-category {
  text-align: center;
}

.principles-title-category {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin: 0;
  font-weight: 700;
}

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

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

.principle-number-category {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

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

.principle-heading-category {
  color: #ffffff;
  font-size: clamp(1.1rem, 2vw + 0.3rem, 1.35rem);
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.principle-description-category {
  color: #cbd5e1;
  font-size: clamp(0.9rem, 1vw + 0.3rem, 1.05rem);
  line-height: 1.7;
  margin: 0;
}

.insight-section-category {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.insight-box-category {
  background: #ffffff;
  border-left: 5px solid #d97706;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.insight-text-category {
  color: #1e293b;
  font-size: clamp(1.1rem, 2vw + 0.3rem, 1.35rem);
  font-style: italic;
  line-height: 1.8;
  margin: 0 0 1rem 0;
  font-weight: 500;
}

.insight-author-category {
  color: #64748b;
  font-size: clamp(0.9rem, 1vw + 0.2rem, 1rem);
  margin: 0;
  font-weight: 600;
}

.insight-explanation-category {
  max-width: 800px;
}

.insight-heading-category {
  color: #0f172a;
  font-size: clamp(1.35rem, 3vw + 0.3rem, 1.75rem);
  margin: 0 0 1.5rem 0;
  font-weight: 700;
}

.insight-paragraph-category {
  color: #475569;
  font-size: clamp(0.95rem, 1vw + 0.3rem, 1.1rem);
  line-height: 1.75;
  margin: 0 0 1.5rem 0;
}

.insight-paragraph-category:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .hero-section-category {
    padding: 3rem 1rem;
  }

  .posts-section-category {
    padding: 3rem 1rem;
  }

  .principles-section-category {
    padding: 3rem 1rem;
  }

  .insight-section-category {
    padding: 3rem 1rem;
  }

  .posts-grid-category {
    flex-direction: column;
    align-items: stretch;
  }

  .card-attention-to-detail-quality {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .principle-item-category {
    flex-direction: column;
    gap: 1rem;
  }

  .principle-number-category {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
}

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

  .card-attention-to-detail-quality {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 clamp(2rem, 4vw, 3rem);
  }

  .card-attention-to-detail-quality {
    flex: 1 1 calc(25% - 1.875rem);
  }
}

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

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

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

.main-precisiewerktuigen-beheersen {
  width: 100%;
  overflow: hidden;
}

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

.hero-section-precisiewerktuigen-beheersen {
  background: linear-gradient(135deg, #0a0f1e 0%, #0f172a 100%);
  color: #ffffff;
  padding: clamp(2rem, 8vw, 4rem) 0;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero-content-precisiewerktuigen-beheersen {
  max-width: 1000px;
  width: 100%;
}

.breadcrumbs-precisiewerktuigen-beheersen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-size: 0.95rem;
  color: #94a3b8;
}

.breadcrumbs-precisiewerktuigen-beheersen a {
  color: #f59e0b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-precisiewerktuigen-beheersen a:hover {
  color: #fbbf24;
}

.breadcrumbs-precisiewerktuigen-beheersen span {
  color: #64748b;
}

.hero-meta-precisiewerktuigen-beheersen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-size: 0.95rem;
}

.meta-item-precisiewerktuigen-beheersen {
  color: #cbd5e1;
  font-weight: 500;
}

.meta-divider-precisiewerktuigen-beheersen {
  color: #64748b;
}

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

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

.hero-image-wrapper-precisiewerktuigen-beheersen {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  border-radius: clamp(8px, 2vw, 16px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.hero-image-precisiewerktuigen-beheersen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

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

.intro-text-wrapper-precisiewerktuigen-beheersen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-precisiewerktuigen-beheersen {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
}

.intro-text-precisiewerktuigen-beheersen {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.intro-image-wrapper-precisiewerktuigen-beheersen {
  flex: 1 1 50%;
  max-width: 50%;
  max-height: 450px;
  border-radius: clamp(8px, 2vw, 16px);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.intro-image-precisiewerktuigen-beheersen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fundamentals-section-precisiewerktuigen-beheersen {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.fundamentals-content-precisiewerktuigen-beheersen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.fundamentals-text-wrapper-precisiewerktuigen-beheersen {
  flex: 1 1 50%;
  max-width: 50%;
}

.fundamentals-title-precisiewerktuigen-beheersen {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
}

.fundamentals-text-precisiewerktuigen-beheersen {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

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

.tool-item-precisiewerktuigen-beheersen {
  padding: clamp(1.5rem, 2vw, 2rem);
  background: #ffffff;
  border-left: 4px solid #d97706;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.tool-item-precisiewerktuigen-beheersen:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.tool-name-precisiewerktuigen-beheersen {
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  color: #0f172a;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

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

.fundamentals-image-wrapper-precisiewerktuigen-beheersen {
  flex: 1 1 50%;
  max-width: 50%;
  max-height: 450px;
  border-radius: clamp(8px, 2vw, 16px);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.fundamentals-image-precisiewerktuigen-beheersen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.technique-section-precisiewerktuigen-beheersen {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.technique-content-precisiewerktuigen-beheersen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.technique-image-wrapper-precisiewerktuigen-beheersen {
  flex: 1 1 50%;
  max-width: 50%;
  max-height: 450px;
  border-radius: clamp(8px, 2vw, 16px);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  order: -1;
}

.technique-image-precisiewerktuigen-beheersen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.technique-text-wrapper-precisiewerktuigen-beheersen {
  flex: 1 1 50%;
  max-width: 50%;
}

.technique-title-precisiewerktuigen-beheersen {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
}

.technique-text-precisiewerktuigen-beheersen {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
}

.technique-steps-precisiewerktuigen-beheersen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.step-box-precisiewerktuigen-beheersen {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 2vw, 2rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: #f8fafc;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.step-box-precisiewerktuigen-beheersen:hover {
  background: #f1f5f9;
  transform: translateX(4px);
}

.step-number-precisiewerktuigen-beheersen {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #d97706;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
  text-align: center;
}

.step-info-precisiewerktuigen-beheersen {
  flex: 1;
}

.step-title-precisiewerktuigen-beheersen {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  color: #0f172a;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

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

.practice-section-precisiewerktuigen-beheersen {
  background: #0f172a;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.practice-content-precisiewerktuigen-beheersen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.practice-text-wrapper-precisiewerktuigen-beheersen {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-title-precisiewerktuigen-beheersen {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
}

.practice-text-precisiewerktuigen-beheersen {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #cbd5e1;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.practice-image-wrapper-precisiewerktuigen-beheersen {
  flex: 1 1 50%;
  max-width: 50%;
  max-height: 450px;
  border-radius: clamp(8px, 2vw, 16px);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.practice-image-precisiewerktuigen-beheersen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.maintenance-section-precisiewerktuigen-beheersen {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.maintenance-content-precisiewerktuigen-beheersen {
  text-align: center;
}

.maintenance-title-precisiewerktuigen-beheersen {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 700;
  line-height: 1.2;
}

.maintenance-intro-text-precisiewerktuigen-beheersen {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.maintenance-card-precisiewerktuigen-beheersen {
  flex: 1 1 220px;
  max-width: 280px;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: clamp(8px, 2vw, 12px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.maintenance-card-precisiewerktuigen-beheersen:hover {
  border-color: #d97706;
  box-shadow: 0 12px 24px rgba(217, 119, 6, 0.15);
  transform: translateY(-4px);
}

.card-title-precisiewerktuigen-beheersen {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  color: #0f172a;
  font-weight: 600;
}

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

.closing-section-precisiewerktuigen-beheersen {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  color: #1e293b;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.closing-content-precisiewerktuigen-beheersen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.closing-text-wrapper-precisiewerktuigen-beheersen {
  flex: 1 1 50%;
  max-width: 50%;
}

.closing-title-precisiewerktuigen-beheersen {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
}

.closing-text-precisiewerktuigen-beheersen {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.featured-quote-precisiewerktuigen-beheersen {
  padding: clamp(1.5rem, 2vw, 2rem);
  border-left: 4px solid #d97706;
  background: #fef3c7;
  border-radius: 8px;
  margin-top: clamp(1.5rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote-text-precisiewerktuigen-beheersen {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: #78350f;
  line-height: 1.8;
  font-style: italic;
  margin: 0;
}

.quote-author-precisiewerktuigen-beheersen {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: #92400e;
  font-style: normal;
  font-weight: 600;
}

.closing-image-wrapper-precisiewerktuigen-beheersen {
  flex: 1 1 50%;
  max-width: 50%;
  max-height: 450px;
  border-radius: clamp(8px, 2vw, 16px);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.closing-image-precisiewerktuigen-beheersen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.disclaimer-section-precisiewerktuigen-beheersen {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-precisiewerktuigen-beheersen {
  max-width: 900px;
}

.disclaimer-title-precisiewerktuigen-beheersen {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: #fbbf24;
  margin-bottom: clamp(1rem, 1.5vw, 1.5rem);
  font-weight: 700;
}

.disclaimer-text-precisiewerktuigen-beheersen {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: #cbd5e1;
  line-height: 1.75;
  margin: 0;
}

.related-section-precisiewerktuigen-beheersen {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.related-content-precisiewerktuigen-beheersen {
  text-align: center;
}

.related-title-precisiewerktuigen-beheersen {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.related-subtitle-precisiewerktuigen-beheersen {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #64748b;
  line-height: 1.6;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

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

.related-card-precisiewerktuigen-beheersen {
  flex: 1 1 300px;
  max-width: 360px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: clamp(8px, 2vw, 12px);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.related-card-precisiewerktuigen-beheersen:hover {
  border-color: #d97706;
  box-shadow: 0 12px 28px rgba(217, 119, 6, 0.15);
  transform: translateY(-6px);
}

.related-card-image-wrapper-precisiewerktuigen-beheersen {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-card-image-precisiewerktuigen-beheersen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.related-card-precisiewerktuigen-beheersen:hover .related-card-image-precisiewerktuigen-beheersen {
  transform: scale(1.05);
}

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

.related-card-title-precisiewerktuigen-beheersen {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  color: #0f172a;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

.related-card-text-precisiewerktuigen-beheersen {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.related-card-link-precisiewerktuigen-beheersen {
  display: inline-block;
  color: #d97706;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.related-card-link-precisiewerktuigen-beheersen:hover {
  color: #ea580c;
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .intro-content-precisiewerktuigen-beheersen,
  .fundamentals-content-precisiewerktuigen-beheersen,
  .technique-content-precisiewerktuigen-beheersen,
  .practice-content-precisiewerktuigen-beheersen,
  .closing-content-precisiewerktuigen-beheersen {
    flex-direction: column;
  }

  .intro-text-wrapper-precisiewerktuigen-beheersen,
  .intro-image-wrapper-precisiewerktuigen-beheersen,
  .fundamentals-text-wrapper-precisiewerktuigen-beheersen,
  .fundamentals-image-wrapper-precisiewerktuigen-beheersen,
  .technique-text-wrapper-precisiewerktuigen-beheersen,
  .technique-image-wrapper-precisiewerktuigen-beheersen,
  .practice-text-wrapper-precisiewerktuigen-beheersen,
  .practice-image-wrapper-precisiewerktuigen-beheersen,
  .closing-text-wrapper-precisiewerktuigen-beheersen,
  .closing-image-wrapper-precisiewerktuigen-beheersen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .technique-content-precisiewerktuigen-beheersen {
    order: 0;
  }

  .technique-image-wrapper-precisiewerktuigen-beheersen {
    order: 1;
  }
}

@media (max-width: 768px) {
  .hero-section-precisiewerktuigen-beheersen {
    min-height: auto;
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  .breadcrumbs-precisiewerktuigen-beheersen {
    flex-direction: column;
    gap: 0;
    font-size: 0.85rem;
  }

  .breadcrumbs-precisiewerktuigen-beheersen span {
    display: none;
  }

  .breadcrumbs-precisiewerktuigen-beheersen a {
    display: block;
    margin-bottom: 0.5rem;
  }

  .hero-image-wrapper-precisiewerktuigen-beheersen {
    max-height: 300px;
  }

  .intro-section-precisiewerktuigen-beheersen,
  .fundamentals-section-precisiewerktuigen-beheersen,
  .technique-section-precisiewerktuigen-beheersen,
  .practice-section-precisiewerktuigen-beheersen,
  .closing-section-precisiewerktuigen-beheersen,
  .maintenance-section-precisiewerktuigen-beheersen,
  .related-section-precisiewerktuigen-beheersen {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  .intro-image-wrapper-precisiewerktuigen-beheersen,
  .fundamentals-image-wrapper-precisiewerktuigen-beheersen,
  .technique-image-wrapper-precisiewerktuigen-beheersen,
  .practice-image-wrapper-precisiewerktuigen-beheersen,
  .closing-image-wrapper-precisiewerktuigen-beheersen {
    max-height: 300px;
  }

  .step-box-precisiewerktuigen-beheersen {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-precisiewerktuigen-beheersen {
    min-width: auto;
  }

  .maintenance-cards-precisiewerktuigen-beheersen {
    flex-direction: column;
  }

  .maintenance-card-precisiewerktuigen-beheersen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-card-precisiewerktuigen-beheersen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.main-kwaliteitscontrole-proces {
  width: 100%;
  overflow-x: hidden;
}

.hero-section-kwaliteitscontrole-proces {
  background: linear-gradient(135deg, #0a0f1e 0%, #0f172a 100%);
  color: #ffffff;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  min-height: auto;
}

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

.hero-text-kwaliteitscontrole-proces {
  flex: 1 1 50%;
  max-width: 50%;
}

.breadcrumbs-kwaliteitscontrole-proces {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.75rem, 1vw, 0.95rem);
}

.breadcrumbs-kwaliteitscontrole-proces a {
  color: #f59e0b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-kwaliteitscontrole-proces a:hover {
  color: #fbbf24;
  text-decoration: underline;
}

.breadcrumbs-kwaliteitscontrole-proces span {
  color: #64748b;
}

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

.hero-subtitle-kwaliteitscontrole-proces {
  color: #e2e8f0;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-kwaliteitscontrole-proces {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.meta-item-kwaliteitscontrole-proces {
  color: #94a3b8;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
}

.meta-separator-kwaliteitscontrole-proces {
  color: #475569;
}

.hero-image-kwaliteitscontrole-proces {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

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

.intro-text-kwaliteitscontrole-proces {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-kwaliteitscontrole-proces {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
}

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

.intro-image-kwaliteitscontrole-proces {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.process-section-kwaliteitscontrole-proces {
  background: linear-gradient(135deg, #0f172a 0%, #1a1f35 100%);
  color: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.process-header-kwaliteitscontrole-proces {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.process-title-kwaliteitscontrole-proces {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.process-subtitle-kwaliteitscontrole-proces {
  color: #94a3b8;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.6;
}

.steps-grid-kwaliteitscontrole-proces {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.step-card-kwaliteitscontrole-proces {
  flex: 1 1 calc(50% - 1rem);
  max-width: 450px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.2);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.step-card-kwaliteitscontrole-proces:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: #f59e0b;
  transform: translateY(-4px);
}

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

.step-content-kwaliteitscontrole-proces {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-title-kwaliteitscontrole-proces {
  color: #ffffff;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  line-height: 1.3;
}

.step-text-kwaliteitscontrole-proces {
  color: #cbd5e1;
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  line-height: 1.6;
}

.techniques-section-kwaliteitscontrole-proces {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.techniques-content-kwaliteitscontrole-proces {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.techniques-text-kwaliteitscontrole-proces {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-title-kwaliteitscontrole-proces {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
}

.techniques-subtitle-kwaliteitscontrole-proces {
  color: #1e293b;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  margin-top: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
}

.techniques-paragraph-kwaliteitscontrole-proces {
  color: #475569;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.techniques-image-kwaliteitscontrole-proces {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-img-kwaliteitscontrole-proces {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.highlights-section-kwaliteitscontrole-proces {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  color: #1e293b;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.highlights-header-kwaliteitscontrole-proces {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.highlights-title-kwaliteitscontrole-proces {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.highlights-subtitle-kwaliteitscontrole-proces {
  color: #64748b;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.6;
}

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

.highlight-card-kwaliteitscontrole-proces {
  flex: 1 1 calc(50% - 1rem);
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.highlight-card-kwaliteitscontrole-proces:hover {
  border-color: #f59e0b;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.highlight-icon-kwaliteitscontrole-proces {
  font-size: clamp(2rem, 4vw, 2.5rem);
  line-height: 1;
}

.highlight-card-title-kwaliteitscontrole-proces {
  color: #0f172a;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
  line-height: 1.3;
}

.highlight-card-text-kwaliteitscontrole-proces {
  color: #475569;
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  line-height: 1.6;
}

.standards-section-kwaliteitscontrole-proces {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.standards-content-kwaliteitscontrole-proces {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.standards-image-kwaliteitscontrole-proces {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.standards-img-kwaliteitscontrole-proces {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.standards-text-kwaliteitscontrole-proces {
  flex: 1 1 50%;
  max-width: 50%;
}

.standards-title-kwaliteitscontrole-proces {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
}

.standards-paragraph-kwaliteitscontrole-proces {
  color: #475569;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.standards-quote-kwaliteitscontrole-proces {
  border-left: 4px solid #f59e0b;
  padding-left: clamp(1rem, 3vw, 1.5rem);
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
  font-style: italic;
}

.quote-text-kwaliteitscontrole-proces {
  color: #1e293b;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  margin: 0;
}

.practical-section-kwaliteitscontrole-proces {
  background: linear-gradient(135deg, #0f172a 0%, #1a1f35 100%);
  color: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.practical-header-kwaliteitscontrole-proces {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.practical-title-kwaliteitscontrole-proces {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.practical-subtitle-kwaliteitscontrole-proces {
  color: #94a3b8;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.6;
}

.practical-cards-kwaliteitscontrole-proces {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.practical-card-kwaliteitscontrole-proces {
  flex: 1 1 calc(33.333% - 1rem);
  max-width: 340px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.2);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.practical-card-kwaliteitscontrole-proces:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: #f59e0b;
  transform: translateY(-4px);
}

.practical-card-title-kwaliteitscontrole-proces {
  color: #ffffff;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
}

.practical-card-text-kwaliteitscontrole-proces {
  color: #cbd5e1;
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  line-height: 1.6;
}

.closing-section-kwaliteitscontrole-proces {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.closing-content-kwaliteitscontrole-proces {
  max-width: 800px;
  margin: 0 auto;
}

.closing-title-kwaliteitscontrole-proces {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.closing-paragraph-kwaliteitscontrole-proces {
  color: #475569;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  text-align: justify;
}

.closing-cta-kwaliteitscontrole-proces {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  text-align: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.cta-text-kwaliteitscontrole-proces {
  color: #1e293b;
  font-size: clamp(1rem, 2vw, 1.15rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.6;
}

.cta-button-kwaliteitscontrole-proces {
  display: inline-block;
  background: #f59e0b;
  color: #ffffff;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-button-kwaliteitscontrole-proces:hover {
  background: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.2);
}

.disclaimer-section-kwaliteitscontrole-proces {
  background: linear-gradient(135deg, #f1f5f9 0%, #f8fafc 100%);
  color: #1e293b;
  padding: clamp(2rem, 5vw, 3rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-kwaliteitscontrole-proces {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-kwaliteitscontrole-proces {
  color: #0f172a;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.disclaimer-text-kwaliteitscontrole-proces {
  color: #475569;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  line-height: 1.6;
  margin: 0;
}

.related-section-kwaliteitscontrole-proces {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.related-header-kwaliteitscontrole-proces {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.related-title-kwaliteitscontrole-proces {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.related-subtitle-kwaliteitscontrole-proces {
  color: #64748b;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.6;
}

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

.related-card-kwaliteitscontrole-proces {
  flex: 1 1 calc(33.333% - 1.5rem);
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.related-card-kwaliteitscontrole-proces:hover {
  border-color: #f59e0b;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

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

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

.related-card-content-kwaliteitscontrole-proces {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-kwaliteitscontrole-proces {
  color: #0f172a;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.related-card-text-kwaliteitscontrole-proces {
  color: #475569;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  line-height: 1.6;
  margin: 0;
}

.related-card-link-kwaliteitscontrole-proces {
  color: #f59e0b;
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: 0.5rem;
}

.related-card-link-kwaliteitscontrole-proces:hover {
  color: #ea580c;
  text-decoration: underline;
}

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

@media (max-width: 1024px) {
  .step-card-kwaliteitscontrole-proces {
    flex: 1 1 calc(50% - 1rem);
  }

  .highlight-card-kwaliteitscontrole-proces {
    flex: 1 1 calc(50% - 1rem);
  }

  .practical-card-kwaliteitscontrole-proces {
    flex: 1 1 calc(50% - 1rem);
  }

  .related-card-kwaliteitscontrole-proces {
    flex: 1 1 calc(50% - 1.25rem);
  }
}

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

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

  .intro-content-kwaliteitscontrole-proces {
    flex-direction: column;
  }

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

  .techniques-content-kwaliteitscontrole-proces {
    flex-direction: column;
  }

  .techniques-text-kwaliteitscontrole-proces,
  .techniques-image-kwaliteitscontrole-proces {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .standards-content-kwaliteitscontrole-proces {
    flex-direction: column;
  }

  .standards-image-kwaliteitscontrole-proces,
  .standards-text-kwaliteitscontrole-proces {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }

  .step-card-kwaliteitscontrole-proces {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .highlight-card-kwaliteitscontrole-proces {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .practical-card-kwaliteitscontrole-proces {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-card-kwaliteitscontrole-proces {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .breadcrumbs-kwaliteitscontrole-proces {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .hero-title-kwaliteitscontrole-proces {
    font-size: 1.75rem;
  }

  .intro-title-kwaliteitscontrole-proces,
  .process-title-kwaliteitscontrole-proces,
  .techniques-title-kwaliteitscontrole-proces,
  .highlights-title-kwaliteitscontrole-proces,
  .standards-title-kwaliteitscontrole-proces,
  .practical-title-kwaliteitscontrole-proces,
  .closing-title-kwaliteitscontrole-proces,
  .related-title-kwaliteitscontrole-proces {
    font-size: 1.4rem;
  }

  .step-card-kwaliteitscontrole-proces {
    padding: 1.25rem;
  }

  .highlight-card-kwaliteitscontrole-proces {
    padding: 1.25rem;
  }

  .practical-card-kwaliteitscontrole-proces {
    padding: 1.25rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

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

.main-fouten-voorkomen-checklist {
  width: 100%;
  overflow: hidden;
}

.hero-section-fouten-voorkomen-checklist {
  background: linear-gradient(135deg, #0a0f1e 0%, #0f172a 100%);
  padding: 4rem 0;
  overflow: hidden;
}

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

.breadcrumbs-fouten-voorkomen-checklist {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.breadcrumbs-fouten-voorkomen-checklist a {
  color: #f59e0b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-fouten-voorkomen-checklist a:hover {
  color: #fbbf24;
}

.breadcrumbs-fouten-voorkomen-checklist span {
  color: #64748b;
}

.hero-content-fouten-voorkomen-checklist {
  margin-bottom: 3rem;
}

.hero-title-fouten-voorkomen-checklist {
  color: #ffffff;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-subtitle-fouten-voorkomen-checklist {
  color: #cbd5e1;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.hero-meta-fouten-voorkomen-checklist {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #94a3b8;
  font-size: 0.95rem;
  margin-bottom: 3rem;
}

.meta-item-fouten-voorkomen-checklist {
  color: #94a3b8;
}

.meta-divider-fouten-voorkomen-checklist {
  color: #475569;
}

.hero-image-fouten-voorkomen-checklist {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

.intro-section-fouten-voorkomen-checklist {
  background: #ffffff;
  padding: 5rem clamp(1rem, 4vw, 2rem);
  overflow: hidden;
}

.intro-section-fouten-voorkomen-checklist .container {
  max-width: 1440px;
  margin: 0 auto;
}

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

.intro-text-fouten-voorkomen-checklist {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-fouten-voorkomen-checklist {
  color: #0f172a;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-paragraph-fouten-voorkomen-checklist {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.intro-image-fouten-voorkomen-checklist {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-fouten-voorkomen-checklist {
  width: 100%;
  height: auto;
  max-height: 450px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.structure-section-fouten-voorkomen-checklist {
  background: #0f172a;
  padding: 5rem clamp(1rem, 4vw, 2rem);
  overflow: hidden;
}

.structure-section-fouten-voorkomen-checklist .container {
  max-width: 1440px;
  margin: 0 auto;
}

.structure-header-fouten-voorkomen-checklist {
  text-align: center;
  margin-bottom: 3rem;
}

.structure-title-fouten-voorkomen-checklist {
  color: #ffffff;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.structure-subtitle-fouten-voorkomen-checklist {
  color: #cbd5e1;
  font-size: 1.1rem;
  line-height: 1.6;
}

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

.structure-text-fouten-voorkomen-checklist {
  flex: 1 1 50%;
  max-width: 50%;
}

.structure-paragraph-fouten-voorkomen-checklist {
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.phase-list-fouten-voorkomen-checklist {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.phase-item-fouten-voorkomen-checklist {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.phase-number-fouten-voorkomen-checklist {
  color: #f59e0b;
  font-size: 2rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
  line-height: 1;
}

.phase-details-fouten-voorkomen-checklist {
  flex: 1;
}

.phase-name-fouten-voorkomen-checklist {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.phase-text-fouten-voorkomen-checklist {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
}

.structure-image-fouten-voorkomen-checklist {
  flex: 1 1 50%;
  max-width: 50%;
}

.structure-img-fouten-voorkomen-checklist {
  width: 100%;
  height: auto;
  max-height: 450px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.checklist-section-fouten-voorkomen-checklist {
  background: #ffffff;
  padding: 5rem clamp(1rem, 4vw, 2rem);
  overflow: hidden;
}

.checklist-section-fouten-voorkomen-checklist .container {
  max-width: 1440px;
  margin: 0 auto;
}

.checklist-header-fouten-voorkomen-checklist {
  text-align: center;
  margin-bottom: 3rem;
}

.checklist-title-fouten-voorkomen-checklist {
  color: #0f172a;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.checklist-subtitle-fouten-voorkomen-checklist {
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1.6;
}

.checklist-content-fouten-voorkomen-checklist {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.checklist-image-fouten-voorkomen-checklist {
  flex: 1 1 50%;
  max-width: 50%;
}

.checklist-img-fouten-voorkomen-checklist {
  width: 100%;
  height: auto;
  max-height: 450px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.checklist-text-fouten-voorkomen-checklist {
  flex: 1 1 50%;
  max-width: 50%;
}

.checklist-paragraph-fouten-voorkomen-checklist {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.checklist-box-fouten-voorkomen-checklist {
  background: #f8fafc;
  padding: 1.5rem;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.checklist-box-title-fouten-voorkomen-checklist {
  color: #0f172a;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.checklist-box-text-fouten-voorkomen-checklist {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
}

.practical-section-fouten-voorkomen-checklist {
  background: linear-gradient(135deg, #0a0f1e 0%, #0f172a 100%);
  padding: 5rem clamp(1rem, 4vw, 2rem);
  overflow: hidden;
}

.practical-section-fouten-voorkomen-checklist .container {
  max-width: 1440px;
  margin: 0 auto;
}

.practical-header-fouten-voorkomen-checklist {
  text-align: center;
  margin-bottom: 3rem;
}

.practical-title-fouten-voorkomen-checklist {
  color: #ffffff;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.practical-subtitle-fouten-voorkomen-checklist {
  color: #cbd5e1;
  font-size: 1.1rem;
  line-height: 1.6;
}

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

.practical-text-fouten-voorkomen-checklist {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-paragraph-fouten-voorkomen-checklist {
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.practical-image-fouten-voorkomen-checklist {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-img-fouten-voorkomen-checklist {
  width: 100%;
  height: auto;
  max-height: 450px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.conclusion-section-fouten-voorkomen-checklist {
  background: #ffffff;
  padding: 5rem clamp(1rem, 4vw, 2rem);
  overflow: hidden;
}

.conclusion-section-fouten-voorkomen-checklist .container {
  max-width: 1440px;
  margin: 0 auto;
}

.conclusion-content-fouten-voorkomen-checklist {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-fouten-voorkomen-checklist {
  color: #0f172a;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
  text-align: center;
}

.conclusion-text-fouten-voorkomen-checklist {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: justify;
}

.conclusion-box-fouten-voorkomen-checklist {
  background: #f0fdf4;
  border-left: 4px solid #10b981;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.conclusion-box-text-fouten-voorkomen-checklist {
  color: #065f46;
  font-size: 1rem;
  line-height: 1.7;
}

.conclusion-highlight-fouten-voorkomen-checklist {
  color: #059669;
  font-weight: 600;
}

.related-section-fouten-voorkomen-checklist {
  background: #f8fafc;
  padding: 5rem clamp(1rem, 4vw, 2rem);
  overflow: hidden;
}

.related-section-fouten-voorkomen-checklist .container {
  max-width: 1440px;
  margin: 0 auto;
}

.related-header-fouten-voorkomen-checklist {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-fouten-voorkomen-checklist {
  color: #0f172a;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.related-subtitle-fouten-voorkomen-checklist {
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1.6;
}

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

.related-card-fouten-voorkomen-checklist {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}

.related-card-fouten-voorkomen-checklist:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.related-card-image-fouten-voorkomen-checklist {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-img-fouten-voorkomen-checklist {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-fouten-voorkomen-checklist {
  padding: 1.5rem;
}

.related-card-title-fouten-voorkomen-checklist {
  color: #0f172a;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
  font-family: 'Playfair Display', serif;
}

.related-card-text-fouten-voorkomen-checklist {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.related-card-link-fouten-voorkomen-checklist {
  color: #f59e0b;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  display: inline-block;
}

.related-card-link-fouten-voorkomen-checklist:hover {
  color: #fbbf24;
}

.disclaimer-section-fouten-voorkomen-checklist {
  background: #1e293b;
  padding: 4rem clamp(1rem, 4vw, 2rem);
  overflow: hidden;
}

.disclaimer-section-fouten-voorkomen-checklist .container {
  max-width: 1440px;
  margin: 0 auto;
}

.disclaimer-content-fouten-voorkomen-checklist {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(15, 23, 42, 0.6);
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
}

.disclaimer-title-fouten-voorkomen-checklist {
  color: #fbbf24;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-fouten-voorkomen-checklist {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .intro-content-fouten-voorkomen-checklist,
  .structure-content-fouten-voorkomen-checklist,
  .checklist-content-fouten-voorkomen-checklist,
  .practical-content-fouten-voorkomen-checklist {
    flex-direction: column;
  }
  
  .intro-text-fouten-voorkomen-checklist,
  .intro-image-fouten-voorkomen-checklist,
  .structure-text-fouten-voorkomen-checklist,
  .structure-image-fouten-voorkomen-checklist,
  .checklist-image-fouten-voorkomen-checklist,
  .checklist-text-fouten-voorkomen-checklist,
  .practical-text-fouten-voorkomen-checklist,
  .practical-image-fouten-voorkomen-checklist {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .hero-title-fouten-voorkomen-checklist {
    font-size: 1.8rem;
  }
  
  .structure-title-fouten-voorkomen-checklist,
  .checklist-title-fouten-voorkomen-checklist,
  .practical-title-fouten-voorkomen-checklist,
  .related-title-fouten-voorkomen-checklist,
  .intro-title-fouten-voorkomen-checklist,
  .conclusion-title-fouten-voorkomen-checklist {
    font-size: 1.5rem;
  }
  
  .phase-list-fouten-voorkomen-checklist {
    gap: 1rem;
  }
  
  .phase-item-fouten-voorkomen-checklist {
    gap: 1rem;
  }
  
  .related-cards-fouten-voorkomen-checklist {
    flex-direction: column;
    align-items: center;
  }
  
  .related-card-fouten-voorkomen-checklist {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .conclusion-text-fouten-voorkomen-checklist {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-fouten-voorkomen-checklist {
    font-size: 0.8rem;
    flex-wrap: wrap;
  }
  
  .hero-section-fouten-voorkomen-checklist {
    padding: 2rem 0;
  }
  
  .intro-section-fouten-voorkomen-checklist,
  .structure-section-fouten-voorkomen-checklist,
  .checklist-section-fouten-voorkomen-checklist,
  .practical-section-fouten-voorkomen-checklist,
  .conclusion-section-fouten-voorkomen-checklist,
  .related-section-fouten-voorkomen-checklist,
  .disclaimer-section-fouten-voorkomen-checklist {
    padding: 3rem 1rem;
  }
  
  .hero-meta-fouten-voorkomen-checklist {
    flex-wrap: wrap;
    font-size: 0.85rem;
  }
}

.main-aandacht-behouden-werk {
  width: 100%;
  overflow-x: hidden;
}

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

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

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

.hero-section-aandacht-behouden-werk {
  background: linear-gradient(135deg, #0a0f1e 0%, #0f172a 100%);
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-content-aandacht-behouden-werk {
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.hero-meta-aandacht-behouden-werk {
  display: flex;
  flex-direction: row;
  gap: clamp(0.5rem, 2vw, 1rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  flex-wrap: wrap;
}

.meta-item-aandacht-behouden-werk {
  color: #f59e0b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 500;
}

.meta-divider-aandacht-behouden-werk {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.breadcrumbs-aandacht-behouden-werk {
  display: flex;
  flex-direction: row;
  gap: clamp(0.5rem, 2vw, 1rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  flex-wrap: wrap;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.breadcrumbs-aandacht-behouden-werk a {
  color: #f59e0b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-aandacht-behouden-werk a:hover {
  color: #fbbf24;
  text-decoration: underline;
}

.breadcrumbs-aandacht-behouden-werk span {
  color: #64748b;
}

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

.hero-subtitle-aandacht-behouden-werk {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.5rem);
  color: #e2e8f0;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 800px;
}

.hero-image-wrapper-aandacht-behouden-werk {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  border-radius: clamp(0.5rem, 2vw, 1rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.hero-image-aandacht-behouden-werk {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: clamp(0.5rem, 2vw, 1rem);
}

.intro-section-aandacht-behouden-werk {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-aandacht-behouden-werk {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-aandacht-behouden-werk {
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 300px;
}

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

.intro-paragraph-aandacht-behouden-werk {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-aandacht-behouden-werk img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: clamp(0.75rem, 2vw, 1.5rem);
  display: block;
}

.content-section-one-aandacht-behouden-werk {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-one-aandacht-behouden-werk {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-one-aandacht-behouden-werk {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-one-aandacht-behouden-werk {
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 350px;
}

.content-title-one-aandacht-behouden-werk {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.content-paragraph-aandacht-behouden-werk {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-list-aandacht-behouden-werk {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.list-item-aandacht-behouden-werk {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  padding-left: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
}

.list-item-aandacht-behouden-werk::before {
  content: '';
  position: absolute;
  left: 0;
  color: #f59e0b;
  font-weight: 700;
  font-size: 1.25rem;
}

.content-image-one-aandacht-behouden-werk img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: clamp(0.75rem, 2vw, 1.5rem);
  display: block;
}

.content-section-two-aandacht-behouden-werk {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-two-aandacht-behouden-werk {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-image-two-aandacht-behouden-werk {
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 350px;
}

.content-text-two-aandacht-behouden-werk {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-two-aandacht-behouden-werk {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.content-image-two-aandacht-behouden-werk img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: clamp(0.75rem, 2vw, 1.5rem);
  display: block;
}

.highlight-box-aandacht-behouden-werk {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.05) 100%);
  border-left: 4px solid #f59e0b;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: clamp(0.5rem, 1vw, 1rem);
  margin: clamp(1.5rem, 3vw, 2rem) 0;
}

.highlight-text-aandacht-behouden-werk {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #0f172a;
  line-height: 1.6;
  margin: 0;
}

.content-section-three-aandacht-behouden-werk {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-three-aandacht-behouden-werk {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-three-aandacht-behouden-werk {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-three-aandacht-behouden-werk {
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 350px;
}

.content-title-three-aandacht-behouden-werk {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.content-image-three-aandacht-behouden-werk img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: clamp(0.75rem, 2vw, 1.5rem);
  display: block;
}

.content-section-four-aandacht-behouden-werk {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-four-aandacht-behouden-werk {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-image-four-aandacht-behouden-werk {
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 350px;
}

.content-text-four-aandacht-behouden-werk {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-four-aandacht-behouden-werk {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.content-image-four-aandacht-behouden-werk img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: clamp(0.75rem, 2vw, 1.5rem);
  display: block;
}

.techniques-section-aandacht-behouden-werk {
  background: linear-gradient(135deg, #0a0f1e 0%, #0f172a 100%);
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.techniques-content-aandacht-behouden-werk {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.techniques-title-aandacht-behouden-werk {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.techniques-grid-aandacht-behouden-werk {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.technique-card-aandacht-behouden-werk {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.2);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: clamp(0.75rem, 1.5vw, 1.25rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.technique-card-aandacht-behouden-werk:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: #f59e0b;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.card-number-aandacht-behouden-werk {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #f59e0b;
  line-height: 1;
}

.card-title-aandacht-behouden-werk {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #ffffff;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1.3;
}

.card-text-aandacht-behouden-werk {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #e2e8f0;
  line-height: 1.6;
  margin-bottom: 0;
}

.conclusion-section-aandacht-behouden-werk {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-aandacht-behouden-werk {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-aandacht-behouden-werk {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1.2;
}

.conclusion-text-aandacht-behouden-werk {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: 0;
}

.quote-block-aandacht-behouden-werk {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(217, 119, 6, 0.05) 100%);
  border-left: 4px solid #f59e0b;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: clamp(0.75rem, 1.5vw, 1.25rem);
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.quote-text-aandacht-behouden-werk {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #0f172a;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 0;
  font-weight: 500;
}

.disclaimer-section-aandacht-behouden-werk {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-aandacht-behouden-werk {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.disclaimer-title-aandacht-behouden-werk {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  color: #0f172a;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1.3;
}

.disclaimer-text-aandacht-behouden-werk {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
}

.related-section-aandacht-behouden-werk {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.related-content-aandacht-behouden-werk {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-title-aandacht-behouden-werk {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.related-grid-aandacht-behouden-werk {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-aandacht-behouden-werk {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 300px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: clamp(0.75rem, 1.5vw, 1.25rem);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.related-card-aandacht-behouden-werk:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #f59e0b;
  transform: translateY(-4px);
}

.related-image-aandacht-behouden-werk {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f8fafc;
}

.related-image-aandacht-behouden-werk img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-text-aandacht-behouden-werk {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.related-card-title-aandacht-behouden-werk {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #0f172a;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1.3;
}

.related-card-text-aandacht-behouden-werk {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
  flex-grow: 1;
}

.related-link-aandacht-behouden-werk {
  display: inline-block;
  color: #f59e0b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

.related-link-aandacht-behouden-werk:hover {
  color: #fbbf24;
  text-decoration: underline;
}

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

  .intro-content-aandacht-behouden-werk,
  .content-wrapper-one-aandacht-behouden-werk,
  .content-wrapper-two-aandacht-behouden-werk,
  .content-wrapper-three-aandacht-behouden-werk,
  .content-wrapper-four-aandacht-behouden-werk {
    flex-direction: column;
  }

  .intro-text-aandacht-behouden-werk,
  .intro-image-aandacht-behouden-werk,
  .content-text-one-aandacht-behouden-werk,
  .content-image-one-aandacht-behouden-werk,
  .content-text-two-aandacht-behouden-werk,
  .content-image-two-aandacht-behouden-werk,
  .content-text-three-aandacht-behouden-werk,
  .content-image-three-aandacht-behouden-werk,
  .content-text-four-aandacht-behouden-werk,
  .content-image-four-aandacht-behouden-werk {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-image-aandacht-behouden-werk,
  .content-image-one-aandacht-behouden-werk,
  .content-image-two-aandacht-behouden-werk,
  .content-image-three-aandacht-behouden-werk,
  .content-image-four-aandacht-behouden-werk {
    min-height: 250px;
  }

  .technique-card-aandacht-behouden-werk {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-card-aandacht-behouden-werk {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .conclusion-content-aandacht-behouden-werk {
    text-align: left;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .technique-card-aandacht-behouden-werk {
    flex: 1 1 calc(50% - 1rem);
    max-width: 100%;
  }

  .related-card-aandacht-behouden-werk {
    flex: 1 1 calc(50% - 1.25rem);
    max-width: 100%;
  }
}

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

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

html, body {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.precision-excellence-about {
  background: var(--color-bg-light-primary);
  color: var(--color-text-dark);
  font-family: var(--font-primary);
  overflow: hidden;
}

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

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

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

.hero-title-about {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-dark);
  line-height: var(--line-height-tight);
}

.hero-subtitle-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  max-width: 600px;
  line-height: var(--line-height-relaxed);
}

.hero-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin-top: clamp(1rem, 2vw, 2rem);
  box-shadow: var(--shadow-lg);
}

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

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

.stat-number-about {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
}

.stat-label-about {
  font-size: clamp(0.75rem, 1vw + 0.25rem, 0.95rem);
  color: var(--color-text-dark-secondary);
  font-weight: 600;
}

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

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

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

.section-tag-about {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(217, 119, 6, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-dark);
  line-height: var(--line-height-tight);
  margin-bottom: 1rem;
}

.section-subtitle-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: var(--line-height-relaxed);
}

.craftsmanship-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 900px;
  margin: 0 auto;
}

.craftsmanship-text-about p {
  margin-bottom: 1rem;
  color: var(--color-text-dark-secondary);
}

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

.craft-visual-about {
  width: 100%;
  max-width: 850px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: clamp(1rem, 2vw, 2rem) auto 0;
  box-shadow: var(--shadow-md);
}

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

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

.values-header-about {
  text-align: center;
}

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

.value-card-about {
  flex: 1 1 280px;
  max-width: 340px;
  background: var(--color-bg-light-secondary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  transition: all 0.3s ease;
}

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

.value-icon-about {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.value-title-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
}

.value-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--line-height-relaxed);
}

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

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

.approach-header-about {
  text-align: center;
}

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

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

.step-number-about {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  flex-shrink: 0;
  min-width: clamp(2.5rem, 5vw, 3.5rem);
}

.step-content-about {
  flex: 1;
}

.step-title-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
}

.step-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--line-height-relaxed);
}

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

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

.quality-header-about {
  text-align: center;
}

.quality-split-about {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.quality-text-about {
  flex: 1 1 45%;
  min-width: 0;
}

.quality-text-about p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: 1rem;
}

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

.quality-visual-about {
  flex: 1 1 45%;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
  min-height: 250px;
  max-height: 450px;
  object-fit: cover;
}

.featured-quote-about {
  background: var(--color-bg-light-secondary);
  padding: clamp(2rem, 3vw, 3rem);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
  font-style: italic;
}

.quote-text-about {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.25rem);
  color: var(--color-text-dark);
  line-height: var(--line-height-relaxed);
  margin-bottom: 1rem;
}

.quote-author-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-dark-secondary);
  font-style: normal;
  font-weight: 600;
}

.disclaimer-section-about {
  background: #fef3c7;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 900px;
}

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

.disclaimer-icon-about {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: var(--color-primary);
  flex-shrink: 0;
}

.disclaimer-title-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: var(--color-text-dark);
}

.disclaimer-text-about {
  font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--line-height-relaxed);
}

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

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

  .step-number-about {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }

  .quality-split-about {
    flex-direction: column;
  }

  .quality-text-about {
    flex: 1 1 100%;
  }

  .quality-visual-about {
    flex: 1 1 100%;
  }

  .values-cards-about {
    flex-direction: column;
  }

  .value-card-about {
    max-width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero-stats-about {
    gap: clamp(1.25rem, 2vw, 2rem);
  }

  .values-cards-about {
    gap: clamp(1.25rem, 2vw, 1.75rem);
  }

  .value-card-about {
    flex: 1 1 calc(50% - 0.875rem);
    max-width: 100%;
  }
}

@media (min-width: 1025px) {
  .hero-section-about {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .craftsmanship-section-about {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .precision-values-section-about {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .approach-section-about {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .quality-commitment-section-about {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }
}

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

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

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

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

.portfolio-hero-subtitle {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: var(--line-height-normal);
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

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

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

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

.portfolio-card {
  background-color: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.portfolio-card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-color: var(--color-bg-card-light);
}

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

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

.portfolio-card-tag {
  display: inline-block;
  background-color: var(--color-primary-light);
  color: var(--color-text-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-card-title {
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: var(--line-height-tight);
  margin: 0 0 var(--space-sm) 0;
  font-weight: 600;
}

.portfolio-card-description {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: var(--line-height-relaxed);
  margin: 0 0 var(--space-md) 0;
  flex-grow: 1;
}

.portfolio-card-detail {
  color: var(--color-text-dark-muted);
  font-size: 0.875rem;
  line-height: var(--line-height-normal);
  margin: 0;
  font-weight: 500;
}

.portfolio-cta {
  background-color: var(--color-bg-dark-primary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
}

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

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

.portfolio-cta-text {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: var(--line-height-normal);
  margin: 0 0 var(--space-lg) 0;
}

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

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

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

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

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

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

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

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

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

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

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

  .portfolio-card:nth-child(odd) {
    flex-direction: row;
  }

  .portfolio-card:nth-child(even) {
    flex-direction: row-reverse;
  }

  .portfolio-card-image {
    height: auto;
    width: 45%;
    min-height: 350px;
  }

  .portfolio-card-content {
    width: 55%;
    padding: var(--space-xl);
  }

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

.faq-page {
  width: 100%;
}

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

.faq-hero__container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: var(--color-text-light);
  margin: 0;
  margin-bottom: var(--space-sm);
  line-height: var(--line-height-tight);
  font-weight: 700;
}

.faq-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--color-text-light-secondary);
  margin: 0;
  line-height: var(--line-height-normal);
}

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

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

.faq-content {
  background-color: var(--color-bg-light-secondary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.faq-content__container {
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-item {
  background-color: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.faq-item__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-md);
  border: none;
  background-color: transparent;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.2s ease;
  font-family: var(--font-primary);
}

.faq-item__trigger:hover {
  background-color: var(--color-bg-light-secondary);
}

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

.faq-item__question {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 600;
  color: var(--color-text-dark);
  line-height: var(--line-height-normal);
  margin: 0;
  flex: 1;
}

.faq-item__icon {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  margin-left: var(--space-md);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item__trigger[aria-expanded="true"] .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__content {
  padding: 0 var(--space-md) var(--space-md) var(--space-md);
  animation: slideDown 0.3s ease forwards;
  overflow: hidden;
}

.faq-item__content[hidden] {
  display: none;
}

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

.faq-item__answer {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

@media (min-width: 768px) {
  .faq-content {
    padding: var(--space-3xl) var(--space-lg);
  }
  
  .faq-accordion {
    gap: var(--space-lg);
  }
  
  .faq-item__trigger {
    padding: var(--space-lg);
  }
  
  .faq-item__content {
    padding: 0 var(--space-lg) var(--space-lg) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .faq-content {
    padding: var(--space-4xl) var(--space-xl);
  }
}

.faq-cta {
  background-color: var(--color-bg-dark-secondary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.faq-cta__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

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

.faq-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--color-text-light);
  margin: 0;
  line-height: var(--line-height-tight);
  font-weight: 700;
}

.faq-cta__text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--color-text-light-secondary);
  margin: 0;
  line-height: var(--line-height-normal);
}

.faq-cta__button {
  display: inline-block;
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-primary);
  color: var(--color-text-light);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  max-width: fit-content;
}

.faq-cta__button:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

.faq-cta__button:focus-visible {
  outline: 2px solid var(--color-accent-gold);
  outline-offset: 2px;
}

.faq-cta__image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: none;
}

@media (min-width: 768px) {
  .faq-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
  
  .faq-cta__container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }
  
  .faq-cta__image {
    display: block;
    max-height: 350px;
  }
}

@media (min-width: 1024px) {
  .faq-cta {
    padding: var(--space-4xl) var(--space-xl);
  }
  
  .faq-cta__container {
    gap: var(--space-4xl);
  }
  
  .faq-cta__image {
    max-height: 400px;
  }
}

.precision-docs {
  background-color: var(--color-bg-light-primary);
  color: var(--color-text-dark);
  font-family: var(--font-primary);
}

.precision-docs main {
  width: 100%;
  padding: var(--space-lg) var(--space-sm);
}

.precision-docs .container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.precision-docs .content {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.precision-docs h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-dark);
  line-height: var(--line-height-tight);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
}

.precision-docs .updated-date {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-dark-muted);
  margin-bottom: var(--space-xl);
  font-style: italic;
}

.precision-docs h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-dark);
  line-height: var(--line-height-tight);
  margin: var(--space-2xl) 0 var(--space-md) 0;
  font-weight: 700;
}

.precision-docs p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0 0 var(--space-md) 0;
}

.precision-docs ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.precision-docs li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-sm);
}

.precision-docs strong {
  color: var(--color-text-dark);
  font-weight: 600;
}

.precision-docs .contact-section {
  background-color: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-top: var(--space-2xl);
}

.precision-docs .contact-section h2 {
  margin-top: 0;
  color: var(--color-text-dark);
}

.precision-docs .contact-info {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--line-height-relaxed);
  margin: var(--space-sm) 0;
}

.precision-docs .contact-info strong {
  color: var(--color-text-dark);
  display: inline-block;
  min-width: 70px;
}

@media (min-width: 768px) {
  .precision-docs main {
    padding: var(--space-xl) var(--space-md);
  }

  .precision-docs h2 {
    margin-top: var(--space-3xl);
  }
}

@media (min-width: 1024px) {
  .precision-docs main {
    padding: var(--space-2xl) var(--space-lg);
  }
}

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

html {
  scroll-behavior: smooth;
}

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

.thank-you-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-section {
  width: 100%;
  padding: var(--space-2xl) var(--space-md);
  background-color: var(--color-bg-light-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 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-lg) 0;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin-bottom: var(--space-xl);
  color: var(--color-primary);
  animation: iconPulse 0.6s ease-out;
}

.success-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-primary);
}

@keyframes iconPulse {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.thank-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.thank-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--color-text-dark-secondary);
  margin-bottom: var(--space-lg);
  font-weight: 500;
}

.thank-description {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-lg);
}

.thank-next-steps {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-dark-muted);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-2xl);
}

.btn-return {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--color-primary);
  color: var(--color-text-light);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  border: 2px solid var(--color-primary);
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

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

.btn-return:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

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

@media (min-width: 640px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-md);
  }

  .success-icon {
    width: 100px;
    height: 100px;
    margin-bottom: var(--space-2xl);
  }

  .thank-title {
    margin-bottom: var(--space-lg);
  }
}

@media (min-width: 768px) {
  .thank-section {
    padding: var(--space-4xl) var(--space-md);
  }

  .thank-wrapper {
    padding: var(--space-2xl) 0;
  }

  .success-icon {
    width: 120px;
    height: 120px;
  }

  .thank-title {
    margin-bottom: var(--space-lg);
  }

  .thank-subtitle {
    margin-bottom: var(--space-xl);
  }

  .thank-description {
    margin-bottom: var(--space-xl);
  }

  .thank-next-steps {
    margin-bottom: var(--space-3xl);
  }
}

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

  .thank-section {
    padding: var(--space-4xl) var(--space-lg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .success-icon {
    animation: none;
    opacity: 1;
    transform: scale(1);
  }

  .btn-return {
    transition: none;
  }

  .btn-return:hover {
    transform: none;
  }

  .btn-return:active {
    transform: none;
  }
}

.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: var(--color-bg-light-primary);
  padding: var(--space-md);
}

.error-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) 0;
}

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

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

.error-visual {
  margin-bottom: var(--space-3xl);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.error-code-wrapper {
  position: relative;
  display: inline-block;
  width: clamp(200px, 50vw, 320px);
  height: clamp(200px, 50vw, 320px);
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -2px;
  display: block;
  line-height: 1;
  position: relative;
  z-index: 2;
}

.error-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(240px, 55vw, 360px);
  height: clamp(240px, 55vw, 360px);
  border: 2px solid var(--color-primary-light);
  border-radius: 50%;
  z-index: 1;
  animation: pulse-ring 3s ease-in-out infinite;
}

.error-decoration::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(180px, 40vw, 270px);
  height: clamp(180px, 40vw, 270px);
  border: 1px solid var(--color-primary-light);
  border-radius: 50%;
  opacity: 0.5;
}

@keyframes pulse-ring {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.8;
  }
}

.error-message {
  margin-top: var(--space-2xl);
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: var(--space-sm);
  line-height: var(--line-height-tight);
  letter-spacing: -0.5px;
}

.error-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--color-text-dark-secondary);
  margin-bottom: var(--space-lg);
  font-weight: 500;
  line-height: var(--line-height-normal);
}

.error-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-dark-muted);
  margin-bottom: var(--space-2xl);
  line-height: var(--line-height-relaxed);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.error-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  padding: var(--space-lg);
  background-color: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  text-align: left;
}

.detail-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border-radius: 50%;
  font-weight: 700;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  flex-shrink: 0;
  margin-top: 2px;
}

.detail-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--line-height-normal);
  margin: 0;
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  box-shadow: var(--shadow-md);
}

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

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

  .error-visual {
    margin-bottom: var(--space-3xl);
  }

  .error-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    padding: var(--space-xl);
  }

  .detail-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .error-details {
    border-left: none;
    border-top: 4px solid var(--color-primary);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-4xl) 0;
    min-height: calc(100vh - 60px);
  }

  .error-visual {
    margin-bottom: var(--space-3xl);
  }

  .error-code {
    transition: transform 0.3s ease, text-shadow 0.3s ease;
  }

  .error-code:hover {
    transform: scale(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-decoration {
    animation: none;
  }

  .btn-primary:hover {
    transform: none;
  }

  .error-code:hover {
    transform: none;
  }
}

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

.contact-page-hero {
  background-color: var(--color-bg-dark-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.contact-page-hero-content {
  text-align: center;
}

.contact-page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-text-light);
  margin: 0;
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
  letter-spacing: -0.5px;
}

.contact-page-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-light-secondary);
  margin: 0;
  line-height: var(--line-height-relaxed);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.contact-page-main {
  background-color: var(--color-bg-light-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.contact-page-main-content {
  width: 100%;
}

.contact-page-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xl);
  width: 100%;
}

.contact-page-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-page-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-page-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0;
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-tight);
}

.contact-page-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-page-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  width: 100%;
}

.contact-page-form-label {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  color: var(--color-text-dark);
  display: block;
}

.contact-page-form-input,
.contact-page-form-textarea {
  font-family: var(--font-primary);
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  background-color: var(--color-bg-light-secondary);
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-dark);
  transition: all 0.2s ease;
}

.contact-page-form-input:focus,
.contact-page-form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: var(--color-bg-light-primary);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

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

.contact-page-form-textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-page-form-privacy {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.contact-page-form-checkbox {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--color-primary);
}

.contact-page-form-privacy-label {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-dark);
  line-height: var(--line-height-normal);
  cursor: pointer;
}

.contact-page-form-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.contact-page-form-privacy-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-page-form-submit {
  font-family: var(--font-primary);
  width: 100%;
  padding: 1rem var(--space-lg);
  background-color: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-md);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  margin-top: var(--space-sm);
}

.contact-page-form-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(217, 119, 6, 0.2);
}

.contact-page-form-submit:active {
  transform: translateY(0);
  box-shadow: 0 5px 10px rgba(217, 119, 6, 0.15);
}

.contact-page-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0;
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.contact-page-info-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: var(--color-text-dark-secondary);
  margin: 0;
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-relaxed);
}

.contact-page-info-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.contact-page-info-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-page-info-icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
  color: var(--color-primary);
}

.contact-page-info-content {
  flex: 1;
}

.contact-page-info-label {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0;
  margin-bottom: var(--space-xs);
}

.contact-page-info-value {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-dark);
  margin: 0;
  line-height: var(--line-height-normal);
}

.contact-page-info-note {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 0.9vw, 0.95rem);
  color: var(--color-text-dark-muted);
  margin: 0;
  margin-top: 2px;
}

.contact-page-info-values {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-page-info-value-card {
  background-color: var(--color-bg-light-secondary);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.contact-page-info-value-title {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0;
  margin-bottom: var(--space-xs);
}

.contact-page-info-value-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-dark-secondary);
  margin: 0;
  line-height: var(--line-height-normal);
}

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

  .contact-page-grid {
    gap: var(--space-3xl);
  }

  .contact-page-form-wrapper {
    flex: 1 1 45%;
  }

  .contact-page-info-wrapper {
    flex: 1 1 45%;
  }
}

@media (min-width: 1024px) {
  .contact-page-main {
    padding: var(--space-4xl) 0;
  }

  .contact-page-grid {
    gap: var(--space-4xl);
  }

  .contact-page-form-wrapper {
    flex: 1 1 50%;
  }

  .contact-page-info-wrapper {
    flex: 1 1 50%;
  }
}
.header-precision-hub-mobile-toggle.active{
  display: none;
}