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

:root {
  
  
  
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f8fafc;
  --color-bg-dark-accent: #1e293b;
  --color-bg-card-dark: rgba(255, 255, 255, 0.05);
  --color-bg-card-light: #ffffff;
  
  
  --color-text-light: #ffffff;
  --color-text-dark: #1e293b;
  --color-text-dark-secondary: #0a0f1e;
  --color-text-secondary-light: #94a3b8;
  --color-text-secondary-dark: #64748b;
  --color-text-muted-light: #64748b;
  --color-text-muted-dark: #9ca3af;
  
  
  --color-primary: #10b981;
  --color-primary-hover: #059669;
  --color-primary-light: #ecfdf5;
  --color-secondary: #8b5cf6;
  --color-secondary-hover: #7c3aed;
  --color-accent-warm: #f59e0b;
  --color-accent-warm-light: #fef3c7;
  --color-error: #ef4444;
  --color-success: #10b981;
  
  
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'DM Serif Display', serif;
  
  
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  
  --font-xs: 0.75rem;
  --font-sm: 0.875rem;
  --font-base: 1rem;
  --font-lg: 1.125rem;
  --font-xl: 1.25rem;
  --font-2xl: 1.5rem;
  --font-3xl: 1.875rem;
  --font-4xl: 2.25rem;
  --font-5xl: 3rem;
  --font-6xl: 3.75rem;
  
  
  --line-height-tight: 1.2;
  --line-height-snug: 1.375;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.625;
  --line-height-loose: 2;
  
  
  --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-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
  
  
  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  
  --shadow-dark-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow-dark-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
  
  
  --transition-fast: 150ms ease-in-out;
  --transition-base: 200ms ease-in-out;
  --transition-slow: 300ms ease-in-out;
  
  
  --z-dropdown: 1000;
  --z-sticky: 1100;
  --z-fixed: 1200;
  --z-modal-backdrop: 1300;
  --z-modal: 1400;
  --z-popover: 1500;
  --z-tooltip: 1600;
}

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

*::before,
*::after {
  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: var(--font-base);
  line-height: var(--line-height-normal);
  background: var(--color-bg-secondary);
  color: var(--color-text-dark);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-md);
}

h1 {
  font-size: var(--font-6xl);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: var(--font-4xl);
  letter-spacing: -0.015em;
  margin-bottom: var(--space-lg);
}

h3 {
  font-size: var(--font-3xl);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-md);
}

h4 {
  font-size: var(--font-2xl);
  margin-bottom: var(--space-md);
}

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

h6 {
  font-size: var(--font-lg);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

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

strong, b {
  font-weight: var(--font-weight-semibold);
}

em, i {
  font-style: italic;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  font-family: var(--font-primary);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-base);
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  user-select: none;
}

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

.btn-primary {
  background: var(--color-primary);
  color: var(--color-text-light);
  box-shadow: var(--shadow-md);
}

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

.btn-secondary {
  background: var(--color-secondary);
  color: var(--color-text-light);
  box-shadow: var(--shadow-md);
}

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

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

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

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

.btn-ghost:hover {
  background: var(--color-bg-tertiary);
}

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

.btn-dark:hover {
  background: var(--color-bg-dark-accent);
}

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

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

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

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

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

.card-dark:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-dark-lg);
}

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

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

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

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

.badge-warning {
  background: var(--color-accent-warm-light);
  color: var(--color-accent-warm);
}

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

input,
textarea,
select {
  font-family: var(--font-primary);
  font-size: var(--font-base);
  width: 100%;
  padding: var(--space-md);
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
  background: var(--color-bg-secondary);
  color: var(--color-text-dark);
}

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

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

label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-dark);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.hero {
  background: var(--color-bg-primary);
  color: var(--color-text-light);
  padding: var(--space-4xl) var(--space-lg);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
  opacity: 0.1;
  animation: float 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
  opacity: 0.1;
  animation: float 25s ease-in-out infinite reverse;
}

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

.hero h1 {
  font-size: var(--font-6xl);
  margin-bottom: var(--space-lg);
  color: var(--color-text-light);
}

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

.hero-cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.flex {
  display: flex;
}

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

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

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

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

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

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

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

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

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

.list-unstyled {
  list-style: none;
  padding: 0;
}

.list-unstyled li {
  margin-bottom: var(--space-md);
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.list-unstyled li::before {
  content: '';
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
  flex-shrink: 0;
  margin-top: 2px;
}

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

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

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

.m-xs { margin: var(--space-xs); }
.m-sm { margin: var(--space-sm); }
.m-md { margin: var(--space-md); }
.m-lg { margin: var(--space-lg); }
.m-xl { margin: var(--space-xl); }
.m-2xl { margin: var(--space-2xl); }
.m-3xl { margin: var(--space-3xl); }

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

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

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

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

.text-sm { font-size: var(--font-sm); }
.text-base { font-size: var(--font-base); }
.text-lg { font-size: var(--font-lg); }
.text-xl { font-size: var(--font-xl); }
.text-2xl { font-size: var(--font-2xl); }

.font-light { font-weight: var(--font-weight-regular); }
.font-medium { font-weight: var(--font-weight-medium); }
.font-semibold { font-weight: var(--font-weight-semibold); }
.font-bold { font-weight: var(--font-weight-bold); }

.hidden { display: none; }
.visible { display: block; }

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

@media (max-width: 768px) {
  .hide-mobile { display: none; }
  
  h1 { font-size: var(--font-4xl); }
  h2 { font-size: var(--font-3xl); }
  h3 { font-size: var(--font-2xl); }
  
  .hero {
    padding: var(--space-3xl) var(--space-md);
    min-height: auto;
  }
  
  .hero h1 {
    font-size: var(--font-4xl);
  }
  
  .hero p {
    font-size: var(--font-lg);
  }
}

@media (min-width: 769px) {
  .hide-desktop { display: none; }
}

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

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

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

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

.animate-fade-in {
  animation: fadeIn 600ms ease-out;
}

.animate-slide-left {
  animation: slideInLeft 600ms ease-out;
}

.animate-slide-right {
  animation: slideInRight 600ms ease-out;
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: var(--font-2xl);
  flex-shrink: 0;
}

.feature-icon-secondary {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  color: var(--color-text-light);
}

.testimonial {
  background: var(--color-bg-card-light);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
}

.testimonial-dark {
  background: var(--color-bg-card-dark);
  color: var(--color-text-light);
  border-left-color: var(--color-secondary);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
}

.stat-box {
  text-align: center;
  padding: var(--space-xl);
}

.stat-number {
  font-size: var(--font-5xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat-label {
  font-size: var(--font-sm);
  color: var(--color-text-secondary-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.progress {
  width: 100%;
  height: 8px;
  background: #e2e8f0;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--color-primary);
  border-radius: var(--radius-full);
  transition: width var(--transition-base);
}

.progress-success {
  background: var(--color-success);
}

hr {
  border: none;
  height: 1px;
  background: #e2e8f0;
  margin: var(--space-2xl) 0;
}

.divider-light {
  background: #e2e8f0;
}

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

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

button:focus-visible,
a:focus-visible {
  outline-offset: 4px;
}

@media print {
  body {
    background: white;
    color: black;
  }
  
  .no-print {
    display: none;
  }
  
  a {
    text-decoration: underline;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.header-habit-flow {
  background: var(--color-bg-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: static;
  z-index: var(--z-sticky);
}

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

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

.header-habit-flow-brand:hover {
  opacity: 0.85;
}

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

.header-habit-flow-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-light);
  letter-spacing: -0.5px;
}

.header-habit-flow-desktop-nav {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  flex-grow: 1;
}

.header-habit-flow-nav-link {
  color: var(--color-text-light);
  text-decoration: none;
  font-size: var(--font-sm);
  font-weight: var(--font-weight-medium);
  transition: color var(--transition-base);
  border-bottom: 2px solid transparent;
  padding-bottom: 0.25rem;
}

.header-habit-flow-nav-link:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.header-habit-flow-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-text-light);
  border-radius: var(--radius-md);
  font-size: var(--font-sm);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  transition: background var(--transition-base);
  white-space: nowrap;
  flex-shrink: 0;
}

.header-habit-flow-cta-button:hover {
  background: var(--color-primary-hover);
}

.header-habit-flow-mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.header-habit-flow-hamburger {
  width: 24px;
  height: 2px;
  background: var(--color-text-light);
  border-radius: 1px;
  position: relative;
  transition: all var(--transition-base);
}

.header-habit-flow-hamburger::before,
.header-habit-flow-hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--color-text-light);
  border-radius: 1px;
  transition: all var(--transition-base);
}

.header-habit-flow-hamburger::before {
  top: -8px;
}

.header-habit-flow-hamburger::after {
  top: 8px;
}

.header-habit-flow-mobile-toggle[aria-expanded="true"] .header-habit-flow-hamburger {
  background: transparent;
}

.header-habit-flow-mobile-toggle[aria-expanded="true"] .header-habit-flow-hamburger::before {
  transform: rotate(45deg) translate(10px, 10px);
}

.header-habit-flow-mobile-toggle[aria-expanded="true"] .header-habit-flow-hamburger::after {
  transform: rotate(-45deg) translate(9px, -9px);
}

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

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

.header-habit-flow-mobile-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 1rem clamp(1rem, 4vw, 2rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-habit-flow-mobile-title {
  font-family: var(--font-heading);
  font-size: var(--font-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-light);
}

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

.header-habit-flow-mobile-close:hover {
  color: var(--color-primary);
}

.header-habit-flow-mobile-links {
  display: flex;
  flex-direction: column;
  padding: 2rem clamp(1rem, 4vw, 2rem);
  gap: 1rem;
  flex-grow: 1;
}

.header-habit-flow-mobile-link {
  color: var(--color-text-light);
  text-decoration: none;
  font-size: var(--font-base);
  font-weight: var(--font-weight-medium);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.header-habit-flow-mobile-link:hover {
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-primary);
}

.header-habit-flow-mobile-cta {
  margin: 1rem clamp(1rem, 4vw, 2rem);
  padding: 0.875rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-text-light);
  border-radius: var(--radius-md);
  font-size: var(--font-base);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  text-align: center;
  transition: background var(--transition-base);
}

.header-habit-flow-mobile-cta:hover {
  background: var(--color-primary-hover);
}

@media (min-width: 768px) {
  .header-habit-flow-container {
    padding: 1.25rem clamp(1rem, 4vw, 2rem);
  }

  .header-habit-flow-desktop-nav {
    display: flex;
  }

  .header-habit-flow-cta-button {
    display: flex;
  }

  .header-habit-flow-mobile-toggle {
    display: none;
  }

  .header-habit-flow-mobile-menu {
    display: none;
  }
}

@media (max-width: 767px) {
  .header-habit-flow-desktop-nav {
    display: none;
  }

  .header-habit-flow-cta-button {
    display: none;
  }

  .header-habit-flow-mobile-menu {
    width: 100%;
  }
}

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

.hero-section-index {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a1f2e 100%);
  color: #ffffff;
  padding: clamp(4rem, 8vw, 7rem) var(--space-lg);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section-index::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #10b981 0%, transparent 70%);
  opacity: 0.08;
  animation: float 20s ease-in-out infinite;
  border-radius: 50%;
}

.hero-section-index::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
  opacity: 0.08;
  animation: float 25s ease-in-out infinite reverse;
  border-radius: 50%;
}

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

