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

:root {
  
  
  
  
  --color-bg-dark-primary: #022c22;
  --color-bg-dark-secondary: #064e3b;
  --color-bg-dark-tertiary: #065f46;
  
  
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-light-tertiary: #f1f5f9;
  
  
  --color-bg-card-dark: rgba(16, 185, 129, 0.08);
  --color-bg-card-light: #ffffff;
  
  
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #a7f3d0;
  --color-text-dark-muted: #6ee7b7;
  
  
  --color-text-light-primary: #022c22;
  --color-text-light-secondary: #047857;
  --color-text-light-muted: #6b7280;
  
  
  --color-primary: #10b981;
  --color-primary-hover: #059669;
  --color-secondary: #34d399;
  --color-accent-light: #d1fae5;
  
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.75rem);
  font-weight: 800;
  color: var(--color-text-dark-primary);
  line-height: 1.1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-dark-secondary);
  font-weight: 500;
  line-height: 1.5;
}

.hero-description {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-dark-muted);
  line-height: 1.7;
  max-width: 90%;
}

.hero-cta-group {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  padding: clamp(0.75rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  cursor: pointer;
}

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

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

.btn-outline {
  background: transparent;
  color: var(--color-text-dark-secondary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-text-dark-primary);
}

.hero-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(52, 211, 153, 0.1) 100%);
  border-radius: var(--radius-xl);
  border: 2px solid rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-dark-secondary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  text-align: center;
  padding: var(--space-lg);
}

.features-section {
  background: var(--color-bg-light-primary);
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
}

.features-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.features-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
  position: relative;
  z-index: 1;
}

.features-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.features-subtitle {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-light-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
  position: relative;
  z-index: 1;
}

.feature-card {
  background: var(--color-bg-card-light);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(16, 185, 129, 0.15);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

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

.feature-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.3;
}

.feature-card-description {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-light-muted);
  line-height: 1.6;
  flex-grow: 1;
}

.feature-card-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

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

.benefits-section {
  background: var(--color-bg-dark-secondary);
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translateY(-50%);
}

.benefits-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.benefits-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.2;
}

.benefits-description {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-dark-muted);
  line-height: 1.7;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.benefits-list-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.benefit-checkmark {
  width: 24px;
  height: 24px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 2px;
}

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

.benefits-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits-visual-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(52, 211, 153, 0.08) 100%);
  border-radius: var(--radius-xl);
  border: 2px solid rgba(16, 185, 129, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-dark-secondary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  text-align: center;
}

.stats-section {
  background: var(--color-bg-light-secondary);
  padding: clamp(4rem, 10vw, 8rem) 0;
}

.stats-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.stats-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.stats-subtitle {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-light-muted);
  max-width: 600px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.stat-item {
  background: var(--color-bg-card-light);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(16, 185, 129, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #000 !important;
  font-weight: 600;
}

.stat-description {
  font-size: clamp(0.75rem, 0.8vw + 0.4rem, 0.875rem);
  color: var(--color-text-light-muted);
  line-height: 1.5;
}

.cta-section {
  background: var(--color-bg-dark-tertiary);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  position: relative;
}

.cta-section::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.2;
}

.cta-description {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-dark-muted);
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-sm);
}

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

.cta-buttons .btn-outline {
  border-color: var(--color-secondary);
  color: var(--color-text-dark-secondary);
}

@media (max-width: 768px) {
  .hero-content,
  .benefits-content {
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2rem);
  }
  
  .hero-visual,
  .benefits-visual {
    height: 300px;
    order: -1;
  }
  
  .hero-cta-group {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .benefits-list {
    gap: var(--space-sm);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  .feature-card {
    gap: var(--space-sm);
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-title,
  .benefits-title,
  .features-title,
  .stats-title,
  .cta-title {
    word-break: break-word;
  }
  
  .feature-card {
    padding: var(--space-md);
  }
}

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

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

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

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

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

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

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

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

.hidden {
  display: none;
}

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

.header-digital-sanctuary {
  position: static;
  background: var(--color-bg-dark-primary);
  border-bottom: 1px solid rgba(167, 243, 208, 0.1);
  width: 100%;
  z-index: 1000;
}

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

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

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

.header-digital-sanctuary-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.5px;
}

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

.header-digital-sanctuary-nav-link {
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: 500;
  color: #a7f3d0;
  text-decoration: none;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

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

.header-digital-sanctuary-nav-link:hover {
  color: var(--color-primary);
}

.header-digital-sanctuary-nav-link:hover::after {
  width: 100%;
}

.header-digital-sanctuary-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.625rem, 1.5vw, 0.75rem) clamp(1.25rem, 2.5vw, 1.75rem);
  background: var(--color-primary);
  color: var(--color-bg-dark-primary);
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
}

.header-digital-sanctuary-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
}

.header-digital-sanctuary-cta-button:active {
  transform: translateY(0);
}

.header-digital-sanctuary-mobile-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  color: #ffffff;
  font-size: 1.5rem;
  transition: color 300ms ease;
  z-index: 1001;
}

.header-digital-sanctuary-mobile-toggle:hover {
  color: var(--color-primary);
}

.header-digital-sanctuary-mobile-toggle:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.header-digital-sanctuary-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-dark-secondary);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  overflow-y: auto;
}

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

.header-digital-sanctuary-mobile-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem clamp(1rem, 5vw, 2rem);
  border-bottom: 1px solid rgba(167, 243, 208, 0.1);
}

.header-digital-sanctuary-mobile-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #ffffff;
  font-size: 1.5rem;
  transition: color 300ms ease;
  padding: 0;
}

.header-digital-sanctuary-mobile-close:hover {
  color: var(--color-primary);
}

.header-digital-sanctuary-mobile-close:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.header-digital-sanctuary-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 1rem 0;
  flex-grow: 1;
}

.header-digital-sanctuary-mobile-link {
  display: block;
  padding: clamp(1rem, 3vw, 1.25rem) clamp(1rem, 5vw, 2rem);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  color: #a7f3d0;
  text-decoration: none;
  border-bottom: 1px solid rgba(167, 243, 208, 0.08);
  transition: all 300ms ease;
}

.header-digital-sanctuary-mobile-link:hover {
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-primary);
  padding-left: clamp(1.25rem, 6vw, 2.25rem);
}

.header-digital-sanctuary-mobile-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: -2px;
}

.header-digital-sanctuary-mobile-cta {
  display: block;
  padding: clamp(1rem, 3vw, 1.25rem) clamp(1rem, 5vw, 2rem);
  margin: 1rem clamp(1rem, 5vw, 2rem) 0;
  background: var(--color-primary);
  color: var(--color-bg-dark-primary);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  border-radius: var(--radius-md);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}

.header-digital-sanctuary-mobile-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
}

.header-digital-sanctuary-mobile-cta:active {
  transform: translateY(0);
}

.header-digital-sanctuary-mobile-cta:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.3);
  outline-offset: -2px;
}

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

  .header-digital-sanctuary-mobile-toggle {
    display: none;
  }

  .header-digital-sanctuary-mobile-menu {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-digital-sanctuary-nav-link,
  .header-digital-sanctuary-nav-link::after,
  .header-digital-sanctuary-cta-button,
  .header-digital-sanctuary-mobile-menu,
  .header-digital-sanctuary-mobile-link,
  .header-digital-sanctuary-mobile-cta {
    transition: none;
  }
}

    .digital-wellness-hub {
  width: 100%;
}

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

.hero-ambient-glow {
  position: absolute;
  top: 10%;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-gradient-mesh {
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.12) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-accent-1 {
  position: absolute;
  top: 30%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

.hero-floating-accent-2 {
  position: absolute;
  bottom: 15%;
  right: 5%;
  width: 250px;
  height: 250px;
  background: rgba(52, 211, 153, 0.06);
  border-radius: 30% 70% 40% 60% / 70% 30% 60% 40%;
  z-index: 2;
  pointer-events: none;
}

.hero-light-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(167, 243, 208, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.hero-corner-element {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 150px;
  height: 150px;
  background: rgba(34, 211, 153, 0.05);
  border-radius: 20% 80% 10% 90%;
  z-index: 1;
  pointer-events: none;
}

.hero-wave-line {
  position: absolute;
  bottom: 20%;
  right: 10%;
  width: 250px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 10;
}

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

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.75rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #a7f3d0;
  font-weight: 500;
  line-height: 1.5;
}

.hero-description {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: #6ee7b7;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex-wrap: wrap;
  margin-top: var(--space-sm);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  padding: clamp(0.75rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: #10b981;
  color: #022c22;
}

.btn-primary:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #a7f3d0;
  border-color: #10b981;
}

.btn-secondary:hover {
  background: rgba(16, 185, 129, 0.1);
  color: #d1fae5;
  border-color: #34d399;
}

.hero-stats {
  display: flex;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: var(--space-md);
  flex-wrap: wrap;
}

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

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

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

.hero-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(52, 211, 153, 0.1) 100%);
  border-radius: var(--radius-xl);
  border: 2px solid rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a7f3d0;
  font-size: clamp(1rem, 2vw, 1.25rem);
  text-align: center;
  padding: var(--space-lg);
  overflow: hidden;
}

.hero-visual-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.benefits-section {
  background: #064e3b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.benefits-shape-1 {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 280px;
  height: 280px;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%;
  z-index: 1;
  pointer-events: none;
}

.benefits-glow-accent {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.benefits-floating-panel {
  position: absolute;
  top: 30%;
  left: 15%;
  width: 180px;
  height: 140px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 10px;
  transform: rotate(-8deg);
  z-index: 2;
  pointer-events: none;
}

.benefits-line-element {
  position: absolute;
  top: 40%;
  right: 20%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.25), transparent);
  z-index: 2;
  pointer-events: none;
}

.benefits-organic-form {
  position: absolute;
  bottom: 15%;
  right: 5%;
  width: 220px;
  height: 240px;
  background: rgba(34, 211, 153, 0.06);
  border-radius: 35% 65% 55% 45% / 45% 35% 65% 55%;
  z-index: 1;
  pointer-events: none;
}

.benefits-secondary-glow {
  position: absolute;
  top: 5%;
  right: 30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(167, 243, 208, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.benefits-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 10;
}

.benefits-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits-visual-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(52, 211, 153, 0.08) 100%);
  border-radius: var(--radius-xl);
  border: 2px solid rgba(16, 185, 129, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a7f3d0;
  font-size: clamp(1rem, 2vw, 1.25rem);
  text-align: center;
  overflow: hidden;
}

.benefits-visual-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

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

.benefits-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.benefits-description {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: #a7f3d0;
  line-height: 1.7;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.benefits-list-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.benefit-checkmark {
  width: 24px;
  height: 24px;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 700;
}

.benefit-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: #a7f3d0;
  line-height: 1.6;
}

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

.featured-header-glow {
  position: absolute;
  top: 5%;
  right: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.featured-accent-shape {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 280px;
  height: 280px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 50% 40% 60% 50% / 40% 50% 50% 60%;
  z-index: 1;
  pointer-events: none;
}

.featured-background-mesh {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.featured-corner-accent {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(52, 211, 153, 0.05));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.featured-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
  position: relative;
  z-index: 2;
}

.featured-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #022c22;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

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

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

.featured-card {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(16, 185, 129, 0.15);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: #10b981;
}

.featured-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.featured-card-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  flex-grow: 1;
}

