/* ============================================
   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 */
.gold-a627 p,
.steel_c8c8,
.orange-0b97,
.description-stone-14d3,
.out_5c48,
.paragraph_8f53,
.blue_0c2f,
.hot_29e0 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.bright-d10a {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.bright-d10a > *,
.row_prev_7f81,
.gold-a627,
.outer-2567 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .bright-d10a {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .bright-d10a {
    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 === */
.header-5ff6 {
  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 */
.header-5ff6.badge_pro_bc06 {
  box-shadow: var(--shadow-md);
}

.progress-d7fb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.tooltip_22d6 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.surface_e8b0 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.caption_advanced_647d {
  display: none;
}

/* Hide mobile actions on desktop */
.pattern-e9ad {
  display: none;
}

.message_huge_266b a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.message_huge_266b a:hover,
.message_huge_266b a.fn-active-efba {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.frame_781b {
  margin-left: 1rem;
}

.grid-8819 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.dirty-52fa,
.out-ce88 {
  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;
}

.dirty-52fa {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.dirty-52fa: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;
}

.out-ce88 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.out-ce88: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;
}

.dirty-52fa svg,
.out-ce88 svg {
  flex-shrink: 0;
}

.outer-f3f9 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.sidebar-0871 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.sidebar-0871::before,
.sidebar-0871::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.sidebar-0871::before {
  top: -7px;
}

.sidebar-0871::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.first-e85c {
  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 === */
.secondary-ded4 {
  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);
}

.left-d876 {
  margin: 0 0 2rem;
  text-align: center;
}

.primary-south-83d1 {
  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;
}

.primary-south-83d1:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.dirty_a1d9 {
  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);
}

.dirty_a1d9 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.component_right_1ded {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.wrapper-a7b8 {
  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;
}

.wrapper-a7b8:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.tall-7076 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.photo-d10a {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.section_easy_e37e {
  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);
}

.section_easy_e37e .logo_befe {
  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;
}

.section_easy_e37e .logo_befe svg {
  flex-shrink: 0;
}

.section_easy_e37e .disabled-upper-e0cf {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.section_easy_e37e .disabled-upper-e0cf: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);
}

.section_easy_e37e .description_f142 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.section_easy_e37e .description_f142: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) {
  .secondary-ded4 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .primary-south-83d1 {
    max-width: 100%;
  }

  .component_right_1ded {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .wrapper-a7b8 {
    padding: 1rem;
  }

  .tall-7076 {
    font-size: 1.5rem;
  }

  .photo-d10a {
    font-size: 0.75rem;
  }

  .dirty_a1d9 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .section_easy_e37e {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .section_easy_e37e .logo_befe {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .component_right_1ded {
    grid-template-columns: 1fr;
  }
}

.tertiary-f3af {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.iron-954c {
  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 === */
.footer_dark_8678 {
  margin-bottom: 2.5rem;
}

.dropdown_4589 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.tertiary-f3af {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.avatar_cee9 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.content-medium-8901 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.backdrop-soft-719c {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.image-over-d753 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.brown_a686 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.sort-center-8b24 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.huge_9f88 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.huge_9f88 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.stale_acf2 {
  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);
}

.panel_0870 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.badge-silver-bad1 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.image-c18f {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.tooltip_3341 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.icon_tall_d1cf {
  display: grid;
  gap: 1rem;
}

.narrow-4aa9 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.background-543a {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.description-85cf {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.header-out-2863 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.down_5251 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.filter_bright_9a86 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.filter_bright_9a86 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.steel_c8c8 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.prev-a4f7 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.blue-3b59 {
  display: grid;
  gap: 2rem;
}

.iron-189a {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.content-medium-8901 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.avatar_cee9 {
  flex: 1;
}

.image-over-d753 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.image-over-d753 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.tag-5a3f {
  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;
}

.brown_a686 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.info-action-c930 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.info-action-c930 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.panel_basic_6696 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.panel_basic_6696 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.frame-3368 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.frame-3368 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.frame-3368 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.frame-3368 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.menu_495d {
  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 === */
.carousel_rough_9972 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.feature-1283 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.tabs-right-9cd3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.carousel_stale_9933 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.carousel_stale_9933 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.carousel_stale_9933 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.carousel_stale_9933 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;
}

.carousel_stale_9933 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.carousel_stale_9933 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.gold-a627 {
  padding: 3rem 0 5rem;
}

.outer-2567 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.outer-2567.gradient_blue_33e6 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.orange-0b97 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.action-0cae {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.thick-feac {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.thick-feac h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.hidden-white-ac91 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.carousel-bottom-3fd2 {
  text-align: center;
}

.cool_c36f {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.copper_76b1 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.menu_9301 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.paragraph_8f53 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.description-stone-14d3 {
  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;
}

.description-stone-14d3 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.description-stone-14d3:hover {
  box-shadow: var(--shadow-lg);
}

.description-stone-14d3.shadow_d73f {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.description-stone-14d3 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.description-stone-14d3 ul {
  margin: 1rem 0;
}

.description-stone-14d3 li {
  margin-bottom: 0.75rem;
}

.form_b703 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.panel_under_de54 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.panel_under_de54 a {
  font-weight: 600;
}

/* === Data Tables === */
.tooltip-fffa {
  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;
}

.tooltip-fffa table {
  width: 100%;
  min-width: 600px;
}

.tooltip-fffa thead {
  background-color: var(--primary-color);
  color: white;
}

.tooltip-fffa th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.tooltip-fffa td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.tooltip-fffa tbody tr:hover {
  background-color: var(--bg-secondary);
}

.tooltip-fffa tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.cool_b334 {
  list-style: none;
  margin: 1.5rem 0;
}

.cool_b334 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.cool_b334 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.table_light_8f19::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-efba::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 === */
.message-fresh-575a {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.top-c680 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.top-c680 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.top-c680 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.top-c680 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.message-fresh-575a blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.blue_0c2f {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.blue_0c2f::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.pagination-old-acf7 {
  position: relative;
  margin-bottom: 3rem;
}

.liquid-15e7 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.liquid-15e7 .orange-74a7 {
  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;
}

.secondary-2d19 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.secondary-2d19 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.secondary-2d19 ul {
  margin: 1rem 0;
}

.secondary-2d19 li {
  margin-bottom: 0.75rem;
}

.carousel-9320 {
  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 === */
.stone_1d79 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.stone_1d79 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.primary_cac7 {
  list-style: none;
  margin: 1.5rem 0;
}

.primary_cac7 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.primary_cac7 a {
  font-weight: 600;
}

.filter_basic_8cc5 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.hot_29e0 {
  margin: 2.5rem 0;
}

.simple-77dd {
  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;
}

.simple-77dd:hover {
  box-shadow: var(--shadow-lg);
}

.simple-77dd.outer-d320 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.banner_huge_d981 {
  flex-shrink: 0;
}

.banner_huge_d981 span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.label_6e1a h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.photo_4bcf,
.tertiary_3a77,
.button_dirty_b066 {
  width: 100%;
  margin: 1.5rem 0;
}

.notification-selected-f960 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.notification-selected-f960 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.logo_99e4 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.logo_99e4 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.full_62aa {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.full_62aa strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.orange_cb6f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.texture-inner-d1fd {
  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;
}

.texture-inner-d1fd:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.texture-inner-d1fd.dropdown-north-2b5a {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.texture-inner-d1fd .huge_20e6 {
  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;
}

.texture-inner-d1fd h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.feature_ab54 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.carousel-7a09 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.carousel-7a09 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.clean_a408 {
  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 === */
.logo_befe {
  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;
}

.disabled-upper-e0cf {
  background-color: var(--primary-color);
  color: white;
}

.disabled-upper-e0cf:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.description_f142 {
  background-color: var(--text-secondary);
  color: white;
}

.description_f142:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.title-silver-d22a {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.title-silver-d22a:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.nav-fa90 {
  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;
}

.nav-fa90:hover {
  background-color: var(--primary-dark);
}

.hero_dirty_da4b {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.box-dirty-3ded {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.middle_0390 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.block-0fd0 {
  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 === */
.tiny_dbb1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.large_dd5d {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.large_dd5d h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.lite_7d08 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.top_3ea7 {
  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;
}

.current-bf4e {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.aside_5e8d {
  list-style: none;
  counter-reset: rank-counter;
}

.aside_5e8d li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.aside_5e8d 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;
}

.lite_533b {
  list-style: none;
}

.lite_533b li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.surface_21a8 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.text-orange-7cb9 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.text-orange-7cb9 .item-west-eae1 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.text-orange-7cb9 .list_hard_cb59 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.section_efe6 {
  margin-top: 3rem;
}

.logo_3ebb {
  width: 100%;
}

.accent-bottom-5401 {
  background-color: #fef3c7;
}

.green-9fb7 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.yellow-8b1a {
  margin: 3rem 0;
}

.pagination_a087 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.dropdown-9eb7 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.dropdown-9eb7:hover {
  box-shadow: var(--shadow-lg);
}

.dropdown-9eb7.focus-new-26bd {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.notice-4122 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.top_3f68 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.top_3f68 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.iron-3a8d {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.dropdown-9eb7 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.action_b454 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.item-37f3 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.shade-new-d036 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.progress_slow_fe79 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.surface-cf0e {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.backdrop_17d0 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.caption-smooth-92b1 {
  max-width: 900px;
  margin: 0 auto;
}

.highlight_a41b {
  margin: 2rem 0;
}

.header_easy_818a {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.header_easy_818a summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.header_easy_818a summary::-webkit-details-marker {
  display: none;
}

.header_easy_818a summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.accent-dynamic-d69e {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.header_easy_818a[open] .accent-dynamic-d69e {
  transform: rotate(45deg);
}

.hard_d2ae {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.hard_d2ae p:last-child {
  margin-bottom: 0;
}

.texture-e756 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.component-bd19 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.action_7e3f {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.action_7e3f p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.action_7e3f .logo_befe {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.icon-02b5 {
  max-width: 900px;
  margin: 0 auto;
}

.west-62e7 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.tertiary_pressed_a885 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.tertiary_pressed_a885.fn-success-efba {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.dark-cdb7 {
  font-size: 3rem;
  line-height: 1;
}

.shadow_6a07 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.paragraph-5144 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.info_stale_009f,
.inner_c5fa {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.info_stale_009f h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.inner_c5fa h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.detail-action-8f2a,
.container_a0a3 {
  margin: 1.5rem 0;
}

.detail-action-8f2a li,
.container_a0a3 li {
  margin-bottom: 1rem;
}

.hovered_998f {
  margin: 3rem 0;
}

.pressed-693e {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.pressed-693e h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.pressed-693e ol {
  margin: 1rem 0;
}

.pressed-693e li {
  margin-bottom: 0.75rem;
}

.notification_north_d858 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.label-1d4d {
  margin: 2rem 0;
}

.wide-3b38 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.carousel_84b5 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.advanced-499b {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.card_left_8743 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.input_up_cfac {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.feature_dynamic_88b1 {
  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;
}

.feature_dynamic_88b1 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.backdrop-soft-719c {
  flex: 1;
}

.backdrop-soft-719c h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.logo_828c {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.gradient_steel_cbcd p {
  margin-bottom: 1rem;
}

.shade-752a {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.hot_f1d1 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.gallery-565d {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.gallery-565d a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.detail_black_8d7c h3 {
  margin-bottom: 1.5rem;
}

.component-up-09b1 {
  display: grid;
  gap: 2rem;
}

.component_fluid_b8d9 {
  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;
}

.component_fluid_b8d9 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.component_fluid_b8d9 h4 {
  margin: 0 0 0.25rem;
}

.component_fluid_b8d9 p {
  margin: 0;
  font-size: 0.9375rem;
}

.lite-003a {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.hidden_south_df07 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.hidden_south_df07 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.hidden_south_df07 ul {
  margin: 1.5rem 0;
}

.hidden_south_df07 li {
  margin-bottom: 0.75rem;
}

.wrapper_e4a0 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.heading-d2ac {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.copper_4591 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.grid_black_b50b h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.grid_black_b50b p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.alert-a840 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.alert-a840 a {
  color: rgba(255, 255, 255, 0.8);
}

.form_89e7 {
  list-style: none;
}

.form_89e7 li {
  margin-bottom: 0.75rem;
}

.form_89e7 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.form_89e7 a:hover {
  color: white;
}

.sort-north-bc35 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.label-thick-6518 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.card-3f8a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.slider_in_c01c {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.grid_bfbc {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .bright-d10a {
    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;
  }

  .dirty-04e4 {
    font-size: 1.5rem !important;
  }

  .dropdown_4589 {
    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 */
  .description-stone-14d3,
  .out_5c48,
  .secondary-2d19,
  .label_6e1a,
  .notice-4122,
  .dropdown-9eb7,
  .hard_d2ae,
  .dirty_a1d9,
  .steel_c8c8,
  .orange-0b97 {
    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 */
  .tertiary-f3af {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .avatar_cee9 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .content-medium-8901 {
    flex-shrink: 0;
  }

  .backdrop-soft-719c {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .image-over-d753,
  .brown_a686 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .brown_a686 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .surface_e8b0 {
    display: none;
  }

  /* Show mobile actions */
  .pattern-e9ad {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .alert_d68d {
    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;
  }

  .alert_d68d svg {
    flex-shrink: 0;
  }

  .alert_d68d .search-0907 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .alert_d68d .stone_b152 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .blue_4dd7 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .light_77a5 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .alert_d68d:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .caption_advanced_647d {
    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;
  }

  .caption_advanced_647d.fn-active-efba {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .caption_advanced_647d li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .caption_advanced_647d li:last-child {
    border-bottom: none;
  }

  .caption_advanced_647d a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .message_huge_266b {
    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;
  }

  .message_huge_266b li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .message_huge_266b li:last-child {
    border-bottom: none;
  }

  .message_huge_266b a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .frame_781b {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .grid-8819 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .dirty-52fa,
  .out-ce88 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .dirty-52fa {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .out-ce88 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .message_huge_266b.fn-active-efba {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .outer-f3f9 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .header-5ff6 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .progress-d7fb {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .first-e85c {
    margin-top: 0;
  }

  /* Hero section */
  .first-e85c {
    padding: 2rem 0 1.5rem;
  }

  .dropdown_4589 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .steel_c8c8 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .secondary-ded4 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .primary-south-83d1 {
    max-width: 100%;
    border-radius: 8px;
  }

  .component_right_1ded {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .wrapper-a7b8 {
    padding: 1rem;
  }

  .tall-7076 {
    font-size: 1.5rem;
  }

  .photo-d10a {
    font-size: 0.75rem;
  }

  .dirty_a1d9 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .section_easy_e37e {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .section_easy_e37e .logo_befe {
    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 */
  .tabs-right-9cd3 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .simple-77dd {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .banner_huge_d981 {
    margin-bottom: 1rem;
  }

  /* Author */
  .iron-189a {
    flex-direction: column;
  }

  .feature_dynamic_88b1 {
    flex-direction: column;
  }

  /* Quotes */
  .notice-4122 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .paragraph-5144 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .card_left_8743 {
    flex-direction: column;
  }

  .card_left_8743 .logo_befe {
    width: 100%;
  }

  /* Version comparison */
  .orange_cb6f {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .tiny_dbb1 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .copper_4591 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .card-3f8a {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .tooltip-fffa,
  .tertiary_3a77,
  .input-fluid-b391,
  .logo_3ebb,
  .photo_4bcf,
  .button_dirty_b066 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .tooltip-fffa table,
  .tertiary_3a77 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .clean_a408 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .bright-d10a {
    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;
  }

  .dirty-04e4 {
    font-size: 1.25rem !important;
  }

  .dropdown_4589 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .header-5ff6 {
    position: fixed;
  }

  .progress-d7fb {
    padding: 0.625rem 0;
  }

  .tooltip_22d6 img {
    height: 26px;
  }

  .message_huge_266b {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .caption_advanced_647d {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .alert_d68d {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .alert_d68d svg {
    width: 18px;
    height: 18px;
  }

  .alert_d68d .search-0907 {
    font-size: 0.7rem;
  }

  .alert_d68d .stone_b152 {
    font-size: 0.65rem;
  }

  .dirty-52fa,
  .out-ce88 {
    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, .bright-d10a, .row_prev_7f81, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .secondary-ded4 {
    padding: 1rem;
  }

  .component_right_1ded {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .wrapper-a7b8 {
    padding: 0.875rem;
  }

  .tall-7076 {
    font-size: 1.25rem;
  }

  .section_easy_e37e .logo_befe {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .dropdown_4589 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .logo_befe {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .hero_dirty_da4b {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .simple-77dd {
    padding: 1rem;
  }

  .banner_huge_d981 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .description-stone-14d3,
  .steel-51b8,
  .column-last-6285,
  .panel_5080 {
    padding: 1rem;
  }
}

@media print {
  .header-5ff6,
  .carousel_rough_9972,
  .outer-f3f9,
  .logo_befe,
  .heading-d2ac {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .bright-d10a {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.inner-d78f {
  margin-bottom: 3rem;
  text-align: center;
}

.dirty-04e4 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.title-under-85f0 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.frame_405f,
.soft-33d2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.hero_orange_6b64 {
  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;
}

.hero_orange_6b64:hover {
  transform: translateY(-5px);
}

.hero_orange_6b64 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.hero_orange_6b64 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.disabled_down_4ad3 {
  margin: 3rem 0;
}

.cool-e45e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.block_pro_1d59 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.block_pro_1d59:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.upper-e63a {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.row_smooth_0a27 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.copper_afdb {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.media-yellow-42da {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.icon_bright_427c {
  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;
}

.icon_bright_427c:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.icon_bright_427c.shade_ae8b {
  border-left: 4px solid var(--primary-color);
}

.widget_complex_580c {
  flex-shrink: 0;
}

.widget_complex_580c svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.footer_current_677f {
  flex: 1;
}

.footer_current_677f h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.bronze-0a7b {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.block-c8d6,
.secondary-iron-6ae1,
.column_lower_5901 {
  margin-bottom: 1.5rem;
}

.block-c8d6 h4,
.secondary-iron-6ae1 h4,
.column_lower_5901 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.block-c8d6 ul,
.secondary-iron-6ae1 ul,
.column_lower_5901 ul {
  list-style: none;
  padding: 0;
}

.block-c8d6 li,
.secondary-iron-6ae1 li,
.column_lower_5901 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.block-c8d6 li:before,
.secondary-iron-6ae1 li:before,
.column_lower_5901 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.description_black_a5b4 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.description_black_a5b4 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;
}

.description_black_a5b4 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.paragraph-cool-4004 { margin: 2rem 0; }
.tiny-49c3 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.tiny-49c3 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.icon_current_af23 p { margin-bottom: 1rem; line-height: 1.7; }
.icon_current_af23 strong { color: var(--text-primary); }
.icon_current_af23 ul { list-style: none; padding-left: 0; }
.icon_current_af23 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.icon_current_af23 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.popup_14ee { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.easy-927c { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.easy-927c:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.fixed_7e1d { font-size: 3rem; margin-bottom: 1rem; }
.easy-927c h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.easy-927c p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.fixed-3b05 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.fixed-3b05 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.banner-c320 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.accordion_active_7970 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.west_4497 { text-align: center; }
.modal_0009 { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.wide_6408 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.accent-e452 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.feature-6204 { margin: 2rem 0; }
.inner-e723 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.inner-e723 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.inner-e723 p, .inner-e723 ul { line-height: 1.7; }
.inner-e723 ul { list-style: none; padding-left: 0; }
.inner-e723 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.inner-e723 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.nav-4151 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.huge-e568 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.module_silver_f786 { text-align: center; }
.pink-960c { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.box-5122 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.east-7e41 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.info-cool-df8b { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.basic-87a7 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.basic-87a7:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.basic-87a7 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.basic-87a7 p, .basic-87a7 ul { line-height: 1.7; }
.basic-87a7 ul { list-style: none; padding-left: 0; }
.basic-87a7 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.basic-87a7 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 0da3 */
.widget-item-q2 {
  padding: 0.5rem;
  font-size: 14px;
  line-height: 1.0;
}