.hero-content-index {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: 100%;
}

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

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

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

.hero-subtitle-index {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #cbd5e1;
  margin-bottom: var(--space-2xl);
  line-height: 1.6;
}

.hero-cta-index {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-3xl);
}

.hero-cta-index .btn {
  flex: 1 1 200px;
  min-width: 160px;
}

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

.stat-item-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.stat-number-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #10b981;
  line-height: 1;
}

.stat-label-index {
  font-size: var(--font-sm);
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

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

@media (max-width: 768px) {
  .hero-section-index {
    min-height: auto;
    padding: clamp(3rem, 6vw, 5rem) var(--space-md);
  }

  .hero-content-index {
    flex-direction: column;
    gap: var(--space-2xl);
  }

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

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

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

  .hero-stats-index {
    justify-content: space-around;
    gap: var(--space-lg);
  }
}

.process-section-index {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(4rem, 8vw, 6rem) var(--space-lg);
  overflow: hidden;
}

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

.process-header-index {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.section-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border-radius: var(--radius-full);
  font-size: var(--font-sm);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.process-title-index {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: #0a0f1e;
  margin-bottom: var(--space-md);
}

.process-subtitle-index {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #64748b;
  line-height: 1.6;
}

.process-steps-index {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  width: 100%;
}

.process-step-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: var(--radius-xl);
  border-left: 4px solid #10b981;
}

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

.step-title-index {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: #0a0f1e;
  font-weight: 600;
  margin: 0;
}

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

@media (max-width: 768px) {
  .process-section-index {
    padding: clamp(3rem, 6vw, 5rem) var(--space-md);
  }

  .process-steps-index {
    grid-template-columns: 1fr;
  }
}

.about-section-index {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(4rem, 8vw, 6rem) var(--space-lg);
  overflow: hidden;
}

.about-content-index {
  display: flex;
  flex-direction: row;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

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

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

.about-title-index {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: #0a0f1e;
  margin-bottom: var(--space-lg);
}

.about-description-index {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #64748b;
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.about-benefits-index {
  margin: var(--space-2xl) 0;
}

.benefits-list-index {
  list-style: none;
  padding: 0;
}

.benefit-item-index {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: #1e293b;
  line-height: 1.6;
}

.benefit-item-index::before {
  content: '';
  color: #10b981;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.btn-outline-index {
  background: transparent;
  color: #10b981;
  border: 2px solid #10b981;
  padding: var(--space-md) var(--space-lg);
  font-weight: 600;
  border-radius: var(--radius-lg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn-outline-index:hover {
  background: #ecfdf5;
  border-color: #059669;
}

.about-image-index {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .about-section-index {
    padding: clamp(3rem, 6vw, 5rem) var(--space-md);
  }

  .about-content-index {
    flex-direction: column;
    gap: var(--space-2xl);
  }

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

.faq-section-index {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(4rem, 8vw, 6rem) var(--space-lg);
  overflow: hidden;
}

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

.faq-header-index {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.faq-title-index {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: #0a0f1e;
  margin-bottom: var(--space-md);
}

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

.faq-items-index {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.faq-item-index {
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid #8b5cf6;
}

.faq-question-index {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #0a0f1e;
  margin-bottom: var(--space-md);
  font-weight: 600;
}

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

@media (max-width: 768px) {
  .faq-section-index {
    padding: clamp(3rem, 6vw, 5rem) var(--space-md);
  }

  .faq-items-index {
    grid-template-columns: 1fr;
  }
}

.benefits-section-index {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) var(--space-lg);
  overflow: hidden;
  position: relative;
}

.benefits-section-index::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #10b981 0%, transparent 70%);
  opacity: 0.05;
  border-radius: 50%;
}

.benefits-content-index {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 4rem);
}

.benefits-header-index {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.benefits-title-index {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: #ffffff;
  margin-bottom: var(--space-md);
}

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

.benefit-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

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

.card-icon-index {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #10b981, #8b5cf6);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.card-title-index {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #ffffff;
  margin: 0;
  font-weight: 600;
}

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

@media (max-width: 768px) {
  .benefits-section-index {
    padding: clamp(3rem, 6vw, 5rem) var(--space-md);
  }

  .benefits-cards-index {
    justify-content: center;
  }

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

.blog-section-index {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(4rem, 8vw, 6rem) var(--space-lg);
  overflow: hidden;
}

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

.blog-header-index {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.blog-title-index {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: #0a0f1e;
  margin-bottom: var(--space-md);
}

.blog-subtitle-index {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #64748b;
  line-height: 1.6;
}

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

.blog-card-index {
  flex: 1 1 320px;
  max-width: 420px;
  background: #ffffff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.blog-image-wrapper-index {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #e2e8f0;
}

.blog-card-image-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

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

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

.blog-card-title-index {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #0a0f1e;
  margin: 0;
  font-weight: 600;
  line-height: 1.4;
}

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

.blog-card-link-index {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: #10b981;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-base);
  margin-top: auto;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.blog-card-link-index:hover {
  color: #059669;
}

.blog-cta-index {
  display: flex;
  justify-content: center;
  margin-top: var(--space-lg);
}

.btn-primary-index {
  background: #10b981;
  color: #ffffff;
  padding: var(--space-md) var(--space-lg);
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all var(--transition-base);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
}

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

@media (max-width: 768px) {
  .blog-section-index {
    padding: clamp(3rem, 6vw, 5rem) var(--space-md);
  }

  .blog-cards-index {
    flex-direction: column;
  }

  .blog-card-index {
    flex: 1 1 100%;
  }
}

.features-section-index {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(4rem, 8vw, 6rem) var(--space-lg);
  overflow: hidden;
}

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

.features-header-index {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.features-title-index {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: #0a0f1e;
  margin-bottom: var(--space-md);
}

.features-subtitle-index {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #64748b;
  line-height: 1.6;
}

.features-list-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 1000px;
  margin: 0 auto;
}

.feature-row-index {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  width: 100%;
}

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

.feature-heading-index {
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  color: #0a0f1e;
  margin: 0;
  font-weight: 600;
}

.feature-description-index {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .features-section-index {
    padding: clamp(3rem, 6vw, 5rem) var(--space-md);
  }

  .feature-row-index {
    grid-template-columns: 1fr;
  }
}

.cta-section-index {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a1f2e 100%);
  color: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) var(--space-lg);
  overflow: hidden;
}

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

.cta-box-index {
  text-align: center;
  max-width: 700px;
  padding: clamp(2rem, 4vw, 3.5rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-2xl);
}

.cta-title-index {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: #ffffff;
  margin-bottom: var(--space-lg);
  font-weight: 700;
}

.cta-description-index {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
}

.btn-primary-large-index {
  background: #10b981;
  color: #ffffff;
  padding: clamp(var(--space-md), 2vw, var(--space-lg)) clamp(var(--space-lg), 4vw, var(--space-2xl));
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all var(--transition-base);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  margin-bottom: var(--space-lg);
}

.btn-primary-large-index:hover {
  background: #059669;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3);
}

.cta-secondary-text-index {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #94a3b8;
  margin-bottom: var(--space-md);
}

.cta-link-index {
  color: #10b981;
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-base);
  display: inline-block;
  border-bottom: 2px solid transparent;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.cta-link-index:hover {
  color: #ecfdf5;
  border-bottom-color: #10b981;
}

@media (max-width: 768px) {
  .cta-section-index {
    padding: clamp(3rem, 6vw, 5rem) var(--space-md);
  }

  .cta-box-index {
    padding: clamp(1.5rem, 3vw, 2.5rem);
  }
}

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

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

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

.cookie-banner-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-btn-accept,
.cookie-btn-decline {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.25rem);
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
  white-space: nowrap;
  font-family: var(--font-primary);
}

.cookie-btn-accept {
  background: #10b981;
  color: #ffffff;
}

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

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

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

@media (max-width: 768px) {
  .cookie-banner {
    padding: clamp(1rem, 2vw, 1.25rem);
    gap: var(--space-sm);
  }

  .cookie-banner-buttons {
    width: 100%;
    gap: var(--space-sm);
  }

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

@media (max-width: 480px) {
  .cookie-banner {
    flex-direction: column;
  }

  .cookie-banner-text {
    order: 1;
    width: 100%;
  }

  .cookie-banner-buttons {
    order: 2;
    width: 100%;
  }

  .cookie-btn-accept,
  .cookie-btn-decline {
    flex: 1 1 100%;
  }
}

@media (min-width: 1200px) {
  .process-steps-index {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

    .footer {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 5vw, 3rem) 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;
  padding-bottom: clamp(1.5rem, 3vw, 2rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: var(--color-text-light);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  font-weight: var(--font-weight-semibold);
}

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

.footer-nav {
  display: block;
}

.footer-nav h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: var(--color-text-light);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  font-weight: var(--font-weight-semibold);
}

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

.footer-contact {
  display: block;
}

.footer-contact h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: var(--color-text-light);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  font-weight: var(--font-weight-semibold);
}

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

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

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

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

.footer-legal h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: var(--color-text-light);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  font-weight: var(--font-weight-semibold);
}

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

.footer-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: var(--color-text-secondary-light);
  text-decoration: none;
  transition: color var(--transition-fast);
  display: inline-block;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-link:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

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

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

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

  .footer-about {
    flex: 1 1 280px;
    padding-bottom: 0;
    border-bottom: none;
  }

  .footer-nav {
    flex: 1 1 150px;
  }

  .footer-contact {
    flex: 1 1 200px;
  }

  .footer-legal {
    flex: 0 1 150px;
    padding-top: 0;
    border-top: none;
  }

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

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

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

  .footer-about {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: clamp(1.5rem, 3vw, 2rem);
  }

  .footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: clamp(1.5rem, 3vw, 2rem);
  }

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

.category-page-habit-formation-nl {
  width: 100%;
  overflow-x: hidden;
}

.hero-section-habit-formation-nl {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a1535 100%);
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) var(--space-lg);
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section-habit-formation-nl::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #10b981 0%, transparent 70%);
  opacity: 0.08;
  border-radius: 50%;
}

.hero-section-habit-formation-nl::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
  opacity: 0.06;
  border-radius: 50%;
}

.hero-content-habit-formation-nl {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 750px;
  text-align: center;
  margin: 0 auto;
}

.hero-header-habit-formation-nl {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-title-habit-formation-nl {
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin: 0;
}

.hero-subtitle-habit-formation-nl {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  line-height: 1.6;
  color: #cbd5e1;
  margin: 0;
  font-weight: 400;
}

.hero-accent-habit-formation-nl {
  display: flex;
  justify-content: center;
}

.accent-box-habit-formation-nl {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 8px;
  padding: clamp(0.8rem, 2vw, 1.2rem) clamp(1.2rem, 3vw, 1.8rem);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  backdrop-filter: blur(10px);
}

.accent-box-habit-formation-nl i {
  color: #10b981;
  font-size: 1.25rem;
}

.accent-text-habit-formation-nl {
  color: #e0f2fe;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 500;
}

.posts-section-habit-formation-nl {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) var(--space-lg);
  overflow: hidden;
}

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

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

.posts-title-habit-formation-nl {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #0a0f1e;
  margin: 0;
  letter-spacing: -0.015em;
}

.posts-subtitle-habit-formation-nl {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

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

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

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

.card-habit-formation-nl img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.card-title-habit-formation-nl {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: #1e293b;
  padding: clamp(1.2rem, 2vw, 1.5rem) clamp(1.2rem, 2vw, 1.5rem) 0.5rem;
  margin: 0;
  line-height: 1.35;
}

.card-description-habit-formation-nl {
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  color: #64748b;
  padding: 0 clamp(1.2rem, 2vw, 1.5rem);
  margin: 0.5rem 0 0;
  line-height: 1.5;
  flex-grow: 1;
}

.card-meta-habit-formation-nl {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.2rem clamp(1.2rem, 2vw, 1.5rem) 0;
  font-size: 0.8rem;
  color: #94a3b8;
  border-top: 1px solid #f1f5f9;
  margin-top: 0.8rem;
}

.card-reading-time-habit-formation-nl,
.card-level-habit-formation-nl,
.card-date-habit-formation-nl {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.card-reading-time-habit-formation-nl i,
.card-level-habit-formation-nl i,
.card-date-habit-formation-nl i {
  color: #10b981;
  font-size: 0.9rem;
}

.card-link-habit-formation-nl {
  font-size: 0.9rem;
  font-weight: 600;
  color: #10b981;
  padding: 0 clamp(1.2rem, 2vw, 1.5rem) clamp(1.2rem, 2vw, 1.5rem);
  margin-top: auto;
  transition: color 0.3s ease;
  text-decoration: none;
}

.card-link-habit-formation-nl:hover {
  color: #059669;
  text-decoration: underline;
}

.insights-section-habit-formation-nl {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: clamp(3rem, 8vw, 5rem) var(--space-lg);
  overflow: hidden;
}

.insights-content-habit-formation-nl {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.insights-header-habit-formation-nl {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.insights-title-habit-formation-nl {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #0a0f1e;
  margin: 0 0 1rem;
  letter-spacing: -0.015em;
}

.insights-text-habit-formation-nl {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

.insights-cards-habit-formation-nl {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.insight-item-habit-formation-nl {
  background: #ffffff;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  flex: 1 1 200px;
  max-width: 280px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.insight-item-habit-formation-nl:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.insight-number-habit-formation-nl {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #10b981;
  margin: 0 0 0.5rem;
  line-height: 1;
}

.insight-label-habit-formation-nl {
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.framework-section-habit-formation-nl {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) var(--space-lg);
  overflow: hidden;
}

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

.framework-header-habit-formation-nl {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.framework-title-habit-formation-nl {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1rem;
  letter-spacing: -0.015em;
}

.framework-intro-habit-formation-nl {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  line-height: 1.7;
  color: #cbd5e1;
  margin: 0;
}

.framework-steps-habit-formation-nl {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.step-habit-formation-nl {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  flex: 1 1 250px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.step-habit-formation-nl:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.5);
  transform: translateY(-4px);
}

.step-number-habit-formation-nl {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #10b981;
  margin: 0;
  line-height: 1;
}

.step-title-habit-formation-nl {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.step-description-habit-formation-nl {
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-section-habit-formation-nl {
    min-height: auto;
    padding: clamp(2rem, 5vw, 3rem) var(--space-lg);
  }

  .posts-grid-habit-formation-nl {
    flex-direction: column;
    align-items: stretch;
  }

  .card-habit-formation-nl {
    flex: 1 1 auto;
    max-width: none;
  }

  .insights-cards-habit-formation-nl {
    flex-direction: column;
    align-items: stretch;
  }

  .insight-item-habit-formation-nl {
    flex: 1 1 auto;
    max-width: none;
  }

  .framework-steps-habit-formation-nl {
    flex-direction: column;
    align-items: stretch;
  }

  .step-habit-formation-nl {
    flex: 1 1 auto;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .card-meta-habit-formation-nl {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-content-habit-formation-nl {
    gap: 1.5rem;
  }

  .accent-box-habit-formation-nl {
    flex-direction: column;
    text-align: center;
  }
}

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

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

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

.main-eerste-twee-weken-regel {
  width: 100%;
  overflow-x: hidden;
}

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

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

.hero-section-eerste-twee-weken-regel {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a1535 100%);
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) var(--space-lg);
  overflow: hidden;
  position: relative;
}

.hero-section-eerste-twee-weken-regel::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #10b981 0%, transparent 70%);
  opacity: 0.08;
  animation: float-decoration 20s ease-in-out infinite;
}

.hero-section-eerste-twee-weken-regel::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
  opacity: 0.08;
  animation: float-decoration 25s ease-in-out infinite reverse;
}

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

.breadcrumbs-eerste-twee-weken-regel {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-eerste-twee-weken-regel a {
  color: #94a3b8;
  text-decoration: none;
  transition: color var(--transition-base);
}

.breadcrumbs-eerste-twee-weken-regel a:hover {
  color: #10b981;
}

.breadcrumbs-eerste-twee-weken-regel span {
  color: #64748b;
}

.hero-content-eerste-twee-weken-regel {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text-eerste-twee-weken-regel {
  flex: 1 1 45%;
  min-width: 0;
}

.hero-title-eerste-twee-weken-regel {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-family: var(--font-heading);
  color: #ffffff;
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-lg);
  font-weight: var(--font-weight-bold);
}

.hero-subtitle-eerste-twee-weken-regel {
  font-size: clamp(0.95rem, 1.5vw, 1.25rem);
  color: #cbd5e1;
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-xl);
  font-weight: var(--font-weight-regular);
}

.hero-meta-eerste-twee-weken-regel {
  display: flex;
  flex-direction: row;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

.meta-item-eerste-twee-weken-regel {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: #94a3b8;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.meta-item-eerste-twee-weken-regel i {
  color: #10b981;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
}

.hero-image-wrapper-eerste-twee-weken-regel {
  flex: 1 1 45%;
  min-width: 0;
}

.hero-image-eerste-twee-weken-regel {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  display: block;
}

@media (max-width: 768px) {
  .hero-content-eerste-twee-weken-regel {
    flex-direction: column;
    gap: var(--space-xl);
  }

  .hero-text-eerste-twee-weken-regel,
  .hero-image-wrapper-eerste-twee-weken-regel {
    flex: 1 1 100%;
  }

  .hero-title-eerste-twee-weken-regel {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
  }

  .hero-meta-eerste-twee-weken-regel {
    gap: var(--space-md);
  }
}

.intro-section-eerste-twee-weken-regel {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) var(--space-lg);
  overflow: hidden;
}

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

.intro-text-wrapper-eerste-twee-weken-regel {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-eerste-twee-weken-regel {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  margin-bottom: var(--space-lg);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
}

.intro-text-eerste-twee-weken-regel {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.intro-image-wrapper-eerste-twee-weken-regel {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-eerste-twee-weken-regel {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

@media (max-width: 768px) {
  .intro-content-eerste-twee-weken-regel {
    flex-direction: column;
    gap: var(--space-xl);
  }

  .intro-text-wrapper-eerste-twee-weken-regel,
  .intro-image-wrapper-eerste-twee-weken-regel {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.foundation-section-eerste-twee-weken-regel {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) var(--space-lg);
  overflow: hidden;
}

.foundation-content-eerste-twee-weken-regel {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.foundation-text-wrapper-eerste-twee-weken-regel {
  flex: 1 1 50%;
  max-width: 50%;
}

.foundation-title-eerste-twee-weken-regel {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  margin-bottom: var(--space-lg);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
}

.foundation-text-eerste-twee-weken-regel {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.highlight-box-eerste-twee-weken-regel {
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
  border-left: 4px solid #10b981;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--space-lg);
}

.highlight-text-eerste-twee-weken-regel {
  color: #065f46;
  font-weight: var(--font-weight-semibold);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  line-height: var(--line-height-relaxed);
}

.foundation-image-wrapper-eerste-twee-weken-regel {
  flex: 1 1 50%;
  max-width: 50%;
}

.foundation-image-eerste-twee-weken-regel {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

@media (max-width: 768px) {
  .foundation-content-eerste-twee-weken-regel {
    flex-direction: column;
    gap: var(--space-xl);
  }

  .foundation-text-wrapper-eerste-twee-weken-regel,
  .foundation-image-wrapper-eerste-twee-weken-regel {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.strategy-section-eerste-twee-weken-regel {
  background: linear-gradient(135deg, #0f0a1e 0%, #1a1035 100%);
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) var(--space-lg);
  overflow: hidden;
}

.strategy-content-eerste-twee-weken-regel {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.strategy-title-eerste-twee-weken-regel {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
}

.steps-wrapper-eerste-twee-weken-regel {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.step-card-eerste-twee-weken-regel {
  flex: 1 1 calc(50% - 1.5rem);
  min-width: 280px;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  transition: all var(--transition-base);
}

.step-card-eerste-twee-weken-regel:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(16, 185, 129, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.step-number-eerste-twee-weken-regel {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: var(--font-weight-bold);
  color: #10b981;
  font-family: var(--font-heading);
  line-height: 1;
}

.step-title-eerste-twee-weken-regel {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
}

.step-text-eerste-twee-weken-regel {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: var(--line-height-relaxed);
}

@media (max-width: 768px) {
  .step-card-eerste-twee-weken-regel {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .steps-wrapper-eerste-twee-weken-regel {
    gap: var(--space-lg);
  }
}

.reality-section-eerste-twee-weken-regel {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) var(--space-lg);
  overflow: hidden;
}

.reality-content-eerste-twee-weken-regel {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.reality-text-wrapper-eerste-twee-weken-regel {
  flex: 1 1 50%;
  max-width: 50%;
}

.reality-title-eerste-twee-weken-regel {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  margin-bottom: var(--space-lg);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
}

.reality-text-eerste-twee-weken-regel {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.quote-eerste-twee-weken-regel {
  background: linear-gradient(135deg, #fef3c7 0%, #fef08a 100%);
  border-left: 4px solid #f59e0b;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin-top: var(--space-xl);
  font-style: italic;
}

.quote-text-eerste-twee-weken-regel {
  color: #92400e;
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  line-height: var(--line-height-relaxed);
  font-weight: var(--font-weight-semibold);
}

.reality-image-wrapper-eerste-twee-weken-regel {
  flex: 1 1 50%;
  max-width: 50%;
}

.reality-image-eerste-twee-weken-regel {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

@media (max-width: 768px) {
  .reality-content-eerste-twee-weken-regel {
    flex-direction: column;
    gap: var(--space-xl);
  }

  .reality-text-wrapper-eerste-twee-weken-regel,
  .reality-image-wrapper-eerste-twee-weken-regel {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-eerste-twee-weken-regel {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) var(--space-lg);
  overflow: hidden;
}

.conclusion-content-eerste-twee-weken-regel {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-eerste-twee-weken-regel {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  margin-bottom: var(--space-lg);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
}

.conclusion-text-eerste-twee-weken-regel {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-lg);
}

.cta-box-eerste-twee-weken-regel {
  background: linear-gradient(135deg, #065f46 0%, #047857 100%);
  color: #ffffff;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
  text-align: center;
  margin-top: var(--space-2xl);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.cta-title-eerste-twee-weken-regel {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: #ffffff;
  margin-bottom: var(--space-md);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
}

.cta-text-eerste-twee-weken-regel {
  color: #d1fae5;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.05rem);
  line-height: var(--line-height-relaxed);
}

.disclaimer-section-eerste-twee-weken-regel {
  background: #1e293b;
  color: #ffffff;
  padding: clamp(2.5rem, 6vw, 4rem) var(--space-lg);
  overflow: hidden;
}

.disclaimer-content-eerste-twee-weken-regel {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
}

.disclaimer-title-eerste-twee-weken-regel {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: #f1f5f9;
  margin-bottom: var(--space-md);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
}

.disclaimer-text-eerste-twee-weken-regel {
  color: #cbd5e1;
  font-size: clamp(0.8rem, 0.95vw + 0.5rem, 0.95rem);
  line-height: var(--line-height-relaxed);
}

.related-section-eerste-twee-weken-regel {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) var(--space-lg);
  overflow: hidden;
}

.related-content-eerste-twee-weken-regel {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.related-title-eerste-twee-weken-regel {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
}

.related-cards-wrapper-eerste-twee-weken-regel {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-eerste-twee-weken-regel {
  flex: 1 1 calc(33.333% - 2rem);
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.related-card-eerste-twee-weken-regel:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-6px);
}

.related-image-wrapper-eerste-twee-weken-regel {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-card-image-eerste-twee-weken-regel {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.related-card-eerste-twee-weken-regel:hover .related-card-image-eerste-twee-weken-regel {
  transform: scale(1.05);
}

.related-card-body-eerste-twee-weken-regel {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.related-card-title-eerste-twee-weken-regel {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #1e293b;
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-snug);
}

.related-card-text-eerste-twee-weken-regel {
  color: #64748b;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  line-height: var(--line-height-relaxed);
}

.related-card-link-eerste-twee-weken-regel {
  color: #10b981;
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  transition: color var(--transition-base);
  margin-top: auto;
}

.related-card-link-eerste-twee-weken-regel:hover {
  color: #059669;
}

@media (max-width: 1024px) {
  .related-card-eerste-twee-weken-regel {
    flex: 1 1 calc(50% - 1.5rem);
  }
}

@media (max-width: 768px) {
  .related-card-eerste-twee-weken-regel {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-cards-wrapper-eerste-twee-weken-regel {
    gap: var(--space-lg);
  }
}

@media (max-width: 768px) {
  .hero-section-eerste-twee-weken-regel {
    padding: clamp(2rem, 6vw, 3rem) var(--space-md);
  }

  .intro-section-eerste-twee-weken-regel,
  .foundation-section-eerste-twee-weken-regel,
  .reality-section-eerste-twee-weken-regel,
  .conclusion-section-eerste-twee-weken-regel,
  .disclaimer-section-eerste-twee-weken-regel,
  .related-section-eerste-twee-weken-regel {
    padding: clamp(2rem, 6vw, 3rem) var(--space-md);
  }

  .strategy-section-eerste-twee-weken-regel {
    padding: clamp(2rem, 6vw, 3rem) var(--space-md);
  }
}

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

.main-kettingmethode-tracking {
  width: 100%;
  overflow: hidden;
}

.hero-section-kettingmethode-tracking {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a1f2e 100%);
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-kettingmethode-tracking::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

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

.hero-section-kettingmethode-tracking .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

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

.breadcrumb-link-kettingmethode-tracking {
  color: #94a3b8;
  transition: color var(--transition-fast);
}

.breadcrumb-link-kettingmethode-tracking:hover {
  color: #10b981;
}

.breadcrumb-divider-kettingmethode-tracking {
  color: #475569;
}

.breadcrumb-current-kettingmethode-tracking {
  color: #10b981;
  font-weight: 600;
}

.hero-content-kettingmethode-tracking {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.hero-badge-kettingmethode-tracking {
  display: inline-block;
  background: rgba(16, 185, 129, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.badge-text-kettingmethode-tracking {
  color: #10b981;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

.hero-meta-kettingmethode-tracking {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.meta-item-kettingmethode-tracking {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #94a3b8;
}

.meta-item-kettingmethode-tracking i {
  color: #10b981;
  font-size: 1.125rem;
}

.meta-text-kettingmethode-tracking {
  display: block;
}

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

.hero-img-kettingmethode-tracking {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

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

.intro-text-kettingmethode-tracking {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-kettingmethode-tracking {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.intro-paragraph-kettingmethode-tracking {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-kettingmethode-tracking {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: 12px;
  overflow: hidden;
}

.intro-img-kettingmethode-tracking {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.benefits-header-kettingmethode-tracking {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.benefits-title-kettingmethode-tracking {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #1e293b;
  margin-bottom: 1rem;
  font-weight: 700;
}

.benefits-subtitle-kettingmethode-tracking {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
}

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

.benefit-card-kettingmethode-tracking {
  flex: 1 1 300px;
  max-width: 340px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}

.benefit-card-kettingmethode-tracking:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.card-number-kettingmethode-tracking {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
  margin-bottom: 1rem;
  font-family: 'DM Serif Display', serif;
}

.card-title-kettingmethode-tracking {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #1e293b;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.card-text-kettingmethode-tracking {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.6;
}

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

.setup-content-kettingmethode-tracking {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.setup-image-kettingmethode-tracking {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: 12px;
  overflow: hidden;
}

.setup-img-kettingmethode-tracking {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.setup-text-kettingmethode-tracking {
  flex: 1 1 50%;
  max-width: 50%;
}

.setup-title-kettingmethode-tracking {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.setup-paragraph-kettingmethode-tracking {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.setup-steps-kettingmethode-tracking {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.step-item-kettingmethode-tracking {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-icon-kettingmethode-tracking {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #ecfdf5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  font-size: 1.375rem;
  margin-top: 0.25rem;
}

.step-content-kettingmethode-tracking {
  flex: 1;
}

.step-title-kettingmethode-tracking {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #1e293b;
  margin-bottom: 0.375rem;
  font-weight: 700;
}

.step-description-kettingmethode-tracking {
  font-size: clamp(0.75rem, 0.9vw, 1rem);
  color: #64748b;
  line-height: 1.5;
}

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

.tips-header-kettingmethode-tracking {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.tips-title-kettingmethode-tracking {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #1e293b;
  margin-bottom: 1rem;
  font-weight: 700;
}

.tips-subtitle-kettingmethode-tracking {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
}

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

.tip-card-kettingmethode-tracking {
  flex: 1 1 280px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}

.tip-card-kettingmethode-tracking:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.tip-image-kettingmethode-tracking {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.tip-card-title-kettingmethode-tracking {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #1e293b;
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem) 0.5rem;
  margin: 0;
  font-weight: 700;
}

.tip-card-text-kettingmethode-tracking {
  font-size: clamp(0.75rem, 0.95vw, 1rem);
  color: #475569;
  padding: 0 clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem);
  line-height: 1.6;
}

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

.mistake-content-kettingmethode-tracking {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.mistake-text-kettingmethode-tracking {
  flex: 1 1 50%;
  max-width: 50%;
}

.mistake-title-kettingmethode-tracking {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.mistake-paragraph-kettingmethode-tracking {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.mistake-list-kettingmethode-tracking {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.mistake-item-kettingmethode-tracking {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #f8fafc;
  border-left: 4px solid #10b981;
  border-radius: 8px;
}

.mistake-item-title-kettingmethode-tracking {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #1e293b;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.mistake-item-text-kettingmethode-tracking {
  font-size: clamp(0.75rem, 0.9vw, 1rem);
  color: #64748b;
  line-height: 1.6;
}

.mistake-image-kettingmethode-tracking {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: 12px;
  overflow: hidden;
}

.mistake-img-kettingmethode-tracking {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quote-section-kettingmethode-tracking {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.featured-quote-kettingmethode-tracking {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  border: none;
  padding: 0;
}

.quote-text-kettingmethode-tracking {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.875rem);
  color: #ffffff;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 500;
}

.quote-author-kettingmethode-tracking {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #10b981;
  font-weight: 600;
  display: block;
}

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

.results-header-kettingmethode-tracking {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.results-title-kettingmethode-tracking {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #1e293b;
  margin-bottom: 1rem;
  font-weight: 700;
}

.results-subtitle-kettingmethode-tracking {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
}

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

.result-card-kettingmethode-tracking {
  flex: 1 1 280px;
  max-width: 320px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #10b981;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.result-period-kettingmethode-tracking {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #10b981;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.result-text-kettingmethode-tracking {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.7;
}

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

.cta-box-kettingmethode-tracking {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: 16px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3);
}

.cta-title-kettingmethode-tracking {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 700;
}

.cta-text-kettingmethode-tracking {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.cta-button-kettingmethode-tracking {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
}

.cta-button-kettingmethode-tracking:hover {
  background: rgba(255, 255, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.disclaimer-section-kettingmethode-tracking {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-top: 1px solid #e2e8f0;
  overflow: hidden;
}

.disclaimer-content-kettingmethode-tracking {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
}

.disclaimer-title-kettingmethode-tracking {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #1e293b;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.disclaimer-text-kettingmethode-tracking {
  font-size: clamp(0.75rem, 0.95vw, 1rem);
  color: #475569;
  line-height: 1.7;
}

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

.related-header-kettingmethode-tracking {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.related-title-kettingmethode-tracking {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #1e293b;
  margin-bottom: 1rem;
  font-weight: 700;
}

.related-subtitle-kettingmethode-tracking {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
}

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

.related-card-kettingmethode-tracking {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-base);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.related-card-kettingmethode-tracking:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.related-image-kettingmethode-tracking {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-image-kettingmethode-tracking img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-base);
}

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

.related-card-title-kettingmethode-tracking {
  font-size: clamp(0.875rem, 1.2vw, 1.125rem);
  color: #1e293b;
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem) 0.5rem;
  margin: 0;
  font-weight: 700;
  line-height: 1.4;
}

.related-card-text-kettingmethode-tracking {
  font-size: clamp(0.75rem, 0.9vw, 0.95rem);
  color: #64748b;
  padding: 0 clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem);
  line-height: 1.6;
  flex-grow: 1;
}

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

  .hero-section-kettingmethode-tracking::before {
    top: -60%;
    right: -40%;
    width: 300px;
    height: 300px;
  }

  .hero-content-kettingmethode-tracking {
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
  }

  .intro-content-kettingmethode-tracking,
  .setup-content-kettingmethode-tracking,
  .mistake-content-kettingmethode-tracking {
    flex-direction: column;
  }

  .intro-text-kettingmethode-tracking,
  .intro-image-kettingmethode-tracking,
  .setup-image-kettingmethode-tracking,
  .setup-text-kettingmethode-tracking,
  .mistake-text-kettingmethode-tracking,
  .mistake-image-kettingmethode-tracking {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-meta-kettingmethode-tracking {
    flex-direction: column;
    gap: 1rem;
  }

  .meta-item-kettingmethode-tracking {
    flex-direction: column;
    gap: 0.25rem;
  }
}

@media (max-width: 1024px) {
  .benefits-cards-kettingmethode-tracking,
  .tips-grid-kettingmethode-tracking,
  .results-cards-kettingmethode-tracking,
  .related-cards-kettingmethode-tracking {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .benefit-card-kettingmethode-tracking,
  .tip-card-kettingmethode-tracking,
  .result-card-kettingmethode-tracking,
  .related-card-kettingmethode-tracking {
    flex: 1 1 calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
  }
}

@media (max-width: 480px) {
  .hero-title-kettingmethode-tracking {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .hero-subtitle-kettingmethode-tracking {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
  }

  .hero-meta-kettingmethode-tracking {
    gap: 1rem;
  }

  .benefits-cards-kettingmethode-tracking,
  .tips-grid-kettingmethode-tracking,
  .results-cards-kettingmethode-tracking,
  .related-cards-kettingmethode-tracking {
    gap: 1rem;
  }

  .benefit-card-kettingmethode-tracking,
  .tip-card-kettingmethode-tracking,
  .result-card-kettingmethode-tracking,
  .related-card-kettingmethode-tracking {
    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;
  }
}

.main-gewoonten-stapelen {
  width: 100%;
  overflow-x: hidden;
}

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

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

.hero-section-gewoonten-stapelen {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a1f35 100%);
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.hero-section-gewoonten-stapelen::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #10b981 0%, transparent 70%);
  opacity: 0.08;
  animation: float 20s ease-in-out infinite;
}

.hero-section-gewoonten-stapelen::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
  opacity: 0.08;
  animation: float 25s ease-in-out infinite reverse;
}

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

.breadcrumbs-gewoonten-stapelen {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  color: #94a3b8;
  position: relative;
  z-index: 10;
}

.breadcrumbs-gewoonten-stapelen a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-gewoonten-stapelen a:hover {
  color: #10b981;
}

.breadcrumbs-gewoonten-stapelen span {
  color: #64748b;
}

.hero-content-gewoonten-stapelen {
  position: relative;
  z-index: 10;
  text-align: center;
}

.hero-title-gewoonten-stapelen {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-family: 'DM Serif Display', serif;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-gewoonten-stapelen {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-meta-gewoonten-stapelen {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  color: #94a3b8;
  flex-wrap: wrap;
}

.meta-item-gewoonten-stapelen {
  color: #94a3b8;
}

.meta-divider-gewoonten-stapelen {
  color: #475569;
}

.hero-image-gewoonten-stapelen {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  margin: 0 auto;
  max-height: 500px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

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

.intro-text-gewoonten-stapelen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-gewoonten-stapelen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1e293b;
  font-family: 'DM Serif Display', serif;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-paragraph-gewoonten-stapelen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.intro-image-gewoonten-stapelen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-gewoonten-stapelen img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

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

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

.concept-content-gewoonten-stapelen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  flex-direction: column;
}

.concept-title-gewoonten-stapelen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1e293b;
  font-family: 'DM Serif Display', serif;
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
  grid-column: 1 / -1;
}

.concept-cards-gewoonten-stapelen {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.concept-card-gewoonten-stapelen {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

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

.concept-card-number-gewoonten-stapelen {
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 800;
  color: #10b981;
  font-family: 'DM Serif Display', serif;
  flex-shrink: 0;
  line-height: 1;
}

.concept-card-body-gewoonten-stapelen {
  flex: 1;
}

.concept-card-title-gewoonten-stapelen {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: #1e293b;
  margin-bottom: 0.75rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.concept-card-text-gewoonten-stapelen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

.concept-image-gewoonten-stapelen {
  flex: 1 1 50%;
  max-width: 50%;
}

.concept-image-gewoonten-stapelen img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

@media (max-width: 768px) {
  .concept-content-gewoonten-stapelen {
    flex-direction: column;
  }
  
  .concept-cards-gewoonten-stapelen,
  .concept-image-gewoonten-stapelen {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .concept-title-gewoonten-stapelen {
    grid-column: 1;
  }
}

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

.examples-content-gewoonten-stapelen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
  flex-direction: column;
}

.examples-title-gewoonten-stapelen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1e293b;
  font-family: 'DM Serif Display', serif;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  flex: 1 1 50%;
  max-width: 50%;
}

.examples-intro-gewoonten-stapelen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
  flex: 1 1 50%;
  max-width: 50%;
}

.examples-cards-gewoonten-stapelen {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.example-card-gewoonten-stapelen {
  background: #f8fafc;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid #10b981;
  transition: all 0.3s ease;
}

.example-card-gewoonten-stapelen:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.example-title-gewoonten-stapelen {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  color: #10b981;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.example-list-gewoonten-stapelen {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.example-item-gewoonten-stapelen {
  font-size: clamp(0.8125rem, 1vw + 0.5rem, 0.9375rem);
  color: #475569;
  line-height: 1.5;
  padding-left: 1.5rem;
  position: relative;
}

.example-item-gewoonten-stapelen::before {
  content: '';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.examples-image-gewoonten-stapelen {
  flex: 1 1 50%;
  max-width: 50%;
}

.examples-image-gewoonten-stapelen img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

@media (max-width: 768px) {
  .examples-content-gewoonten-stapelen {
    flex-direction: column;
  }
  
  .examples-title-gewoonten-stapelen,
  .examples-intro-gewoonten-stapelen,
  .examples-cards-gewoonten-stapelen,
  .examples-image-gewoonten-stapelen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.psychology-text-gewoonten-stapelen {
  flex: 1 1 50%;
  max-width: 50%;
}

.psychology-title-gewoonten-stapelen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1e293b;
  font-family: 'DM Serif Display', serif;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.psychology-paragraph-gewoonten-stapelen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.psychology-quote-gewoonten-stapelen {
  background: #ffffff;
  border-left: 4px solid #8b5cf6;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: var(--radius-lg);
  margin: 2rem 0;
  box-shadow: var(--shadow-md);
}

.quote-text-gewoonten-stapelen {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  color: #1e293b;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1rem;
}

.quote-author-gewoonten-stapelen {
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  color: #8b5cf6;
  font-weight: 600;
  display: block;
}

.psychology-image-gewoonten-stapelen {
  flex: 1 1 50%;
  max-width: 50%;
}

.psychology-image-gewoonten-stapelen img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

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

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

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

.tips-title-gewoonten-stapelen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1e293b;
  font-family: 'DM Serif Display', serif;
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

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

.tip-card-gewoonten-stapelen {
  flex: 1 1 calc(33.333% - 1.33rem);
  min-width: 280px;
  max-width: 380px;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: #f8fafc;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.tip-icon-gewoonten-stapelen {
  font-size: 1.5rem;
  color: #10b981;
  font-weight: bold;
  line-height: 1;
}

.tip-title-gewoonten-stapelen {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: #1e293b;
  font-weight: 600;
  margin: 0;
}

.tip-text-gewoonten-stapelen {
  font-size: clamp(0.8125rem, 1vw + 0.5rem, 0.9375rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.tips-image-gewoonten-stapelen {
  margin-top: clamp(2rem, 3vw, 3rem);
}

.tips-image-gewoonten-stapelen img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  max-height: 400px;
}

@media (max-width: 1024px) {
  .tip-card-gewoonten-stapelen {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

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

.conclusion-section-gewoonten-stapelen {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a1f35 100%);
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.conclusion-section-gewoonten-stapelen::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #10b981 0%, transparent 70%);
  opacity: 0.08;
  animation: float 20s ease-in-out infinite;
}

.conclusion-content-gewoonten-stapelen {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-gewoonten-stapelen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  font-family: 'DM Serif Display', serif;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

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

.cta-box-gewoonten-stapelen {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  padding: clamp(2rem, 3vw, 3rem);
  border-radius: var(--radius-xl);
  margin-top: clamp(2rem, 3vw, 3rem);
  box-shadow: var(--shadow-xl);
  text-align: center;
}

.cta-title-gewoonten-stapelen {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  color: #ffffff;
  font-family: 'DM Serif Display', serif;
  margin-bottom: 0.75rem;
}

.cta-text-gewoonten-stapelen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.cta-button-gewoonten-stapelen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.875rem, 1vw + 0.5rem, 1.125rem) clamp(1.5rem, 2vw, 2rem);
  background: #ffffff;
  color: #10b981;
  border-radius: var(--radius-lg);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.cta-button-gewoonten-stapelen:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  opacity: 0.95;
}

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

.disclaimer-content-gewoonten-stapelen {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-gewoonten-stapelen {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.disclaimer-text-gewoonten-stapelen {
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  color: #64748b;
  line-height: 1.6;
}

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

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

.related-title-gewoonten-stapelen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1e293b;
  font-family: 'DM Serif Display', serif;
  text-align: center;
  margin-bottom: 0.5rem;
}

.related-intro-gewoonten-stapelen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

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

.related-card-gewoonten-stapelen {
  flex: 1 1 calc(33.333% - 1.33rem);
  min-width: 300px;
  max-width: 400px;
  background: #f8fafc;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.related-image-gewoonten-stapelen {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.related-image-gewoonten-stapelen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-title-gewoonten-stapelen {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #1e293b;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.related-card-text-gewoonten-stapelen {
  font-size: clamp(0.8125rem, 1vw + 0.5rem, 0.9375rem);
  color: #64748b;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.related-link-gewoonten-stapelen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #10b981;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.8125rem, 1vw + 0.5rem, 0.9375rem);
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.related-link-gewoonten-stapelen:hover {
  color: #059669;
  gap: 0.75rem;
}

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

@media (max-width: 768px) {
  .related-card-gewoonten-stapelen {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .related-image-gewoonten-stapelen {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .hero-section-gewoonten-stapelen {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }
  
  .breadcrumbs-gewoonten-stapelen {
    flex-wrap: wrap;
    margin-bottom: 1rem;
  }
  
  .hero-image-gewoonten-stapelen {
    max-height: 350px;
  }
  
  .concept-title-gewoonten-stapelen,
  .examples-title-gewoonten-stapelen,
  .psychology-title-gewoonten-stapelen,
  .tips-title-gewoonten-stapelen,
  .conclusion-title-gewoonten-stapelen {
    margin-bottom: 1rem;
  }
  
  .intro-section-gewoonten-stapelen,
  .concept-section-gewoonten-stapelen,
  .examples-section-gewoonten-stapelen,
  .psychology-section-gewoonten-stapelen,
  .tips-section-gewoonten-stapelen,
  .conclusion-section-gewoonten-stapelen,
  .disclaimer-section-gewoonten-stapelen,
  .related-section-gewoonten-stapelen {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }
}

.main-terugvallen-en-herstellen {
  width: 100%;
  background: var(--color-bg-secondary);
  color: var(--color-text-dark);
}

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

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

.hero-section-terugvallen-en-herstellen::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
  opacity: 0.08;
  animation: float 25s ease-in-out infinite;
  pointer-events: none;
}

.hero-section-terugvallen-en-herstellen::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
  opacity: 0.08;
  animation: float 30s ease-in-out infinite reverse;
  pointer-events: none;
}

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

.breadcrumbs-terugvallen-en-herstellen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.95rem);
  position: relative;
  z-index: 10;
}

.breadcrumbs-terugvallen-en-herstellen a {
  color: var(--color-text-secondary-light);
  transition: color var(--transition-base);
}

.breadcrumbs-terugvallen-en-herstellen a:hover {
  color: var(--color-primary);
}

.breadcrumbs-terugvallen-en-herstellen span {
  color: var(--color-text-secondary-light);
}

.breadcrumbs-terugvallen-en-herstellen span:last-child {
  color: var(--color-text-light);
  font-weight: var(--font-weight-semibold);
}

.hero-content-terugvallen-en-herstellen {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 900px;
}

.hero-title-terugvallen-en-herstellen {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-light);
  line-height: var(--line-height-tight);
  margin: 0;
}

.hero-subtitle-terugvallen-en-herstellen {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-relaxed);
  margin: 0;
  font-weight: var(--font-weight-regular);
}

.hero-meta-terugvallen-en-herstellen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary-light);
  margin: clamp(1rem, 2vw, 1.5rem) 0 0 0;
}

.meta-item-terugvallen-en-herstellen {
  display: flex;
  align-items: center;
}

.meta-divider-terugvallen-en-herstellen {
  color: var(--color-text-secondary-light);
  opacity: 0.5;
}

.hero-image-terugvallen-en-herstellen {
  width: 100%;
  max-height: 500px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-top: clamp(1rem, 2vw, 2rem);
}

.hero-img-terugvallen-en-herstellen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.intro-section-terugvallen-en-herstellen {
  background: var(--color-bg-secondary);
  color: var(--color-text-dark);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-terugvallen-en-herstellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-terugvallen-en-herstellen {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 350px;
}

.intro-img-terugvallen-en-herstellen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.intro-title-terugvallen-en-herstellen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-dark);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: var(--font-heading);
}

.intro-paragraph-terugvallen-en-herstellen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.15rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-paragraph-terugvallen-en-herstellen:last-child {
  margin-bottom: 0;
}

.concept-section-terugvallen-en-herstellen {
  background: var(--color-bg-tertiary);
  color: var(--color-text-dark);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.concept-content-terugvallen-en-herstellen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.concept-card-terugvallen-en-herstellen {
  background: var(--color-bg-card-light);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--color-primary);
  transition: all var(--transition-base);
}

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

.card-header-terugvallen-en-herstellen {
  display: flex;
  align-items: flex-start;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.card-number-terugvallen-en-herstellen {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  flex-shrink: 0;
  line-height: 1;
}

.card-title-terugvallen-en-herstellen {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  color: var(--color-text-dark);
  font-family: var(--font-heading);
  margin: 0;
  line-height: var(--line-height-snug);
}

.card-text-terugvallen-en-herstellen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1rem, 1.5vw, 1.25rem);
}

.card-text-terugvallen-en-herstellen:last-child {
  margin-bottom: 0;
}

.solution-section-terugvallen-en-herstellen {
  background: var(--color-bg-secondary);
  color: var(--color-text-dark);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.solution-content-terugvallen-en-herstellen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.solution-text-terugvallen-en-herstellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.solution-image-terugvallen-en-herstellen {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 400px;
}

.solution-img-terugvallen-en-herstellen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.solution-title-terugvallen-en-herstellen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-dark);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-family: var(--font-heading);
}

.solution-paragraph-terugvallen-en-herstellen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.15rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.highlight-box-terugvallen-en-herstellen {
  background: var(--color-primary-light);
  border-left: 4px solid var(--color-primary);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: var(--radius-lg);
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.highlight-text-terugvallen-en-herstellen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.15rem);
  color: var(--color-text-dark);
  line-height: var(--line-height-relaxed);
  margin: 0;
  font-weight: var(--font-weight-semibold);
}

.solution-list-terugvallen-en-herstellen {
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(1.5rem, 2vw, 2rem) 0;
}

.list-item-terugvallen-en-herstellen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-dark);
  padding-left: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  position: relative;
  line-height: var(--line-height-relaxed);
}

.list-item-terugvallen-en-herstellen::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
  font-size: 1.25rem;
}

.practical-section-terugvallen-en-herstellen {
  background: var(--color-bg-tertiary);
  color: var(--color-text-dark);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practical-content-terugvallen-en-herstellen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.practical-title-terugvallen-en-herstellen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-dark);
  font-family: var(--font-heading);
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

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

.step-card-terugvallen-en-herstellen {
  flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1rem));
  min-width: 280px;
  max-width: 380px;
  background: var(--color-bg-card-light);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

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

.step-number-terugvallen-en-herstellen {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  line-height: 1;
}

.step-content-terugvallen-en-herstellen {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.step-title-terugvallen-en-herstellen {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-dark);
  font-family: var(--font-heading);
  margin: 0;
  line-height: var(--line-height-snug);
}

.step-text-terugvallen-en-herstellen {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.practical-image-terugvallen-en-herstellen {
  width: 100%;
  max-width: 600px;
  margin: clamp(1rem, 2vw, 2rem) auto 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 350px;
}

.practical-img-terugvallen-en-herstellen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mindset-section-terugvallen-en-herstellen {
  background: var(--color-bg-secondary);
  color: var(--color-text-dark);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.mindset-content-terugvallen-en-herstellen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.mindset-text-terugvallen-en-herstellen {
  flex: 1 1 50%;
  max-width: 50%;
}

.mindset-image-terugvallen-en-herstellen {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 400px;
}

.mindset-img-terugvallen-en-herstellen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mindset-title-terugvallen-en-herstellen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-dark);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-family: var(--font-heading);
}

.mindset-paragraph-terugvallen-en-herstellen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.15rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.comparison-box-terugvallen-en-herstellen {
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  margin: clamp(1.5rem, 2vw, 2rem) 0;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.comparison-item-terugvallen-en-herstellen {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
}

.comparison-label-terugvallen-en-herstellen {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  margin: 0;
}

.comparison-text-terugvallen-en-herstellen {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-height-relaxed);
  margin: 0;
  font-style: italic;
}

.conclusion-section-terugvallen-en-herstellen {
  background: var(--color-bg-tertiary);
  color: var(--color-text-dark);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-terugvallen-en-herstellen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
  max-width: 900px;
}

.conclusion-title-terugvallen-en-herstellen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-dark);
  font-family: var(--font-heading);
  margin: 0;
}

.conclusion-text-terugvallen-en-herstellen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.15rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.cta-box-terugvallen-en-herstellen {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
  color: var(--color-text-light);
  margin-top: clamp(2rem, 3vw, 3rem);
}

.cta-title-terugvallen-en-herstellen {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  color: var(--color-text-light);
  font-family: var(--font-heading);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.cta-text-terugvallen-en-herstellen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.cta-button-terugvallen-en-herstellen {
  display: inline-block;
  background: var(--color-bg-primary);
  color: var(--color-text-light);
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  transition: all var(--transition-base);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
}

.cta-button-terugvallen-en-herstellen:hover {
  background: var(--color-bg-dark-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.related-section-terugvallen-en-herstellen {
  background: var(--color-bg-secondary);
  color: var(--color-text-dark);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-terugvallen-en-herstellen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.related-title-terugvallen-en-herstellen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-dark);
  font-family: var(--font-heading);
  text-align: center;
  margin: 0;
}

.related-subtitle-terugvallen-en-herstellen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.15rem);
  color: var(--color-text-secondary-dark);
  text-align: center;
  margin: 0;
}

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

.related-card-terugvallen-en-herstellen {
  flex: 1 1 calc(33.333% - clamp(1rem, 2vw, 1.5rem));
  min-width: 280px;
  max-width: 380px;
  background: var(--color-bg-card-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.related-image-terugvallen-en-herstellen {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-image-terugvallen-en-herstellen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-base);
}

.related-card-terugvallen-en-herstellen:hover .related-image-terugvallen-en-herstellen img {
  transform: scale(1.05);
}

.related-body-terugvallen-en-herstellen {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  flex-grow: 1;
}

.related-card-title-terugvallen-en-herstellen {
  font-size: clamp(1.05rem, 2vw + 0.5rem, 1.4rem);
  color: var(--color-text-dark);
  font-family: var(--font-heading);
  margin: 0;
  line-height: var(--line-height-snug);
}

.related-card-text-terugvallen-en-herstellen {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-height-relaxed);
  margin: 0;
  flex-grow: 1;
}

.related-link-terugvallen-en-herstellen {
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  transition: color var(--transition-base);
  font-size: clamp(0.85rem, 1vw + 0.5rem, 0.95rem);
  align-self: flex-start;
}

.related-link-terugvallen-en-herstellen:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.disclaimer-section-terugvallen-en-herstellen {
  background: var(--color-bg-tertiary);
  color: var(--color-text-dark);
  padding: clamp(2rem, 4vw, 3rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-terugvallen-en-herstellen {
  max-width: 900px;
}

.disclaimer-title-terugvallen-en-herstellen {
  font-size: clamp(1.15rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-dark);
  font-family: var(--font-heading);
  margin-bottom: clamp(1rem, 1.5vw, 1.25rem);
}

.disclaimer-text-terugvallen-en-herstellen {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

@media (max-width: 1024px) {
  .intro-content-terugvallen-en-herstellen,
  .solution-content-terugvallen-en-herstellen,
  .mindset-content-terugvallen-en-herstellen {
    flex-direction: column;
  }

  .intro-text-terugvallen-en-herstellen,
  .intro-image-terugvallen-en-herstellen,
  .solution-text-terugvallen-en-herstellen,
  .solution-image-terugvallen-en-herstellen,
  .mindset-text-terugvallen-en-herstellen,
  .mindset-image-terugvallen-en-herstellen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .steps-wrapper-terugvallen-en-herstellen {
    flex-direction: column;
  }

  .step-card-terugvallen-en-herstellen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-cards-terugvallen-en-herstellen {
    flex-direction: column;
  }

  .related-card-terugvallen-en-herstellen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-section-terugvallen-en-herstellen {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }

  .breadcrumbs-terugvallen-en-herstellen {
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .hero-title-terugvallen-en-herstellen {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }

  .hero-subtitle-terugvallen-en-herstellen {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
  }

  .hero-image-terugvallen-en-herstellen {
    max-height: 350px;
    margin-top: 1.5rem;
  }

  .intro-section-terugvallen-en-herstellen,
  .concept-section-terugvallen-en-herstellen,
  .solution-section-terugvallen-en-herstellen,
  .practical-section-terugvallen-en-herstellen,
  .mindset-section-terugvallen-en-herstellen,
  .conclusion-section-terugvallen-en-herstellen,
  .related-section-terugvallen-en-herstellen,
  .disclaimer-section-terugvallen-en-herstellen {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }

  .concept-content-terugvallen-en-herstellen,
  .steps-wrapper-terugvallen-en-herstellen {
    gap: 1.25rem;
  }

  .intro-image-terugvallen-en-herstellen,
  .solution-image-terugvallen-en-herstellen,
  .mindset-image-terugvallen-en-herstellen {
    min-height: 280px;
  }

  .practical-image-terugvallen-en-herstellen {
    max-width: 100%;
    min-height: 280px;
    margin-top: 1.5rem;
  }

  .comparison-box-terugvallen-en-herstellen {
    padding: 1.25rem;
    gap: 0.75rem;
  }

  .cta-box-terugvallen-en-herstellen {
    padding: 1.5rem;
    margin-top: 1.5rem;
  }

  .related-image-terugvallen-en-herstellen {
    height: 180px;
  }

  .related-body-terugvallen-en-herstellen {
    padding: 1rem;
    gap: 0.5rem;
  }
}

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

.habitflow-transformation-about {
  background: var(--color-bg-secondary);
  color: var(--color-text-dark);
}

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

.hero-foundation-about {
  background: var(--color-bg-secondary);
  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;
}

.hero-text-block-about {
  text-align: center;
  max-width: 800px;
}

.hero-title-about {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: var(--line-height-tight);
  margin-bottom: 1rem;
}

.hero-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-height-normal);
  margin-bottom: 1.5rem;
}

.hero-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

.section-header-about {
  text-align: center;
  margin-bottom: 1rem;
}

.section-tag-about {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

.journey-narrative-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 850px;
  margin: 0 auto;
}

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

.journey-image-about {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: var(--radius-lg);
  margin: 1.5rem auto 0;
  display: block;
  box-shadow: var(--shadow-sm);
}

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

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

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

.process-steps-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 2rem;
}

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

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

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

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

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

.approach-visual-about {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: var(--radius-lg);
  margin: 2rem auto 0;
  display: block;
  box-shadow: var(--shadow-sm);
}

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

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

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

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

.pillar-card-about {
  flex: 1 1 clamp(280px, 100%, 380px);
  background: var(--color-bg-card-light);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

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

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

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

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

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

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

.commitment-quote-about {
  background: var(--color-bg-tertiary);
  border-left: 4px solid var(--color-primary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}

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

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

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

.commitment-image-about {
  width: 100%;
  max-width: 750px;
  height: auto;
  border-radius: var(--radius-lg);
  margin: 1.5rem auto 0;
  display: block;
  box-shadow: var(--shadow-sm);
}

.disclaimer-section-about {
  background: var(--color-bg-tertiary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e5e7eb;
}

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

.disclaimer-header-about {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.disclaimer-icon-about {
  font-size: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

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

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

@media (max-width: 768px) {
  .process-step-about {
    gap: 1rem;
  }

  .step-number-about {
    min-width: 2.5rem;
  }

  .pillar-card-about {
    flex: 1 1 100%;
  }
}

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

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

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

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

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

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

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

.faq-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(var(--font-3xl), 6vw, var(--font-5xl));
  font-weight: var(--font-weight-bold);
  color: var(--color-text-light);
  margin: 0 0 var(--space-sm) 0;
  line-height: var(--line-height-tight);
}

.faq-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(var(--font-base), 2vw, var(--font-lg));
  font-weight: var(--font-weight-regular);
  color: var(--color-text-secondary-light);
  margin: 0;
  line-height: var(--line-height-relaxed);
}

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

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

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

.faq-item {
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: rgba(16, 185, 129, 0.3);
  background-color: rgba(255, 255, 255, 0.08);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) var(--space-md);
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: clamp(var(--font-sm), 1.5vw, var(--font-base));
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-light);
  text-align: left;
  transition: color var(--transition-fast);
}

.faq-trigger:hover {
  color: var(--color-primary);
}

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

.faq-question {
  flex: 1;
  padding-right: var(--space-md);
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  font-size: var(--font-xl);
  font-weight: var(--font-weight-bold);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-trigger[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 var(--space-md) var(--space-lg) var(--space-md);
  font-family: var(--font-primary);
  font-size: clamp(var(--font-sm), 1.5vw, var(--font-base));
  font-weight: var(--font-weight-regular);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-relaxed);
  animation: slideDown var(--transition-base) ease-out;
}

.faq-answer p {
  margin: 0;
}

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

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

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

.faq-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(var(--font-2xl), 5vw, var(--font-4xl));
  font-weight: var(--font-weight-bold);
  color: var(--color-text-light);
  margin: 0 0 var(--space-sm) 0;
  line-height: var(--line-height-tight);
}

.faq-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(var(--font-base), 1.5vw, var(--font-lg));
  font-weight: var(--font-weight-regular);
  color: var(--color-text-secondary-light);
  margin: 0 0 var(--space-lg) 0;
  line-height: var(--line-height-relaxed);
}

.faq-cta-button {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: var(--font-base);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  border: none;
}

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

.faq-cta-button:focus-visible {
  outline: 2px solid var(--color-text-light);
  outline-offset: 2px;
}

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

  .faq-content {
    padding: var(--space-3xl) var(--space-md);
  }

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

  .faq-trigger {
    padding: var(--space-xl) var(--space-lg);
  }

  .faq-answer {
    padding: 0 var(--space-lg) var(--space-xl) var(--space-lg);
  }

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

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

  .faq-content {
    padding: var(--space-4xl) var(--space-lg);
  }

  .faq-cta {
    padding: var(--space-4xl) var(--space-lg);
  }
}

.services-page {
  background-color: var(--color-bg-primary);
}

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

.services-hero__container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

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

.services-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary-light);
  margin: 0;
  line-height: var(--line-height-normal);
  font-weight: var(--font-weight-regular);
}

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

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

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

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

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

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

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

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

.service-card:hover {
  border-color: var(--color-primary);
  background-color: rgba(16, 185, 129, 0.05);
  transform: translateY(-4px);
}

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
  font-size: 1.5rem;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.25rem, 1.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-light);
  margin: 0 0 var(--space-sm) 0;
  line-height: var(--line-height-tight);
}

.service-card__description {
  font-family: var(--font-primary);
  font-size: var(--font-sm);
  color: var(--color-text-secondary-light);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-relaxed);
  font-weight: var(--font-weight-regular);
}

.service-card__topics {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.service-card__topics li {
  font-family: var(--font-primary);
  font-size: var(--font-sm);
  color: var(--color-text-secondary-light);
  padding-left: var(--space-md);
  position: relative;
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-normal);
}

.service-card__topics li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
}

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

.services-cta__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

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

.services-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-light);
  margin: 0;
  line-height: var(--line-height-tight);
}

.services-cta__text {
  font-family: var(--font-primary);
  font-size: var(--font-base);
  color: var(--color-text-secondary-light);
  margin: 0;
  line-height: var(--line-height-relaxed);
  font-weight: var(--font-weight-regular);
}

.services-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-lg);
  font-family: var(--font-primary);
  font-size: var(--font-base);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  width: fit-content;
}

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

.services-cta__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 300px;
}

.services-cta__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .services-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
  
  .services-cta__container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
  
  .services-cta__image {
    height: 350px;
  }
}

@media (min-width: 1024px) {
  .services-cta {
    padding: var(--space-4xl) var(--space-xl);
  }
  
  .services-cta__container {
    gap: var(--space-3xl);
  }
  
  .services-cta__image {
    height: 400px;
  }
}

.habit-docs {
  width: 100%;
  background-color: var(--color-bg-secondary);
}

.habit-docs .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.habit-docs .content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-sm);
}

.habit-docs h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-dark-secondary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.habit-docs .last-updated {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary-dark);
  margin-bottom: var(--space-2xl);
  font-weight: var(--font-weight-regular);
}

.habit-docs h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-dark-secondary);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-snug);
}

.habit-docs p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-dark);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-relaxed);
}

.habit-docs ul,
.habit-docs ol {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-dark);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-relaxed);
  padding-left: var(--space-lg);
}

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

.habit-docs strong {
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-dark-secondary);
}

.habit-docs .contact-section {
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid #e2e8f0;
}

.habit-docs .contact-section h2 {
  margin-top: 0;
  margin-bottom: var(--space-lg);
}

.habit-docs .contact-info {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.habit-docs .contact-info strong {
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-dark-secondary);
}

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

  .habit-docs .content {
    padding: var(--space-3xl) var(--space-md);
  }
}

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

  .habit-docs .content {
    padding: var(--space-4xl) var(--space-lg);
  }
}

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

html, body {
  width: 100%;
  height: 100%;
}

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

.thank-you-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.thank-you-section {
  width: 100%;
  padding: var(--space-xl) var(--space-md);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

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

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.success-icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  animation: successPulse 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-icon svg {
  color: var(--color-primary);
  width: 100%;
  height: 100%;
}

@keyframes successPulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-you-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-light);
  line-height: var(--line-height-tight);
  margin: var(--space-md) 0 var(--space-sm);
}

.thank-you-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
  line-height: var(--line-height-snug);
  margin: 0 0 var(--space-md);
}

.thank-you-description {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-relaxed);
  margin: 0 0 var(--space-lg);
  font-weight: var(--font-weight-regular);
}

.thank-you-highlight {
  background-color: var(--color-bg-card-dark);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
  animation: slideIn 0.6s ease-out 0.2s backwards;
}

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

.highlight-text {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-light);
  line-height: var(--line-height-relaxed);
  font-weight: var(--font-weight-regular);
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-xl);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  font-family: var(--font-primary);
  margin-top: var(--space-md);
}

.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: 640px) {
  .thank-you-section {
    padding: var(--space-3xl) var(--space-md);
  }

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

  .thank-you-highlight {
    padding: var(--space-lg) var(--space-2xl);
  }
}

@media (min-width: 768px) {
  .thank-you-section {
    padding: var(--space-4xl) var(--space-lg);
  }

  .thank-you-content {
    gap: var(--space-2xl);
  }

  .success-icon {
    width: 140px;
    height: 140px;
  }

  .btn {
    padding: var(--space-md) var(--space-2xl);
    font-size: clamp(0.95rem, 1vw + 0.5rem, 1.05rem);
  }
}

@media (min-width: 1024px) {
  .thank-you-section {
    padding: var(--space-4xl) var(--space-xl);
  }

  .success-icon {
    width: 160px;
    height: 160px;
    margin-bottom: var(--space-xl);
  }

  .thank-you-title {
    margin: var(--space-lg) 0 var(--space-md);
  }
}

@media (max-width: 639px) {
  .thank-you-page {
    padding: var(--space-sm);
  }

  .container {
    padding: 0 var(--space-sm);
  }
}

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

html, body {
  width: 100%;
  height: 100%;
}

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

.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  background-color: var(--color-bg-primary);
}

.error-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  overflow: hidden;
  position: relative;
}

.error-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.error-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

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

.content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.error-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-xl);
}

.error-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 12vw, 7rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  line-height: var(--line-height-tight);
  letter-spacing: -2px;
  text-shadow: 0 8px 16px rgba(16, 185, 129, 0.15);
  animation: float 4s ease-in-out infinite;
}

.error-illustration {
  width: clamp(120px, 30vw, 200px);
  height: clamp(120px, 30vw, 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  border-radius: var(--radius-2xl);
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(16, 185, 129, 0.2);
}

.habit-icon {
  color: var(--color-primary);
  animation: pulse-icon 3s ease-in-out infinite;
}

.error-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  animation: slideUp 0.8s ease-out 0.2s both;
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-light);
  line-height: var(--line-height-snug);
  letter-spacing: -0.5px;
}

.error-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-snug);
}

.error-message {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-sm);
}

.error-actions {
  display: flex;
  justify-content: center;
  margin-top: var(--space-lg);
  gap: var(--space-md);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-xl);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: var(--font-weight-semibold);
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-base);
  white-space: nowrap;
  font-family: var(--font-primary);
  letter-spacing: 0.3px;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  box-shadow: var(--shadow-lg);
}

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

.habit-suggestion {
  background: rgba(16, 185, 129, 0.08);
  border: 2px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-top: var(--space-xl);
  animation: slideUp 0.8s ease-out 0.4s both;
}

.suggestion-label {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.suggestion-text {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-relaxed);
}

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

@keyframes pulse-icon {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

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

@media (min-width: 640px) {
  .error-section {
    padding: var(--space-2xl) var(--space-lg);
  }

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

  .error-illustration {
    border-radius: var(--radius-2xl);
  }
}

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

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

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

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-4xl) var(--space-lg);
  }

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

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

@media (max-width: 480px) {
  .error-code {
    margin-bottom: var(--space-sm);
  }

  .error-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}

.contact-message-us {
  width: 100%;
  background-color: var(--color-bg-primary);
  color: var(--color-text-light);
}

.contact-message-us-hero {
  width: 100%;
  padding: var(--space-2xl) 0;
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.contact-message-us-hero-content {
  width: 100%;
  text-align: center;
}

.contact-message-us-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.contact-message-us-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.15rem);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-relaxed);
  max-width: 700px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-message-us-hero {
    padding: var(--space-3xl) 0;
  }
}

