/* ============================================
   Modern SEO-Optimized Style for Research Article
   ============================================ */

/* === CSS Reset & Base === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color Palette - Professional Research Theme */
  --primary-color: #2563eb;
  --primary-dark: #1e40af;
  --primary-light: #3b82f6;
  --secondary-color: #059669;
  --accent-color: #dc2626;
  --text-primary: #1f2937;
  --text-secondary: #4b5563;
  --text-muted: #6b7280;
  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
  --bg-tertiary: #f3f4f6;
  --border-color: #e5e7eb;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
  
  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Merriweather', Georgia, serif;
  
  /* Spacing */
  --container-width: 1200px;
  --section-padding: 5rem;
  --card-padding: 2rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Prevent horizontal overflow - Force word breaking */
img, video, iframe {
  max-width: 100%;
  height: auto;
}

pre, code {
  max-width: 100%;
  overflow-x: auto;
  word-wrap: break-word;
}

/* Force all text elements to break long words */
p, h1, h2, h3, h4, h5, h6, li, td, th, span, div, a, strong, em {
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

/* Specific fix for long Indonesian compound words */
.nav-hard-21b9 p,
.disabled-complex-31ce,
.selected_3752,
.hard_519c,
.thumbnail_2655,
.west-25a7,
.silver-2eaf,
.short-81b2 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.filter-medium-7074 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.filter-medium-7074 > *,
.card-a780,
.nav-hard-21b9,
.input-cool-099f {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .filter-medium-7074 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .filter-medium-7074 {
    padding: 0 1rem;
  }
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2rem;
  letter-spacing: -0.015em;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  margin-bottom: 1.25rem;
}

strong {
  font-weight: 600;
  color: var(--text-primary);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

code {
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  font-size: 0.875em;
  background-color: var(--bg-tertiary);
  padding: 0.2em 0.4em;
  border-radius: 3px;
  color: var(--accent-color);
}

pre {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 1.5rem 0;
  border: 1px solid var(--border-color);
}

pre code {
  background: none;
  padding: 0;
  color: var(--text-primary);
}

/* === Header/Navigation === */
.medium_2f53 {
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

/* Enhance shadow when scrolled */
.medium_2f53.fast-6759 {
  box-shadow: var(--shadow-md);
}

.gradient_15f8 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.outer-85e1 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.easy_6091 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.component_lower_c9a4 {
  display: none;
}

/* Hide mobile actions on desktop */
.gallery-989a {
  display: none;
}

.red-eb83 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.red-eb83 a:hover,
.red-eb83 a.fn-active-6e34 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.badge_e100 {
  margin-left: 1rem;
}

.fixed_01ff {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.logo_top_be34,
.background-16c8 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  color: white !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.logo_top_be34 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.logo_top_be34:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1e3a8a 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  transform: translateY(-1px);
  text-decoration: none;
}

.background-16c8 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.background-16c8:hover {
  background: linear-gradient(135deg, #047857 0%, #065f46 100%);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  transform: translateY(-1px);
  text-decoration: none;
}

.logo_top_be34 svg,
.background-16c8 svg {
  flex-shrink: 0;
}

.disabled-09b5 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.image_right_b0f1 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.image_right_b0f1::before,
.image_right_b0f1::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.image_right_b0f1::before {
  top: -7px;
}

.image_right_b0f1::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.video-e11b {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--border-color);
}

/* === Hero Brand Image - First Screen / Above the Fold === */
.in_9e22 {
  margin: 2.5rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  border: 2px solid var(--primary-color);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
}

.progress-c0ff {
  margin: 0 0 2rem;
  text-align: center;
}

.widget_1b6d {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.widget_1b6d:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.status_52fd {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  text-align: left;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.status_52fd strong {
  color: var(--primary-color);
  font-weight: 700;
}

.large-71e9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.title-6b7f {
  text-align: center;
  padding: 1.25rem;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border-radius: 12px;
  border: 1px solid var(--primary-color);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.title-6b7f:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.summary_glass_8e66 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.dropdown-80b6 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.heading_top_5f29 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.heading_top_5f29 .module-narrow-014a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
}

.heading_top_5f29 .module-narrow-014a svg {
  flex-shrink: 0;
}

.heading_top_5f29 .feature-clean-a584 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.heading_top_5f29 .feature-clean-a584:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1e3a8a 100%);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
}

.heading_top_5f29 .form_west_4306 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.heading_top_5f29 .form_west_4306:hover {
  background: linear-gradient(135deg, #047857 0%, #065f46 100%);
  box-shadow: 0 6px 16px rgba(5, 150, 105, 0.4);
  transform: translateY(-2px);
  text-decoration: none;
}

/* Mobile optimization for hero brand */
@media (max-width: 768px) {
  .in_9e22 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .widget_1b6d {
    max-width: 100%;
  }

  .large-71e9 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .title-6b7f {
    padding: 1rem;
  }

  .summary_glass_8e66 {
    font-size: 1.5rem;
  }

  .dropdown-80b6 {
    font-size: 0.75rem;
  }

  .status_52fd {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .heading_top_5f29 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .heading_top_5f29 .module-narrow-014a {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .large-71e9 {
    grid-template-columns: 1fr;
  }
}

.up-db60 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.status-525c {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

time {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* === Article Header & Meta === */
.tooltip_9882 {
  margin-bottom: 2.5rem;
}

.texture_clean_3381 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.up-db60 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.summary_6c16 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.orange_9ef3 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.info_motion_046a {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.alert_d7bc {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.right-81b8 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.purple_06a2 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.chip_19b4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.chip_19b4 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.breadcrumb_5e56 {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-lg);
}

.sort-6f42 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.paragraph_green_6b17 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.container-6106 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.main_03ee {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.wrapper-49c3 {
  display: grid;
  gap: 1rem;
}

.aside_dynamic_5169 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.video_dba2 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.banner_mini_ff3b {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.fluid_8809 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.fresh_e75e {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.nav_2b95 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.nav_2b95 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.disabled-complex-31ce {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.highlight_pro_c2c5 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.summary_fec3 {
  display: grid;
  gap: 2rem;
}

.soft_b793 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.orange_9ef3 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.summary_6c16 {
  flex: 1;
}

.alert_d7bc {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.alert_d7bc a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.new-2d62 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-size: 0.75rem;
}

.right-81b8 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.tiny-3188 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.tiny-3188 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.tag_91e5 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.tag_91e5 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.mask_dd1d {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.mask_dd1d strong {
  display: block;
  margin-bottom: 0.75rem;
}

.mask_dd1d ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mask_dd1d li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.gradient_black_77a5 {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: #fef3c7;
  border-left: 4px solid var(--warning-color);
  border-radius: 4px;
  font-size: 0.9375rem;
}

/* === Table of Contents === */
.carousel-72a7 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.active-4096 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.logo_fresh_c268 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.blue-cac4 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.blue-cac4 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.blue-cac4 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.blue-cac4 ol li a {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.2s ease, transform 0.2s ease;
}

.blue-cac4 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.blue-cac4 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.nav-hard-21b9 {
  padding: 3rem 0 5rem;
}

.input-cool-099f {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.input-cool-099f.title_42b4 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.selected_3752 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.paragraph_83cc {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.plasma-bbe3 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.plasma-bbe3 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.wood_05a2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.link-advanced-3fab {
  text-align: center;
}

.frame-advanced-cc82 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.outline-brown-4563 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.pattern_down_3180 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.west-25a7 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.hard_519c {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
  max-width: 100%;
  overflow: hidden;
  word-wrap: break-word;
}

.hard_519c * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hard_519c:hover {
  box-shadow: var(--shadow-lg);
}

.hard_519c.tabs-under-3a2c {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.hard_519c h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.hard_519c ul {
  margin: 1rem 0;
}

.hard_519c li {
  margin-bottom: 0.75rem;
}

.stone_284c {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.text_0b23 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.text_0b23 a {
  font-weight: 600;
}

/* === Data Tables === */
.shadow_9399 {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background-color: var(--bg-primary);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.shadow_9399 table {
  width: 100%;
  min-width: 600px;
}

.shadow_9399 thead {
  background-color: var(--primary-color);
  color: white;
}

.shadow_9399 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.shadow_9399 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.shadow_9399 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.shadow_9399 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.wrapper-6776 {
  list-style: none;
  margin: 1.5rem 0;
}

.wrapper-6776 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.wrapper-6776 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.notice_rough_0ef6::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--success-color);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
}

.fn-warning-6e34::before {
  content: '⚠';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--warning-color);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
}

/* === Expert Insight Box === */
.photo_inner_3360 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.hover_small_65e3 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.hover_small_65e3 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.hover_small_65e3 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.hover_small_65e3 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.photo_inner_3360 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.silver-2eaf {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.silver-2eaf::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.input-08ac {
  position: relative;
  margin-bottom: 3rem;
}

.section-easy-5c4c {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.section-easy-5c4c .primary-in-cc23 {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

.hovered-4635 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.hovered-4635 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.hovered-4635 ul {
  margin: 1rem 0;
}

.hovered-4635 li {
  margin-bottom: 0.75rem;
}

.complex-1459 {
  display: inline-block;
  background-color: #dbeafe;
  color: var(--primary-dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 1rem;
}

/* === Transparency Box === */
.next-db1d {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.next-db1d h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.fixed_2b8d {
  list-style: none;
  margin: 1.5rem 0;
}

.fixed_2b8d li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.fixed_2b8d a {
  font-weight: 600;
}

.preview_gold_65ff {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.short-81b2 {
  margin: 2.5rem 0;
}

.gallery-outer-f1dd {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: box-shadow 0.3s ease;
}

.gallery-outer-f1dd:hover {
  box-shadow: var(--shadow-lg);
}

.gallery-outer-f1dd.copper_cebc {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.slider-b659 {
  flex-shrink: 0;
}

.slider-b659 span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.button-1ffc h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.item_d14f,
.pagination-5486,
.huge-5470 {
  width: 100%;
  margin: 1.5rem 0;
}

.title_5959 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.title_5959 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.highlight-short-1bb1 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.highlight-short-1bb1 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.rough-bdf3 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.rough-bdf3 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.element-ecec {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.iron_e694 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.iron_e694:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.iron_e694.accordion_40a3 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.iron_e694 .surface_large_89c9 {
  display: inline-block;
  background-color: var(--secondary-color);
  color: white;
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.iron_e694 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.backdrop-d9a5 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.filter_0f79 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.filter_0f79 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.large_a22c {
  display: block;
  font-family: 'Consolas', monospace;
  font-size: 0.75rem;
  color: var(--accent-color);
  word-break: break-all;
  padding: 0.75rem;
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

/* === Buttons === */
.module-narrow-014a {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}

.feature-clean-a584 {
  background-color: var(--primary-color);
  color: white;
}

.feature-clean-a584:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.form_west_4306 {
  background-color: var(--text-secondary);
  color: white;
}

.form_west_4306:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.link_f45c {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.link_f45c:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.frame-west-3d07 {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.frame-west-3d07:hover {
  background-color: var(--primary-dark);
}

.texture_tiny_97ea {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.inner-f50b {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.pattern_7ee5 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.texture_d13c {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #fef3c7;
  color: #92400e;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

/* === Demographics & Data Visualization === */
.iron_806a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.dropdown_paper_6585 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.dropdown_paper_6585 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.card_glass_086f {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.new_6ee2 {
  flex: 1;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0.5rem;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
}

.left_5b0a {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.sidebar-plasma-1168 {
  list-style: none;
  counter-reset: rank-counter;
}

.sidebar-plasma-1168 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.sidebar-plasma-1168 li::before {
  content: counter(rank-counter);
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.875rem;
}

.progress-1d80 {
  list-style: none;
}

.progress-1d80 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.cold-3152 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.alert_action_cfbb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.alert_action_cfbb .bottom-190a {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.alert_action_cfbb .stone_e12f {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.paper_7a3e {
  margin-top: 3rem;
}

.list-lite-a56c {
  width: 100%;
}

.short_a779 {
  background-color: #fef3c7;
}

.frame-dynamic-7cad {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.form-fast-1267 {
  margin: 3rem 0;
}

.title-841e {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.footer_b8f5 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.footer_b8f5:hover {
  box-shadow: var(--shadow-lg);
}

.footer_b8f5.thick-5867 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.east-fc4e {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.tall-4f14 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.tall-4f14 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.new_6f19 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer_b8f5 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.search_8375 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.pattern-huge-c495 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.pagination-purple-7240 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.link_bright_b7fa {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.aside_17bb {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.section-10d1 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.static-1364 {
  max-width: 900px;
  margin: 0 auto;
}

.new_548c {
  margin: 2rem 0;
}

.modal_40c1 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.modal_40c1 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.modal_40c1 summary::-webkit-details-marker {
  display: none;
}

.modal_40c1 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.wrapper_copper_6a50 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.modal_40c1[open] .wrapper_copper_6a50 {
  transform: rotate(45deg);
}

.link_bd9f {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.link_bd9f p:last-child {
  margin-bottom: 0;
}

.pink-3778 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.picture_first_ab87 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.static-ee48 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.static-ee48 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.static-ee48 .module-narrow-014a {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.shadow-7733 {
  max-width: 900px;
  margin: 0 auto;
}

.wrapper_da32 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.inner_ca44 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.inner_ca44.fn-success-6e34 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.alert-13ac {
  font-size: 3rem;
  line-height: 1;
}

.header_7694 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.panel-full-09ad {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.black-14fb,
.texture_5b1c {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.black-14fb h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.texture_5b1c h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.heading_eb88,
.message-current-da14 {
  margin: 1.5rem 0;
}

.heading_eb88 li,
.message-current-da14 li {
  margin-bottom: 1rem;
}

.last_8ebe {
  margin: 3rem 0;
}

.header-fee3 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.header-fee3 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.header-fee3 ol {
  margin: 1rem 0;
}

.header-fee3 li {
  margin-bottom: 0.75rem;
}

.outer-19c4 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.shade_c2d8 {
  margin: 2rem 0;
}

.hero_short_c949 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.preview-c795 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.description-b3aa {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.pink_7dc1 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.cold_ea12 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.fixed-75ff {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.fixed-75ff img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.info_motion_046a {
  flex: 1;
}

.info_motion_046a h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.heading-dirty-48b9 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.clean-a029 p {
  margin-bottom: 1rem;
}

.pagination-76af {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.dark-5592 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.gallery_1335 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.gallery_1335 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.huge_e52f h3 {
  margin-bottom: 1.5rem;
}

.menu-2a8a {
  display: grid;
  gap: 2rem;
}

.disabled_f329 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.disabled_f329 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.disabled_f329 h4 {
  margin: 0 0 0.25rem;
}

.disabled_f329 p {
  margin: 0;
  font-size: 0.9375rem;
}

.border_basic_5dbe {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.hard-4e86 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.hard-4e86 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.hard-4e86 ul {
  margin: 1.5rem 0;
}

.hard-4e86 li {
  margin-bottom: 0.75rem;
}

.upper_b96c {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.image_over_7cd3 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.hot_cbed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.video_01a6 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.video_01a6 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.info_a4b3 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.info_a4b3 a {
  color: rgba(255, 255, 255, 0.8);
}

.slow_c6da {
  list-style: none;
}

.slow_c6da li {
  margin-bottom: 0.75rem;
}

.slow_c6da a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.slow_c6da a:hover {
  color: white;
}

.sort-91c4 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.text_9b82 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.iron_93e3 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.banner-ab34 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.nav_1518 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .filter-medium-7074 {
    padding: 0 1.25rem;
  }

  /* Fix text overflow */
  h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    max-width: 100%;
  }

  /* Reduce heading sizes for mobile */
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.125rem;
  }

  .button_under_b760 {
    font-size: 1.5rem !important;
  }

  .texture_clean_3381 {
    font-size: 1.5rem !important;
  }

  p, li, td, th, span, div, strong {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
  }

  /* Force all containers to fit */
  .hard_519c,
  .thumbnail_2655,
  .hovered-4635,
  .button-1ffc,
  .east-fc4e,
  .footer_b8f5,
  .link_bd9f,
  .status_52fd,
  .disabled-complex-31ce,
  .selected_3752 {
    max-width: 100%;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: anywhere;
  }

  /* Long words in Indonesian */
  ul, ol {
    padding-left: 1.5rem;
    max-width: 100%;
  }

  /* Fix author-info layout on mobile */
  .up-db60 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .summary_6c16 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .orange_9ef3 {
    flex-shrink: 0;
  }

  .info_motion_046a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .alert_d7bc,
  .right-81b8 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .right-81b8 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .easy_6091 {
    display: none;
  }

  /* Show mobile actions */
  .gallery-989a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .progress-f26d {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.5rem;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 600;
    color: white !important;
    text-decoration: none;
    transition: all 0.2s ease;
    gap: 0.15rem;
    min-width: 60px;
    max-width: 75px;
  }

  .progress-f26d svg {
    flex-shrink: 0;
  }

  .progress-f26d .out-e13f {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .progress-f26d .gradient-ce77 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .paragraph_54d7 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .disabled_f5ce {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .progress-f26d:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .component_lower_c9a4 {
    display: block;
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    background-color: var(--bg-primary);
    list-style: none;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    max-height: calc(100vh - 75px);
    overflow-y: auto;
  }

  .component_lower_c9a4.fn-active-6e34 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .component_lower_c9a4 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .component_lower_c9a4 li:last-child {
    border-bottom: none;
  }

  .component_lower_c9a4 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .red-eb83 {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background-color: var(--bg-primary);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    max-height: calc(100vh - 65px);
    overflow-y: auto;
    gap: 0;
  }

  .red-eb83 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .red-eb83 li:last-child {
    border-bottom: none;
  }

  .red-eb83 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .badge_e100 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .fixed_01ff {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .logo_top_be34,
  .background-16c8 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .logo_top_be34 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .background-16c8 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .red-eb83.fn-active-6e34 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .disabled-09b5 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .medium_2f53 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .gradient_15f8 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .video-e11b {
    margin-top: 0;
  }

  /* Hero section */
  .video-e11b {
    padding: 2rem 0 1.5rem;
  }

  .texture_clean_3381 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .disabled-complex-31ce {
    font-size: 1rem;
  }

  /* Hero brand image */
  .in_9e22 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .widget_1b6d {
    max-width: 100%;
    border-radius: 8px;
  }

  .large-71e9 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .title-6b7f {
    padding: 1rem;
  }

  .summary_glass_8e66 {
    font-size: 1.5rem;
  }

  .dropdown-80b6 {
    font-size: 0.75rem;
  }

  .status_52fd {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .heading_top_5f29 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .heading_top_5f29 .module-narrow-014a {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }

  /* Typography */
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  /* TOC */
  .logo_fresh_c268 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .gallery-outer-f1dd {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .slider-b659 {
    margin-bottom: 1rem;
  }

  /* Author */
  .soft_b793 {
    flex-direction: column;
  }

  .fixed-75ff {
    flex-direction: column;
  }

  /* Quotes */
  .east-fc4e {
    flex-direction: column;
  }

  /* Pros/Cons */
  .panel-full-09ad {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .pink_7dc1 {
    flex-direction: column;
  }

  .pink_7dc1 .module-narrow-014a {
    width: 100%;
  }

  /* Version comparison */
  .element-ecec {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .iron_806a {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .hot_cbed {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .iron_93e3 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .shadow_9399,
  .pagination-5486,
  .logo-light-a580,
  .list-lite-a56c,
  .item_d14f,
  .huge-5470 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .shadow_9399 table,
  .pagination-5486 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .large_a22c {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .filter-medium-7074 {
    padding: 0 1rem;
  }

  /* Reduce heading sizes even more for very small screens */
  h1 {
    font-size: 1.25rem;
  }

  h2 {
    font-size: 1.125rem;
  }

  h3 {
    font-size: 1rem;
  }

  .button_under_b760 {
    font-size: 1.25rem !important;
  }

  .texture_clean_3381 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .medium_2f53 {
    position: fixed;
  }

  .gradient_15f8 {
    padding: 0.625rem 0;
  }

  .outer-85e1 img {
    height: 26px;
  }

  .red-eb83 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .component_lower_c9a4 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .progress-f26d {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .progress-f26d svg {
    width: 18px;
    height: 18px;
  }

  .progress-f26d .out-e13f {
    font-size: 0.7rem;
  }

  .progress-f26d .gradient-ce77 {
    font-size: 0.65rem;
  }

  .logo_top_be34,
  .background-16c8 {
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
  }

  /* Ultra aggressive word breaking for small screens */
  * {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }

  /* Ensure no element exceeds viewport */
  body, .filter-medium-7074, .card-a780, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .in_9e22 {
    padding: 1rem;
  }

  .large-71e9 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .title-6b7f {
    padding: 0.875rem;
  }

  .summary_glass_8e66 {
    font-size: 1.25rem;
  }

  .heading_top_5f29 .module-narrow-014a {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .texture_clean_3381 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .module-narrow-014a {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .texture_tiny_97ea {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .gallery-outer-f1dd {
    padding: 1rem;
  }

  .slider-b659 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .hard_519c,
  .green-b909,
  .widget_cc09,
  .input-fixed-63cf {
    padding: 1rem;
  }
}

@media print {
  .medium_2f53,
  .carousel-72a7,
  .disabled-09b5,
  .module-narrow-014a,
  .image_over_7cd3 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .filter-medium-7074 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.surface_8837 {
  margin-bottom: 3rem;
  text-align: center;
}

.button_under_b760 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.last_890a {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.west_1dd6,
.glass-da49 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.shade-6f0f {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.shade-6f0f:hover {
  transform: translateY(-5px);
}

.shade-6f0f strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.shade-6f0f span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.static-f6bd {
  margin: 3rem 0;
}

.panel_prev_eeb5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.mini-5de7 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.mini-5de7:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.sidebar_action_fe09 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.out_7d78 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.under_929f {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.photo_fixed_f84f {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.highlight_64cc {
  display: flex;
  gap: 2rem;
  padding: 2.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.highlight_64cc:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.highlight_64cc.nav_hovered_a580 {
  border-left: 4px solid var(--primary-color);
}

.menu_5e04 {
  flex-shrink: 0;
}

.menu_5e04 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.backdrop_a820 {
  flex: 1;
}

.backdrop_a820 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.preview_3da3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.primary-4f1f,
.avatar-warm-4f45,
.sort_6c5f {
  margin-bottom: 1.5rem;
}

.primary-4f1f h4,
.avatar-warm-4f45 h4,
.sort_6c5f h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.primary-4f1f ul,
.avatar-warm-4f45 ul,
.sort_6c5f ul {
  list-style: none;
  padding: 0;
}

.primary-4f1f li,
.avatar-warm-4f45 li,
.sort_6c5f li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.primary-4f1f li:before,
.avatar-warm-4f45 li:before,
.sort_6c5f li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.glass-6ad5 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.glass-6ad5 a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.glass-6ad5 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.full_d7bf { margin: 2rem 0; }
.panel-f68b { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.panel-f68b h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.black_4ee7 p { margin-bottom: 1rem; line-height: 1.7; }
.black_4ee7 strong { color: var(--text-primary); }
.black_4ee7 ul { list-style: none; padding-left: 0; }
.black_4ee7 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.black_4ee7 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.active_7295 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.new_0cb0 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.new_0cb0:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.down-a3bc { font-size: 3rem; margin-bottom: 1rem; }
.new_0cb0 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.new_0cb0 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.paragraph-673b { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.paragraph-673b span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.action-dbcb { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.tooltip-blue-76ac { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.input-solid-ad21 { text-align: center; }
.current_c0f1 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.detail-9db2 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.modal-3ac6 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.feature_selected_495b { margin: 2rem 0; }
.preview_orange_ec10 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.preview_orange_ec10 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.preview_orange_ec10 p, .preview_orange_ec10 ul { line-height: 1.7; }
.preview_orange_ec10 ul { list-style: none; padding-left: 0; }
.preview_orange_ec10 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.preview_orange_ec10 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.button_ed9f { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.texture_over_5090 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.hover_f214 { text-align: center; }
.wrapper_south_7588 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.medium-9592 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.east_2569 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.tag_dec9 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.alert_top_e1ed { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.alert_top_e1ed:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.alert_top_e1ed h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.alert_top_e1ed p, .alert_top_e1ed ul { line-height: 1.7; }
.alert_top_e1ed ul { list-style: none; padding-left: 0; }
.alert_top_e1ed ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.alert_top_e1ed ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 30cc */
.ghost-box-v1 {
  padding: 0.2rem;
  font-size: 12px;
  line-height: 1.1;
}
