/* ============================================
   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 */
.preview-dirty-89c5 p,
.wood-cf6c,
.old_dd64,
.main_wood_78c8,
.aside-blue-e8b9,
.outer-2934,
.hero_9cec,
.slider_0b38 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.hover_059c {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.hover_059c > *,
.alert-a51d,
.preview-dirty-89c5,
.summary_0e59 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .hover_059c {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .hover_059c {
    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 === */
.fluid-1157 {
  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 */
.fluid-1157.short_be9b {
  box-shadow: var(--shadow-md);
}

.surface-8840 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.solid-7c69 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.light-dd9b {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.nav_light_01f8 {
  display: none;
}

/* Hide mobile actions on desktop */
.title-east-cb29 {
  display: none;
}

.background_large_7719 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.background_large_7719 a:hover,
.background_large_7719 a.fn-active-8dc1 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.video_6297 {
  margin-left: 1rem;
}

.link_5a27 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.bright_0cfc,
.full-7426 {
  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;
}

.bright_0cfc {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.bright_0cfc: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;
}

.full-7426 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.full-7426: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;
}

.bright_0cfc svg,
.full-7426 svg {
  flex-shrink: 0;
}

.menu_simple_6883 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.item_full_92d8 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.item_full_92d8::before,
.item_full_92d8::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.item_full_92d8::before {
  top: -7px;
}

.item_full_92d8::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.paragraph-32ae {
  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 === */
.text_8002 {
  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);
}

.tooltip-paper-e811 {
  margin: 0 0 2rem;
  text-align: center;
}

.tag-dirty-72d4 {
  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;
}

.tag-dirty-72d4:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.feature-advanced-b850 {
  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);
}

.feature-advanced-b850 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.pagination-next-2627 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.nav_rough_1fef {
  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;
}

.nav_rough_1fef:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.focused-f3a9 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.shade-d5ce {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.preview-d45a {
  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);
}

.preview-d45a .info_986d {
  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;
}

.preview-d45a .info_986d svg {
  flex-shrink: 0;
}

.preview-d45a .green_5b3f {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.preview-d45a .green_5b3f: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);
}

.preview-d45a .video-a967 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.preview-d45a .video-a967: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) {
  .text_8002 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .tag-dirty-72d4 {
    max-width: 100%;
  }

  .pagination-next-2627 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .nav_rough_1fef {
    padding: 1rem;
  }

  .focused-f3a9 {
    font-size: 1.5rem;
  }

  .shade-d5ce {
    font-size: 0.75rem;
  }

  .feature-advanced-b850 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .preview-d45a {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .preview-d45a .info_986d {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .pagination-next-2627 {
    grid-template-columns: 1fr;
  }
}

.background-active-4e6e {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.image_1637 {
  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 === */
.title_5681 {
  margin-bottom: 2.5rem;
}

.fresh_4090 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.background-active-4e6e {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.large_6f78 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.selected_63dd {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.tooltip_tall_3ea8 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-78ec {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.huge-9e0d {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.avatar-89b5 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.bottom-5917 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.bottom-5917 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.logo-tiny-6be8 {
  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);
}

.advanced_b074 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.gallery_left_9c87 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.lower-6352 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.last_bbd1 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.cool_8f47 {
  display: grid;
  gap: 1rem;
}

.overlay_hard_90e2 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.out-3642 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.text_old_16c5 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.dirty_7487 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.status_eaa2 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.slider-fast-d233 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.slider-fast-d233 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.wood-cf6c {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.secondary_left_e1ae {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.badge-65ef {
  display: grid;
  gap: 2rem;
}

.tooltip_wide_52d5 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.selected_63dd {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.large_6f78 {
  flex: 1;
}

.form-78ec {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.form-78ec a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.button_5b38 {
  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;
}

.huge-9e0d {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.border-c9d4 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.border-c9d4 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.purple-202a {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.purple-202a a {
  font-size: 0.875rem;
  font-weight: 500;
}

.wrapper-solid-3f71 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.wrapper-solid-3f71 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.wrapper-solid-3f71 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wrapper-solid-3f71 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.steel_6ec8 {
  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 === */
.dirty-caa2 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.aside_easy_5f5b {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.media-short-7010 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.module_3bc5 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.module_3bc5 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.module_3bc5 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.module_3bc5 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;
}

.module_3bc5 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.module_3bc5 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.preview-dirty-89c5 {
  padding: 3rem 0 5rem;
}

.summary_0e59 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.summary_0e59.notification-6c34 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.old_dd64 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.action-c71d {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.nav-5d72 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.nav-5d72 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.disabled_new_a037 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.pro_c85b {
  text-align: center;
}

.full-3307 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.container-complex-e1b9 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.tooltip_mini_9b8d {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.outer-2934 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.main_wood_78c8 {
  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;
}

.main_wood_78c8 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.main_wood_78c8:hover {
  box-shadow: var(--shadow-lg);
}

.main_wood_78c8.container_8fc7 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.main_wood_78c8 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.main_wood_78c8 ul {
  margin: 1rem 0;
}

.main_wood_78c8 li {
  margin-bottom: 0.75rem;
}

.dirty_e46f {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.right-65d6 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.right-65d6 a {
  font-weight: 600;
}

/* === Data Tables === */
.header-full-5bad {
  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;
}

.header-full-5bad table {
  width: 100%;
  min-width: 600px;
}

.header-full-5bad thead {
  background-color: var(--primary-color);
  color: white;
}

.header-full-5bad th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.header-full-5bad td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.header-full-5bad tbody tr:hover {
  background-color: var(--bg-secondary);
}

.header-full-5bad tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.gradient_plasma_2f46 {
  list-style: none;
  margin: 1.5rem 0;
}

.gradient_plasma_2f46 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.gradient_plasma_2f46 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.banner_clean_5084::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-8dc1::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 === */
.thick_7e84 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.alert-0acb {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.alert-0acb img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.alert-0acb strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.alert-0acb span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.thick_7e84 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.hero_9cec {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.hero_9cec::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.form-90b4 {
  position: relative;
  margin-bottom: 3rem;
}

.row_7b91 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.row_7b91 .gradient_91e2 {
  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_f043 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.hovered_f043 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.hovered_f043 ul {
  margin: 1rem 0;
}

.hovered_f043 li {
  margin-bottom: 0.75rem;
}

.secondary-bronze-30b5 {
  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 === */
.short_3556 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.short_3556 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.article_wood_a160 {
  list-style: none;
  margin: 1.5rem 0;
}

.article_wood_a160 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.article_wood_a160 a {
  font-weight: 600;
}

.message_gold_8f93 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.slider_0b38 {
  margin: 2.5rem 0;
}

.article_9eea {
  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;
}

.article_9eea:hover {
  box-shadow: var(--shadow-lg);
}

.article_9eea.accent-818a {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.over-db2c {
  flex-shrink: 0;
}

.over-db2c 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);
}

.layout-ee5b h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.shadow_soft_1f3d,
.texture_ee9b,
.lower_2246 {
  width: 100%;
  margin: 1.5rem 0;
}

.rough_c4c3 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.rough_c4c3 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.primary_tiny_c919 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.primary_tiny_c919 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.item-1c1d {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.item-1c1d strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.primary-solid-fa03 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.up_a032 {
  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;
}

.up_a032:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.up_a032.video_brown_bd55 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.up_a032 .highlight-e918 {
  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;
}

.up_a032 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.gallery-888a {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.basic_860d {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.basic_860d label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.preview-0ec7 {
  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 === */
.info_986d {
  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;
}

.green_5b3f {
  background-color: var(--primary-color);
  color: white;
}

.green_5b3f:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.video-a967 {
  background-color: var(--text-secondary);
  color: white;
}

.video-a967:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.gradient_outer_1b16 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.gradient_outer_1b16:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.footer-8b4e {
  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;
}

.footer-8b4e:hover {
  background-color: var(--primary-dark);
}

.list-f061 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.north-7e55 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.motion-3f30 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.status_6a53 {
  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 === */
.component-c4d0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.column-d561 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.column-d561 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.description_fixed_14e8 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.primary_west_a8a7 {
  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;
}

.sidebar_slow_cd32 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.button-4fed {
  list-style: none;
  counter-reset: rank-counter;
}

.button-4fed li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.button-4fed 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;
}

.preview-light-d2f0 {
  list-style: none;
}

.preview-light-d2f0 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.pattern-a1ab {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.tooltip_paper_2fbd {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.tooltip_paper_2fbd .feature-hovered-1816 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.tooltip_paper_2fbd .list-79e6 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.header_next_8381 {
  margin-top: 3rem;
}

.link-3888 {
  width: 100%;
}

.iron_8041 {
  background-color: #fef3c7;
}

.brown_1c33 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.main-9432 {
  margin: 3rem 0;
}

.popup-9b70 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.preview_4bc5 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.preview_4bc5:hover {
  box-shadow: var(--shadow-lg);
}

.preview_4bc5.paper-9d08 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.column_bde7 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.tooltip-tiny-a303 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.tooltip-tiny-a303 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.image-b60e {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.preview_4bc5 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.right-0efd {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.last-25ef {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.box-1e28 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.notification_bbf2 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.section_853d {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.image_static_9130 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.notification-fa62 {
  max-width: 900px;
  margin: 0 auto;
}

.backdrop_4015 {
  margin: 2rem 0;
}

.next_3c0e {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.next_3c0e summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.next_3c0e summary::-webkit-details-marker {
  display: none;
}

.next_3c0e summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.upper-25b1 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.next_3c0e[open] .upper-25b1 {
  transform: rotate(45deg);
}

.component_2a95 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.component_2a95 p:last-child {
  margin-bottom: 0;
}

.module-upper-cb6d {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.gold-467e {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.main_e40f {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.main_e40f p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.main_e40f .info_986d {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.advanced-6dba {
  max-width: 900px;
  margin: 0 auto;
}

.out-b7e4 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.iron-2aa6 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.iron-2aa6.fn-success-8dc1 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.description-ace4 {
  font-size: 3rem;
  line-height: 1;
}

.tertiary-silver-0324 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.input_551c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.progress_6bb9,
.selected-5738 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.progress_6bb9 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.selected-5738 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.row-outer-884e,
.label-bronze-5984 {
  margin: 1.5rem 0;
}

.row-outer-884e li,
.label-bronze-5984 li {
  margin-bottom: 1rem;
}

.accent_first_834c {
  margin: 3rem 0;
}

.primary_fluid_22ef {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.primary_fluid_22ef h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.primary_fluid_22ef ol {
  margin: 1rem 0;
}

.primary_fluid_22ef li {
  margin-bottom: 0.75rem;
}

.thumbnail-bronze-3671 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.table-paper-9509 {
  margin: 2rem 0;
}

.element_wide_bb50 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.liquid_3ea6 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.menu-5f07 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.pagination-15d4 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.text-selected-76bd {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.carousel_out_8b17 {
  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;
}

.carousel_out_8b17 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.tooltip_tall_3ea8 {
  flex: 1;
}

.tooltip_tall_3ea8 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.sort-2370 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.box-gold-16ed p {
  margin-bottom: 1rem;
}

.cold_d233 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.shadow_4dd9 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.widget_7390 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.widget_7390 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.hidden-4e06 h3 {
  margin-bottom: 1.5rem;
}

.complex-f7eb {
  display: grid;
  gap: 2rem;
}

.tooltip_stone_1ef8 {
  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;
}

.tooltip_stone_1ef8 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.tooltip_stone_1ef8 h4 {
  margin: 0 0 0.25rem;
}

.tooltip_stone_1ef8 p {
  margin: 0;
  font-size: 0.9375rem;
}

.primary-upper-d424 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.overlay-5f2a {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.overlay-5f2a h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.overlay-5f2a ul {
  margin: 1.5rem 0;
}

.overlay-5f2a li {
  margin-bottom: 0.75rem;
}

.blue_94d7 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.image_cc61 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.gallery-medium-8085 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.inner-3845 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.inner-3845 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.tooltip-hovered-e88c {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.tooltip-hovered-e88c a {
  color: rgba(255, 255, 255, 0.8);
}

.menu-3798 {
  list-style: none;
}

.menu-3798 li {
  margin-bottom: 0.75rem;
}

.menu-3798 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.menu-3798 a:hover {
  color: white;
}

.simple_27a7 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.motion-ea92 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.preview_ca47 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.clean-6709 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.over_0e84 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .hover_059c {
    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;
  }

  .label-eff5 {
    font-size: 1.5rem !important;
  }

  .fresh_4090 {
    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 */
  .main_wood_78c8,
  .aside-blue-e8b9,
  .hovered_f043,
  .layout-ee5b,
  .column_bde7,
  .preview_4bc5,
  .component_2a95,
  .feature-advanced-b850,
  .wood-cf6c,
  .old_dd64 {
    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 */
  .background-active-4e6e {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .large_6f78 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .selected_63dd {
    flex-shrink: 0;
  }

  .tooltip_tall_3ea8 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .form-78ec,
  .huge-9e0d {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .huge-9e0d {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .light-dd9b {
    display: none;
  }

  /* Show mobile actions */
  .title-east-cb29 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .menu_easy_5974 {
    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;
  }

  .menu_easy_5974 svg {
    flex-shrink: 0;
  }

  .menu_easy_5974 .background-23b7 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .menu_easy_5974 .huge_5303 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .box-ceff {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .element-huge-071a {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .menu_easy_5974:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .nav_light_01f8 {
    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;
  }

  .nav_light_01f8.fn-active-8dc1 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav_light_01f8 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .nav_light_01f8 li:last-child {
    border-bottom: none;
  }

  .nav_light_01f8 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .background_large_7719 {
    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;
  }

  .background_large_7719 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .background_large_7719 li:last-child {
    border-bottom: none;
  }

  .background_large_7719 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .video_6297 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .link_5a27 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .bright_0cfc,
  .full-7426 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .bright_0cfc {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .full-7426 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .background_large_7719.fn-active-8dc1 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .menu_simple_6883 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .fluid-1157 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .surface-8840 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .paragraph-32ae {
    margin-top: 0;
  }

  /* Hero section */
  .paragraph-32ae {
    padding: 2rem 0 1.5rem;
  }

  .fresh_4090 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .wood-cf6c {
    font-size: 1rem;
  }

  /* Hero brand image */
  .text_8002 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .tag-dirty-72d4 {
    max-width: 100%;
    border-radius: 8px;
  }

  .pagination-next-2627 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .nav_rough_1fef {
    padding: 1rem;
  }

  .focused-f3a9 {
    font-size: 1.5rem;
  }

  .shade-d5ce {
    font-size: 0.75rem;
  }

  .feature-advanced-b850 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .preview-d45a {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .preview-d45a .info_986d {
    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 */
  .media-short-7010 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .article_9eea {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .over-db2c {
    margin-bottom: 1rem;
  }

  /* Author */
  .tooltip_wide_52d5 {
    flex-direction: column;
  }

  .carousel_out_8b17 {
    flex-direction: column;
  }

  /* Quotes */
  .column_bde7 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .input_551c {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .pagination-15d4 {
    flex-direction: column;
  }

  .pagination-15d4 .info_986d {
    width: 100%;
  }

  /* Version comparison */
  .primary-solid-fa03 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .component-c4d0 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .gallery-medium-8085 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .preview_ca47 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .header-full-5bad,
  .texture_ee9b,
  .active-small-cb5c,
  .link-3888,
  .shadow_soft_1f3d,
  .lower_2246 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .header-full-5bad table,
  .texture_ee9b table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .preview-0ec7 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .hover_059c {
    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;
  }

  .label-eff5 {
    font-size: 1.25rem !important;
  }

  .fresh_4090 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .fluid-1157 {
    position: fixed;
  }

  .surface-8840 {
    padding: 0.625rem 0;
  }

  .solid-7c69 img {
    height: 26px;
  }

  .background_large_7719 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .nav_light_01f8 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .menu_easy_5974 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .menu_easy_5974 svg {
    width: 18px;
    height: 18px;
  }

  .menu_easy_5974 .background-23b7 {
    font-size: 0.7rem;
  }

  .menu_easy_5974 .huge_5303 {
    font-size: 0.65rem;
  }

  .bright_0cfc,
  .full-7426 {
    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, .hover_059c, .alert-a51d, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .text_8002 {
    padding: 1rem;
  }

  .pagination-next-2627 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .nav_rough_1fef {
    padding: 0.875rem;
  }

  .focused-f3a9 {
    font-size: 1.25rem;
  }

  .preview-d45a .info_986d {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .fresh_4090 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .info_986d {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .list-f061 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .article_9eea {
    padding: 1rem;
  }

  .over-db2c span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .main_wood_78c8,
  .tiny-cd5c,
  .table_132c,
  .active_df95 {
    padding: 1rem;
  }
}

@media print {
  .fluid-1157,
  .dirty-caa2,
  .menu_simple_6883,
  .info_986d,
  .image_cc61 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .hover_059c {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.link-79cc {
  margin-bottom: 3rem;
  text-align: center;
}

.label-eff5 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.search-f78e {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.modal-631b,
.hidden-11e4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.input_clean_7315 {
  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;
}

.input_clean_7315:hover {
  transform: translateY(-5px);
}

.input_clean_7315 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.input_clean_7315 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.accent_complex_6cd0 {
  margin: 3rem 0;
}

.table_6c6e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.table-103f {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.table-103f:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.button-east-6bf0 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.orange-4c0e {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.mask_down_17e7 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.tiny_d110 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.disabled_west_c955 {
  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;
}

.disabled_west_c955:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.disabled_west_c955.caption-e34e {
  border-left: 4px solid var(--primary-color);
}

.warm-a354 {
  flex-shrink: 0;
}

.warm-a354 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.accent-red-b249 {
  flex: 1;
}

.accent-red-b249 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.bronze_98ad {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.table-new-75af,
.message-pressed-1dc9,
.shadow_fbb5 {
  margin-bottom: 1.5rem;
}

.table-new-75af h4,
.message-pressed-1dc9 h4,
.shadow_fbb5 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.table-new-75af ul,
.message-pressed-1dc9 ul,
.shadow_fbb5 ul {
  list-style: none;
  padding: 0;
}

.table-new-75af li,
.message-pressed-1dc9 li,
.shadow_fbb5 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.table-new-75af li:before,
.message-pressed-1dc9 li:before,
.shadow_fbb5 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.center-4782 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.center-4782 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;
}

.center-4782 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.block-b5dc { margin: 2rem 0; }
.focus-a2b5 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.focus-a2b5 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.pattern_top_e418 p { margin-bottom: 1rem; line-height: 1.7; }
.pattern_top_e418 strong { color: var(--text-primary); }
.pattern_top_e418 ul { list-style: none; padding-left: 0; }
.pattern_top_e418 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.pattern_top_e418 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.description_center_967e { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.box_upper_176f { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.box_upper_176f:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.hidden-orange-ff47 { font-size: 3rem; margin-bottom: 1rem; }
.box_upper_176f h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.box_upper_176f p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.aside_old_7125 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.aside_old_7125 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.complex-e59e { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.component_142b { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.layout_4eea { text-align: center; }
.top_2fb1 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.section-7bb2 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.image-easy-8325 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.surface-e754 { margin: 2rem 0; }
.gradient_active_1ecb { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.gradient_active_1ecb h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.gradient_active_1ecb p, .gradient_active_1ecb ul { line-height: 1.7; }
.gradient_active_1ecb ul { list-style: none; padding-left: 0; }
.gradient_active_1ecb ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.gradient_active_1ecb ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.hard-2679 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.block-white-5c62 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.gradient-lower-469c { text-align: center; }
.card_b5ad { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.lite_5e99 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.slow_dfb3 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.item-f00f { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.gas_30a8 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.gas_30a8:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.gas_30a8 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.gas_30a8 p, .gas_30a8 ul { line-height: 1.7; }
.gas_30a8 ul { list-style: none; padding-left: 0; }
.gas_30a8 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.gas_30a8 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: fde2 */
.phantom-card-d8 {
  padding: 0.5rem;
  font-size: 10px;
  line-height: 1.2;
}
