/* ============================================
   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 */
.smooth-fc73 p,
.middle_af42,
.modal_fluid_90d6,
.west-33c6,
.nav_3825,
.box_4c15,
.highlight_hot_67da,
.container-cf21 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.popup-small-c083 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.popup-small-c083 > *,
.fresh-7bac,
.smooth-fc73,
.surface_4ecd {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .popup-small-c083 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .popup-small-c083 {
    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 === */
.list_cold_986f {
  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 */
.list_cold_986f.tag_pressed_82bc {
  box-shadow: var(--shadow-md);
}

.main_bronze_233e {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.hard_f18d img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.image_963f {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.pagination_orange_a69b {
  display: none;
}

/* Hide mobile actions on desktop */
.picture-light-dc85 {
  display: none;
}

.advanced_aca1 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.advanced_aca1 a:hover,
.advanced_aca1 a.fn-active-9c74 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.small-7e89 {
  margin-left: 1rem;
}

.selected_a116 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.gas_8b6e,
.message-orange-a5f6 {
  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;
}

.gas_8b6e {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.gas_8b6e: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;
}

.message-orange-a5f6 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.message-orange-a5f6: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;
}

.gas_8b6e svg,
.message-orange-a5f6 svg {
  flex-shrink: 0;
}

.photo_orange_be07 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.highlight_warm_c011 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.highlight_warm_c011::before,
.highlight_warm_c011::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.highlight_warm_c011::before {
  top: -7px;
}

.highlight_warm_c011::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.action-2508 {
  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 === */
.top-0271 {
  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);
}

.section-next-5631 {
  margin: 0 0 2rem;
  text-align: center;
}

.background-easy-f8bd {
  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;
}

.background-easy-f8bd:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.down_a45f {
  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);
}

.down_a45f strong {
  color: var(--primary-color);
  font-weight: 700;
}

.card_cold_679c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.module_active_e7be {
  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;
}

.module_active_e7be:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.list-white-1799 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.mask_in_9e99 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.menu-ee4d {
  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);
}

.menu-ee4d .column-bronze-b030 {
  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;
}

.menu-ee4d .column-bronze-b030 svg {
  flex-shrink: 0;
}

.menu-ee4d .notification-solid-1611 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.menu-ee4d .notification-solid-1611: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);
}