.featured-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  color: #022c22;
  line-height: 1.3;
}

.featured-card-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
  flex-grow: 1;
}

.featured-card-link {
  color: #10b981;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

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

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

.featured-cta .btn {
  margin: 0 auto;
}

.process-section {
  background: #022c22;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.process-gradient-field {
  position: absolute;
  top: 0;
  right: -50px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.process-floating-shape {
  position: absolute;
  top: 40%;
  left: 5%;
  width: 240px;
  height: 240px;
  background: rgba(52, 211, 153, 0.08);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

.process-accent-orb {
  position: absolute;
  bottom: 15%;
  right: 10%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(167, 243, 208, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.process-line-accent {
  position: absolute;
  top: 25%;
  right: 30%;
  width: 250px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.process-corner-element {
  position: absolute;
  top: 5%;
  right: 5%;
  width: 150px;
  height: 150px;
  background: rgba(34, 211, 153, 0.06);
  border-radius: 20% 80% 10% 90%;
  z-index: 1;
  pointer-events: none;
}

.process-secondary-shape {
  position: absolute;
  bottom: 5%;
  left: 15%;
  width: 200px;
  height: 200px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 35% 65% 55% 45% / 45% 35% 65% 55%;
  z-index: 1;
  pointer-events: none;
}

.process-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
  position: relative;
  z-index: 3;
}

.process-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

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

.process-steps {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 1.5rem);
  position: relative;
  z-index: 3;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(16, 185, 129, 0.08);
  border-radius: var(--radius-lg);
  border-left: 4px solid #10b981;
  transition: all 0.3s ease;
}

.process-step:hover {
  background: rgba(16, 185, 129, 0.12);
  transform: translateX(4px);
}

.process-step-number {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

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

.process-step-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.process-step-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: #a7f3d0;
  line-height: 1.6;
}

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

.principles-mesh-1 {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.principles-mesh-2 {
  position: absolute;
  bottom: 5%;
  left: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.principles-floating-accent {
  position: absolute;
  top: 30%;
  left: 8%;
  width: 220px;
  height: 220px;
  background: rgba(16, 185, 129, 0.06);
  border-radius: 50% 40% 60% 50% / 40% 50% 50% 60%;
  z-index: 1;
  pointer-events: none;
}

.principles-shape-element {
  position: absolute;
  bottom: 20%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: rgba(52, 211, 153, 0.05);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.principles-glow {
  position: absolute;
  top: 60%;
  right: 30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(167, 243, 208, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.principles-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
  position: relative;
  z-index: 2;
}

.principles-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #022c22;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

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

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
  position: relative;
  z-index: 2;
}

.principle-card {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(16, 185, 129, 0.1);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.principle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: #10b981;
}

.principle-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.principle-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  color: #022c22;
  line-height: 1.3;
}

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

.quote-section {
  background: #064e3b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.quote-accent-glow {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.quote-floating-element {
  position: absolute;
  bottom: 15%;
  left: 10%;
  width: 250px;
  height: 250px;
  background: rgba(52, 211, 153, 0.07);
  border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.quote-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.featured-quote {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-left: 4px solid #10b981;
  background: rgba(16, 185, 129, 0.08);
  margin: 0;
  border-radius: var(--radius-lg);
}

.quote-text {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: #ffffff;
  line-height: 1.6;
  font-style: italic;
  font-weight: 500;
  margin: 0;
}

.quote-author {
  font-size: 0.9375rem;
  color: #a7f3d0;
  font-style: normal;
  font-weight: 500;
}

.quote-reflection {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: #a7f3d0;
  line-height: 1.7;
}

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

.contact-shape-1 {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 350px;
  height: 350px;
  background: rgba(16, 185, 129, 0.06);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.contact-shape-2 {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: rgba(52, 211, 153, 0.05);
  border-radius: 35% 65% 55% 45% / 45% 35% 65% 55%;
  z-index: 1;
  pointer-events: none;
}

.contact-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.contact-accent {
  position: absolute;
  top: 20%;
  left: 15%;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(52, 211, 153, 0.04));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.contact-floating-panel {
  position: absolute;
  bottom: 20%;
  right: 10%;
  width: 180px;
  height: 140px;
  background: rgba(16, 185, 129, 0.04);
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: 10px;
  transform: rotate(12deg);
  z-index: 1;
  pointer-events: none;
}

.contact-header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  position: relative;
  z-index: 2;
}

.contact-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #022c22;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.contact-subtitle {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: #4b5563;
}

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

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

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

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

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #022c22;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: #f8fafc;
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-md);
  color: #022c22;
  font-size: 1rem;
  font-family: var(--font-primary);
  transition: all 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

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

.form-privacy {
  font-size: 0.75rem;
  color: #4b5563;
  margin: 0;
}

.form-privacy-link {
  color: #10b981;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.form-privacy-link:hover {
  color: #059669;
  text-decoration: underline;
}

.form-submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: #10b981;
  color: #022c22;
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit-btn:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

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

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

.contact-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: #022c22;
  line-height: 1.3;
}

.faq-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1rem, 2vw, 1.25rem);
  background: #f8fafc;
  border-radius: var(--radius-md);
  border-left: 3px solid rgba(16, 185, 129, 0.3);
}

.faq-question {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #022c22;
  margin: 0;
}

.faq-answer {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

.cta-section {
  background: #065f46;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.cta-glow-1 {
  position: absolute;
  top: 5%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.cta-glow-2 {
  position: absolute;
  bottom: 5%;
  left: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.cta-accent-shape {
  position: absolute;
  top: 30%;
  left: 10%;
  width: 280px;
  height: 280px;
  background: rgba(167, 243, 208, 0.08);
  border-radius: 50% 40% 60% 50% / 40% 50% 50% 60%;
  z-index: 1;
  pointer-events: none;
}

.cta-floating-element {
  position: absolute;
  bottom: 15%;
  right: 8%;
  width: 200px;
  height: 150px;
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 10px;
  transform: rotate(-10deg);
  z-index: 1;
  pointer-events: none;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.cta-description {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: #a7f3d0;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-sm);
}

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

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

.cookie-banner-text {
  color: #cbd5e1;
  margin: 0;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.9375rem);
  line-height: 1.5;
  max-width: 400px;
}

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

.cookie-btn-accept,
.cookie-btn-decline {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.25rem);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  transition: all 0.2s ease;
  border: none;
}

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

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

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

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

@media (max-width: 768px) {
  .hero-content,
  .benefits-content {
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2rem);
  }
  
  .hero-visual,
  .benefits-visual {
    height: 300px;
    order: -1;
  }
  
  .hero-cta-group {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .benefits-list {
    gap: var(--space-sm);
  }
  
  .featured-cards {
    grid-template-columns: 1fr;
  }
  
  .featured-card {
    flex: 1 1 100%;
    max-width: none;
  }
  
  .principles-grid {
    grid-template-columns: 1fr;
  }
  
  .principle-card {
    gap: var(--space-sm);
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  .contact-content {
    flex-direction: column;
  }
  
  .contact-form-wrapper,
  .contact-info-block {
    flex: 1 1 100%;
  }
  
  .cookie-banner {
    padding: 1rem;
    gap: 1rem;
  }
  
  .cookie-banner-text {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .featured-cards {
    gap: 1rem;
  }
  
  .featured-card {
    padding: 0;
  }
  
  .featured-card-content {
    padding: var(--space-md);
  }
  
  .process-step {
    flex-direction: column;
    gap: 1rem;
  }
  
  .process-step-number {
    min-width: auto;
  }
  
  .hero-title,
  .benefits-title,
  .featured-title,
  .process-title,
  .principles-title,
  .cta-title {
    word-break: break-word;
  }
  
  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn-accept,
  .cookie-btn-decline {
    width: 100%;
  }
}

.btn:focus-visible,
.form-input:focus-visible,
.form-textarea:focus-visible,
.form-privacy-link:focus-visible {
  outline: 2px solid #10b981;
  outline-offset: 2px;
}

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

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

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

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

  
  .footer-about {
    max-width: 520px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .footer-about-title {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 700;
    color: var(--color-text-dark-primary);
    margin: 0;
  }

  .footer-about-text {
    font-family: var(--font-primary);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: var(--color-text-dark-secondary);
    line-height: 1.7;
    margin: 0;
  }

  
  .footer-section-heading {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 600;
    color: var(--color-text-dark-primary);
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  
  .footer-nav-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .footer-nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(0.75rem, 2vw, 1.5rem);
  }

  
  .footer-contact-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

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

  
  .footer-legal-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(0.75rem, 2vw, 1.5rem);
  }

  
  .footer-link {
    font-family: var(--font-primary);
    font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
    color: var(--color-text-dark-secondary);
    text-decoration: none;
    transition: color 350ms cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
  }

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

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

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

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

  .footer-copyright-text {
    font-family: var(--font-primary);
    font-size: clamp(0.8125rem, 1.5vw, 0.875rem);
    color: var(--color-text-dark-muted);
    text-align: center;
    margin: 0;
    line-height: 1.5;
  }

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

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

  @media (min-width: 1024px) {
    .footer-content {
      display: grid;
      grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr;
      gap: clamp(2.5rem, 5vw, 4rem);
      align-items: start;
    }

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

    .footer-nav-section {
      grid-column: 2;
    }

    .footer-contact-section {
      grid-column: 3;
    }

    .footer-legal-section {
      grid-column: 4;
    }

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

    .footer-nav-links,
    .footer-legal-links {
      flex-direction: column;
      gap: 0.75rem;
    }

    .footer-contact-info {
      gap: 0.625rem;
    }
  }

  
  .footer-link:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: 2px;
  }

  
  @media (prefers-reduced-motion: reduce) {
    .footer-link,
    .footer-link::after {
      transition-duration: 0.01ms;
    }
  }
    

.category-page-tech-balance {
  background: #ffffff;
}

.hero-section-tech-balance {
  background: #f8fafc;
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-glow-tech {
  position: absolute;
  top: 10%;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-shape-tech {
  position: absolute;
  bottom: -50px;
  left: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-accent-tech {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  transform: translateY(-50%);
}

.hero-content-tech {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.hero-title-tech {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 6vw + 0.5rem, 3.75rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-tech {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #059669;
  font-weight: 600;
  line-height: 1.5;
}

.hero-description-tech {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.7;
  max-width: 90%;
}

.hero-stats-tech {
  display: flex;
  gap: clamp(2rem, 5vw, 3.5rem);
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

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

.stat-number-tech {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
}

.stat-label-tech {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #0f172a;
  font-weight: 500;
}

.hero-visual-tech {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-visual-tech img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.posts-section-tech-balance {
  background: #ffffff;
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
}

.posts-header-tech {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.posts-tag-tech {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.posts-title-tech {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.posts-subtitle-tech {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

.card-tech-balance {
  flex: 1 1 300px;
  max-width: 400px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card-tech-balance:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: #10b981;
}

.card-tech-balance img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.card-title-tech {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  padding: clamp(1rem, 3vw, 1.5rem) clamp(1rem, 3vw, 1.5rem) 0;
}

.card-description-tech {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.6;
  padding: var(--space-sm) clamp(1rem, 3vw, 1.5rem) 0;
}

.card-meta-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: var(--space-md) clamp(1rem, 3vw, 1.5rem) 0;
  margin-top: auto;
}

.meta-badge-tech {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border-radius: 16px;
  font-size: 0.8125rem;
  font-weight: 500;
}

.meta-badge-tech i {
  font-size: 0.75rem;
}

.card-link-tech {
  color: #10b981;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  padding: clamp(1rem, 3vw, 1.5rem);
  transition: all 0.2s ease;
  display: inline-block;
}

.card-link-tech:hover {
  color: #059669;
  transform: translateX(4px);
}

.principles-section-tech {
  background: #f1f5f9;
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.principles-section-tech::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.principles-header-tech {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
  position: relative;
  z-index: 1;
}

.principles-title-tech {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.principles-subtitle-tech {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.principles-steps-tech {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.principle-step-tech {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #10b981;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.principle-step-tech:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transform: translateX(4px);
}

.principle-number-tech {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

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

.principle-step-title-tech {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  color: #0f172a;
}

.principle-step-text-tech {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.6;
}

.quote-section-tech {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.featured-quote-tech {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #10b981;
  background: #f8fafc;
  margin: 0 auto;
  max-width: 800px;
  font-style: italic;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.quote-text-tech {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #0f172a;
  line-height: 1.7;
  margin: 0;
}

.quote-author-tech {
  font-size: 0.9375rem;
  color: #64748b;
  font-style: normal;
  font-weight: 500;
}

.resources-section-tech {
  background: #f1f5f9;
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.resources-section-tech::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.resources-header-tech {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
  position: relative;
  z-index: 1;
}

.resources-title-tech {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.resources-subtitle-tech {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.resources-grid-tech {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  justify-content: center;
  position: relative;
  z-index: 1;
}

.resource-card-tech {
  flex: 1 1 280px;
  max-width: 350px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.resource-card-tech:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: #10b981;
}

.resource-icon-tech {
  width: 56px;
  height: 56px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  font-size: 1.5rem;
}

.resource-card-title-tech {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: #0f172a;
}

.resource-card-text-tech {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.6;
  flex-grow: 1;
}

@media (max-width: 768px) {
  .hero-content-tech {
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .hero-visual-tech {
    height: 300px;
    order: -1;
  }

  .hero-stats-tech {
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .card-tech-balance {
    flex: 1 1 100%;
    max-width: none;
  }

  .principle-step-tech {
    flex-direction: column;
    gap: 1rem;
  }

  .principle-number-tech {
    min-width: auto;
  }

  .featured-quote-tech {
    padding: clamp(1.5rem, 3vw, 2rem);
  }

  .resource-card-tech {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .hero-title-tech,
  .posts-title-tech,
  .principles-title-tech,
  .resources-title-tech {
    word-break: break-word;
  }

  .posts-grid-tech {
    flex-direction: column;
    align-items: center;
  }

  .card-tech-balance {
    width: 100%;
  }

  .stat-item-tech {
    min-width: 100px;
  }
}

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

.hidden {
  display: none;
}

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

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

.main-screen-time-boundaries-guide {
      background: #ffffff;
      font-family: 'Inter', sans-serif;
    }

    

    .hero-section-screen-time-boundaries-guide {
      background: #022c22;
      padding: clamp(3rem, 8vw, 6rem) 0;
      position: relative;
      overflow: hidden;
    }

    .hero-section-screen-time-boundaries-guide::before {
      content: '';
      position: absolute;
      top: 0;
      right: -100px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
    }

    .hero-content-screen-time-boundaries-guide {
      position: relative;
      z-index: 1;
    }

    .breadcrumbs-screen-time-boundaries-guide {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
      font-size: clamp(0.75rem, 1vw, 0.875rem);
    }

    .breadcrumbs-screen-time-boundaries-guide a {
      color: #6ee7b7;
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .breadcrumbs-screen-time-boundaries-guide a:hover {
      color: #a7f3d0;
      text-decoration: underline;
    }

    .breadcrumbs-screen-time-boundaries-guide span {
      color: #6ee7b7;
    }

    .hero-title-screen-time-boundaries-guide {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
      font-weight: 800;
      color: #ffffff;
      line-height: 1.15;
      margin-bottom: clamp(1rem, 2vw, 1.5rem);
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .hero-meta-screen-time-boundaries-guide {
      display: flex;
      flex-wrap: wrap;
      gap: clamp(0.75rem, 2vw, 1.25rem);
      margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    }

    .meta-badge-screen-time-boundaries-guide {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem clamp(0.75rem, 1.5vw, 1rem);
      background: rgba(16, 185, 129, 0.2);
      border-radius: 20px;
      font-size: clamp(0.75rem, 1vw, 0.875rem);
      color: #a7f3d0;
      font-weight: 500;
    }

    .hero-subtitle-screen-time-boundaries-guide {
      font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
      color: #a7f3d0;
      line-height: 1.6;
      margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
      max-width: 95%;
    }

    .hero-image-screen-time-boundaries-guide {
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: 16px;
      display: block;
      margin-top: clamp(1.5rem, 3vw, 2.5rem);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    

    .intro-section-screen-time-boundaries-guide {
      background: #f8fafc;
      padding: clamp(3rem, 8vw, 6rem) 0;
      position: relative;
      overflow: hidden;
    }

    .intro-content-screen-time-boundaries-guide {
      display: flex;
      flex-direction: column;
      gap: clamp(2rem, 4vw, 3rem);
    }

    .intro-text-screen-time-boundaries-guide {
      font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
      line-height: 1.8;
      color: #475569;
    }

    .intro-highlight-screen-time-boundaries-guide {
      background: #ffffff;
      padding: clamp(1.5rem, 3vw, 2.5rem);
      border-radius: 12px;
      border-left: 4px solid #10b981;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .highlight-title-screen-time-boundaries-guide {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1.125rem, 2vw + 0.25rem, 1.375rem);
      font-weight: 700;
      color: #022c22;
    }

    .highlight-text-screen-time-boundaries-guide {
      font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
      line-height: 1.7;
      color: #334155;
    }

    

    .content-section-1-screen-time-boundaries-guide {
      background: #064e3b;
      padding: clamp(3rem, 8vw, 6rem) 0;
      position: relative;
      overflow: hidden;
    }

    .content-section-1-screen-time-boundaries-guide::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: -150px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(52, 211, 153, 0.1) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
    }

    .content-wrapper-1-screen-time-boundaries-guide {
      display: flex;
      flex-direction: row;
      gap: clamp(2rem, 4vw, 4rem);
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .content-text-1-screen-time-boundaries-guide {
      flex: 1 1 50%;
      max-width: 50%;
    }

    .content-title-1-screen-time-boundaries-guide {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
      font-weight: 700;
      color: #ffffff;
      line-height: 1.2;
      margin-bottom: clamp(1rem, 2vw, 1.5rem);
    }

    .content-body-1-screen-time-boundaries-guide {
      font-size: clamp(0.875rem, 1vw + 0.4rem, 1.0625rem);
      line-height: 1.8;
      color: #a7f3d0;
      margin-bottom: clamp(1rem, 2vw, 1.5rem);
    }

    .content-list-1-screen-time-boundaries-guide {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: clamp(0.75rem, 1.5vw, 1rem);
    }

    .list-item-1-screen-time-boundaries-guide {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
      color: #6ee7b7;
      line-height: 1.6;
    }

    .list-icon-1-screen-time-boundaries-guide {
      width: 24px;
      height: 24px;
      background: #10b981;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-size: 0.75rem;
      font-weight: bold;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .content-image-1-screen-time-boundaries-guide {
      flex: 1 1 50%;
      max-width: 50%;
    }

    .content-image-1-screen-time-boundaries-guide img {
      width: 100%;
      height: auto;
      border-radius: 16px;
      display: block;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    }

    

    .content-section-2-screen-time-boundaries-guide {
      background: #ffffff;
      padding: clamp(3rem, 8vw, 6rem) 0;
      position: relative;
      overflow: hidden;
    }

    .content-wrapper-2-screen-time-boundaries-guide {
      display: flex;
      flex-direction: row;
      gap: clamp(2rem, 4vw, 4rem);
      align-items: center;
    }

    .content-image-2-screen-time-boundaries-guide {
      flex: 1 1 50%;
      max-width: 50%;
      order: -1;
    }

    .content-image-2-screen-time-boundaries-guide img {
      width: 100%;
      height: auto;
      border-radius: 16px;
      display: block;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .content-text-2-screen-time-boundaries-guide {
      flex: 1 1 50%;
      max-width: 50%;
    }

    .content-title-2-screen-time-boundaries-guide {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
      font-weight: 700;
      color: #022c22;
      line-height: 1.2;
      margin-bottom: clamp(1rem, 2vw, 1.5rem);
    }

    .content-body-2-screen-time-boundaries-guide {
      font-size: clamp(0.875rem, 1vw + 0.4rem, 1.0625rem);
      line-height: 1.8;
      color: #475569;
      margin-bottom: clamp(1rem, 2vw, 1.5rem);
    }

    .quote-block-screen-time-boundaries-guide {
      background: #f1f5f9;
      padding: clamp(1.25rem, 2.5vw, 2rem);
      border-left: 4px solid #10b981;
      margin: clamp(1rem, 2vw, 1.5rem) 0;
      border-radius: 8px;
    }

    .quote-text-screen-time-boundaries-guide {
      font-size: clamp(0.9375rem, 1vw + 0.4rem, 1.0625rem);
      font-style: italic;
      color: #1e293b;
      line-height: 1.7;
      margin-bottom: 0.75rem;
    }

    .quote-author-screen-time-boundaries-guide {
      font-size: 0.875rem;
      color: #64748b;
      font-style: normal;
      font-weight: 500;
    }

    

    .benefits-section-screen-time-boundaries-guide {
      background: #065f46;
      padding: clamp(3rem, 8vw, 6rem) 0;
      position: relative;
      overflow: hidden;
    }

    .benefits-section-screen-time-boundaries-guide::before {
      content: '';
      position: absolute;
      top: 50%;
      right: -100px;
      width: 450px;
      height: 450px;
      background: radial-gradient(circle, rgba(52, 211, 153, 0.12) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
      transform: translateY(-50%);
    }

    .benefits-header-screen-time-boundaries-guide {
      text-align: center;
      margin-bottom: clamp(2.5rem, 5vw, 4rem);
      position: relative;
      z-index: 1;
    }

    .benefits-title-screen-time-boundaries-guide {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
      font-weight: 700;
      color: #ffffff;
      line-height: 1.2;
      margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
    }

    .benefits-subtitle-screen-time-boundaries-guide {
      font-size: clamp(0.875rem, 1vw + 0.4rem, 1.0625rem);
      color: #a7f3d0;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.7;
    }

    .benefits-cards-screen-time-boundaries-guide {
      display: flex;
      flex-wrap: wrap;
      gap: clamp(1.5rem, 3vw, 2.5rem);
      justify-content: center;
      position: relative;
      z-index: 1;
    }

    .benefit-card-screen-time-boundaries-guide {
      flex: 1 1 280px;
      max-width: 380px;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding: clamp(1.5rem, 3vw, 2.5rem);
      background: rgba(16, 185, 129, 0.12);
      border-radius: 12px;
      border: 1px solid rgba(16, 185, 129, 0.3);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .benefit-card-screen-time-boundaries-guide:hover {
      transform: translateY(-5px);
      background: rgba(16, 185, 129, 0.18);
      border-color: rgba(16, 185, 129, 0.5);
    }

    .benefit-card-number-screen-time-boundaries-guide {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1.75rem, 3vw, 2.25rem);
      font-weight: 800;
      color: #34d399;
      line-height: 1;
    }

    .benefit-card-title-screen-time-boundaries-guide {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1.125rem, 2vw + 0.25rem, 1.375rem);
      font-weight: 700;
      color: #ffffff;
    }

    .benefit-card-text-screen-time-boundaries-guide {
      font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
      color: #a7f3d0;
      line-height: 1.7;
    }

    

    .tips-section-screen-time-boundaries-guide {
      background: #f8fafc;
      padding: clamp(3rem, 8vw, 6rem) 0;
      position: relative;
      overflow: hidden;
    }

    .tips-header-screen-time-boundaries-guide {
      text-align: center;
      margin-bottom: clamp(2.5rem, 5vw, 4rem);
    }

    .tips-title-screen-time-boundaries-guide {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
      font-weight: 700;
      color: #022c22;
      line-height: 1.2;
      margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
    }

    .tips-subtitle-screen-time-boundaries-guide {
      font-size: clamp(0.875rem, 1vw + 0.4rem, 1.0625rem);
      color: #64748b;
      max-width: 700px;
      margin: 0 auto;
    }

    .tips-grid-screen-time-boundaries-guide {
      display: flex;
      flex-wrap: wrap;
      gap: clamp(1.5rem, 3vw, 2rem);
      justify-content: center;
    }

    .tip-card-screen-time-boundaries-guide {
      flex: 1 1 320px;
      max-width: 420px;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding: clamp(1.5rem, 3vw, 2rem);
      background: #ffffff;
      border-radius: 12px;
      border: 1px solid #e2e8f0;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .tip-card-screen-time-boundaries-guide:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
      border-color: #10b981;
    }

    .tip-icon-screen-time-boundaries-guide {
      width: 52px;
      height: 52px;
      background: #d1fae5;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #10b981;
      font-size: 1.5rem;
    }

    .tip-card-title-screen-time-boundaries-guide {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1.125rem, 2vw + 0.25rem, 1.375rem);
      font-weight: 700;
      color: #022c22;
    }

    .tip-card-text-screen-time-boundaries-guide {
      font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
      line-height: 1.7;
      color: #64748b;
    }

    

    .cta-section-screen-time-boundaries-guide {
      background: #022c22;
      padding: clamp(2.5rem, 6vw, 5rem) 0;
      position: relative;
      overflow: hidden;
    }

    .cta-section-screen-time-boundaries-guide::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
    }

    .cta-content-screen-time-boundaries-guide {
      text-align: center;
      max-width: 700px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .cta-title-screen-time-boundaries-guide {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
      font-weight: 700;
      color: #ffffff;
      line-height: 1.2;
      margin-bottom: clamp(1rem, 2vw, 1.5rem);
    }

    .cta-text-screen-time-boundaries-guide {
      font-size: clamp(0.875rem, 1vw + 0.4rem, 1.0625rem);
      color: #a7f3d0;
      line-height: 1.8;
      margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    }

    .cta-button-screen-time-boundaries-guide {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: clamp(0.75rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
      background: #10b981;
      color: #ffffff;
      text-decoration: none;
      border-radius: 10px;
      font-weight: 600;
      font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      border: 2px solid transparent;
    }

    .cta-button-screen-time-boundaries-guide:hover {
      background: #059669;
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    }

    

    .disclaimer-section-screen-time-boundaries-guide {
      background: #f1f5f9;
      padding: clamp(2rem, 5vw, 4rem) 0;
      position: relative;
      overflow: hidden;
    }

    .disclaimer-box-screen-time-boundaries-guide {
      background: #ffffff;
      padding: clamp(1.5rem, 3vw, 2.5rem);
      border-radius: 12px;
      border-left: 4px solid #64748b;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .disclaimer-title-screen-time-boundaries-guide {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1rem, 1.5vw + 0.25rem, 1.25rem);
      font-weight: 700;
      color: #1e293b;
    }

    .disclaimer-text-screen-time-boundaries-guide {
      font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
      line-height: 1.7;
      color: #475569;
    }

    

    .related-section-screen-time-boundaries-guide {
      background: #ffffff;
      padding: clamp(3rem, 8vw, 6rem) 0;
      position: relative;
      overflow: hidden;
    }

    .related-header-screen-time-boundaries-guide {
      text-align: center;
      margin-bottom: clamp(2.5rem, 5vw, 4rem);
    }

    .related-title-screen-time-boundaries-guide {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
      font-weight: 700;
      color: #022c22;
      line-height: 1.2;
      margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
    }

    .related-subtitle-screen-time-boundaries-guide {
      font-size: clamp(0.875rem, 1vw + 0.4rem, 1.0625rem);
      color: #64748b;
      max-width: 700px;
      margin: 0 auto;
    }

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

    .related-card-screen-time-boundaries-guide {
      flex: 1 1 300px;
      max-width: 380px;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      border-radius: 12px;
      overflow: hidden;
      background: #ffffff;
      border: 1px solid #e2e8f0;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .related-card-screen-time-boundaries-guide:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
      border-color: #10b981;
    }

    .related-card-image-screen-time-boundaries-guide {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    .related-card-content-screen-time-boundaries-guide {
      padding: clamp(1rem, 2vw, 1.5rem);
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .related-card-title-screen-time-boundaries-guide {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1rem, 1.5vw + 0.25rem, 1.25rem);
      font-weight: 700;
      color: #022c22;
      line-height: 1.3;
    }

    .related-card-description-screen-time-boundaries-guide {
      font-size: clamp(0.8125rem, 0.9vw + 0.3rem, 0.9375rem);
      line-height: 1.6;
      color: #64748b;
      flex-grow: 1;
    }

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

    .related-card-link-screen-time-boundaries-guide:hover {
      color: #059669;
      transform: translateX(4px);
    }

    

    @media (max-width: 768px) {
      .content-wrapper-1-screen-time-boundaries-guide,
      .content-wrapper-2-screen-time-boundaries-guide {
        flex-direction: column;
        gap: clamp(1.5rem, 3vw, 2rem);
      }

      .content-text-1-screen-time-boundaries-guide,
      .content-image-1-screen-time-boundaries-guide,
      .content-text-2-screen-time-boundaries-guide,
      .content-image-2-screen-time-boundaries-guide {
        flex: 1 1 100%;
        max-width: 100%;
      }

      .content-image-2-screen-time-boundaries-guide {
        order: 0;
      }

      .benefits-cards-screen-time-boundaries-guide,
      .tips-grid-screen-time-boundaries-guide,
      .related-cards-screen-time-boundaries-guide {
        flex-direction: column;
        align-items: stretch;
      }

      .benefit-card-screen-time-boundaries-guide,
      .tip-card-screen-time-boundaries-guide,
      .related-card-screen-time-boundaries-guide {
        flex: 1 1 100%;
        max-width: 100%;
      }
    }

    @media (max-width: 480px) {
      .hero-title-screen-time-boundaries-guide,
      .content-title-1-screen-time-boundaries-guide,
      .content-title-2-screen-time-boundaries-guide,
      .benefits-title-screen-time-boundaries-guide,
      .tips-title-screen-time-boundaries-guide,
      .cta-title-screen-time-boundaries-guide,
      .related-title-screen-time-boundaries-guide {
        word-break: break-word;
      }

      .hero-meta-screen-time-boundaries-guide {
        flex-direction: column;
        gap: 0.5rem;
      }

      .meta-badge-screen-time-boundaries-guide {
        width: 100%;
        justify-content: center;
      }
    }

.main-digital-detox-weekend-plan {
  width: 100%;
}

section {
  width: 100%;
  overflow: hidden;
}

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

.hero-section-digital-detox-weekend-plan {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.hero-section-digital-detox-weekend-plan::before {
  content: '';
  position: absolute;
  top: 0;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-content-digital-detox-weekend-plan {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.breadcrumbs-digital-detox-weekend-plan {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-digital-detox-weekend-plan a {
  color: #34d399;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-digital-detox-weekend-plan a:hover {
  color: #6ee7b7;
  text-decoration: underline;
}

.breadcrumbs-digital-detox-weekend-plan span {
  color: #64748b;
}

.hero-text-block-digital-detox-weekend-plan {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 1.5rem);
}

.hero-title-digital-detox-weekend-plan {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-digital-detox-weekend-plan {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #34d399;
  font-weight: 600;
  line-height: 1.5;
}

.hero-description-digital-detox-weekend-plan {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: #cbd5e1;
  line-height: 1.7;
  max-width: 90%;
}

.article-meta-digital-detox-weekend-plan {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0.5rem 0;
}

.meta-badge-digital-detox-weekend-plan {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(52, 211, 153, 0.15);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #a7f3d0;
}

.meta-badge-digital-detox-weekend-plan i {
  color: #34d399;
}

.hero-cta-group-digital-detox-weekend-plan {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex-wrap: wrap;
  margin-top: 1rem;
}

.btn-primary-digital-detox-weekend-plan,
.btn-outline-digital-detox-weekend-plan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  padding: clamp(0.75rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary-digital-detox-weekend-plan {
  background: #22c55e;
  color: #0a0f1e;
}

.btn-primary-digital-detox-weekend-plan:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(34, 197, 94, 0.3);
}

.btn-outline-digital-detox-weekend-plan {
  background: transparent;
  color: #34d399;
  border-color: #22c55e;
}

.btn-outline-digital-detox-weekend-plan:hover {
  background: rgba(34, 197, 94, 0.1);
  color: #86efac;
}

.hero-visual-digital-detox-weekend-plan {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-digital-detox-weekend-plan {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  border: 2px solid rgba(34, 197, 94, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.introduction-section-digital-detox-weekend-plan {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.introduction-wrapper-digital-detox-weekend-plan {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.introduction-text-digital-detox-weekend-plan {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.introduction-title-digital-detox-weekend-plan {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0a0f1e;
  line-height: 1.2;
}

.introduction-content-digital-detox-weekend-plan {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.7;
}

.introduction-visual-digital-detox-weekend-plan {
  flex: 1 1 50%;
  min-height: 350px;
}

.introduction-image-digital-detox-weekend-plan {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.planning-section-digital-detox-weekend-plan {
  background: #064e3b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.planning-section-digital-detox-weekend-plan::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34, 211, 153, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.planning-header-digital-detox-weekend-plan {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
  position: relative;
  z-index: 1;
}

.planning-title-digital-detox-weekend-plan {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.planning-subtitle-digital-detox-weekend-plan {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: #a7f3d0;
  max-width: 600px;
  margin: 0 auto;
}

.stages-wrapper-digital-detox-weekend-plan {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.stage-card-digital-detox-weekend-plan {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  padding: 2rem;
  background: rgba(16, 185, 129, 0.08);
  border: 2px solid rgba(34, 211, 153, 0.3);
  border-radius: 12px;
  align-items: flex-start;
}

.stage-number-digital-detox-weekend-plan {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #22c55e;
  line-height: 1;
  min-width: 80px;
  text-align: center;
}

.stage-content-digital-detox-weekend-plan {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.stage-title-digital-detox-weekend-plan {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  color: #ffffff;
}

.stage-text-digital-detox-weekend-plan {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #a7f3d0;
  line-height: 1.6;
}

.activities-section-digital-detox-weekend-plan {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.activities-wrapper-digital-detox-weekend-plan {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.activities-text-digital-detox-weekend-plan {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.activities-title-digital-detox-weekend-plan {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0a0f1e;
  line-height: 1.2;
}

.activities-content-digital-detox-weekend-plan {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.7;
}

.activities-list-digital-detox-weekend-plan {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.activities-item-digital-detox-weekend-plan {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.item-icon-digital-detox-weekend-plan {
  font-size: 1.75rem;
  flex-shrink: 0;
  min-width: 40px;
  text-align: center;
}

.item-text-digital-detox-weekend-plan {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #334155;
  line-height: 1.6;
}

.activities-visual-digital-detox-weekend-plan {
  flex: 1 1 50%;
  min-height: 350px;
}

.activities-image-digital-detox-weekend-plan {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.challenges-section-digital-detox-weekend-plan {
  background: #022c22;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.challenges-section-digital-detox-weekend-plan::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -150px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(34, 211, 153, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translateY(-50%);
  z-index: 0;
}

.challenges-wrapper-digital-detox-weekend-plan {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.challenges-visual-digital-detox-weekend-plan {
  flex: 1 1 50%;
  min-height: 350px;
  order: -1;
}

.challenges-image-digital-detox-weekend-plan {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.challenges-text-digital-detox-weekend-plan {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.challenges-title-digital-detox-weekend-plan {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.challenge-item-digital-detox-weekend-plan {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.challenge-item-title-digital-detox-weekend-plan {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  color: #34d399;
}

.challenge-item-text-digital-detox-weekend-plan {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #a7f3d0;
  line-height: 1.6;
}

.preparation-section-digital-detox-weekend-plan {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.preparation-content-digital-detox-weekend-plan {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.preparation-title-digital-detox-weekend-plan {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0a0f1e;
  line-height: 1.2;
  text-align: center;
}

.preparation-subtitle-digital-detox-weekend-plan {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.checklist-grid-digital-detox-weekend-plan {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.checklist-category-digital-detox-weekend-plan {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checklist-category-title-digital-detox-weekend-plan {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: #0a0f1e;
}

.checklist-items-digital-detox-weekend-plan {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checklist-item-digital-detox-weekend-plan {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #334155;
  line-height: 1.5;
}

.faq-section-digital-detox-weekend-plan {
  background: #065f46;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.faq-header-digital-detox-weekend-plan {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.faq-title-digital-detox-weekend-plan {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.faq-subtitle-digital-detox-weekend-plan {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: #a7f3d0;
  max-width: 600px;
  margin: 0 auto;
}

.faq-items-digital-detox-weekend-plan {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item-digital-detox-weekend-plan {
  background: rgba(34, 211, 153, 0.08);
  border: 1px solid rgba(34, 211, 153, 0.3);
  border-radius: 10px;
  overflow: hidden;
}

.faq-item-digital-detox-weekend-plan summary {
  padding: 1.5rem;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: background 0.2s ease;
}

.faq-item-digital-detox-weekend-plan summary:hover {
  background: rgba(34, 211, 153, 0.12);
}

.faq-question-digital-detox-weekend-plan {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  font-weight: 600;
  color: #ffffff;
  list-style: none;
}

.faq-question-digital-detox-weekend-plan::before {
  content: '';
  display: inline-block;
  transition: transform 0.3s ease;
  color: #34d399;
  min-width: 20px;
}

.faq-item-digital-detox-weekend-plan[open] summary .faq-question-digital-detox-weekend-plan::before {
  transform: rotate(90deg);
}

.faq-answer-digital-detox-weekend-plan {
  padding: 0 1.5rem 1.5rem 1.5rem;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #a7f3d0;
  line-height: 1.6;
  margin: 0;
}

.conclusion-section-digital-detox-weekend-plan {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.conclusion-content-digital-detox-weekend-plan {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.conclusion-title-digital-detox-weekend-plan {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0a0f1e;
  line-height: 1.2;
  text-align: center;
}

.conclusion-text-digital-detox-weekend-plan {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.7;
}

.conclusion-cta-digital-detox-weekend-plan {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.conclusion-cta-text-digital-detox-weekend-plan {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #334155;
  font-weight: 500;
}

.cta-button-digital-detox-weekend-plan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #22c55e;
  color: #0a0f1e;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
}

.cta-button-digital-detox-weekend-plan:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.related-posts-section-digital-detox-weekend-plan {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.related-posts-section-digital-detox-weekend-plan::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34, 211, 153, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.related-header-digital-detox-weekend-plan {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
  position: relative;
  z-index: 1;
}

.related-title-digital-detox-weekend-plan {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.related-subtitle-digital-detox-weekend-plan {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: #a7f3d0;
  max-width: 600px;
  margin: 0 auto;
}

.related-cards-digital-detox-weekend-plan {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  position: relative;
  z-index: 1;
  justify-content: center;
}

.related-card-digital-detox-weekend-plan {
  flex: 1 1 320px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #0d1526;
  border: 1px solid rgba(34, 211, 153, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.related-card-digital-detox-weekend-plan:hover {
  border-color: #22c55e;
  box-shadow: 0 15px 40px rgba(34, 211, 153, 0.15);
  transform: translateY(-5px);
}

.related-card-image-digital-detox-weekend-plan {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-image-digital-detox-weekend-plan {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card-content-digital-detox-weekend-plan {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-card-title-digital-detox-weekend-plan {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.related-card-description-digital-detox-weekend-plan {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-digital-detox-weekend-plan {
  color: #34d399;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.related-card-link-digital-detox-weekend-plan:hover {
  color: #6ee7b7;
  transform: translateX(4px);
}

.disclaimer-section-digital-detox-weekend-plan {
  background: #f1f5f9;
  padding: clamp(2rem, 6vw, 4rem) 0;
  border-top: 2px solid #e2e8f0;
}

.disclaimer-content-digital-detox-weekend-plan {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.disclaimer-title-digital-detox-weekend-plan {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  color: #0a0f1e;
}

.disclaimer-text-digital-detox-weekend-plan {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero-content-digital-detox-weekend-plan,
  .introduction-wrapper-digital-detox-weekend-plan,
  .activities-wrapper-digital-detox-weekend-plan,
  .challenges-wrapper-digital-detox-weekend-plan {
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .hero-visual-digital-detox-weekend-plan,
  .introduction-visual-digital-detox-weekend-plan,
  .activities-visual-digital-detox-weekend-plan,
  .challenges-visual-digital-detox-weekend-plan {
    height: 300px;
    order: -1;
  }

  .hero-cta-group-digital-detox-weekend-plan {
    flex-direction: column;
  }

  .btn-primary-digital-detox-weekend-plan,
  .btn-outline-digital-detox-weekend-plan {
    width: 100%;
  }

  .stage-card-digital-detox-weekend-plan {
    flex-direction: column;
    text-align: center;
  }

  .stage-number-digital-detox-weekend-plan {
    text-align: center;
    min-width: auto;
  }

  .related-cards-digital-detox-weekend-plan {
    flex-direction: column;
    align-items: stretch;
  }

  .related-card-digital-detox-weekend-plan {
    flex: 1 1 100%;
    max-width: none;
  }

  .hero-title-digital-detox-weekend-plan,
  .introduction-title-digital-detox-weekend-plan,
  .activities-title-digital-detox-weekend-plan,
  .challenges-title-digital-detox-weekend-plan,
  .planning-title-digital-detox-weekend-plan,
  .conclusion-title-digital-detox-weekend-plan {
    word-break: break-word;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-digital-detox-weekend-plan {
    font-size: 0.7rem;
  }

  .stage-card-digital-detox-weekend-plan {
    padding: 1.5rem;
  }

  .activities-item-digital-detox-weekend-plan {
    gap: 0.75rem;
  }

  .item-icon-digital-detox-weekend-plan {
    font-size: 1.5rem;
    min-width: 35px;
  }

  .cta-button-digital-detox-weekend-plan {
    width: 100%;
  }
}

.main-deep-work-connected-world {
      width: 100%;
      overflow-x: hidden;
    }

    .hero-section-deep-work-connected-world {
      background: #0f0a1e;
      padding: clamp(3rem, 8vw, 6rem) 0;
      position: relative;
      overflow: hidden;
    }

    .hero-section-deep-work-connected-world::before {
      content: '';
      position: absolute;
      top: -200px;
      right: -300px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

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

    .breadcrumbs-deep-work-connected-world {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 2rem;
      font-size: clamp(0.75rem, 1vw, 0.9375rem);
    }

    .breadcrumbs-deep-work-connected-world a {
      color: #a5b4fc;
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .breadcrumbs-deep-work-connected-world a:hover {
      color: #8b5cf6;
    }

    .breadcrumbs-deep-work-connected-world span {
      color: #6d28d9;
    }

    .breadcrumbs-deep-work-connected-world span:last-child {
      color: #c4b5fd;
    }

    .hero-content-deep-work-connected-world {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(2rem, 5vw, 4rem);
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hero-text-block-deep-work-connected-world {
      display: flex;
      flex-direction: column;
      gap: clamp(1rem, 3vw, 1.5rem);
    }

    .hero-title-deep-work-connected-world {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(2rem, 6vw + 0.5rem, 3.75rem);
      font-weight: 800;
      color: #ffffff;
      line-height: 1.1;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .hero-subtitle-deep-work-connected-world {
      font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
      color: #a5b4fc;
      font-weight: 500;
      line-height: 1.5;
    }

    .hero-description-deep-work-connected-world {
      font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
      color: #9f7aea;
      line-height: 1.7;
      max-width: 90%;
    }

    .article-meta-deep-work-connected-world {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      margin: 1.5rem 0;
    }

    .meta-badge-deep-work-connected-world {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1rem;
      background: rgba(139, 92, 246, 0.15);
      border-radius: 20px;
      font-size: clamp(0.75rem, 1vw, 0.875rem);
      color: #c4b5fd;
    }

    .meta-badge-deep-work-connected-world i {
      color: #a78bfa;
      font-size: 0.875rem;
    }

    .hero-cta-group-deep-work-connected-world {
      display: flex;
      flex-direction: row;
      gap: clamp(1rem, 2vw, 1.5rem);
      flex-wrap: wrap;
      margin-top: var(--space-md);
    }

    .btn-deep-work-connected-world {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      text-decoration: none;
      border-radius: 12px;
      font-weight: 600;
      font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
      padding: clamp(0.75rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      border: 2px solid transparent;
      cursor: pointer;
    }

    .btn-primary-deep-work-connected-world {
      background: #8b5cf6;
      color: #ffffff;
    }

    .btn-primary-deep-work-connected-world:hover {
      background: #7c3aed;
      transform: translateY(-2px);
      box-shadow: 0 10px 40px rgba(139, 92, 246, 0.3);
    }

    .btn-outline-deep-work-connected-world {
      background: transparent;
      color: #a5b4fc;
      border-color: #8b5cf6;
    }

    .btn-outline-deep-work-connected-world:hover {
      background: rgba(139, 92, 246, 0.1);
      color: #c4b5fd;
      border-color: #a78bfa;
    }

    .hero-visual-deep-work-connected-world {
      position: relative;
      height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-image-deep-work-connected-world {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 16px;
      box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
    }

    .intro-section-deep-work-connected-world {
      background: #1a1035;
      padding: clamp(4rem, 10vw, 8rem) 0;
      position: relative;
      overflow: hidden;
    }

    .intro-section-deep-work-connected-world::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 5%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .intro-content-deep-work-connected-world {
      display: flex;
      flex-direction: row;
      gap: clamp(2rem, 5vw, 4rem);
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .intro-text-block-deep-work-connected-world {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .intro-title-deep-work-connected-world {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
      font-weight: 700;
      color: #ffffff;
      line-height: 1.2;
    }

    .intro-text-deep-work-connected-world {
      font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
      color: #c4b5fd;
      line-height: 1.7;
    }

    .intro-image-deep-work-connected-world {
      flex: 1;
      height: 350px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .intro-image-deep-work-connected-world img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 16px;
      box-shadow: 0 20px 50px rgba(139, 92, 246, 0.25);
    }

    .content-section-deep-work-connected-world {
      background: #251848;
      padding: clamp(4rem, 10vw, 8rem) 0;
      position: relative;
      overflow: hidden;
    }

    .content-section-deep-work-connected-world::before {
      content: '';
      position: absolute;
      top: 50%;
      left: -200px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
      transform: translateY(-50%);
    }

    .content-wrapper-deep-work-connected-world {
      display: flex;
      flex-direction: row;
      gap: clamp(2rem, 5vw, 4rem);
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .content-text-block-deep-work-connected-world {
      flex: 1 1 50%;
      max-width: 50%;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .content-title-deep-work-connected-world {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1.5rem, 3.5vw + 0.5rem, 2.25rem);
      font-weight: 700;
      color: #ffffff;
      line-height: 1.2;
    }

    .content-text-deep-work-connected-world {
      font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
      color: #d8bfd8;
      line-height: 1.7;
    }

    .content-image-block-deep-work-connected-world {
      flex: 1 1 50%;
      max-width: 50%;
      height: 350px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .content-image-block-deep-work-connected-world img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 16px;
      box-shadow: 0 20px 50px rgba(139, 92, 246, 0.25);
      display: block;
    }

    .featured-quote-deep-work-connected-world {
      background: rgba(168, 85, 247, 0.15);
      padding: clamp(1.5rem, 3vw, 2.5rem);
      border-left: 4px solid #a78bfa;
      margin: clamp(1.5rem, 3vw, 2.5rem) 0;
      border-radius: 8px;
      font-style: italic;
    }

    .featured-quote-deep-work-connected-world p {
      font-size: clamp(1.0625rem, 2vw, 1.25rem);
      color: #f3e8ff;
      margin-bottom: 1rem;
      line-height: 1.6;
    }

    .featured-quote-deep-work-connected-world cite {
      font-size: 0.9375rem;
      color: #c4b5fd;
      font-style: normal;
      display: block;
    }

    .strategy-cards-deep-work-connected-world {
      display: flex;
      flex-wrap: wrap;
      gap: clamp(1.5rem, 3vw, 2rem);
      margin: 2rem 0;
      position: relative;
      z-index: 1;
    }

    .strategy-card-deep-work-connected-world {
      flex: 1 1 calc(50% - 1rem);
      min-width: 250px;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding: clamp(1.5rem, 3vw, 2rem);
      background: rgba(139, 92, 246, 0.12);
      border: 1px solid rgba(168, 85, 247, 0.3);
      border-radius: 12px;
      transition: all 0.3s ease;
    }

    .strategy-card-deep-work-connected-world:hover {
      background: rgba(139, 92, 246, 0.18);
      border-color: rgba(168, 85, 247, 0.5);
      transform: translateY(-4px);
    }

    .card-number-deep-work-connected-world {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      color: #a78bfa;
      line-height: 1;
    }

    .card-title-deep-work-connected-world {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1.125rem, 2vw, 1.375rem);
      font-weight: 700;
      color: #ffffff;
    }

    .card-description-deep-work-connected-world {
      font-size: clamp(0.875rem, 1vw, 1rem);
      color: #d8bfd8;
      line-height: 1.6;
    }

    .tools-section-deep-work-connected-world {
      background: #0f0a1e;
      padding: clamp(4rem, 10vw, 8rem) 0;
      position: relative;
      overflow: hidden;
    }

    .tools-section-deep-work-connected-world::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .tools-header-deep-work-connected-world {
      text-align: center;
      margin-bottom: clamp(2.5rem, 6vw, 4rem);
      position: relative;
      z-index: 1;
    }

    .tools-tag-deep-work-connected-world {
      display: inline-block;
      padding: 0.375rem 1rem;
      background: rgba(139, 92, 246, 0.2);
      color: #a78bfa;
      border-radius: 20px;
      font-size: 0.875rem;
      font-weight: 500;
      margin-bottom: 1rem;
    }

    .tools-title-deep-work-connected-world {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
      font-weight: 700;
      color: #ffffff;
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    .tools-subtitle-deep-work-connected-world {
      font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
      color: #c4b5fd;
      max-width: 600px;
      margin: 0 auto;
    }

    .tools-grid-deep-work-connected-world {
      display: flex;
      flex-wrap: wrap;
      gap: clamp(1.5rem, 3vw, 2rem);
      position: relative;
      z-index: 1;
    }

    .tool-item-deep-work-connected-world {
      flex: 1 1 calc(33.333% - 1.5rem);
      min-width: 200px;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding: clamp(1.5rem, 3vw, 2rem);
      background: rgba(139, 92, 246, 0.1);
      border: 1px solid rgba(168, 85, 247, 0.25);
      border-radius: 12px;
      transition: all 0.3s ease;
    }

    .tool-item-deep-work-connected-world:hover {
      background: rgba(139, 92, 246, 0.15);
      border-color: rgba(168, 85, 247, 0.4);
    }

    .tool-icon-deep-work-connected-world {
      font-size: 2.5rem;
      color: #a78bfa;
    }

    .tool-name-deep-work-connected-world {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1rem, 1.5vw, 1.25rem);
      font-weight: 700;
      color: #ffffff;
    }

    .tool-description-deep-work-connected-world {
      font-size: clamp(0.8125rem, 0.9vw, 0.9375rem);
      color: #d8bfd8;
      line-height: 1.5;
    }

    .conclusion-section-deep-work-connected-world {
      background: #1a1035;
      padding: clamp(4rem, 10vw, 8rem) 0;
      position: relative;
      overflow: hidden;
    }

    .conclusion-content-deep-work-connected-world {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      position: relative;
      z-index: 1;
      max-width: 900px;
    }

    .conclusion-title-deep-work-connected-world {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
      font-weight: 700;
      color: #ffffff;
      line-height: 1.2;
    }

    .conclusion-text-deep-work-connected-world {
      font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
      color: #c4b5fd;
      line-height: 1.7;
    }

    .cta-box-deep-work-connected-world {
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(168, 85, 247, 0.2) 100%);
      padding: clamp(2rem, 4vw, 3rem);
      border-radius: 16px;
      border: 1px solid rgba(168, 85, 247, 0.4);
      text-align: center;
      margin-top: 2rem;
    }

    .cta-box-title-deep-work-connected-world {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1.25rem, 2vw, 1.5rem);
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 1rem;
    }

    .cta-box-text-deep-work-connected-world {
      font-size: clamp(0.875rem, 1vw, 1rem);
      color: #d8bfd8;
      margin-bottom: 1.5rem;
    }

    .related-section-deep-work-connected-world {
      background: #0f0a1e;
      padding: clamp(4rem, 10vw, 8rem) 0;
      position: relative;
      overflow: hidden;
    }

    .related-header-deep-work-connected-world {
      text-align: center;
      margin-bottom: clamp(2.5rem, 6vw, 4rem);
      position: relative;
      z-index: 1;
    }

    .related-title-deep-work-connected-world {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
      font-weight: 700;
      color: #ffffff;
      line-height: 1.2;
    }

    .related-cards-deep-work-connected-world {
      display: flex;
      flex-wrap: wrap;
      gap: clamp(1.5rem, 3vw, 2rem);
      position: relative;
      z-index: 1;
    }

    .related-card-deep-work-connected-world {
      flex: 1 1 calc(33.333% - 1.5rem);
      min-width: 250px;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      border-radius: 12px;
      overflow: hidden;
      background: rgba(139, 92, 246, 0.1);
      border: 1px solid rgba(168, 85, 247, 0.25);
      transition: all 0.3s ease;
    }

    .related-card-deep-work-connected-world:hover {
      transform: translateY(-4px);
      background: rgba(139, 92, 246, 0.15);
      border-color: rgba(168, 85, 247, 0.4);
    }

    .related-image-deep-work-connected-world {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .related-card-content-deep-work-connected-world {
      padding: clamp(1.25rem, 2vw, 1.5rem);
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .related-card-title-deep-work-connected-world {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1rem, 1.5vw, 1.25rem);
      font-weight: 700;
      color: #ffffff;
      line-height: 1.3;
    }

    .related-card-text-deep-work-connected-world {
      font-size: clamp(0.8125rem, 0.9vw, 0.9375rem);
      color: #d8bfd8;
      line-height: 1.5;
    }

    .related-link-deep-work-connected-world {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: #a78bfa;
      text-decoration: none;
      font-weight: 600;
      font-size: clamp(0.8125rem, 0.9vw, 0.9375rem);
      transition: all 0.2s ease;
      align-self: flex-start;
    }

    .related-link-deep-work-connected-world:hover {
      color: #c4b5fd;
      transform: translateX(4px);
    }

    .disclaimer-section-deep-work-connected-world {
      background: rgba(139, 92, 246, 0.1);
      padding: clamp(1.5rem, 3vw, 2.5rem);
      border-left: 4px solid #a78bfa;
      border-radius: 8px;
      margin-top: 2rem;
    }

    .disclaimer-title-deep-work-connected-world {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1rem, 1.5vw, 1.125rem);
      font-weight: 700;
      color: #c4b5fd;
      margin-bottom: 0.75rem;
    }

    .disclaimer-text-deep-work-connected-world {
      font-size: clamp(0.8125rem, 0.9vw, 0.9375rem);
      color: #d8bfd8;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .hero-content-deep-work-connected-world {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .hero-visual-deep-work-connected-world {
        order: -1;
        height: 300px;
      }

      .hero-cta-group-deep-work-connected-world {
        flex-direction: column;
      }

      .btn-deep-work-connected-world {
        width: 100%;
      }

      .intro-content-deep-work-connected-world,
      .content-wrapper-deep-work-connected-world {
        flex-direction: column;
      }

      .intro-text-block-deep-work-connected-world,
      .content-text-block-deep-work-connected-world {
        flex: 1 1 100%;
        max-width: 100%;
      }

      .intro-image-deep-work-connected-world,
      .content-image-block-deep-work-connected-world {
        flex: 1 1 100%;
        max-width: 100%;
        order: -1;
      }

      .strategy-card-deep-work-connected-world {
        flex: 1 1 100%;
      }

      .tool-item-deep-work-connected-world {
        flex: 1 1 100%;
      }

      .related-card-deep-work-connected-world {
        flex: 1 1 100%;
      }
    }

    @media (min-width: 768px) and (max-width: 1023px) {
      .tool-item-deep-work-connected-world {
        flex: 1 1 calc(50% - 0.75rem);
      }

      .related-card-deep-work-connected-world {
        flex: 1 1 calc(50% - 0.75rem);
      }
    }

.main-evening-device-usage-sleep {
  width: 100%;
}

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

.hero-section-evening-device-usage-sleep {
  background: #022c22;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-evening-device-usage-sleep::before {
  content: '';
  position: absolute;
  top: 0;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.breadcrumbs-evening-device-usage-sleep {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
}

.breadcrumbs-evening-device-usage-sleep a {
  color: #a7f3d0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-evening-device-usage-sleep a:hover {
  color: #d1fae5;
}

.breadcrumb-separator-evening-device-usage-sleep {
  color: #6ee7b7;
}

.breadcrumb-current-evening-device-usage-sleep {
  color: #d1fae5;
}

.hero-content-evening-device-usage-sleep {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text-block-evening-device-usage-sleep {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 1.5rem);
}

.hero-title-evening-device-usage-sleep {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 6vw + 0.5rem, 3.75rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-evening-device-usage-sleep {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #a7f3d0;
  font-weight: 500;
  line-height: 1.5;
}

.hero-description-evening-device-usage-sleep {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: #6ee7b7;
  line-height: 1.7;
}

.article-meta-evening-device-usage-sleep {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
}

.meta-badge-evening-device-usage-sleep {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 20px;
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  color: #d1fae5;
}

.meta-badge-evening-device-usage-sleep i {
  color: #10b981;
  font-size: 1rem;
}

.hero-visual-evening-device-usage-sleep {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-evening-device-usage-sleep {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

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

.intro-content-evening-device-usage-sleep {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-text-evening-device-usage-sleep {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-title-evening-device-usage-sleep {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #022c22;
  line-height: 1.2;
}

.intro-paragraph-evening-device-usage-sleep {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: #374151;
  line-height: 1.8;
}

.intro-visual-evening-device-usage-sleep {
  position: relative;
  height: 350px;
  border-radius: 16px;
  overflow: hidden;
}

.intro-image-evening-device-usage-sleep {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.understanding-section-evening-device-usage-sleep {
  background: #064e3b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.understanding-section-evening-device-usage-sleep::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.understanding-header-evening-device-usage-sleep {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.understanding-title-evening-device-usage-sleep {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.understanding-subtitle-evening-device-usage-sleep {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: #a7f3d0;
}

.understanding-content-evening-device-usage-sleep {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.understanding-text-evening-device-usage-sleep {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.understanding-paragraph-evening-device-usage-sleep {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: #d1fae5;
  line-height: 1.8;
}

.key-insights-evening-device-usage-sleep {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1rem;
}

.insight-item-evening-device-usage-sleep {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(16, 185, 129, 0.1);
  padding: 1.25rem;
  border-radius: 12px;
  border-left: 4px solid #10b981;
}

.insight-number-evening-device-usage-sleep {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #10b981;
  color: #022c22;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.25rem;
}

.insight-text-evening-device-usage-sleep {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #d1fae5;
  line-height: 1.6;
}

.understanding-visual-evening-device-usage-sleep {
  position: relative;
  height: 350px;
  border-radius: 16px;
  overflow: hidden;
}

.understanding-image-evening-device-usage-sleep {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.strategies-section-evening-device-usage-sleep {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.strategies-header-evening-device-usage-sleep {
  text-align: center;
  margin-bottom: 3rem;
}

.strategies-title-evening-device-usage-sleep {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #022c22;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.strategies-subtitle-evening-device-usage-sleep {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: #64748b;
}

.strategies-steps-evening-device-usage-sleep {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.strategy-step-evening-device-usage-sleep {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.strategy-step-evening-device-usage-sleep:hover {
  border-color: #10b981;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.1);
}

.step-number-evening-device-usage-sleep {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.step-content-evening-device-usage-sleep {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-title-evening-device-usage-sleep {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #022c22;
  line-height: 1.3;
}

.step-description-evening-device-usage-sleep {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.7;
}

.optimization-section-evening-device-usage-sleep {
  background: #065f46;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.optimization-content-evening-device-usage-sleep {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.optimization-text-evening-device-usage-sleep {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.optimization-title-evening-device-usage-sleep {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.optimization-paragraph-evening-device-usage-sleep {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: #d1fae5;
  line-height: 1.8;
}

.optimization-checklist-evening-device-usage-sleep {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.checklist-item-evening-device-usage-sleep {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.checklist-item-evening-device-usage-sleep i {
  flex-shrink: 0;
  color: #10b981;
  font-size: 1.25rem;
  margin-top: 2px;
}

.checklist-text-evening-device-usage-sleep {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #a7f3d0;
  line-height: 1.6;
}

.optimization-visual-evening-device-usage-sleep {
  position: relative;
  height: 350px;
  border-radius: 16px;
  overflow: hidden;
}

.optimization-image-evening-device-usage-sleep {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.featured-quote-section-evening-device-usage-sleep {
  background: #022c22;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.featured-quote-evening-device-usage-sleep {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 5vw, 3.5rem);
  border-left: 6px solid #10b981;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 8px;
  max-width: 900px;
  margin: 0 auto;
}

.quote-text-evening-device-usage-sleep {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #ffffff;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.quote-author-evening-device-usage-sleep {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #a7f3d0;
  font-style: normal;
}

.conclusion-section-evening-device-usage-sleep {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.conclusion-content-evening-device-usage-sleep {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.conclusion-text-evening-device-usage-sleep {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.conclusion-title-evening-device-usage-sleep {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #022c22;
  line-height: 1.2;
}

.conclusion-paragraph-evening-device-usage-sleep {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: #374151;
  line-height: 1.8;
}

.conclusion-key-takeaway-evening-device-usage-sleep {
  background: #f0fdf4;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #10b981;
  margin-top: 1rem;
}

.takeaway-title-evening-device-usage-sleep {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #022c22;
  margin-bottom: 0.75rem;
}

.takeaway-text-evening-device-usage-sleep {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #065f46;
  line-height: 1.7;
}

.conclusion-visual-evening-device-usage-sleep {
  position: relative;
  height: 350px;
  border-radius: 16px;
  overflow: hidden;
}

.conclusion-image-evening-device-usage-sleep {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.disclaimer-section-evening-device-usage-sleep {
  background: #064e3b;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.disclaimer-content-evening-device-usage-sleep {
  background: rgba(16, 185, 129, 0.08);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border-left: 4px solid #10b981;
}

.disclaimer-title-evening-device-usage-sleep {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.disclaimer-text-evening-device-usage-sleep {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #d1fae5;
  line-height: 1.7;
}

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

.related-header-evening-device-usage-sleep {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-evening-device-usage-sleep {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #022c22;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.related-subtitle-evening-device-usage-sleep {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: #64748b;
}

.related-cards-evening-device-usage-sleep {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  justify-content: center;
}

.related-card-evening-device-usage-sleep {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.related-card-evening-device-usage-sleep:hover {
  transform: translateY(-8px);
  border-color: #10b981;
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.15);
}

.related-card-image-evening-device-usage-sleep {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.related-card-img-evening-device-usage-sleep {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-evening-device-usage-sleep:hover .related-card-img-evening-device-usage-sleep {
  transform: scale(1.05);
}

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

.related-card-title-evening-device-usage-sleep {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 700;
  color: #022c22;
  line-height: 1.3;
}

.related-card-description-evening-device-usage-sleep {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero-content-evening-device-usage-sleep,
  .intro-content-evening-device-usage-sleep,
  .understanding-content-evening-device-usage-sleep,
  .optimization-content-evening-device-usage-sleep,
  .conclusion-content-evening-device-usage-sleep {
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .hero-visual-evening-device-usage-sleep,
  .intro-visual-evening-device-usage-sleep,
  .understanding-visual-evening-device-usage-sleep,
  .optimization-visual-evening-device-usage-sleep,
  .conclusion-visual-evening-device-usage-sleep {
    height: 300px;
    order: -1;
  }

  .strategy-step-evening-device-usage-sleep {
    flex-direction: column;
    align-items: flex-start;
  }

  .step-number-evening-device-usage-sleep {
    margin-bottom: 0.5rem;
  }

  .related-cards-evening-device-usage-sleep {
    flex-direction: column;
    align-items: stretch;
  }

  .related-card-evening-device-usage-sleep {
    flex: 1 1 100%;
    max-width: none;
  }

  .featured-quote-evening-device-usage-sleep {
    padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.5rem);
  }

  .quote-text-evening-device-usage-sleep {
    font-size: clamp(1rem, 2vw, 1.125rem);
  }
}

@media (max-width: 480px) {
  .breadcrumbs-evening-device-usage-sleep {
    font-size: 0.75rem;
    gap: 0.25rem;
  }

  .article-meta-evening-device-usage-sleep {
    gap: 0.75rem;
  }

  .meta-badge-evening-device-usage-sleep {
    padding: 0.4rem 0.75rem;
    font-size: 0.7rem;
  }

  .hero-title-evening-device-usage-sleep,
  .intro-title-evening-device-usage-sleep,
  .understanding-title-evening-device-usage-sleep,
  .optimization-title-evening-device-usage-sleep,
  .conclusion-title-evening-device-usage-sleep,
  .strategies-title-evening-device-usage-sleep {
    word-break: break-word;
  }

  .insight-item-evening-device-usage-sleep {
    flex-direction: column;
    align-items: flex-start;
  }

  .insight-number-evening-device-usage-sleep {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .checklist-item-evening-device-usage-sleep {
    gap: 0.75rem;
  }

  .checklist-item-evening-device-usage-sleep i {
    font-size: 1.125rem;
    margin-top: 3px;
  }
}

:root {
  --color-bg-dark-primary: #022c22;
  --color-bg-dark-secondary: #064e3b;
  --color-bg-dark-tertiary: #065f46;
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-light-tertiary: #f1f5f9;
  --color-bg-card-dark: rgba(16, 185, 129, 0.08);
  --color-bg-card-light: #ffffff;
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #a7f3d0;
  --color-text-dark-muted: #6ee7b7;
  --color-text-light-primary: #022c22;
  --color-text-light-secondary: #047857;
  --color-text-light-muted: #6b7280;
  --color-primary: #10b981;
  --color-primary-hover: #059669;
  --color-secondary: #34d399;
  --color-accent-light: #d1fae5;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
}

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

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

.tech-wellness-about {
  width: 100%;
}

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

section {
  width: 100%;
}

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

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

.hero-wellness-text-about {
  max-width: 700px;
}

.hero-wellness-title-about {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-light-primary);
  line-height: 1.15;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-wellness-subtitle-about {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-light-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.hero-wellness-image-about {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin-top: 1rem;
  box-shadow: var(--shadow-lg);
}

.hero-stats-wellness-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 2px solid var(--color-accent-light);
}

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

.stat-number-wellness-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label-wellness-about {
  font-size: 0.875rem;
  color: var(--color-text-light-muted);
  font-weight: 500;
}

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

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

.section-header-about {
  text-align: center;
  margin-bottom: 2rem;
}

.section-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.philosophy-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.philosophy-subtitle-about {
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  color: var(--color-text-light-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.philosophy-text-about {
  font-size: clamp(0.9375rem, 1.5vw, 1rem);
  color: var(--color-text-light-muted);
  line-height: 1.7;
  max-width: 750px;
  margin: 1.5rem auto 0;
}

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

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

.approach-header-about {
  text-align: center;
  margin-bottom: 2rem;
}

.approach-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.approach-subtitle-about {
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  color: var(--color-text-light-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.steps-container-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.step-item-about {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.step-number-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

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

.step-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
}

.step-text-about {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-light-muted);
  line-height: 1.6;
}

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

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

.pillars-header-about {
  text-align: center;
  margin-bottom: 1rem;
}

.pillars-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.pillars-subtitle-about {
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  color: var(--color-text-light-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.pillars-grid-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.pillar-card-about {
  flex: 1 1 280px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pillar-icon-about {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.pillar-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
}

.pillar-text-about {
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  color: var(--color-text-light-muted);
  line-height: 1.6;
}

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

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

.impact-header-about {
  text-align: center;
  margin-bottom: 2rem;
}

.impact-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.impact-subtitle-about {
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  color: var(--color-text-light-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.impact-text-about {
  font-size: clamp(0.9375rem, 1.5vw, 1rem);
  color: var(--color-text-light-muted);
  line-height: 1.7;
  max-width: 750px;
  margin: 1.5rem auto 0;
}

.impact-visual-about {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

.featured-quote-about {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(16, 185, 129, 0.05);
  margin: clamp(2rem, 4vw, 3rem) 0;
  border-radius: var(--radius-lg);
}

.featured-quote-text-about {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-style: italic;
  color: var(--color-text-light-primary);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.featured-quote-author-about {
  font-size: 0.875rem;
  color: var(--color-text-light-secondary);
  font-style: normal;
  font-weight: 500;
}

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

.commitment-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 750px;
  margin: 0 auto;
}

.commitment-header-about {
  text-align: center;
  margin-bottom: 1.5rem;
}

.commitment-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.commitment-subtitle-about {
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  color: var(--color-text-light-secondary);
}

.commitment-text-about {
  font-size: clamp(0.9375rem, 1.5vw, 1rem);
  color: var(--color-text-light-muted);
  line-height: 1.7;
}

.disclaimer-section-about {
  background: var(--color-bg-light-tertiary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 750px;
}

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

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

.disclaimer-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
}

.disclaimer-text-about {
  font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
  color: var(--color-text-light-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero-stats-wellness-about {
    flex-direction: column;
    gap: 1.5rem;
  }

  .pillar-card-about {
    flex: 1 1 100%;
    max-width: none;
  }

  .step-item-about {
    gap: 1rem;
  }
}

@media (min-width: 768px) {
  .hero-wellness-content-about {
    gap: 2.5rem;
  }

  .pillars-grid-about {
    gap: 2rem;
  }

  .steps-container-about {
    gap: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-wellness-content-about {
    gap: 3rem;
  }

  .pillars-grid-about {
    gap: 2rem;
  }
}

.tech-balance-legal {
    font-family: var(--font-primary);
    background: var(--color-bg-light-primary);
    color: var(--color-text-light-primary);
  }

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

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

  .privacy-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .privacy-hero-section h1 {
    font-size: clamp(1.75rem, 5vw + 0.5rem, 3rem);
    font-weight: 700;
    color: var(--color-text-light-primary);
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .privacy-hero-section .updated-date {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
    color: var(--color-text-light-muted);
    font-style: italic;
  }

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

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

  
  .privacy-section-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .privacy-section-block h2 {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2rem);
    font-weight: 600;
    color: var(--color-text-light-primary);
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .privacy-section-block p {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
    line-height: 1.7;
    color: var(--color-text-light-secondary);
  }

  .privacy-section-block ul,
  .privacy-section-block ol {
    margin-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .privacy-section-block li {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
    line-height: 1.6;
    color: var(--color-text-light-secondary);
  }

  
  .privacy-contact-section {
    background: var(--color-bg-light-tertiary);
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    overflow: hidden;
    margin-top: clamp(2rem, 4vw, 3rem);
  }

  .privacy-contact-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .privacy-contact-section h2 {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2rem);
    font-weight: 600;
    color: var(--color-text-light-primary);
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .privacy-contact-section p {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
    line-height: 1.6;
    color: var(--color-text-light-secondary);
  }

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

  .contact-detail strong {
    color: var(--color-text-light-primary);
    font-weight: 600;
  }

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

    .privacy-content-section {
      padding: clamp(4rem, 8vw, 7rem) 0;
    }

    .privacy-contact-section {
      padding: clamp(3rem, 6vw, 5rem) 0;
    }
  }

  @media (min-width: 1024px) {
    .privacy-hero-section {
      padding: clamp(5rem, 8vw, 7rem) 0;
    }

    .privacy-content-section {
      padding: clamp(5rem, 8vw, 8rem) 0;
    }
  }

.thank-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.thank-section {
  background: var(--color-bg-dark-primary);
  padding: clamp(2.5rem, 8vw, 4rem) 0;
  overflow: hidden;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.thank-icon {
  font-size: clamp(3.5rem, 12vw, 6rem);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: thank-bounce 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thank-icon i {
  display: inline-block;
}

@keyframes thank-bounce {
  0% {
    opacity: 0;
    transform: scale(0.3) translateY(-20px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.thank-section h1 {
  color: var(--color-text-dark-primary);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-subtitle {
  color: var(--color-text-dark-secondary);
  font-family: var(--font-primary);
  font-size: clamp(1.125rem, 3vw + 0.5rem, 1.5rem);
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-message {
  color: var(--color-text-dark-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  line-height: 1.7;
  margin: 0;
  max-width: 650px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-next-steps {
  color: var(--color-text-dark-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  line-height: 1.7;
  margin: 0;
  max-width: 650px;
  background: rgba(16, 185, 129, 0.1);
  padding: clamp(1.25rem, 4vw, 2rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-next-steps strong {
  color: var(--color-secondary);
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: clamp(0.875rem, 2vw + 0.5rem, 1.25rem) clamp(1.75rem, 4vw, 2.75rem);
  border: 2px solid transparent;
  cursor: pointer;
}

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

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}

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

@media (min-width: 768px) {
  .thank-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }

  .thank-content {
    gap: clamp(1.75rem, 4vw, 3rem);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }

  .thank-content {
    gap: clamp(2rem, 5vw, 3.5rem);
  }

  .thank-icon {
    animation: thank-bounce-extended 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  @keyframes thank-bounce-extended {
    0% {
      opacity: 0;
      transform: scale(0.2) translateY(-30px);
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 1;
      transform: scale(1) translateY(0);
    }
  }
}

@media (min-width: 1440px) {
  .thank-content {
    gap: 3.5rem;
  }
}

  .error-page {
    width: 100%;
  }

  
  .error-section {
    background: var(--color-bg-dark-primary);
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(2rem, 6vw, 4rem) 0;
    overflow: hidden;
    position: relative;
  }

  
  .error-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--color-bg-dark-secondary);
    border-radius: 50%;
    opacity: 0.15;
    animation: float-decoration 6s ease-in-out infinite;
    pointer-events: none;
  }

  .error-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 400px;
    height: 400px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0.08;
    animation: float-decoration-reverse 8s ease-in-out infinite;
    pointer-events: none;
  }

  
  .error-content {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 4vw, 3rem);
    max-width: 600px;
    margin: 0 auto;
  }

  
  .error-code-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 3vw, 2rem);
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
  }

  
  .error-code {
    font-size: clamp(3rem, 15vw, 8rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-heading);
    line-height: 1;
    letter-spacing: -0.05em;
    animation: scale-bounce 3s ease-in-out infinite;
  }

  
  .error-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(4rem, 10vw, 6rem);
    height: clamp(4rem, 10vw, 6rem);
    background: var(--color-bg-dark-secondary);
    border-radius: var(--radius-lg);
    font-size: clamp(1.75rem, 5vw, 3rem);
    color: var(--color-secondary);
    animation: rotate-gentle 4s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
  }

  
  .error-title {
    font-size: clamp(1.75rem, 5vw + 1rem, 3rem);
    font-weight: 700;
    color: var(--color-text-dark-primary);
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  
  .error-subtitle {
    font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
    color: var(--color-text-dark-secondary);
    line-height: 1.6;
    font-weight: 500;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  
  .error-message {
    background: var(--color-bg-dark-secondary);
    padding: clamp(1.25rem, 3vw, 2rem);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(16, 185, 129, 0.2);
    margin: clamp(0.5rem, 2vw, 1rem) 0;
  }

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

  
  .balance-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 4vw, 2.5rem);
    padding: clamp(1.5rem, 3vw, 2rem);
    background: rgba(16, 185, 129, 0.05);
    border-radius: var(--radius-md);
    margin: clamp(0.5rem, 2vw, 1rem) 0;
  }

  
  .balance-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    animation: balance-sway 3s ease-in-out infinite;
  }

  .balance-item:last-of-type {
    animation: balance-sway 3s ease-in-out infinite reverse;
  }

  .balance-item i {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--color-secondary);
  }

  .balance-item span {
    font-size: clamp(0.75rem, 1vw + 0.25rem, 0.9rem);
    color: var(--color-text-dark-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  
  .balance-scale {
    position: relative;
    width: clamp(2rem, 8vw, 4rem);
    height: 2px;
    background: var(--color-primary);
  }

  .scale-line {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    animation: pulse-line 2s ease-in-out infinite;
  }

  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: clamp(0.875rem, 2vw, 1.25rem) clamp(1.75rem, 4vw, 2.5rem);
    font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    font-family: var(--font-primary);
    letter-spacing: 0.01em;
    border: none;
  }

  .btn-primary {
    background: var(--color-primary);
    color: #000000;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  }

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

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

  
  .error-footer {
    font-size: clamp(0.8125rem, 1vw + 0.4rem, 0.95rem);
    color: var(--color-text-dark-muted);
    line-height: 1.6;
    margin: clamp(0.5rem, 2vw, 1rem) 0 0 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  
  @keyframes scale-bounce {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
  }

  @keyframes rotate-gentle {
    0%, 100% {
      transform: rotate(0deg);
    }
    25% {
      transform: rotate(-5deg);
    }
    75% {
      transform: rotate(5deg);
    }
  }

  @keyframes balance-sway {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-8px);
    }
  }

  @keyframes pulse-line {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: 0.6;
    }
  }

  @keyframes float-decoration {
    0%, 100% {
      transform: translateY(0) translateX(0);
    }
    33% {
      transform: translateY(-30px) translateX(20px);
    }
    66% {
      transform: translateY(30px) translateX(-20px);
    }
  }

  @keyframes float-decoration-reverse {
    0%, 100% {
      transform: translateY(0) translateX(0);
    }
    33% {
      transform: translateY(30px) translateX(-20px);
    }
    66% {
      transform: translateY(-30px) translateX(20px);
    }
  }

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

    .error-code-wrapper {
      margin-bottom: clamp(1rem, 2vw, 2rem);
    }

    .balance-visual {
      gap: clamp(1.5rem, 5vw, 3rem);
    }

    .btn {
      margin-top: var(--space-md);
    }
  }

  
  @media (min-width: 1024px) {
    .error-section::before {
      width: 600px;
      height: 600px;
      top: -25%;
      right: -5%;
    }

    .error-section::after {
      width: 500px;
      height: 500px;
      bottom: -15%;
      left: -10%;
    }

    .error-content {
      gap: clamp(2rem, 5vw, 4rem);
    }

    .btn {
      font-size: 1.05rem;
      padding: 1.25rem 2.5rem;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
    }
  }

  
  @media (min-width: 1440px) {
    .error-section {
      min-height: 100vh;
      padding: 6rem 0;
    }

    .error-code {
      font-size: 8rem;
    }

    .error-title {
      font-size: 3rem;
    }
  }

  .header-digital-sanctuary-mobile-toggle[aria-expanded="true"]{
    display: none;
  } 