/* ============================================
   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 */
.item_top_c1e2 p,
.table-f4f5,
.left_c698,
.active-b381,
.silver_0497,
.outline_0830,
.tertiary-wood-5757,
.white_1241 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.alert_upper_1706 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.alert_upper_1706 > *,
.bright_93b9,
.item_top_c1e2,
.message-5ca3 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .alert_upper_1706 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .alert_upper_1706 {
    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 === */
.logo-a38f {
  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 */
.logo-a38f.active-d8c0 {
  box-shadow: var(--shadow-md);
}

.primary_f662 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.motion-17e9 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.simple-89a4 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.alert_6807 {
  display: none;
}

/* Hide mobile actions on desktop */
.description_first_cab1 {
  display: none;
}

.article_a3cc a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.article_a3cc a:hover,
.article_a3cc a.fn-active-14a1 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.thumbnail_copper_9b13 {
  margin-left: 1rem;
}

.hard_fdfb {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.picture_stone_31b8,
.info-purple-897b {
  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;
}

.picture_stone_31b8 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.picture_stone_31b8: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;
}

.info-purple-897b {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.info-purple-897b: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;
}

.picture_stone_31b8 svg,
.info-purple-897b svg {
  flex-shrink: 0;
}

.header_555b {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.component-cold-2b8a {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.component-cold-2b8a::before,
.component-cold-2b8a::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.component-cold-2b8a::before {
  top: -7px;
}

.component-cold-2b8a::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.pressed-84ba {
  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 === */
.cold_67f6 {
  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);
}

.column_liquid_667e {
  margin: 0 0 2rem;
  text-align: center;
}

.slider-aa38 {
  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;
}

.slider-aa38:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.under-277c {
  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);
}

.under-277c strong {
  color: var(--primary-color);
  font-weight: 700;
}

.silver-c886 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.highlight-west-4e48 {
  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;
}

.highlight-west-4e48:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.tall-f55c {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.background_fe3d {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.left_bfc2 {
  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);
}

.left_bfc2 .white_028b {
  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;
}

.left_bfc2 .white_028b svg {
  flex-shrink: 0;
}

.left_bfc2 .element_8f1c {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.left_bfc2 .element_8f1c: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);
}

.left_bfc2 .text_tiny_c808 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.left_bfc2 .text_tiny_c808: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) {
  .cold_67f6 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .slider-aa38 {
    max-width: 100%;
  }

  .silver-c886 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .highlight-west-4e48 {
    padding: 1rem;
  }

  .tall-f55c {
    font-size: 1.5rem;
  }

  .background_fe3d {
    font-size: 0.75rem;
  }

  .under-277c {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .left_bfc2 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .left_bfc2 .white_028b {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .silver-c886 {
    grid-template-columns: 1fr;
  }
}

.cold_eb92 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.basic_2222 {
  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 === */
.silver_6c46 {
  margin-bottom: 2.5rem;
}

.caption-efd1 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.cold_eb92 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.hero-blue-ed30 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.black_90d1 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.bottom-9c70 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.label_25a2 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.clean_9dd1 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.overlay_small_c50d {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.soft_df0a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.soft_df0a svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.full-d65a {
  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);
}

.active-basic-e4f8 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.icon-blue-73a0 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.panel-68df {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.aside-selected-ff4c {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.easy-2678 {
  display: grid;
  gap: 1rem;
}

.medium-3565 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.small_b0f8 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.avatar_ab5f {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.brown-5138 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.label_wood_2402 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.avatar-north-31ce {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.avatar-north-31ce p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.table-f4f5 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.new_5d94 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.frame-stone-fe48 {
  display: grid;
  gap: 2rem;
}

.mask-cool-7572 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.black_90d1 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.hero-blue-ed30 {
  flex: 1;
}

.label_25a2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.label_25a2 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.badge-cb65 {
  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;
}

.clean_9dd1 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.icon-last-bbff {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.icon-last-bbff span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.primary_yellow_3e7d {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.primary_yellow_3e7d a {
  font-size: 0.875rem;
  font-weight: 500;
}

.iron_cd6e {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.iron_cd6e strong {
  display: block;
  margin-bottom: 0.75rem;
}

.iron_cd6e ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.iron_cd6e li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.prev-f944 {
  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 === */
.secondary_soft_5ab5 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.dropdown_2f61 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.notification-9193 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.icon_rough_d592 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.icon_rough_d592 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.icon_rough_d592 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.icon_rough_d592 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;
}

.icon_rough_d592 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.icon_rough_d592 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.item_top_c1e2 {
  padding: 3rem 0 5rem;
}

.message-5ca3 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.message-5ca3.light-bb4f {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.left_c698 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.slider-ba5d {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.solid-fe01 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.solid-fe01 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.medium_e7de {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.input-silver-a603 {
  text-align: center;
}

.preview-3c01 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.grid-last-5388 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.message_0c2c {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.outline_0830 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.active-b381 {
  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;
}

.active-b381 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.active-b381:hover {
  box-shadow: var(--shadow-lg);
}

.active-b381.card_green_cad2 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.active-b381 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.active-b381 ul {
  margin: 1rem 0;
}

.active-b381 li {
  margin-bottom: 0.75rem;
}

.iron-ee37 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.white-0a87 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.white-0a87 a {
  font-weight: 600;
}

/* === Data Tables === */
.widget-c482 {
  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;
}

.widget-c482 table {
  width: 100%;
  min-width: 600px;
}

.widget-c482 thead {
  background-color: var(--primary-color);
  color: white;
}

.widget-c482 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.widget-c482 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.widget-c482 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.widget-c482 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.status_17c5 {
  list-style: none;
  margin: 1.5rem 0;
}

.status_17c5 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.status_17c5 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.sidebar-c8f7::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-14a1::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 === */
.hidden_9c2d {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.north-5abb {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.north-5abb img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.north-5abb strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.north-5abb span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hidden_9c2d blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.tertiary-wood-5757 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.tertiary-wood-5757::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.hover_soft_2d41 {
  position: relative;
  margin-bottom: 3rem;
}

.frame-a9d7 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.frame-a9d7 .grid-over-818b {
  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;
}

.mini_fb1e {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.mini_fb1e h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.mini_fb1e ul {
  margin: 1rem 0;
}

.mini_fb1e li {
  margin-bottom: 0.75rem;
}

.icon_prev_e798 {
  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 === */
.row_bright_1205 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.row_bright_1205 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.modal_glass_32b2 {
  list-style: none;
  margin: 1.5rem 0;
}

.modal_glass_32b2 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.modal_glass_32b2 a {
  font-weight: 600;
}

.bronze_160d {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.white_1241 {
  margin: 2.5rem 0;
}

.stale_f98b {
  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;
}

.stale_f98b:hover {
  box-shadow: var(--shadow-lg);
}

.stale_f98b.item-east-9954 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.logo-6d86 {
  flex-shrink: 0;
}

.logo-6d86 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);
}

.status-light-0b3f h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.video_c323,
.form_183c,
.form_glass_0584 {
  width: 100%;
  margin: 1.5rem 0;
}

.west-ec49 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.west-ec49 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.background-focused-ad89 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.background-focused-ad89 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.list_gold_a16c {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.list_gold_a16c strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.surface-ac94 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.wrapper-fast-f5e7 {
  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;
}

.wrapper-fast-f5e7:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.wrapper-fast-f5e7.gradient_fb20 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.wrapper-fast-f5e7 .heading-5ad5 {
  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;
}

.wrapper-fast-f5e7 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.tiny_6367 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.section_a23c {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.section_a23c label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.heading_2591 {
  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 === */
.white_028b {
  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;
}

.element_8f1c {
  background-color: var(--primary-color);
  color: white;
}

.element_8f1c:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.text_tiny_c808 {
  background-color: var(--text-secondary);
  color: white;
}

.text_tiny_c808:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.photo_9d45 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.photo_9d45:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.main_6098 {
  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;
}

.main_6098:hover {
  background-color: var(--primary-dark);
}

.current-20a2 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.bright_0e97 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.layout-1171 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.surface_9641 {
  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 === */
.sort-7e32 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.slider_df4c {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.slider_df4c h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.info-cc69 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.chip-pink-7f69 {
  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;
}

.column-7c91 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.iron-7593 {
  list-style: none;
  counter-reset: rank-counter;
}

.iron-7593 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.iron-7593 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;
}

.paragraph_hard_518e {
  list-style: none;
}

.paragraph_hard_518e li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.wrapper-mini-1022 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.cold-68b1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.cold-68b1 .west-c075 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.cold-68b1 .content_bright_69a1 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.button_north_0e75 {
  margin-top: 3rem;
}

.feature-under-6e0b {
  width: 100%;
}

.wide_702b {
  background-color: #fef3c7;
}

.focus-active-6d92 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.text_5454 {
  margin: 3rem 0;
}

.secondary_128b {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.yellow_bf28 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.yellow_bf28:hover {
  box-shadow: var(--shadow-lg);
}

.yellow_bf28.modal-f308 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.frame-1e15 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.button-581a strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.button-581a span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.nav-right-318b {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.yellow_bf28 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.orange_436d {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.slow_576f {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.wrapper_e8d2 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.fast_6e7f {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.heading_eda1 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.top-5b23 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.south-b6a6 {
  max-width: 900px;
  margin: 0 auto;
}

.wrapper_slow_6376 {
  margin: 2rem 0;
}

.first-32c4 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.first-32c4 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.first-32c4 summary::-webkit-details-marker {
  display: none;
}

.first-32c4 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.sort-243a {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.first-32c4[open] .sort-243a {
  transform: rotate(45deg);
}

.dropdown-f365 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.dropdown-f365 p:last-child {
  margin-bottom: 0;
}

.large_2dcc {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.caption-eb6b {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.red_129e {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.red_129e p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.red_129e .white_028b {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.blue_b523 {
  max-width: 900px;
  margin: 0 auto;
}

.short_38b1 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.status_north_af18 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.status_north_af18.fn-success-14a1 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.button-hard-1f2c {
  font-size: 3rem;
  line-height: 1;
}

.avatar_center_a047 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.active_d7ea {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.mini_54ea,
.wrapper_upper_ae0a {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.mini_54ea h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.wrapper_upper_ae0a h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.motion_9131,
.notice-64fc {
  margin: 1.5rem 0;
}

.motion_9131 li,
.notice-64fc li {
  margin-bottom: 1rem;
}

.backdrop_df54 {
  margin: 3rem 0;
}

.upper_470c {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.upper_470c h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.upper_470c ol {
  margin: 1rem 0;
}

.upper_470c li {
  margin-bottom: 0.75rem;
}

.new-1359 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.dropdown-ea34 {
  margin: 2rem 0;
}

.accordion-7f83 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.mini-ded1 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.search-large-9dd7 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.layout_03b5 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.input_warm_8637 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.left_51eb {
  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;
}

.left_51eb img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.bottom-9c70 {
  flex: 1;
}

.bottom-9c70 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.banner_391f {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.info_action_82a3 p {
  margin-bottom: 1rem;
}

.fixed-6185 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.next_2dcc {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.info_1d44 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.info_1d44 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.header_medium_b824 h3 {
  margin-bottom: 1.5rem;
}

.fresh-8d93 {
  display: grid;
  gap: 2rem;
}

.soft_2ae8 {
  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;
}

.soft_2ae8 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.soft_2ae8 h4 {
  margin: 0 0 0.25rem;
}

.soft_2ae8 p {
  margin: 0;
  font-size: 0.9375rem;
}

.footer-3e68 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.chip-768e {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.chip-768e h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.chip-768e ul {
  margin: 1.5rem 0;
}

.chip-768e li {
  margin-bottom: 0.75rem;
}

.summary_87e3 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.upper_36d8 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.wrapper-1e78 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.pressed_76dd h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.pressed_76dd p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.huge_bf03 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.huge_bf03 a {
  color: rgba(255, 255, 255, 0.8);
}

.table_f3d8 {
  list-style: none;
}

.table_f3d8 li {
  margin-bottom: 0.75rem;
}

.table_f3d8 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.table_f3d8 a:hover {
  color: white;
}

.red_1a26 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.accordion-565e {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.list_left_578a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.image_hot_ec73 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.outer-cb1a {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .alert_upper_1706 {
    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;
  }

  .border_65c3 {
    font-size: 1.5rem !important;
  }

  .caption-efd1 {
    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 */
  .active-b381,
  .silver_0497,
  .mini_fb1e,
  .status-light-0b3f,
  .frame-1e15,
  .yellow_bf28,
  .dropdown-f365,
  .under-277c,
  .table-f4f5,
  .left_c698 {
    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 */
  .cold_eb92 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .hero-blue-ed30 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .black_90d1 {
    flex-shrink: 0;
  }

  .bottom-9c70 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .label_25a2,
  .clean_9dd1 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .clean_9dd1 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .simple-89a4 {
    display: none;
  }

  /* Show mobile actions */
  .description_first_cab1 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .mask_0d6b {
    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;
  }

  .mask_0d6b svg {
    flex-shrink: 0;
  }

  .mask_0d6b .fixed-43d8 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .mask_0d6b .border_8c2f {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .tall_101e {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .action-421f {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .mask_0d6b:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .alert_6807 {
    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;
  }

  .alert_6807.fn-active-14a1 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .alert_6807 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .alert_6807 li:last-child {
    border-bottom: none;
  }

  .alert_6807 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .article_a3cc {
    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;
  }

  .article_a3cc li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .article_a3cc li:last-child {
    border-bottom: none;
  }

  .article_a3cc a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .thumbnail_copper_9b13 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .hard_fdfb {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .picture_stone_31b8,
  .info-purple-897b {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .picture_stone_31b8 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .info-purple-897b {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .article_a3cc.fn-active-14a1 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .header_555b {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .logo-a38f {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .primary_f662 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .pressed-84ba {
    margin-top: 0;
  }

  /* Hero section */
  .pressed-84ba {
    padding: 2rem 0 1.5rem;
  }

  .caption-efd1 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .table-f4f5 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .cold_67f6 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .slider-aa38 {
    max-width: 100%;
    border-radius: 8px;
  }

  .silver-c886 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .highlight-west-4e48 {
    padding: 1rem;
  }

  .tall-f55c {
    font-size: 1.5rem;
  }

  .background_fe3d {
    font-size: 0.75rem;
  }

  .under-277c {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .left_bfc2 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .left_bfc2 .white_028b {
    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 */
  .notification-9193 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .stale_f98b {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .logo-6d86 {
    margin-bottom: 1rem;
  }

  /* Author */
  .mask-cool-7572 {
    flex-direction: column;
  }

  .left_51eb {
    flex-direction: column;
  }

  /* Quotes */
  .frame-1e15 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .active_d7ea {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .layout_03b5 {
    flex-direction: column;
  }

  .layout_03b5 .white_028b {
    width: 100%;
  }

  /* Version comparison */
  .surface-ac94 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .sort-7e32 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .wrapper-1e78 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .list_left_578a {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .widget-c482,
  .form_183c,
  .alert_stone_61e9,
  .feature-under-6e0b,
  .video_c323,
  .form_glass_0584 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .widget-c482 table,
  .form_183c table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .heading_2591 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .alert_upper_1706 {
    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;
  }

  .border_65c3 {
    font-size: 1.25rem !important;
  }

  .caption-efd1 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .logo-a38f {
    position: fixed;
  }

  .primary_f662 {
    padding: 0.625rem 0;
  }

  .motion-17e9 img {
    height: 26px;
  }

  .article_a3cc {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .alert_6807 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .mask_0d6b {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .mask_0d6b svg {
    width: 18px;
    height: 18px;
  }

  .mask_0d6b .fixed-43d8 {
    font-size: 0.7rem;
  }

  .mask_0d6b .border_8c2f {
    font-size: 0.65rem;
  }

  .picture_stone_31b8,
  .info-purple-897b {
    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, .alert_upper_1706, .bright_93b9, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .cold_67f6 {
    padding: 1rem;
  }

  .silver-c886 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .highlight-west-4e48 {
    padding: 0.875rem;
  }

  .tall-f55c {
    font-size: 1.25rem;
  }

  .left_bfc2 .white_028b {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .caption-efd1 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .white_028b {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .current-20a2 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .stale_f98b {
    padding: 1rem;
  }

  .logo-6d86 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .active-b381,
  .stone-4b3d,
  .article_up_6bc5,
  .slider-hot-8a91 {
    padding: 1rem;
  }
}

@media print {
  .logo-a38f,
  .secondary_soft_5ab5,
  .header_555b,
  .white_028b,
  .upper_36d8 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .alert_upper_1706 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.secondary-short-d213 {
  margin-bottom: 3rem;
  text-align: center;
}

.border_65c3 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.dim_46a9 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.texture_bright_35ad,
.tall-3a04 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.brown-5ebc {
  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;
}

.brown-5ebc:hover {
  transform: translateY(-5px);
}

.brown-5ebc strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.brown-5ebc span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.tertiary-ba6a {
  margin: 3rem 0;
}

.icon-last-1f84 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gradient-17e7 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.gradient-17e7:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.fixed-b36f {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.sort_west_1600 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.border-a199 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.warm_4166 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.accordion_blue_f2e1 {
  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;
}

.accordion_blue_f2e1:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.accordion_blue_f2e1.badge_af25 {
  border-left: 4px solid var(--primary-color);
}

.slow_63cd {
  flex-shrink: 0;
}

.slow_63cd svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.gold_d915 {
  flex: 1;
}

.gold_d915 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.wood-18fd {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.new_8e0a,
.wide-8439,
.bright-86b9 {
  margin-bottom: 1.5rem;
}

.new_8e0a h4,
.wide-8439 h4,
.bright-86b9 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.new_8e0a ul,
.wide-8439 ul,
.bright-86b9 ul {
  list-style: none;
  padding: 0;
}

.new_8e0a li,
.wide-8439 li,
.bright-86b9 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.new_8e0a li:before,
.wide-8439 li:before,
.bright-86b9 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.warm_c774 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.warm_c774 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;
}

.warm_c774 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.header-current-13be { margin: 2rem 0; }
.under-ef8d { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.under-ef8d h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.component-0967 p { margin-bottom: 1rem; line-height: 1.7; }
.component-0967 strong { color: var(--text-primary); }
.component-0967 ul { list-style: none; padding-left: 0; }
.component-0967 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.component-0967 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.gradient-light-b6a7 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.label-e3ec { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.label-e3ec:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.shadow-left-67ad { font-size: 3rem; margin-bottom: 1rem; }
.label-e3ec h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.label-e3ec p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.summary-up-4709 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.summary-up-4709 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.red-a7c8 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.hover_ebf1 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.layout-current-974b { text-align: center; }
.border-c341 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.large-abb6 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.frame_full_7588 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.hovered_0316 { margin: 2rem 0; }
.current-dbd5 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.current-dbd5 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.current-dbd5 p, .current-dbd5 ul { line-height: 1.7; }
.current-dbd5 ul { list-style: none; padding-left: 0; }
.current-dbd5 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.current-dbd5 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.filter_38a9 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.widget-mini-31bd { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.dropdown-afb4 { text-align: center; }
.narrow-0981 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.wrapper-9cc6 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.lite_738b { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.progress_db43 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.label-3fb7 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.label-3fb7:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.label-3fb7 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.label-3fb7 p, .label-3fb7 ul { line-height: 1.7; }
.label-3fb7 ul { list-style: none; padding-left: 0; }
.label-3fb7 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.label-3fb7 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: a2a3 */
.phantom-card-e7 {
  padding: 0.4rem;
  font-size: 12px;
  line-height: 1.2;
}