.menu-ee4d .focus-052d {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.menu-ee4d .focus-052d: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) {
  .top-0271 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .background-easy-f8bd {
    max-width: 100%;
  }

  .card_cold_679c {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .module_active_e7be {
    padding: 1rem;
  }

  .list-white-1799 {
    font-size: 1.5rem;
  }

  .mask_in_9e99 {
    font-size: 0.75rem;
  }

  .down_a45f {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .menu-ee4d {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .menu-ee4d .column-bronze-b030 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .card_cold_679c {
    grid-template-columns: 1fr;
  }
}

.dim_b156 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.mask-left-33ee {
  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 === */
.narrow_83ef {
  margin-bottom: 2.5rem;
}

.prev_afc5 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.dim_b156 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.hard-29aa {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.item_liquid_3e51 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.shadow_b702 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.link_5766 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.layout_pink_21b7 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.secondary-a37a {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.small_4274 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.small_4274 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.pattern-white-76bc {
  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);
}

.notice-d59b {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.breadcrumb_86d2 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.card-1e2b {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.icon_b0a8 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.gallery_green_7521 {
  display: grid;
  gap: 1rem;
}

.filter-66f6 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.east_da2f {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.breadcrumb-0447 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.hidden_fresh_da86 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.medium_9539 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.orange-37ca {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.orange-37ca p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.middle_af42 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.module_full_ad62 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.active_3df1 {
  display: grid;
  gap: 2rem;
}

.old-cc78 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.item_liquid_3e51 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.hard-29aa {
  flex: 1;
}

.link_5766 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.link_5766 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.glass_2b0d {
  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;
}

.layout_pink_21b7 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.gallery_hot_450d {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.gallery_hot_450d span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.box-287a {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.box-287a a {
  font-size: 0.875rem;
  font-weight: 500;
}

.alert_focused_c280 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.alert_focused_c280 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.alert_focused_c280 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.alert_focused_c280 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.search_b118 {
  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 === */
.label_c7c7 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.table-9176 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.hover-thick-e3a3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.menu-stale-a1a8 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.menu-stale-a1a8 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.menu-stale-a1a8 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.menu-stale-a1a8 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;
}

.menu-stale-a1a8 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.menu-stale-a1a8 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.smooth-fc73 {
  padding: 3rem 0 5rem;
}

.surface_4ecd {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.surface_4ecd.main-4d39 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.modal_fluid_90d6 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.hard-8be7 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.pattern_40bb {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.pattern_40bb h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.menu-b99b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.thumbnail-db99 {
  text-align: center;
}

.shadow-d44f {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.orange-fcdf {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.link-wood-6018 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.box_4c15 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.west-33c6 {
  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;
}

.west-33c6 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.west-33c6:hover {
  box-shadow: var(--shadow-lg);
}

.west-33c6.hot-8f10 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.west-33c6 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.west-33c6 ul {
  margin: 1rem 0;
}

.west-33c6 li {
  margin-bottom: 0.75rem;
}

.text-motion-3b75 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.caption-huge-99c9 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.caption-huge-99c9 a {
  font-weight: 600;
}

/* === Data Tables === */
.progress_b96c {
  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;
}

.progress_b96c table {
  width: 100%;
  min-width: 600px;
}

.progress_b96c thead {
  background-color: var(--primary-color);
  color: white;
}

.progress_b96c th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.progress_b96c td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.progress_b96c tbody tr:hover {
  background-color: var(--bg-secondary);
}

.progress_b96c tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.steel_7d1a {
  list-style: none;
  margin: 1.5rem 0;
}

.steel_7d1a li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.steel_7d1a li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.gas-b6ff::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-9c74::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 === */
.tabs_4fb1 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.modal-huge-0fed {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.modal-huge-0fed img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.modal-huge-0fed strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.modal-huge-0fed span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tabs_4fb1 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.highlight_hot_67da {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.highlight_hot_67da::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.copper_a7bc {
  position: relative;
  margin-bottom: 3rem;
}

.paper-b414 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.paper-b414 .hot_b5c0 {
  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;
}

.shadow-13da {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.shadow-13da h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.shadow-13da ul {
  margin: 1rem 0;
}

.shadow-13da li {
  margin-bottom: 0.75rem;
}

.form_668b {
  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 === */
.list-c599 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.list-c599 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.photo-6a55 {
  list-style: none;
  margin: 1.5rem 0;
}

.photo-6a55 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.photo-6a55 a {
  font-weight: 600;
}

.hidden-next-c7bc {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.container-cf21 {
  margin: 2.5rem 0;
}

.wood-6eca {
  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;
}

.wood-6eca:hover {
  box-shadow: var(--shadow-lg);
}

.wood-6eca.hidden-last-6a51 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.tall_124f {
  flex-shrink: 0;
}

.tall_124f 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);
}

.inner-1398 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.small_3f15,
.module-stale-8121,
.accordion_green_7ccb {
  width: 100%;
  margin: 1.5rem 0;
}

.label_motion_6a8b {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.label_motion_6a8b strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.footer-last-4e54 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.footer-last-4e54 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.sort-4c83 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.sort-4c83 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.video_cd3a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.glass-cadb {
  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;
}

.glass-cadb:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.glass-cadb.thumbnail-left-7b5c {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.glass-cadb .link-brown-1998 {
  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;
}

.glass-cadb h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.hard_ab4e {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.alert_fluid_07cc {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.alert_fluid_07cc label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.info_warm_def3 {
  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 === */
.column-bronze-b030 {
  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;
}

.notification-solid-1611 {
  background-color: var(--primary-color);
  color: white;
}

.notification-solid-1611:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.focus-052d {
  background-color: var(--text-secondary);
  color: white;
}

.focus-052d:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.section_d90a {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.section_d90a:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.brown_f00c {
  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;
}

.brown_f00c:hover {
  background-color: var(--primary-dark);
}

.summary_motion_518c {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.notification_3950 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.shade_609f {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.container_0f6b {
  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 === */
.border-b517 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.block_stale_9d4d {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.block_stale_9d4d h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.mask_dynamic_f318 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.thumbnail-6634 {
  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;
}

.tertiary_west_6a86 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.center-d84f {
  list-style: none;
  counter-reset: rank-counter;
}

.center-d84f li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.center-d84f 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;
}

.dim_843b {
  list-style: none;
}

.dim_843b li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.pressed_ad40 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.box_hovered_ba89 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.box_hovered_ba89 .nav-acff {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.box_hovered_ba89 .aside_e979 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.full-2500 {
  margin-top: 3rem;
}

.active-a610 {
  width: 100%;
}

.current_1aa0 {
  background-color: #fef3c7;
}

.feature_52e9 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.chip_2ce8 {
  margin: 3rem 0;
}

.top_6354 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.active_004a {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.active_004a:hover {
  box-shadow: var(--shadow-lg);
}

.active_004a.hover_ddcf {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.button_warm_3f77 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.thick_b6b6 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.thick_b6b6 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.left-4328 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.active_004a blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.filter_cf9a {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.component-8313 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.tag_dc01 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.bright_3c36 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.pattern-silver-b289 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.preview-gold-49bd {
  margin-top: 1rem;
}

/* === FAQ Section === */
.form-focused-b840 {
  max-width: 900px;
  margin: 0 auto;
}

.lower-d1bd {
  margin: 2rem 0;
}

.wide_e966 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.wide_e966 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.wide_e966 summary::-webkit-details-marker {
  display: none;
}

.wide_e966 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.narrow-f86d {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.wide_e966[open] .narrow-f86d {
  transform: rotate(45deg);
}

.aside-silver-2d45 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.aside-silver-2d45 p:last-child {
  margin-bottom: 0;
}

.aside-a750 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.notice-east-3fcf {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.text_advanced_78e7 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.text_advanced_78e7 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.text_advanced_78e7 .column-bronze-b030 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.module-action-a83f {
  max-width: 900px;
  margin: 0 auto;
}

.bottom-8977 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.dirty_ea4f {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.dirty_ea4f.fn-success-9c74 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.grid_835d {
  font-size: 3rem;
  line-height: 1;
}

.prev-8344 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.hover_out_2923 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.widget-85b6,
.tertiary_over_3635 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.widget-85b6 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.tertiary_over_3635 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.form-gas-d1cf,
.panel_86b7 {
  margin: 1.5rem 0;
}

.form-gas-d1cf li,
.panel_86b7 li {
  margin-bottom: 1rem;
}

.notice_old_501e {
  margin: 3rem 0;
}

.tooltip-81fc {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.tooltip-81fc h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.tooltip-81fc ol {
  margin: 1rem 0;
}

.tooltip-81fc li {
  margin-bottom: 0.75rem;
}

.active_21e2 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.tiny_6074 {
  margin: 2rem 0;
}

.background_pink_6a00 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.media_8e0c {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.wrapper_2d6e {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.notice_advanced_3b0a {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.surface-pressed-d1b7 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.nav-a7a7 {
  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;
}

.nav-a7a7 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.shadow_b702 {
  flex: 1;
}

.shadow_b702 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.progress-soft-8e20 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.highlight-brown-67e6 p {
  margin-bottom: 1rem;
}

.popup-5c5a {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.nav_530e {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.action-fcdc {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.action-fcdc a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.text-1c22 h3 {
  margin-bottom: 1.5rem;
}

.menu_8642 {
  display: grid;
  gap: 2rem;
}

.down_fb2d {
  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;
}

.down_fb2d img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.down_fb2d h4 {
  margin: 0 0 0.25rem;
}

.down_fb2d p {
  margin: 0;
  font-size: 0.9375rem;
}

.clean-164a {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.text-7b6f {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.text-7b6f h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.text-7b6f ul {
  margin: 1.5rem 0;
}

.text-7b6f li {
  margin-bottom: 0.75rem;
}

.pattern_906a {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.grid_up_13df {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.table-5886 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.north-7167 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.north-7167 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.panel_inner_b3c1 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.panel_inner_b3c1 a {
  color: rgba(255, 255, 255, 0.8);
}

.filter-bottom-5609 {
  list-style: none;
}

.filter-bottom-5609 li {
  margin-bottom: 0.75rem;
}

.filter-bottom-5609 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.filter-bottom-5609 a:hover {
  color: white;
}

.paragraph_gold_3a51 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.item-down-89b2 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.tooltip_in_0abe {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.info-dark-f26f {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.fixed-e516 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .popup-small-c083 {
    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;
  }

  .icon_full_91c9 {
    font-size: 1.5rem !important;
  }

  .prev_afc5 {
    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 */
  .west-33c6,
  .nav_3825,
  .shadow-13da,
  .inner-1398,
  .button_warm_3f77,
  .active_004a,
  .aside-silver-2d45,
  .down_a45f,
  .middle_af42,
  .modal_fluid_90d6 {
    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 */
  .dim_b156 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .hard-29aa {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .item_liquid_3e51 {
    flex-shrink: 0;
  }

  .shadow_b702 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .link_5766,
  .layout_pink_21b7 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .layout_pink_21b7 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .image_963f {
    display: none;
  }

  /* Show mobile actions */
  .picture-light-dc85 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .panel_e068 {
    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;
  }

  .panel_e068 svg {
    flex-shrink: 0;
  }

  .panel_e068 .center_6a64 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .panel_e068 .middle_8211 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .hidden-9205 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .cold-d3b4 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .panel_e068:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .pagination_orange_a69b {
    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;
  }

  .pagination_orange_a69b.fn-active-9c74 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .pagination_orange_a69b li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .pagination_orange_a69b li:last-child {
    border-bottom: none;
  }

  .pagination_orange_a69b a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .advanced_aca1 {
    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;
  }

  .advanced_aca1 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .advanced_aca1 li:last-child {
    border-bottom: none;
  }

  .advanced_aca1 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .small-7e89 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .selected_a116 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .gas_8b6e,
  .message-orange-a5f6 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .gas_8b6e {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .message-orange-a5f6 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .advanced_aca1.fn-active-9c74 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .photo_orange_be07 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .list_cold_986f {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .main_bronze_233e {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .action-2508 {
    margin-top: 0;
  }

  /* Hero section */
  .action-2508 {
    padding: 2rem 0 1.5rem;
  }

  .prev_afc5 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .middle_af42 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .top-0271 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .background-easy-f8bd {
    max-width: 100%;
    border-radius: 8px;
  }

  .card_cold_679c {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .module_active_e7be {
    padding: 1rem;
  }

  .list-white-1799 {
    font-size: 1.5rem;
  }

  .mask_in_9e99 {
    font-size: 0.75rem;
  }

  .down_a45f {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .menu-ee4d {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .menu-ee4d .column-bronze-b030 {
    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 */
  .hover-thick-e3a3 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .wood-6eca {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .tall_124f {
    margin-bottom: 1rem;
  }

  /* Author */
  .old-cc78 {
    flex-direction: column;
  }

  .nav-a7a7 {
    flex-direction: column;
  }

  /* Quotes */
  .button_warm_3f77 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .hover_out_2923 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .notice_advanced_3b0a {
    flex-direction: column;
  }

  .notice_advanced_3b0a .column-bronze-b030 {
    width: 100%;
  }

  /* Version comparison */
  .video_cd3a {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .border-b517 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .table-5886 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tooltip_in_0abe {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .progress_b96c,
  .module-stale-8121,
  .next-225c,
  .active-a610,
  .small_3f15,
  .accordion_green_7ccb {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .progress_b96c table,
  .module-stale-8121 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .info_warm_def3 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .popup-small-c083 {
    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;
  }

  .icon_full_91c9 {
    font-size: 1.25rem !important;
  }

  .prev_afc5 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .list_cold_986f {
    position: fixed;
  }

  .main_bronze_233e {
    padding: 0.625rem 0;
  }

  .hard_f18d img {
    height: 26px;
  }

  .advanced_aca1 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .pagination_orange_a69b {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .panel_e068 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .panel_e068 svg {
    width: 18px;
    height: 18px;
  }

  .panel_e068 .center_6a64 {
    font-size: 0.7rem;
  }

  .panel_e068 .middle_8211 {
    font-size: 0.65rem;
  }

  .gas_8b6e,
  .message-orange-a5f6 {
    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, .popup-small-c083, .fresh-7bac, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .top-0271 {
    padding: 1rem;
  }

  .card_cold_679c {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .module_active_e7be {
    padding: 0.875rem;
  }

  .list-white-1799 {
    font-size: 1.25rem;
  }

  .menu-ee4d .column-bronze-b030 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .prev_afc5 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .column-bronze-b030 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .summary_motion_518c {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .wood-6eca {
    padding: 1rem;
  }

  .tall_124f span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .west-33c6,
  .panel-d761,
  .border_4021,
  .first_eb6a {
    padding: 1rem;
  }
}

@media print {
  .list_cold_986f,
  .label_c7c7,
  .photo_orange_be07,
  .column-bronze-b030,
  .grid_up_13df {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .popup-small-c083 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.motion-4cc6 {
  margin-bottom: 3rem;
  text-align: center;
}

.icon_full_91c9 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.tall_4b29 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.new_0123,
.white-130a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.badge_inner_ed6a {
  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;
}

.badge_inner_ed6a:hover {
  transform: translateY(-5px);
}

.badge_inner_ed6a strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.badge_inner_ed6a span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.simple_4e02 {
  margin: 3rem 0;
}

.out-60cb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.old_78d0 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.old_78d0:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.huge-4ec1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.message-narrow-b870 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.highlight-d4be {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.filter_hot_7c33 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.dark_06ff {
  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;
}

.dark_06ff:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.dark_06ff.warm_8be1 {
  border-left: 4px solid var(--primary-color);
}

.title-e8f3 {
  flex-shrink: 0;
}

.title-e8f3 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.input_glass_b926 {
  flex: 1;
}

.input_glass_b926 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.description_c6ec {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.card_d62c,
.focus-upper-9013,
.picture_2f76 {
  margin-bottom: 1.5rem;
}

.card_d62c h4,
.focus-upper-9013 h4,
.picture_2f76 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card_d62c ul,
.focus-upper-9013 ul,
.picture_2f76 ul {
  list-style: none;
  padding: 0;
}

.card_d62c li,
.focus-upper-9013 li,
.picture_2f76 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.card_d62c li:before,
.focus-upper-9013 li:before,
.picture_2f76 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.info-1e7d {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.info-1e7d 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;
}

.info-1e7d a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.popup_a0fc { margin: 2rem 0; }
.thick-c512 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.thick-c512 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.solid_5f42 p { margin-bottom: 1rem; line-height: 1.7; }
.solid_5f42 strong { color: var(--text-primary); }
.solid_5f42 ul { list-style: none; padding-left: 0; }
.solid_5f42 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.solid_5f42 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.small_c2a4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.outline-138f { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.outline-138f:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.stale-20db { font-size: 3rem; margin-bottom: 1rem; }
.outline-138f h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.outline-138f p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.highlight-last-64c1 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.highlight-last-64c1 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.fast_c7b0 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.paragraph_gold_cc10 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.primary_orange_9750 { text-align: center; }
.slider_ac47 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.image-4e1c { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.paragraph_c3ff { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.widget_small_6da1 { margin: 2rem 0; }
.feature-plasma-0b7f { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.feature-plasma-0b7f h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.feature-plasma-0b7f p, .feature-plasma-0b7f ul { line-height: 1.7; }
.feature-plasma-0b7f ul { list-style: none; padding-left: 0; }
.feature-plasma-0b7f ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.feature-plasma-0b7f ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.block-2353 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.module_eef4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.panel_b0ba { text-align: center; }
.popup-down-8a0b { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.banner-983a { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.motion_95e8 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.liquid_4968 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.gallery_liquid_3734 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.gallery_liquid_3734:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.gallery_liquid_3734 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.gallery_liquid_3734 p, .gallery_liquid_3734 ul { line-height: 1.7; }
.gallery_liquid_3734 ul { list-style: none; padding-left: 0; }
.gallery_liquid_3734 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.gallery_liquid_3734 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 95d4 */
.phantom-card-t5 {
  padding: 0.5rem;
  font-size: 12px;
  line-height: 1.1;
}