@media (min-width: 1024px) {
  .contact-message-us-hero {
    padding: var(--space-4xl) 0;
  }
}

.contact-message-us-main {
  width: 100%;
  padding: var(--space-2xl) 0;
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.contact-message-us-main-content {
  width: 100%;
}

.contact-message-us-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xl);
}

.contact-message-us-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-message-us-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .contact-message-us-form-wrapper {
    flex: 1 1 calc(50% - var(--space-lg));
  }

  .contact-message-us-info-wrapper {
    flex: 1 1 calc(50% - var(--space-lg));
  }
}

@media (min-width: 1024px) {
  .contact-message-us-form-wrapper {
    flex: 1 1 calc(50% - var(--space-xl));
  }

  .contact-message-us-info-wrapper {
    flex: 1 1 calc(50% - var(--space-xl));
  }
}

.contact-message-us-form-header {
  margin-bottom: var(--space-xl);
}

.contact-message-us-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
  line-height: var(--line-height-tight);
}

.contact-message-us-form-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-relaxed);
}

.contact-message-us-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-message-us-form-row {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.contact-message-us-label {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 0.9vw + 0.5rem, 1rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-light);
}

.contact-message-us-input,
.contact-message-us-textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-light);
  transition: all var(--transition-base);
  box-sizing: border-box;
}

