/* ============================================
   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 */
.slow_a63a p,
.border_0a6a,
.current_c863,
.west_76dd,
.bronze_5d73,
.button_rough_6d13,
.header_edc6,
.filter_easy_445d {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.hovered_55e4 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.hovered_55e4 > *,
.nav_down_9127,
.slow_a63a,
.active_steel_05b1 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .hovered_55e4 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .hovered_55e4 {
    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 === */
.rough-7483 {
  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 */
.rough-7483.description-current-9849 {
  box-shadow: var(--shadow-md);
}

.message_ebc1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.new_e31d img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.paper-415c {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.heading_2b6d {
  display: none;
}

/* Hide mobile actions on desktop */
.article-ed94 {
  display: none;
}

.hero-focused-502b a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.hero-focused-502b a:hover,
.hero-focused-502b a.fn-active-e0d8 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.notice-e4c8 {
  margin-left: 1rem;
}

.summary-static-76a9 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.hard_b761,
.hard-d4c8 {
  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;
}

.hard_b761 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.hard_b761: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;
}

.hard-d4c8 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.hard-d4c8: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;
}

.hard_b761 svg,
.hard-d4c8 svg {
  flex-shrink: 0;
}

.box_8664 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.small-d35e {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.small-d35e::before,
.small-d35e::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.small-d35e::before {
  top: -7px;
}

.small-d35e::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.hidden-b70d {
  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 === */
.widget-7b4e {
  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);
}

.fluid-987a {
  margin: 0 0 2rem;
  text-align: center;
}

.left-ab41 {
  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;
}

.left-ab41:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.box-west-4bf2 {
  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);
}

.box-west-4bf2 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.gradient-60cd {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.advanced-bb99 {
  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;
}

.advanced-bb99:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.menu_d1f4 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.upper-4d7a {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.carousel-simple-3b0d {
  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);
}

.carousel-simple-3b0d .breadcrumb_49dc {
  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;
}

.carousel-simple-3b0d .breadcrumb_49dc svg {
  flex-shrink: 0;
}

.carousel-simple-3b0d .prev_8861 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.carousel-simple-3b0d .prev_8861: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);
}

.carousel-simple-3b0d .grid_wood_58cf {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.carousel-simple-3b0d .grid_wood_58cf: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) {
  .widget-7b4e {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .left-ab41 {
    max-width: 100%;
  }

  .gradient-60cd {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .advanced-bb99 {
    padding: 1rem;
  }

  .menu_d1f4 {
    font-size: 1.5rem;
  }

  .upper-4d7a {
    font-size: 0.75rem;
  }

  .box-west-4bf2 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .carousel-simple-3b0d {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .carousel-simple-3b0d .breadcrumb_49dc {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .gradient-60cd {
    grid-template-columns: 1fr;
  }
}

.tag-cool-b6cf {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.wood_952b {
  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 === */
.last_b72e {
  margin-bottom: 2.5rem;
}

.slider_soft_fbe3 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.tag-cool-b6cf {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.component_under_8592 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.red_8d1d {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.dropdown_de7a {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.layout_complex_9409 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.focus-short-430c {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.lite_7b68 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.info-current-9ea1 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.info-current-9ea1 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.feature-short-94e0 {
  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);
}

.prev-95fb {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.column-de78 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.message-north-d517 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.bottom_6ee2 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.wood-be35 {
  display: grid;
  gap: 1rem;
}

.component-liquid-0b02 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.card-a90f {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.left-bfd0 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.photo_5a08 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.banner_812d {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.backdrop-bronze-31ac {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.backdrop-bronze-31ac p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.border_0a6a {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.rough_522d {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.icon-7bdc {
  display: grid;
  gap: 2rem;
}

.summary_ff39 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.red_8d1d {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.component_under_8592 {
  flex: 1;
}

.layout_complex_9409 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.layout_complex_9409 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.icon-e86f {
  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;
}

.focus-short-430c {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.search-easy-ff60 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.search-easy-ff60 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.detail_63c3 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.detail_63c3 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.info-glass-9b00 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.info-glass-9b00 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.info-glass-9b00 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.info-glass-9b00 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.content-purple-e5fb {
  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 === */
.south-5318 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.hard-0b5f {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.content-d145 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.wide_4a0b h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.wide_4a0b ol {
  list-style: none;
  counter-reset: toc-counter;
}

.wide_4a0b ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.wide_4a0b 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;
}

.wide_4a0b ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.wide_4a0b ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.slow_a63a {
  padding: 3rem 0 5rem;
}

.active_steel_05b1 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.active_steel_05b1.overlay-first-2785 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.current_c863 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.wood_db6c {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.glass_cf50 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.glass_cf50 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.bottom_96c7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.active_f2ba {
  text-align: center;
}

.input_gold_b17a {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.modal_b7c8 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.alert_fresh_c86c {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.button_rough_6d13 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.west_76dd {
  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_76dd * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.west_76dd:hover {
  box-shadow: var(--shadow-lg);
}

.west_76dd.form-f8e0 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.west_76dd h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.west_76dd ul {
  margin: 1rem 0;
}

.west_76dd li {
  margin-bottom: 0.75rem;
}

.gallery-right-8587 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.gallery_91f5 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.gallery_91f5 a {
  font-weight: 600;
}

/* === Data Tables === */
.static_7c1c {
  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;
}

.static_7c1c table {
  width: 100%;
  min-width: 600px;
}

.static_7c1c thead {
  background-color: var(--primary-color);
  color: white;
}

.static_7c1c th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.static_7c1c td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.static_7c1c tbody tr:hover {
  background-color: var(--bg-secondary);
}

.static_7c1c tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.component-warm-364c {
  list-style: none;
  margin: 1.5rem 0;
}

.component-warm-364c li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.component-warm-364c li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.texture-3159::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-e0d8::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 === */
.narrow-adf0 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.light-240b {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.light-240b img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.light-240b strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.light-240b span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.narrow-adf0 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.header_edc6 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.header_edc6::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.bottom_b158 {
  position: relative;
  margin-bottom: 3rem;
}

.card_dim_e2b2 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.card_dim_e2b2 .main-solid-474f {
  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;
}

.progress-5939 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.progress-5939 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.progress-5939 ul {
  margin: 1rem 0;
}

.progress-5939 li {
  margin-bottom: 0.75rem;
}

.hard_4cb6 {
  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 === */
.heading_new_b58e {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.heading_new_b58e h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.gradient-73bf {
  list-style: none;
  margin: 1.5rem 0;
}

.gradient-73bf li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.gradient-73bf a {
  font-weight: 600;
}

.icon-right-c0bc {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.filter_easy_445d {
  margin: 2.5rem 0;
}

.small_f3a7 {
  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;
}

.small_f3a7:hover {
  box-shadow: var(--shadow-lg);
}

.small_f3a7.easy-2415 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.status_5742 {
  flex-shrink: 0;
}

.status_5742 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);
}

.label-26c9 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.container_2b75,
.pro-8958,
.wide_a106 {
  width: 100%;
  margin: 1.5rem 0;
}

.label_bright_8b1f {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.label_bright_8b1f strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.first_a40d {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.first_a40d strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.focus_stale_6b04 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.focus_stale_6b04 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.message_orange_8490 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.column-53c7 {
  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;
}

.column-53c7:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.column-53c7.frame-9da1 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.column-53c7 .pressed_13f4 {
  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;
}

.column-53c7 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.pressed_1dc1 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.tertiary-up-2f33 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.tertiary-up-2f33 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.component-south-aed0 {
  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 === */
.breadcrumb_49dc {
  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;
}

.prev_8861 {
  background-color: var(--primary-color);
  color: white;
}

.prev_8861:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.grid_wood_58cf {
  background-color: var(--text-secondary);
  color: white;
}

.grid_wood_58cf:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.focus_fluid_4710 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.focus_fluid_4710:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.overlay-simple-b5dc {
  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;
}

.overlay-simple-b5dc:hover {
  background-color: var(--primary-dark);
}

.secondary-small-d55e {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.surface_west_0712 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.content-35b0 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.pink-0ea0 {
  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 === */
.last-c44a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.photo_04f8 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.photo_04f8 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.section-slow-6c9f {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.dirty_ab7b {
  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;
}

.in_b36d {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.section-7d71 {
  list-style: none;
  counter-reset: rank-counter;
}

.section-7d71 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.section-7d71 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;
}

.focused-006c {
  list-style: none;
}

.focused-006c li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.narrow-fd7b {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.box_8450 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.box_8450 .slider_8995 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.box_8450 .message-2041 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.logo-pressed-8fda {
  margin-top: 3rem;
}

.secondary-soft-f071 {
  width: 100%;
}

.image-e24a {
  background-color: #fef3c7;
}

.video-e04f {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.small_4f35 {
  margin: 3rem 0;
}

.layout-basic-81f0 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.smooth_7a87 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.smooth_7a87:hover {
  box-shadow: var(--shadow-lg);
}

.smooth_7a87.panel-ebf4 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.hidden-dim-bdb1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.alert_a757 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.alert_a757 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.summary-hovered-5fd9 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.smooth_7a87 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.mask-e5eb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.cool-9217 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.progress-3632 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.dynamic-6ce9 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.tabs-new-d90d {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.form-e36b {
  margin-top: 1rem;
}

/* === FAQ Section === */
.outline_red_81c4 {
  max-width: 900px;
  margin: 0 auto;
}

.outline-d6fe {
  margin: 2rem 0;
}

.new-c2b5 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.new-c2b5 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.new-c2b5 summary::-webkit-details-marker {
  display: none;
}

.new-c2b5 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.layout_light_df4e {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.new-c2b5[open] .layout_light_df4e {
  transform: rotate(45deg);
}

.aside_center_43d0 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.aside_center_43d0 p:last-child {
  margin-bottom: 0;
}

.red-68eb {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.center_1673 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.article-4a59 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.article-4a59 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.article-4a59 .breadcrumb_49dc {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.tall_6678 {
  max-width: 900px;
  margin: 0 auto;
}

.action_a45c {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.border-huge-b645 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.border-huge-b645.fn-success-e0d8 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.image_dynamic_c5b2 {
  font-size: 3rem;
  line-height: 1;
}

.module-a433 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.description_wood_87e1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.title-in-ccc1,
.simple-97b3 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.title-in-ccc1 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.simple-97b3 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.focused_eed2,
.message-be72 {
  margin: 1.5rem 0;
}

.focused_eed2 li,
.message-be72 li {
  margin-bottom: 1rem;
}

.main-solid-f87b {
  margin: 3rem 0;
}

.tabs-89f5 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.tabs-89f5 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.tabs-89f5 ol {
  margin: 1rem 0;
}

.tabs-89f5 li {
  margin-bottom: 0.75rem;
}

.description_4415 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.nav-6c4c {
  margin: 2rem 0;
}

.center_2546 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.mask-98bc {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.up_f5eb {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.badge_125e {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.south_25b1 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.detail-fe44 {
  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;
}

.detail-fe44 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.dropdown_de7a {
  flex: 1;
}

.dropdown_de7a h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.picture-d977 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.container_tiny_6683 p {
  margin-bottom: 1rem;
}

.tabs-56f2 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.filter-a506 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.overlay_7b28 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.overlay_7b28 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.column_3d68 h3 {
  margin-bottom: 1.5rem;
}

.shade_5ce8 {
  display: grid;
  gap: 2rem;
}

.accordion-c875 {
  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;
}

.accordion-c875 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.accordion-c875 h4 {
  margin: 0 0 0.25rem;
}

.accordion-c875 p {
  margin: 0;
  font-size: 0.9375rem;
}

.hidden-3782 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.preview-59ed {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.preview-59ed h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.preview-59ed ul {
  margin: 1.5rem 0;
}

.preview-59ed li {
  margin-bottom: 0.75rem;
}

.glass_6c75 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.detail-simple-6e65 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.chip_96d0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.sort_motion_c022 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.sort_motion_c022 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.photo_east_19a7 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.photo_east_19a7 a {
  color: rgba(255, 255, 255, 0.8);
}

.logo_top_52f5 {
  list-style: none;
}

.logo_top_52f5 li {
  margin-bottom: 0.75rem;
}

.logo_top_52f5 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.logo_top_52f5 a:hover {
  color: white;
}

.caption-ed66 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.fixed_920d {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.fluid-988b {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.outer-632f {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.photo-07f3 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .hovered_55e4 {
    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;
  }

  .purple-e041 {
    font-size: 1.5rem !important;
  }

  .slider_soft_fbe3 {
    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_76dd,
  .bronze_5d73,
  .progress-5939,
  .label-26c9,
  .hidden-dim-bdb1,
  .smooth_7a87,
  .aside_center_43d0,
  .box-west-4bf2,
  .border_0a6a,
  .current_c863 {
    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 */
  .tag-cool-b6cf {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .component_under_8592 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .red_8d1d {
    flex-shrink: 0;
  }

  .dropdown_de7a {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .layout_complex_9409,
  .focus-short-430c {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .focus-short-430c {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .paper-415c {
    display: none;
  }

  /* Show mobile actions */
  .article-ed94 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .light-f572 {
    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;
  }

  .light-f572 svg {
    flex-shrink: 0;
  }

  .light-f572 .footer_9823 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .light-f572 .footer_3792 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .description_tall_eb22 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .aside-pro-4a0a {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .light-f572:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .heading_2b6d {
    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;
  }

  .heading_2b6d.fn-active-e0d8 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .heading_2b6d li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .heading_2b6d li:last-child {
    border-bottom: none;
  }

  .heading_2b6d a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .hero-focused-502b {
    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;
  }

  .hero-focused-502b li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .hero-focused-502b li:last-child {
    border-bottom: none;
  }

  .hero-focused-502b a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .notice-e4c8 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .summary-static-76a9 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .hard_b761,
  .hard-d4c8 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .hard_b761 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .hard-d4c8 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .hero-focused-502b.fn-active-e0d8 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .box_8664 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .rough-7483 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .message_ebc1 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .hidden-b70d {
    margin-top: 0;
  }

  /* Hero section */
  .hidden-b70d {
    padding: 2rem 0 1.5rem;
  }

  .slider_soft_fbe3 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .border_0a6a {
    font-size: 1rem;
  }

  /* Hero brand image */
  .widget-7b4e {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .left-ab41 {
    max-width: 100%;
    border-radius: 8px;
  }

  .gradient-60cd {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .advanced-bb99 {
    padding: 1rem;
  }

  .menu_d1f4 {
    font-size: 1.5rem;
  }

  .upper-4d7a {
    font-size: 0.75rem;
  }

  .box-west-4bf2 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .carousel-simple-3b0d {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .carousel-simple-3b0d .breadcrumb_49dc {
    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 */
  .content-d145 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .small_f3a7 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .status_5742 {
    margin-bottom: 1rem;
  }

  /* Author */
  .summary_ff39 {
    flex-direction: column;
  }

  .detail-fe44 {
    flex-direction: column;
  }

  /* Quotes */
  .hidden-dim-bdb1 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .description_wood_87e1 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .badge_125e {
    flex-direction: column;
  }

  .badge_125e .breadcrumb_49dc {
    width: 100%;
  }

  /* Version comparison */
  .message_orange_8490 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .last-c44a {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .chip_96d0 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .fluid-988b {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .static_7c1c,
  .pro-8958,
  .right_af66,
  .secondary-soft-f071,
  .container_2b75,
  .wide_a106 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .static_7c1c table,
  .pro-8958 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .component-south-aed0 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .hovered_55e4 {
    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;
  }

  .purple-e041 {
    font-size: 1.25rem !important;
  }

  .slider_soft_fbe3 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .rough-7483 {
    position: fixed;
  }

  .message_ebc1 {
    padding: 0.625rem 0;
  }

  .new_e31d img {
    height: 26px;
  }

  .hero-focused-502b {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .heading_2b6d {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .light-f572 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .light-f572 svg {
    width: 18px;
    height: 18px;
  }

  .light-f572 .footer_9823 {
    font-size: 0.7rem;
  }

  .light-f572 .footer_3792 {
    font-size: 0.65rem;
  }

  .hard_b761,
  .hard-d4c8 {
    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, .hovered_55e4, .nav_down_9127, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .widget-7b4e {
    padding: 1rem;
  }

  .gradient-60cd {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .advanced-bb99 {
    padding: 0.875rem;
  }

  .menu_d1f4 {
    font-size: 1.25rem;
  }

  .carousel-simple-3b0d .breadcrumb_49dc {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .slider_soft_fbe3 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .breadcrumb_49dc {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .secondary-small-d55e {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .small_f3a7 {
    padding: 1rem;
  }

  .status_5742 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .west_76dd,
  .last_3cfb,
  .grid-dark-0621,
  .outline-old-9cdd {
    padding: 1rem;
  }
}

@media print {
  .rough-7483,
  .south-5318,
  .box_8664,
  .breadcrumb_49dc,
  .detail-simple-6e65 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .hovered_55e4 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.module_inner_8105 {
  margin-bottom: 3rem;
  text-align: center;
}

.purple-e041 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.highlight-659f {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.item-3183,
.title-92c5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.dynamic-662b {
  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;
}

.dynamic-662b:hover {
  transform: translateY(-5px);
}

.dynamic-662b strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.dynamic-662b span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.active-c21b {
  margin: 3rem 0;
}

.component_8db6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.grid_dirty_18a2 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.grid_dirty_18a2:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.left-7eb1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.small_b5eb {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.popup_283d {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.over_a96d {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.focus-b19d {
  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;
}

.focus-b19d:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.focus-b19d.message-upper-f383 {
  border-left: 4px solid var(--primary-color);
}

.tabs_ed82 {
  flex-shrink: 0;
}

.tabs_ed82 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.hard_aab1 {
  flex: 1;
}

.hard_aab1 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.box_tall_904f {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.tabs_slow_eedf,
.panel_yellow_abc8,
.red-3923 {
  margin-bottom: 1.5rem;
}

.tabs_slow_eedf h4,
.panel_yellow_abc8 h4,
.red-3923 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tabs_slow_eedf ul,
.panel_yellow_abc8 ul,
.red-3923 ul {
  list-style: none;
  padding: 0;
}

.tabs_slow_eedf li,
.panel_yellow_abc8 li,
.red-3923 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.tabs_slow_eedf li:before,
.panel_yellow_abc8 li:before,
.red-3923 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.highlight_f571 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.highlight_f571 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;
}

.highlight_f571 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.first-1de8 { margin: 2rem 0; }
.primary-out-8af5 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.primary-out-8af5 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.widget_561d p { margin-bottom: 1rem; line-height: 1.7; }
.widget_561d strong { color: var(--text-primary); }
.widget_561d ul { list-style: none; padding-left: 0; }
.widget_561d ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.widget_561d ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.panel_00c4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.cool_e948 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.cool_e948:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.icon-thick-2136 { font-size: 3rem; margin-bottom: 1rem; }
.cool_e948 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.cool_e948 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.dynamic-5ae2 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.dynamic-5ae2 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.east-5e70 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.box-3af0 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.purple_7341 { text-align: center; }
.detail_9c94 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.full_8d66 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.banner_pressed_8c24 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.icon_d88f { margin: 2rem 0; }
.component_center_aeee { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.component_center_aeee h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.component_center_aeee p, .component_center_aeee ul { line-height: 1.7; }
.component_center_aeee ul { list-style: none; padding-left: 0; }
.component_center_aeee ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.component_center_aeee ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.old-a331 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.logo_5b75 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.text_large_7fec { text-align: center; }
.tertiary-rough-cb77 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.icon-e7ec { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.small_36a7 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.slider-first-41f5 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.accent_dim_486f { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.accent_dim_486f:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.accent_dim_486f h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.accent_dim_486f p, .accent_dim_486f ul { line-height: 1.7; }
.accent_dim_486f ul { list-style: none; padding-left: 0; }
.accent_dim_486f ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.accent_dim_486f ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 2537 */
.promo-block-b5 {
  padding: 0.5rem;
  font-size: 12px;
  line-height: 1.3;
}
