/* ============================================
   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 */
.stone-9f5b p,
.box-4bd0,
.filter_49cb,
.notice_2974,
.title-upper-855b,
.focused-9b1b,
.liquid-efda,
.hovered_a891 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.hidden-eabd {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.hidden-eabd > *,
.accent-hard-7f3d,
.stone-9f5b,
.prev-a29c {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .hidden-eabd {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .hidden-eabd {
    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 === */
.outer_3a2a {
  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 */
.outer_3a2a.light_1b1d {
  box-shadow: var(--shadow-md);
}

.tiny_7ea5 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.shade-3070 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.alert-orange-3eea {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.last_c1e0 {
  display: none;
}

/* Hide mobile actions on desktop */
.message_lower_38d7 {
  display: none;
}

.highlight-fc01 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.highlight-fc01 a:hover,
.highlight-fc01 a.fn-active-25af {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.info_slow_df27 {
  margin-left: 1rem;
}

.over_8f85 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.feature_cf10,
.layout-upper-621a {
  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;
}

.feature_cf10 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.feature_cf10: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;
}

.layout-upper-621a {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.layout-upper-621a: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;
}

.feature_cf10 svg,
.layout-upper-621a svg {
  flex-shrink: 0;
}

.over_1b74 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.active_4c78 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.active_4c78::before,
.active_4c78::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.active_4c78::before {
  top: -7px;
}

.active_4c78::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.main-center-cea1 {
  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 === */
.accent-ac1e {
  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);
}

.simple_3a16 {
  margin: 0 0 2rem;
  text-align: center;
}

.aside_f477 {
  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;
}

.aside_f477:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.fixed-8104 {
  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);
}

.fixed-8104 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.content-1177 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.text_large_200e {
  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;
}

.text_large_200e:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.notice-bronze-d9df {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.media-65b6 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.dim_837b {
  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);
}

.dim_837b .frame-short-9f58 {
  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;
}

.dim_837b .frame-short-9f58 svg {
  flex-shrink: 0;
}

.dim_837b .accordion_358a {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.dim_837b .accordion_358a: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);
}

.dim_837b .liquid-a939 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.dim_837b .liquid-a939: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) {
  .accent-ac1e {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .aside_f477 {
    max-width: 100%;
  }

  .content-1177 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .text_large_200e {
    padding: 1rem;
  }

  .notice-bronze-d9df {
    font-size: 1.5rem;
  }

  .media-65b6 {
    font-size: 0.75rem;
  }

  .fixed-8104 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .dim_837b {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .dim_837b .frame-short-9f58 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .content-1177 {
    grid-template-columns: 1fr;
  }
}

.chip_fresh_c22b {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.shadow_c323 {
  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 === */
.purple_8a9c {
  margin-bottom: 2.5rem;
}

.block_01ed {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.chip_fresh_c22b {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.row-middle-736a {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.green-e200 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.lite-841d {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.outer-adf6 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.feature_up_be3c {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.motion-a276 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.inner_9a33 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.inner_9a33 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.mask_down_b337 {
  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);
}

.outline-2d2c {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.disabled-bottom-f2f8 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.outline_inner_5449 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.paragraph_bf60 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.small_9565 {
  display: grid;
  gap: 1rem;
}

.accent_yellow_e9ac {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.pro_e448 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.heading_d028 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.dynamic_598b {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.gallery_huge_a196 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.motion_0620 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.motion_0620 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.box-4bd0 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.feature_1a99 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.menu_7dcb {
  display: grid;
  gap: 2rem;
}

.table-wood-60b3 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.green-e200 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.row-middle-736a {
  flex: 1;
}

.outer-adf6 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.outer-adf6 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.fixed_65bd {
  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;
}

.feature_up_be3c {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.content-stone-93fd {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.content-stone-93fd span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.mask-14bb {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.mask-14bb a {
  font-size: 0.875rem;
  font-weight: 500;
}

.tag_lite_77c0 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.tag_lite_77c0 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.tag_lite_77c0 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tag_lite_77c0 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.easy-2955 {
  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 === */
.form-bda4 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.section-small-c140 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.layout_8023 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.status_3ad4 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.status_3ad4 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.status_3ad4 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.status_3ad4 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;
}

.status_3ad4 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.status_3ad4 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.stone-9f5b {
  padding: 3rem 0 5rem;
}

.prev-a29c {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.prev-a29c.video_hard_3afc {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.filter_49cb {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.short-ba88 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.table_c282 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.table_c282 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.light-54c4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.container-liquid-efc6 {
  text-align: center;
}

.under_630f {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.module-3c6f {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.summary_5cec {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.focused-9b1b {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.notice_2974 {
  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;
}

.notice_2974 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.notice_2974:hover {
  box-shadow: var(--shadow-lg);
}

.notice_2974.pressed_6d16 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.notice_2974 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.notice_2974 ul {
  margin: 1rem 0;
}

.notice_2974 li {
  margin-bottom: 0.75rem;
}

.dark-00b2 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.button_last_be84 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.button_last_be84 a {
  font-weight: 600;
}

/* === Data Tables === */
.nav_bd83 {
  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;
}

.nav_bd83 table {
  width: 100%;
  min-width: 600px;
}

.nav_bd83 thead {
  background-color: var(--primary-color);
  color: white;
}

.nav_bd83 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.nav_bd83 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.nav_bd83 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.nav_bd83 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.accordion-under-5009 {
  list-style: none;
  margin: 1.5rem 0;
}

.accordion-under-5009 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.accordion-under-5009 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.accordion-stale-90f6::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-25af::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_cbdf {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.hot-5707 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.hot-5707 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.hot-5707 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.hot-5707 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tabs_cbdf blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.liquid-efda {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.liquid-efda::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.dark-6e41 {
  position: relative;
  margin-bottom: 3rem;
}

.smooth-e7c6 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.smooth-e7c6 .widget-b673 {
  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;
}

.panel-4d12 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.panel-4d12 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.panel-4d12 ul {
  margin: 1rem 0;
}

.panel-4d12 li {
  margin-bottom: 0.75rem;
}

.form_001d {
  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 === */
.avatar_fresh_8b73 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.avatar_fresh_8b73 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.media-center-c053 {
  list-style: none;
  margin: 1.5rem 0;
}

.media-center-c053 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.media-center-c053 a {
  font-weight: 600;
}

.tag_f1c6 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.hovered_a891 {
  margin: 2.5rem 0;
}

.filter_down_fc45 {
  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;
}

.filter_down_fc45:hover {
  box-shadow: var(--shadow-lg);
}

.filter_down_fc45.box_13e5 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.card-a258 {
  flex-shrink: 0;
}

.card-a258 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);
}

.grid-right-1b35 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.hard-b945,
.shade-under-df78,
.summary-18cc {
  width: 100%;
  margin: 1.5rem 0;
}

.item_9ab7 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.item_9ab7 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.dropdown_6b99 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.dropdown_6b99 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.container-9945 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.container-9945 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.green_6472 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.stone-7380 {
  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;
}

.stone-7380:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.stone-7380.status-orange-345c {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.stone-7380 .surface_27ba {
  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;
}

.stone-7380 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.status_8235 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.prev_bf23 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.prev_bf23 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.hidden_c635 {
  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 === */
.frame-short-9f58 {
  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;
}

.accordion_358a {
  background-color: var(--primary-color);
  color: white;
}

.accordion_358a:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.liquid-a939 {
  background-color: var(--text-secondary);
  color: white;
}

.liquid-a939:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.overlay-next-0087 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.overlay-next-0087:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.texture-e080 {
  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;
}

.texture-e080:hover {
  background-color: var(--primary-dark);
}

.filter_dead {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.avatar_smooth_9a19 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.column-dim-a7ea {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.box-f769 {
  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 === */
.breadcrumb-7682 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.hero_8c42 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.hero_8c42 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.paragraph_large_40de {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.image-f57a {
  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;
}

.filter_a30b {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.surface-cold-8ecc {
  list-style: none;
  counter-reset: rank-counter;
}

.surface-cold-8ecc li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.surface-cold-8ecc 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;
}

.text_cool_51b2 {
  list-style: none;
}

.text_cool_51b2 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.dark-af0d {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.column_short_fa1d {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.column_short_fa1d .light_41c1 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.column_short_fa1d .hard-c49a {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.cold-bb5c {
  margin-top: 3rem;
}

.stale-a778 {
  width: 100%;
}

.surface-warm-da39 {
  background-color: #fef3c7;
}

.out-98d7 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.action-09ab {
  margin: 3rem 0;
}

.modal-a1d7 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.modal_41a4 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.modal_41a4:hover {
  box-shadow: var(--shadow-lg);
}

.modal_41a4.media-iron-ca41 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.form_black_2561 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.list_old_282e strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.list_old_282e span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.glass-4180 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.modal_41a4 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.dynamic-7f26 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.glass_583d {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.heading-pressed-0983 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.panel_fresh_501e {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.card-4f86 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.fast-a59d {
  margin-top: 1rem;
}

/* === FAQ Section === */
.light-f20f {
  max-width: 900px;
  margin: 0 auto;
}

.modal-glass-67c4 {
  margin: 2rem 0;
}

.hard_3000 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.hard_3000 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.hard_3000 summary::-webkit-details-marker {
  display: none;
}

.hard_3000 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.list_3321 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.hard_3000[open] .list_3321 {
  transform: rotate(45deg);
}

.banner_5130 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.banner_5130 p:last-child {
  margin-bottom: 0;
}

.border-4801 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.content_selected_ab42 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.text-b85c {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.text-b85c p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.text-b85c .frame-short-9f58 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.notice-d562 {
  max-width: 900px;
  margin: 0 auto;
}

.table_3a6e {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.huge_57b8 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.huge_57b8.fn-success-25af {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.outline_eace {
  font-size: 3rem;
  line-height: 1;
}

.grid-red-9880 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.smooth_e0b1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.east_d798,
.heading-03ea {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.east_d798 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.heading-03ea h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.dirty_c68c,
.main-f629 {
  margin: 1.5rem 0;
}

.dirty_c68c li,
.main-f629 li {
  margin-bottom: 1rem;
}

.detail-f371 {
  margin: 3rem 0;
}

.caption_a2c1 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.caption_a2c1 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.caption_a2c1 ol {
  margin: 1rem 0;
}

.caption_a2c1 li {
  margin-bottom: 0.75rem;
}

.notification-e162 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.medium_95df {
  margin: 2rem 0;
}

.footer-action-c670 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.white-0f43 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.accordion_40e3 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.grid_f639 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.gradient-01d0 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.icon-5b73 {
  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;
}

.icon-5b73 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.lite-841d {
  flex: 1;
}

.lite-841d h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.secondary-thick-3803 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.center-daaa p {
  margin-bottom: 1rem;
}

.selected_7dc8 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.link-left-1087 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.article_full_4609 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.article_full_4609 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.section_first_3cb6 h3 {
  margin-bottom: 1.5rem;
}

.brown-a439 {
  display: grid;
  gap: 2rem;
}

.disabled-4c11 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.disabled-4c11 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.disabled-4c11 h4 {
  margin: 0 0 0.25rem;
}

.disabled-4c11 p {
  margin: 0;
  font-size: 0.9375rem;
}

.simple-be18 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.middle_f34b {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.middle_f34b h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.middle_f34b ul {
  margin: 1.5rem 0;
}

.middle_f34b li {
  margin-bottom: 0.75rem;
}

.element_52f9 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.pink_92a0 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.backdrop-3e55 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.stale-5680 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.stale-5680 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.background_cold_92b9 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.background_cold_92b9 a {
  color: rgba(255, 255, 255, 0.8);
}

.column-west-f5c5 {
  list-style: none;
}

.column-west-f5c5 li {
  margin-bottom: 0.75rem;
}

.column-west-f5c5 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.column-west-f5c5 a:hover {
  color: white;
}

.simple-ab80 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.frame_10c4 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.slider-b378 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.pink_52a5 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.label_e91b {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .hidden-eabd {
    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;
  }

  .active_2746 {
    font-size: 1.5rem !important;
  }

  .block_01ed {
    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 */
  .notice_2974,
  .title-upper-855b,
  .panel-4d12,
  .grid-right-1b35,
  .form_black_2561,
  .modal_41a4,
  .banner_5130,
  .fixed-8104,
  .box-4bd0,
  .filter_49cb {
    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 */
  .chip_fresh_c22b {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .row-middle-736a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .green-e200 {
    flex-shrink: 0;
  }

  .lite-841d {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .outer-adf6,
  .feature_up_be3c {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .feature_up_be3c {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .alert-orange-3eea {
    display: none;
  }

  /* Show mobile actions */
  .message_lower_38d7 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .thumbnail-lower-7161 {
    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;
  }

  .thumbnail-lower-7161 svg {
    flex-shrink: 0;
  }

  .thumbnail-lower-7161 .disabled-4ee6 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .thumbnail-lower-7161 .lower-99f6 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .input_action_e339 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .block_active_2cab {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .thumbnail-lower-7161:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .last_c1e0 {
    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;
  }

  .last_c1e0.fn-active-25af {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .last_c1e0 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .last_c1e0 li:last-child {
    border-bottom: none;
  }

  .last_c1e0 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .highlight-fc01 {
    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;
  }

  .highlight-fc01 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .highlight-fc01 li:last-child {
    border-bottom: none;
  }

  .highlight-fc01 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .info_slow_df27 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .over_8f85 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .feature_cf10,
  .layout-upper-621a {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .feature_cf10 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .layout-upper-621a {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .highlight-fc01.fn-active-25af {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .over_1b74 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .outer_3a2a {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .tiny_7ea5 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .main-center-cea1 {
    margin-top: 0;
  }

  /* Hero section */
  .main-center-cea1 {
    padding: 2rem 0 1.5rem;
  }

  .block_01ed {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .box-4bd0 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .accent-ac1e {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .aside_f477 {
    max-width: 100%;
    border-radius: 8px;
  }

  .content-1177 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .text_large_200e {
    padding: 1rem;
  }

  .notice-bronze-d9df {
    font-size: 1.5rem;
  }

  .media-65b6 {
    font-size: 0.75rem;
  }

  .fixed-8104 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .dim_837b {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .dim_837b .frame-short-9f58 {
    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 */
  .layout_8023 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .filter_down_fc45 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .card-a258 {
    margin-bottom: 1rem;
  }

  /* Author */
  .table-wood-60b3 {
    flex-direction: column;
  }

  .icon-5b73 {
    flex-direction: column;
  }

  /* Quotes */
  .form_black_2561 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .smooth_e0b1 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .grid_f639 {
    flex-direction: column;
  }

  .grid_f639 .frame-short-9f58 {
    width: 100%;
  }

  /* Version comparison */
  .green_6472 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .breadcrumb-7682 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .backdrop-3e55 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .slider-b378 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .nav_bd83,
  .shade-under-df78,
  .notice-selected-56f3,
  .stale-a778,
  .hard-b945,
  .summary-18cc {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav_bd83 table,
  .shade-under-df78 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .hidden_c635 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .hidden-eabd {
    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;
  }

  .active_2746 {
    font-size: 1.25rem !important;
  }

  .block_01ed {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .outer_3a2a {
    position: fixed;
  }

  .tiny_7ea5 {
    padding: 0.625rem 0;
  }

  .shade-3070 img {
    height: 26px;
  }

  .highlight-fc01 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .last_c1e0 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .thumbnail-lower-7161 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .thumbnail-lower-7161 svg {
    width: 18px;
    height: 18px;
  }

  .thumbnail-lower-7161 .disabled-4ee6 {
    font-size: 0.7rem;
  }

  .thumbnail-lower-7161 .lower-99f6 {
    font-size: 0.65rem;
  }

  .feature_cf10,
  .layout-upper-621a {
    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, .hidden-eabd, .accent-hard-7f3d, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .accent-ac1e {
    padding: 1rem;
  }

  .content-1177 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .text_large_200e {
    padding: 0.875rem;
  }

  .notice-bronze-d9df {
    font-size: 1.25rem;
  }

  .dim_837b .frame-short-9f58 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .block_01ed {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .frame-short-9f58 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .filter_dead {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .filter_down_fc45 {
    padding: 1rem;
  }

  .card-a258 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .notice_2974,
  .article-a6f6,
  .message-bright-5804,
  .orange_3f3a {
    padding: 1rem;
  }
}

@media print {
  .outer_3a2a,
  .form-bda4,
  .over_1b74,
  .frame-short-9f58,
  .pink_92a0 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .hidden-eabd {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.warm-7f0d {
  margin-bottom: 3rem;
  text-align: center;
}

.active_2746 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.cold-6828 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.medium-3721,
.highlight-center-94a2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.surface_2acc {
  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;
}

.surface_2acc:hover {
  transform: translateY(-5px);
}

.surface_2acc strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.surface_2acc span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.popup-5ec6 {
  margin: 3rem 0;
}

.pressed-b9d5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.copper_f600 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.copper_f600:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.thumbnail_a2cc {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.breadcrumb_lite_27e0 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.thumbnail-adeb {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.status-simple-41dc {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.wide_00ae {
  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;
}

.wide_00ae:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.wide_00ae.north_49f4 {
  border-left: 4px solid var(--primary-color);
}

.brown_a8b4 {
  flex-shrink: 0;
}

.brown_a8b4 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.paragraph_steel_9ff2 {
  flex: 1;
}

.paragraph_steel_9ff2 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.north-097f {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.fixed_a72e,
.info_03a6,
.photo_first_00b2 {
  margin-bottom: 1.5rem;
}

.fixed_a72e h4,
.info_03a6 h4,
.photo_first_00b2 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fixed_a72e ul,
.info_03a6 ul,
.photo_first_00b2 ul {
  list-style: none;
  padding: 0;
}

.fixed_a72e li,
.info_03a6 li,
.photo_first_00b2 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.fixed_a72e li:before,
.info_03a6 li:before,
.photo_first_00b2 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.fast_df7f {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.fast_df7f 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;
}

.fast_df7f a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.carousel-solid-ade2 { margin: 2rem 0; }
.focused-52af { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.focused-52af h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.accordion-66c9 p { margin-bottom: 1rem; line-height: 1.7; }
.accordion-66c9 strong { color: var(--text-primary); }
.accordion-66c9 ul { list-style: none; padding-left: 0; }
.accordion-66c9 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.accordion-66c9 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.article_aa11 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.primary-steel-7bc3 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.primary-steel-7bc3:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.highlight-441d { font-size: 3rem; margin-bottom: 1rem; }
.primary-steel-7bc3 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.primary-steel-7bc3 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.hot-d3eb { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.hot-d3eb span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.label-bright-eb2f { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.grid_outer_7b35 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.panel_first_90b2 { text-align: center; }
.section_40a0 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.status_rough_9df3 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.brown_0109 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.fixed_5a7c { margin: 2rem 0; }
.modal_aa21 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.modal_aa21 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.modal_aa21 p, .modal_aa21 ul { line-height: 1.7; }
.modal_aa21 ul { list-style: none; padding-left: 0; }
.modal_aa21 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.modal_aa21 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.info-short-1a1d { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.article-fresh-ba1e { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.plasma-e804 { text-align: center; }
.info_9288 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.text-b123 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.grid-wood-925e { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.photo-lower-a4bd { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.feature_bbb7 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.feature_bbb7:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.feature_bbb7 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.feature_bbb7 p, .feature_bbb7 ul { line-height: 1.7; }
.feature_bbb7 ul { list-style: none; padding-left: 0; }
.feature_bbb7 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.feature_bbb7 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: b3ae */
.promo-block-i8 {
  padding: 0.4rem;
  font-size: 10px;
  line-height: 1.2;
}