.contact-message-us-input::placeholder,
.contact-message-us-textarea::placeholder {
  color: var(--color-text-secondary-light);
}

.contact-message-us-input:focus,
.contact-message-us-textarea:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.contact-message-us-textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-message-us-form-consent {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
  margin-bottom: var(--space-md);
}

.contact-message-us-checkbox {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--color-primary);
  flex-shrink: 0;
}

.contact-message-us-consent-label {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 0.9vw + 0.5rem, 1rem);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-normal);
  cursor: pointer;
}

.contact-message-us-consent-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  transition: color var(--transition-base);
}

.contact-message-us-consent-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-message-us-submit {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-primary);
  color: var(--color-text-dark);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: all var(--transition-base);
  margin-top: var(--space-sm);
}

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

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

.contact-message-us-info-header {
  margin-bottom: var(--space-xl);
}

.contact-message-us-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
  line-height: var(--line-height-tight);
}

.contact-message-us-info-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-relaxed);
}

.contact-message-us-info-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.contact-message-us-info-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-message-us-info-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  flex-shrink: 0;
  font-size: 1.25rem;
}

.contact-message-us-info-content {
  flex: 1;
  min-width: 0;
}

.contact-message-us-info-item-title {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-light);
  margin-bottom: var(--space-xs);
}

.contact-message-us-info-link {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  font-weight: var(--font-weight-regular);
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

.contact-message-us-info-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-message-us-info-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.contact-message-us-info-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-message-us-feature {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-message-us-feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  flex-shrink: 0;
  font-size: 1.125rem;
}

.contact-message-us-feature-content {
  flex: 1;
  min-width: 0;
}

.contact-message-us-feature-title {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-light);
  margin-bottom: var(--space-xs);
}

.contact-message-us-feature-text {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 0.9vw + 0.5rem, 1rem);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-secondary-light);
  line-height: var(--line-height-normal);
  margin: 0;
}

@media (min-width: 768px) {
  .contact-message-us-main {
    padding: var(--space-3xl) 0;
  }
}

@media (min-width: 1024px) {
  .contact-message-us-main {
    padding: var(--space-4xl) 0;
  }
}