/* ============================================
   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-37e5 p,
.menu_da80,
.light_c11e,
.motion_08ea,
.active-d871,
.paper-d4ce,
.pattern-plasma-14a7,
.frame-775f {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.column-7fb7 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.column-7fb7 > *,
.item_84de,
.item-37e5,
.shadow_lite_952e {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .column-7fb7 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .column-7fb7 {
    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 === */
.basic-db00 {
  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 */
.basic-db00.gold-e010 {
  box-shadow: var(--shadow-md);
}

.gallery_92c5 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.tertiary-center-16b3 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.slider_steel_0591 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.feature-last-0864 {
  display: none;
}

/* Hide mobile actions on desktop */
.large_c66c {
  display: none;
}

.disabled_1897 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.disabled_1897 a:hover,
.disabled_1897 a.fn-active-0d5c {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.link-b02a {
  margin-left: 1rem;
}

.disabled_2e4f {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.inner_4e06,
.highlight-5f56 {
  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;
}

.inner_4e06 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.inner_4e06: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;
}

.highlight-5f56 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.highlight-5f56: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;
}

.inner_4e06 svg,
.highlight-5f56 svg {
  flex-shrink: 0;
}

.text-5fb9 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.table_3bac {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.table_3bac::before,
.table_3bac::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.table_3bac::before {
  top: -7px;
}

.table_3bac::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.input-8b06 {
  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 === */
.header-4ee7 {
  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);
}

.accent-613a {
  margin: 0 0 2rem;
  text-align: center;
}

.background-easy-fc01 {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.background-easy-fc01:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.card_ac5d {
  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);
}

.card_ac5d strong {
  color: var(--primary-color);
  font-weight: 700;
}

.breadcrumb_4f87 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.menu-cold-d8e6 {
  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;
}

.menu-cold-d8e6:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.filter_dim_69c5 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.small-bdfd {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.middle_a444 {
  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);
}

.middle_a444 .motion-8160 {
  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;
}

.middle_a444 .motion-8160 svg {
  flex-shrink: 0;
}

.middle_a444 .link-35ae {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.middle_a444 .link-35ae: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);
}

.middle_a444 .red_578e {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.middle_a444 .red_578e: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) {
  .header-4ee7 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .background-easy-fc01 {
    max-width: 100%;
  }

  .breadcrumb_4f87 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .menu-cold-d8e6 {
    padding: 1rem;
  }

  .filter_dim_69c5 {
    font-size: 1.5rem;
  }

  .small-bdfd {
    font-size: 0.75rem;
  }

  .card_ac5d {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .middle_a444 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .middle_a444 .motion-8160 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .breadcrumb_4f87 {
    grid-template-columns: 1fr;
  }
}

.stone-93c8 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.basic_05f5 {
  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 === */
.rough_5af4 {
  margin-bottom: 2.5rem;
}

.stale_f49b {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.stone-93c8 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.mini_0ce0 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.overlay_selected_d46e {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.outline_4561 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.preview-df97 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.short-ffd1 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.info-3e99 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.notification_f8db {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.notification_f8db svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.backdrop_4a2c {
  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);
}

.picture-9a2c {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.focus-749b {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.dark-bd1e {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.popup_advanced_d41d {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.image-purple-ae84 {
  display: grid;
  gap: 1rem;
}

.row_pro_253c {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.card_full_e57f {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.image-lite-da33 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.lower_f518 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.notification_037b {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.iron-4621 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.iron-4621 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.menu_da80 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.stale_1918 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.overlay-f805 {
  display: grid;
  gap: 2rem;
}

.fixed-f33b {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.overlay_selected_d46e {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.mini_0ce0 {
  flex: 1;
}

.preview-df97 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.preview-df97 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.component_old_4b59 {
  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;
}

.short-ffd1 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.media_c481 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.media_c481 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.text-in-a6bc {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.text-in-a6bc a {
  font-size: 0.875rem;
  font-weight: 500;
}

.grid_441f {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.grid_441f strong {
  display: block;
  margin-bottom: 0.75rem;
}

.grid_441f ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.grid_441f li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.outline_5536 {
  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 === */
.white-edb0 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.heading-dynamic-0778 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.banner-d931 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.filter_a3f1 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.filter_a3f1 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.filter_a3f1 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.filter_a3f1 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;
}

.filter_a3f1 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.filter_a3f1 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.item-37e5 {
  padding: 3rem 0 5rem;
}

.shadow_lite_952e {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.shadow_lite_952e.avatar-static-7e03 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.light_c11e {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.outer_0f31 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.feature-1e81 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.feature-1e81 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.layout_paper_02cb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.pagination-bc7a {
  text-align: center;
}

.dynamic_95c5 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.sidebar_7849 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.disabled_east_b50d {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.paper-d4ce {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.motion_08ea {
  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;
}

.motion_08ea * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.motion_08ea:hover {
  box-shadow: var(--shadow-lg);
}

.motion_08ea.purple_0b60 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.motion_08ea h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.motion_08ea ul {
  margin: 1rem 0;
}

.motion_08ea li {
  margin-bottom: 0.75rem;
}

.accordion-light-1d4c {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.shade-slow-f068 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.shade-slow-f068 a {
  font-weight: 600;
}

/* === Data Tables === */
.container-top-7fcc {
  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;
}

.container-top-7fcc table {
  width: 100%;
  min-width: 600px;
}

.container-top-7fcc thead {
  background-color: var(--primary-color);
  color: white;
}

.container-top-7fcc th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.container-top-7fcc td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.container-top-7fcc tbody tr:hover {
  background-color: var(--bg-secondary);
}

.container-top-7fcc tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.top-f05b {
  list-style: none;
  margin: 1.5rem 0;
}

.top-f05b li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.top-f05b li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.fresh-e635::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-0d5c::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 === */
.fresh-4e3e {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.summary-up-7c51 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.summary-up-7c51 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.summary-up-7c51 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.summary-up-7c51 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.fresh-4e3e blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.pattern-plasma-14a7 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.pattern-plasma-14a7::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.clean_1137 {
  position: relative;
  margin-bottom: 3rem;
}

.grid_advanced_1327 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.grid_advanced_1327 .fast_d7e0 {
  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;
}

.stale-c16f {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.stale-c16f h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.stale-c16f ul {
  margin: 1rem 0;
}

.stale-c16f li {
  margin-bottom: 0.75rem;
}

.frame_5539 {
  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 === */
.mask-medium-2489 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.mask-medium-2489 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.carousel_silver_f81e {
  list-style: none;
  margin: 1.5rem 0;
}

.carousel_silver_f81e li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.carousel_silver_f81e a {
  font-weight: 600;
}

.box-a2ce {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.frame-775f {
  margin: 2.5rem 0;
}

.clean_0c1d {
  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;
}

.clean_0c1d:hover {
  box-shadow: var(--shadow-lg);
}

.clean_0c1d.left-5d39 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.notice-full-bcac {
  flex-shrink: 0;
}

.notice-full-bcac 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);
}

.element-eb5f h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.solid-e7a7,
.nav-48a4,
.progress_4b19 {
  width: 100%;
  margin: 1.5rem 0;
}

.steel_f3bb {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.steel_f3bb strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.over_ab24 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.over_ab24 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.north-1607 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.north-1607 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.feature-0ccc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.input_up_72fe {
  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;
}

.input_up_72fe:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.input_up_72fe.shadow_orange_65dc {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.input_up_72fe .widget-right-8758 {
  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;
}

.input_up_72fe h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.icon_prev_6449 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.block_93b1 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.block_93b1 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.paragraph_fabc {
  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 === */
.motion-8160 {
  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;
}

.link-35ae {
  background-color: var(--primary-color);
  color: white;
}

.link-35ae:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.red_578e {
  background-color: var(--text-secondary);
  color: white;
}

.red_578e:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.clean_ce7d {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.clean_ce7d:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.list_eb85 {
  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;
}

.list_eb85:hover {
  background-color: var(--primary-dark);
}

.last-f52d {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.gallery-53f7 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.message_a428 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.thumbnail-tall-03d9 {
  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 === */
.simple_a689 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.wrapper_ee07 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.wrapper_ee07 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.item_glass_e27f {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.button_out_889e {
  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;
}

.main_up_f6e5 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.column-323a {
  list-style: none;
  counter-reset: rank-counter;
}

.column-323a li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.column-323a 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;
}

.disabled-out-19ff {
  list-style: none;
}

.disabled-out-19ff li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.gas-e95d {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.bronze_740c {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.bronze_740c .top-6057 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.bronze_740c .outline-rough-e3c1 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.pressed_f303 {
  margin-top: 3rem;
}

.surface-motion-ec6b {
  width: 100%;
}

.row-66c2 {
  background-color: #fef3c7;
}

.dynamic_bf89 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.carousel_brown_344b {
  margin: 3rem 0;
}

.input_lite_15c7 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.box_1ecc {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.box_1ecc:hover {
  box-shadow: var(--shadow-lg);
}

.box_1ecc.background_fast_d24b {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.fast-25a9 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.description_d59f strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.description_d59f span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.focus-huge-5f19 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.box_1ecc blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.feature_e000 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.dirty-fd65 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.fixed_ad5a {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.backdrop_e5df {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.backdrop_3820 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.hovered_86aa {
  margin-top: 1rem;
}

/* === FAQ Section === */
.backdrop_bottom_34e7 {
  max-width: 900px;
  margin: 0 auto;
}

.in_6b54 {
  margin: 2rem 0;
}

.media-solid-d65c {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.media-solid-d65c summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.media-solid-d65c summary::-webkit-details-marker {
  display: none;
}

.media-solid-d65c summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.fresh_1455 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.media-solid-d65c[open] .fresh_1455 {
  transform: rotate(45deg);
}

.texture-stone-bddd {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.texture-stone-bddd p:last-child {
  margin-bottom: 0;
}

.shade_4e09 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.widget-bd4e {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.paragraph_focused_60f3 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.paragraph_focused_60f3 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.paragraph_focused_60f3 .motion-8160 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.logo-9e4b {
  max-width: 900px;
  margin: 0 auto;
}

.heading-c949 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.under-5a24 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.under-5a24.fn-success-0d5c {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.row_clean_8f95 {
  font-size: 3rem;
  line-height: 1;
}

.north_8058 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.section_selected_8fe8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.lite-cc36,
.mini-2ca3 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.lite-cc36 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.mini-2ca3 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.layout-206d,
.pattern_dynamic_5e4b {
  margin: 1.5rem 0;
}

.layout-206d li,
.pattern_dynamic_5e4b li {
  margin-bottom: 1rem;
}

.main-current-f1cb {
  margin: 3rem 0;
}

.image-47a2 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.image-47a2 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.image-47a2 ol {
  margin: 1rem 0;
}

.image-47a2 li {
  margin-bottom: 0.75rem;
}

.next-d391 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.component-999c {
  margin: 2rem 0;
}

.wide_30c4 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.static_963e {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.pattern-b404 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.light-d93c {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.message_up_8f0f {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.avatar_2781 {
  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;
}

.avatar_2781 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.outline_4561 {
  flex: 1;
}

.outline_4561 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.notification_hard_9324 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.hover_6f9d p {
  margin-bottom: 1rem;
}

.carousel_thick_8438 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.description_3f7a {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.text_2893 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.text_2893 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.hidden_down_3509 h3 {
  margin-bottom: 1.5rem;
}

.tertiary_wood_39c6 {
  display: grid;
  gap: 2rem;
}

.aside-copper-2535 {
  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;
}

.aside-copper-2535 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.aside-copper-2535 h4 {
  margin: 0 0 0.25rem;
}

.aside-copper-2535 p {
  margin: 0;
  font-size: 0.9375rem;
}

.tag_middle_32a9 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.hard-3ecc {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.hard-3ecc h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.hard-3ecc ul {
  margin: 1.5rem 0;
}

.hard-3ecc li {
  margin-bottom: 0.75rem;
}

.preview-215f {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.progress-dim-dbd8 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.text-up-2a3a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.basic-7c48 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.basic-7c48 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.outline-a6cf {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.outline-a6cf a {
  color: rgba(255, 255, 255, 0.8);
}

.backdrop-2d5a {
  list-style: none;
}

.backdrop-2d5a li {
  margin-bottom: 0.75rem;
}

.backdrop-2d5a a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.backdrop-2d5a a:hover {
  color: white;
}

.frame-f51e {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.fixed_08ba {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.description-current-3c01 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.row-bottom-84e8 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.left_b79e {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .column-7fb7 {
    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;
  }

  .tabs_bronze_4fc7 {
    font-size: 1.5rem !important;
  }

  .stale_f49b {
    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 */
  .motion_08ea,
  .active-d871,
  .stale-c16f,
  .element-eb5f,
  .fast-25a9,
  .box_1ecc,
  .texture-stone-bddd,
  .card_ac5d,
  .menu_da80,
  .light_c11e {
    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 */
  .stone-93c8 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .mini_0ce0 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .overlay_selected_d46e {
    flex-shrink: 0;
  }

  .outline_4561 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .preview-df97,
  .short-ffd1 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .short-ffd1 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .slider_steel_0591 {
    display: none;
  }

  /* Show mobile actions */
  .large_c66c {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .paragraph_0ed3 {
    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;
  }

  .paragraph_0ed3 svg {
    flex-shrink: 0;
  }

  .paragraph_0ed3 .menu-rough-c85f {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .paragraph_0ed3 .video_5988 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .preview_3674 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .tertiary_4d16 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .paragraph_0ed3:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .feature-last-0864 {
    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;
  }

  .feature-last-0864.fn-active-0d5c {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .feature-last-0864 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .feature-last-0864 li:last-child {
    border-bottom: none;
  }

  .feature-last-0864 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .disabled_1897 {
    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;
  }

  .disabled_1897 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .disabled_1897 li:last-child {
    border-bottom: none;
  }

  .disabled_1897 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .link-b02a {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .disabled_2e4f {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .inner_4e06,
  .highlight-5f56 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .inner_4e06 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .highlight-5f56 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .disabled_1897.fn-active-0d5c {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .text-5fb9 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .basic-db00 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .gallery_92c5 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .input-8b06 {
    margin-top: 0;
  }

  /* Hero section */
  .input-8b06 {
    padding: 2rem 0 1.5rem;
  }

  .stale_f49b {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .menu_da80 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .header-4ee7 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .background-easy-fc01 {
    max-width: 100%;
    border-radius: 8px;
  }

  .breadcrumb_4f87 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .menu-cold-d8e6 {
    padding: 1rem;
  }

  .filter_dim_69c5 {
    font-size: 1.5rem;
  }

  .small-bdfd {
    font-size: 0.75rem;
  }

  .card_ac5d {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .middle_a444 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .middle_a444 .motion-8160 {
    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 */
  .banner-d931 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .clean_0c1d {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .notice-full-bcac {
    margin-bottom: 1rem;
  }

  /* Author */
  .fixed-f33b {
    flex-direction: column;
  }

  .avatar_2781 {
    flex-direction: column;
  }

  /* Quotes */
  .fast-25a9 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .section_selected_8fe8 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .light-d93c {
    flex-direction: column;
  }

  .light-d93c .motion-8160 {
    width: 100%;
  }

  /* Version comparison */
  .feature-0ccc {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .simple_a689 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .text-up-2a3a {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .description-current-3c01 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .container-top-7fcc,
  .nav-48a4,
  .dim-654c,
  .surface-motion-ec6b,
  .solid-e7a7,
  .progress_4b19 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .container-top-7fcc table,
  .nav-48a4 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .paragraph_fabc {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .column-7fb7 {
    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;
  }

  .tabs_bronze_4fc7 {
    font-size: 1.25rem !important;
  }

  .stale_f49b {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .basic-db00 {
    position: fixed;
  }

  .gallery_92c5 {
    padding: 0.625rem 0;
  }

  .tertiary-center-16b3 img {
    height: 26px;
  }

  .disabled_1897 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .feature-last-0864 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .paragraph_0ed3 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .paragraph_0ed3 svg {
    width: 18px;
    height: 18px;
  }

  .paragraph_0ed3 .menu-rough-c85f {
    font-size: 0.7rem;
  }

  .paragraph_0ed3 .video_5988 {
    font-size: 0.65rem;
  }

  .inner_4e06,
  .highlight-5f56 {
    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, .column-7fb7, .item_84de, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .header-4ee7 {
    padding: 1rem;
  }

  .breadcrumb_4f87 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .menu-cold-d8e6 {
    padding: 0.875rem;
  }

  .filter_dim_69c5 {
    font-size: 1.25rem;
  }

  .middle_a444 .motion-8160 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .stale_f49b {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .motion-8160 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .last-f52d {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .clean_0c1d {
    padding: 1rem;
  }

  .notice-full-bcac span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .motion_08ea,
  .fresh-ae80,
  .tall-38bb,
  .hard_d2aa {
    padding: 1rem;
  }
}

@media print {
  .basic-db00,
  .white-edb0,
  .text-5fb9,
  .motion-8160,
  .progress-dim-dbd8 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .column-7fb7 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.alert-5220 {
  margin-bottom: 3rem;
  text-align: center;
}

.tabs_bronze_4fc7 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.north_a5fa {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.description_red_dc01,
.paper_79bd {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.progress-paper-a947 {
  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;
}

.progress-paper-a947:hover {
  transform: translateY(-5px);
}

.progress-paper-a947 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.progress-paper-a947 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.texture_1196 {
  margin: 3rem 0;
}

.status-18d2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.disabled-yellow-37c4 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.disabled-yellow-37c4:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.border_lite_5f1c {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.footer_tall_9541 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.preview-2c49 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.notification_fast_a5ac {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.stale-986f {
  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;
}

.stale-986f:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.stale-986f.motion_3d3e {
  border-left: 4px solid var(--primary-color);
}

.green-ee39 {
  flex-shrink: 0;
}

.green-ee39 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.message_huge_6bde {
  flex: 1;
}

.message_huge_6bde h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-3377 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.overlay-eb5e,
.shadow_7438,
.silver-0d48 {
  margin-bottom: 1.5rem;
}

.overlay-eb5e h4,
.shadow_7438 h4,
.silver-0d48 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.overlay-eb5e ul,
.shadow_7438 ul,
.silver-0d48 ul {
  list-style: none;
  padding: 0;
}

.overlay-eb5e li,
.shadow_7438 li,
.silver-0d48 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.overlay-eb5e li:before,
.shadow_7438 li:before,
.silver-0d48 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.over-08be {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.over-08be 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;
}

.over-08be a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.alert_6021 { margin: 2rem 0; }
.right-9a16 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.right-9a16 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.highlight-157b p { margin-bottom: 1rem; line-height: 1.7; }
.highlight-157b strong { color: var(--text-primary); }
.highlight-157b ul { list-style: none; padding-left: 0; }
.highlight-157b ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.highlight-157b ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.basic-7353 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.purple_c72a { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.purple_c72a:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.iron-e5db { font-size: 3rem; margin-bottom: 1rem; }
.purple_c72a h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.purple_c72a p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.wrapper_b5ea { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.wrapper_b5ea span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.chip-d5ba { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.tabs_1309 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.input-stale-be71 { text-align: center; }
.upper_9cd8 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.alert-cb8e { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.logo_last_0cfa { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.stale_bf97 { margin: 2rem 0; }
.mask-e772 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.mask-e772 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.mask-e772 p, .mask-e772 ul { line-height: 1.7; }
.mask-e772 ul { list-style: none; padding-left: 0; }
.mask-e772 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.mask-e772 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.list-center-73cf { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.hovered_1b21 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.texture-bottom-1a4c { text-align: center; }
.content_wood_e56e { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.border_3802 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.heading_orange_c085 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.south-2765 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.hero-7eb8 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.hero-7eb8:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.hero-7eb8 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.hero-7eb8 p, .hero-7eb8 ul { line-height: 1.7; }
.hero-7eb8 ul { list-style: none; padding-left: 0; }
.hero-7eb8 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.hero-7eb8 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: c1ad */
.widget-item-y8 {
  padding: 0.5rem;
  font-size: 10px;
  line-height: 1.2;
}
