/* ============================================
   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 */
.label-febb p,
.box_444f,
.large-e500,
.thick_7dd2,
.component_47d1,
.green_ca89,
.container_7d31,
.mini_05db {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.text_mini_560f {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.text_mini_560f > *,
.frame_north_9fc5,
.label-febb,
.paper_2854 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .text_mini_560f {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .text_mini_560f {
    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 === */
.action_646b {
  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 */
.action_646b.medium_2f0a {
  box-shadow: var(--shadow-md);
}

.dropdown-9f91 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.info_old_d7cc img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.backdrop-0dc7 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.yellow-e751 {
  display: none;
}

/* Hide mobile actions on desktop */
.notification_west_2b29 {
  display: none;
}

.medium_609e a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.medium_609e a:hover,
.medium_609e a.fn-active-6d25 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.new_f967 {
  margin-left: 1rem;
}

.summary-8eea {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.liquid-3abf,
.mini_7b3d {
  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;
}

.liquid-3abf {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.liquid-3abf: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;
}

.mini_7b3d {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.mini_7b3d: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;
}

.liquid-3abf svg,
.mini_7b3d svg {
  flex-shrink: 0;
}

.secondary-8ca9 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.outline-out-bbe6 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.outline-out-bbe6::before,
.outline-out-bbe6::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.outline-out-bbe6::before {
  top: -7px;
}

.outline-out-bbe6::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.logo-9b53 {
  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 === */
.tertiary-af49 {
  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);
}

.badge-8141 {
  margin: 0 0 2rem;
  text-align: center;
}

.shade_a31e {
  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;
}

.shade_a31e:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.carousel-fresh-3748 {
  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);
}

.carousel-fresh-3748 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.sidebar_old_52e4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.north-7d4d {
  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;
}

.north-7d4d:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.solid_8100 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.right-30e2 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.huge-01f0 {
  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);
}

.huge-01f0 .fixed_bf85 {
  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;
}

.huge-01f0 .fixed_bf85 svg {
  flex-shrink: 0;
}

.huge-01f0 .iron-f71f {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.huge-01f0 .iron-f71f: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);
}

.huge-01f0 .upper-71c5 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.huge-01f0 .upper-71c5: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) {
  .tertiary-af49 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .shade_a31e {
    max-width: 100%;
  }

  .sidebar_old_52e4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .north-7d4d {
    padding: 1rem;
  }

  .solid_8100 {
    font-size: 1.5rem;
  }

  .right-30e2 {
    font-size: 0.75rem;
  }

  .carousel-fresh-3748 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .huge-01f0 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .huge-01f0 .fixed_bf85 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .sidebar_old_52e4 {
    grid-template-columns: 1fr;
  }
}

.chip-current-818d {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.banner-wide-4f04 {
  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 === */
.article-4315 {
  margin-bottom: 2.5rem;
}

.aside_681c {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.chip-current-818d {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.medium-ceeb {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.message_4ef3 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.message_9d2e {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.gold-4fd5 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.white-a3b0 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.hero-narrow-fd35 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.layout-complex-970e {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.layout-complex-970e svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.clean_d9ec {
  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);
}

.video-4f57 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.status_hot_d36a {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.overlay_wood_19c7 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.pink-7e9e {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.full-1a8b {
  display: grid;
  gap: 1rem;
}

.info-a8fa {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.full_9918 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.hot-810d {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.glass_8a1d {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.element_stale_bdfa {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.down_9b6f {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.down_9b6f p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.box_444f {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.fast-1af2 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.frame-simple-fb6f {
  display: grid;
  gap: 2rem;
}

.text-north-0f8a {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.message_4ef3 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.medium-ceeb {
  flex: 1;
}

.gold-4fd5 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.gold-4fd5 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.form-24f4 {
  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;
}

.white-a3b0 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.container_b108 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.container_b108 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.upper-b4e5 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.upper-b4e5 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.search-down-eabe {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.search-down-eabe strong {
  display: block;
  margin-bottom: 0.75rem;
}

.search-down-eabe ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.search-down-eabe li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.shadow-dark-e133 {
  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 === */
.wrapper_1e1f {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.mask_f897 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.thick-58e5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.huge-05e5 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.huge-05e5 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.huge-05e5 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.huge-05e5 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;
}

.huge-05e5 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.huge-05e5 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.label-febb {
  padding: 3rem 0 5rem;
}

.paper_2854 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.paper_2854.list-cd8c {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.large-e500 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.feature_yellow_273f {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.hidden-fast-7bbe {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.hidden-fast-7bbe h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.old-e41c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.nav-99a0 {
  text-align: center;
}

.layout-3899 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.slider-0bb9 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.clean_13c5 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.green_ca89 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.thick_7dd2 {
  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;
}

.thick_7dd2 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thick_7dd2:hover {
  box-shadow: var(--shadow-lg);
}

.thick_7dd2.module_hard_f4c9 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.thick_7dd2 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.thick_7dd2 ul {
  margin: 1rem 0;
}

.thick_7dd2 li {
  margin-bottom: 0.75rem;
}

.layout-first-d704 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.stale_9079 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.stale_9079 a {
  font-weight: 600;
}

/* === Data Tables === */
.last-3099 {
  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;
}

.last-3099 table {
  width: 100%;
  min-width: 600px;
}

.last-3099 thead {
  background-color: var(--primary-color);
  color: white;
}

.last-3099 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.last-3099 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.last-3099 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.last-3099 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.inner-dd05 {
  list-style: none;
  margin: 1.5rem 0;
}

.inner-dd05 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.inner-dd05 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.hidden-b9d2::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-6d25::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 === */
.pattern-center-348a {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.slider-green-44e7 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.slider-green-44e7 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.slider-green-44e7 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.slider-green-44e7 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pattern-center-348a blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.container_7d31 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.container_7d31::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.tag_ae4e {
  position: relative;
  margin-bottom: 3rem;
}

.copper_a564 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.copper_a564 .tabs_5d9d {
  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;
}

.dirty-0f18 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.dirty-0f18 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.dirty-0f18 ul {
  margin: 1rem 0;
}

.dirty-0f18 li {
  margin-bottom: 0.75rem;
}

.logo-left-c3be {
  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 === */
.summary-slow-ce79 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.summary-slow-ce79 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.liquid-225c {
  list-style: none;
  margin: 1.5rem 0;
}

.liquid-225c li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.liquid-225c a {
  font-weight: 600;
}

.menu-motion-96b0 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.mini_05db {
  margin: 2.5rem 0;
}

.logo_yellow_8e74 {
  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;
}

.logo_yellow_8e74:hover {
  box-shadow: var(--shadow-lg);
}

.logo_yellow_8e74.purple-dce5 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.alert-ca15 {
  flex-shrink: 0;
}

.alert-ca15 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);
}

.white_340b h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.text-pressed-b072,
.dynamic_b08f,
.avatar_9429 {
  width: 100%;
  margin: 1.5rem 0;
}

.mask_simple_920c {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.mask_simple_920c strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.banner_929a {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.banner_929a strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.primary-over-cb37 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.primary-over-cb37 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.media_under_89c8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.lower_088c {
  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;
}

.lower_088c:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.lower_088c.card-light-087c {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.lower_088c .icon-64f3 {
  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;
}

.lower_088c h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.nav_8292 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.list-dc82 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.list-dc82 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.thumbnail_b43c {
  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 === */
.fixed_bf85 {
  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;
}

.iron-f71f {
  background-color: var(--primary-color);
  color: white;
}

.iron-f71f:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.upper-71c5 {
  background-color: var(--text-secondary);
  color: white;
}

.upper-71c5:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.list_1c54 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.list_1c54:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.paragraph_bright_eb4d {
  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;
}

.paragraph_bright_eb4d:hover {
  background-color: var(--primary-dark);
}

.tabs-static-157c {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.element_old_f915 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.box_d6d0 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.sidebar-bbd0 {
  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 === */
.button-green-7bb0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.container_ea85 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.container_ea85 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.accordion_cce7 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.light-4a13 {
  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;
}

.disabled_e68b {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.logo-purple-6c7e {
  list-style: none;
  counter-reset: rank-counter;
}

.logo-purple-6c7e li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.logo-purple-6c7e 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;
}

.module_hard_60ba {
  list-style: none;
}

.module_hard_60ba li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.logo-lower-2d89 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.dropdown_full_5038 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.dropdown_full_5038 .dirty_debe {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.dropdown_full_5038 .up_6293 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.thick-9376 {
  margin-top: 3rem;
}

.popup-purple-66a2 {
  width: 100%;
}

.tooltip_0a9e {
  background-color: #fef3c7;
}

.inner-71c0 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.element-up-44e5 {
  margin: 3rem 0;
}

.pressed_b677 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.overlay_6916 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.overlay_6916:hover {
  box-shadow: var(--shadow-lg);
}

.overlay_6916.item-d198 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.disabled_eb72 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.full-6f2d strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.full-6f2d span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.layout-center-1bc0 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.overlay_6916 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.caption_3f3d {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.article-warm-0adc {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.solid-2217 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.bright_f627 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.summary_smooth_e4ae {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.gallery-31b8 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.old-a1aa {
  max-width: 900px;
  margin: 0 auto;
}

.header-bottom-38fc {
  margin: 2rem 0;
}

.widget-da59 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.widget-da59 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.widget-da59 summary::-webkit-details-marker {
  display: none;
}

.widget-da59 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.notice_3671 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.widget-da59[open] .notice_3671 {
  transform: rotate(45deg);
}

.overlay-glass-53b6 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.overlay-glass-53b6 p:last-child {
  margin-bottom: 0;
}

.middle-c1b0 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.silver_f3bd {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.lower_3dd4 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.lower_3dd4 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.lower_3dd4 .fixed_bf85 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.image-b4d9 {
  max-width: 900px;
  margin: 0 auto;
}

.steel_9b1b {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.heading-2b95 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.heading-2b95.fn-success-6d25 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.dropdown_south_cb4d {
  font-size: 3rem;
  line-height: 1;
}

.popup_basic_9325 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.grid-7b54 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.tertiary-prev-65a4,
.alert-focused-9b4b {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.tertiary-prev-65a4 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.alert-focused-9b4b h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.secondary_fixed_2eab,
.nav_wide_1aac {
  margin: 1.5rem 0;
}

.secondary_fixed_2eab li,
.nav_wide_1aac li {
  margin-bottom: 1rem;
}

.table-west-9559 {
  margin: 3rem 0;
}

.glass-db65 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.glass-db65 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.glass-db65 ol {
  margin: 1rem 0;
}

.glass-db65 li {
  margin-bottom: 0.75rem;
}

.white_005f {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.tabs_current_9497 {
  margin: 2rem 0;
}

.tabs_15fd {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.breadcrumb_huge_5849 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.column_next_c8a8 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.container_5cc4 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.shadow_prev_aee7 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.progress-light-cefe {
  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;
}

.progress-light-cefe img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.message_9d2e {
  flex: 1;
}

.message_9d2e h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.button-hard-49b5 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.yellow-50d5 p {
  margin-bottom: 1rem;
}

.sort-0ebf {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.up-c9dd {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.pro_913e {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.pro_913e a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.disabled_5fc9 h3 {
  margin-bottom: 1.5rem;
}

.description_bright_ccac {
  display: grid;
  gap: 2rem;
}

.huge-0a35 {
  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;
}

.huge-0a35 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.huge-0a35 h4 {
  margin: 0 0 0.25rem;
}

.huge-0a35 p {
  margin: 0;
  font-size: 0.9375rem;
}

.white-3d1d {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.panel-plasma-d852 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.panel-plasma-d852 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.panel-plasma-d852 ul {
  margin: 1.5rem 0;
}

.panel-plasma-d852 li {
  margin-bottom: 0.75rem;
}

.solid_850a {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.hovered_f1ab {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.link-d6c8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.media-hard-00cd h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.media-hard-00cd p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.shadow_hard_684a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.shadow_hard_684a a {
  color: rgba(255, 255, 255, 0.8);
}

.secondary_steel_f26e {
  list-style: none;
}

.secondary_steel_f26e li {
  margin-bottom: 0.75rem;
}

.secondary_steel_f26e a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.secondary_steel_f26e a:hover {
  color: white;
}

.carousel-prev-ac65 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.frame_inner_266b {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.thick_6fef {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.slider-dirty-810f {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.stone-ffa1 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .text_mini_560f {
    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;
  }

  .left_2db4 {
    font-size: 1.5rem !important;
  }

  .aside_681c {
    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 */
  .thick_7dd2,
  .component_47d1,
  .dirty-0f18,
  .white_340b,
  .disabled_eb72,
  .overlay_6916,
  .overlay-glass-53b6,
  .carousel-fresh-3748,
  .box_444f,
  .large-e500 {
    max-width: 100%;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: anywhere;
  }

  /* Long words in Indonesian */
  ul, ol {
    padding-left: 1.5rem;
    max-width: 100%;
  }

  /* Fix author-info layout on mobile */
  .chip-current-818d {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .medium-ceeb {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .message_4ef3 {
    flex-shrink: 0;
  }

  .message_9d2e {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .gold-4fd5,
  .white-a3b0 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .white-a3b0 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .backdrop-0dc7 {
    display: none;
  }

  /* Show mobile actions */
  .notification_west_2b29 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .header-plasma-b1b7 {
    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;
  }

  .header-plasma-b1b7 svg {
    flex-shrink: 0;
  }

  .header-plasma-b1b7 .feature_dynamic_e863 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .header-plasma-b1b7 .aside-down-ad0b {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .article_bef2 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .caption_cold_d966 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .header-plasma-b1b7:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .yellow-e751 {
    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;
  }

  .yellow-e751.fn-active-6d25 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .yellow-e751 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .yellow-e751 li:last-child {
    border-bottom: none;
  }

  .yellow-e751 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .medium_609e {
    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;
  }

  .medium_609e li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .medium_609e li:last-child {
    border-bottom: none;
  }

  .medium_609e a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .new_f967 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .summary-8eea {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .liquid-3abf,
  .mini_7b3d {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .liquid-3abf {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .mini_7b3d {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .medium_609e.fn-active-6d25 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .secondary-8ca9 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .action_646b {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .dropdown-9f91 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .logo-9b53 {
    margin-top: 0;
  }

  /* Hero section */
  .logo-9b53 {
    padding: 2rem 0 1.5rem;
  }

  .aside_681c {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .box_444f {
    font-size: 1rem;
  }

  /* Hero brand image */
  .tertiary-af49 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .shade_a31e {
    max-width: 100%;
    border-radius: 8px;
  }

  .sidebar_old_52e4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .north-7d4d {
    padding: 1rem;
  }

  .solid_8100 {
    font-size: 1.5rem;
  }

  .right-30e2 {
    font-size: 0.75rem;
  }

  .carousel-fresh-3748 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .huge-01f0 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .huge-01f0 .fixed_bf85 {
    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 */
  .thick-58e5 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .logo_yellow_8e74 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .alert-ca15 {
    margin-bottom: 1rem;
  }

  /* Author */
  .text-north-0f8a {
    flex-direction: column;
  }

  .progress-light-cefe {
    flex-direction: column;
  }

  /* Quotes */
  .disabled_eb72 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .grid-7b54 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .container_5cc4 {
    flex-direction: column;
  }

  .container_5cc4 .fixed_bf85 {
    width: 100%;
  }

  /* Version comparison */
  .media_under_89c8 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .button-green-7bb0 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .link-d6c8 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .thick_6fef {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .last-3099,
  .dynamic_b08f,
  .paper_f606,
  .popup-purple-66a2,
  .text-pressed-b072,
  .avatar_9429 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .last-3099 table,
  .dynamic_b08f table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .thumbnail_b43c {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .text_mini_560f {
    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;
  }

  .left_2db4 {
    font-size: 1.25rem !important;
  }

  .aside_681c {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .action_646b {
    position: fixed;
  }

  .dropdown-9f91 {
    padding: 0.625rem 0;
  }

  .info_old_d7cc img {
    height: 26px;
  }

  .medium_609e {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .yellow-e751 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .header-plasma-b1b7 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .header-plasma-b1b7 svg {
    width: 18px;
    height: 18px;
  }

  .header-plasma-b1b7 .feature_dynamic_e863 {
    font-size: 0.7rem;
  }

  .header-plasma-b1b7 .aside-down-ad0b {
    font-size: 0.65rem;
  }

  .liquid-3abf,
  .mini_7b3d {
    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, .text_mini_560f, .frame_north_9fc5, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .tertiary-af49 {
    padding: 1rem;
  }

  .sidebar_old_52e4 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .north-7d4d {
    padding: 0.875rem;
  }

  .solid_8100 {
    font-size: 1.25rem;
  }

  .huge-01f0 .fixed_bf85 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .aside_681c {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .fixed_bf85 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .tabs-static-157c {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .logo_yellow_8e74 {
    padding: 1rem;
  }

  .alert-ca15 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .thick_7dd2,
  .right_f312,
  .image_clean_d321,
  .input-out-2a27 {
    padding: 1rem;
  }
}

@media print {
  .action_646b,
  .wrapper_1e1f,
  .secondary-8ca9,
  .fixed_bf85,
  .hovered_f1ab {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .text_mini_560f {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.box_88dc {
  margin-bottom: 3rem;
  text-align: center;
}

.left_2db4 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.large-3102 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.status-inner-603c,
.component-hovered-1f9f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.form_351e {
  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;
}

.form_351e:hover {
  transform: translateY(-5px);
}

.form_351e strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.form_351e span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.static-1f48 {
  margin: 3rem 0;
}

.panel_last_c7cd {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.search-pressed-7d44 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.search-pressed-7d44:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.top_319a {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.south_0dcf {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.up-ed0d {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.glass-b8c6 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.full-ae6c {
  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;
}

.full-ae6c:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.full-ae6c.text-241b {
  border-left: 4px solid var(--primary-color);
}

.content-brown-feda {
  flex-shrink: 0;
}

.content-brown-feda svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.module-2457 {
  flex: 1;
}

.module-2457 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.texture_e2db {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.dim_44cc,
.filter-ebd3,
.card-74c2 {
  margin-bottom: 1.5rem;
}

.dim_44cc h4,
.filter-ebd3 h4,
.card-74c2 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dim_44cc ul,
.filter-ebd3 ul,
.card-74c2 ul {
  list-style: none;
  padding: 0;
}

.dim_44cc li,
.filter-ebd3 li,
.card-74c2 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.dim_44cc li:before,
.filter-ebd3 li:before,
.card-74c2 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.texture-left-7129 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.texture-left-7129 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;
}

.texture-left-7129 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.lower-33b3 { margin: 2rem 0; }
.footer_6dc7 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.footer_6dc7 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.video-warm-259c p { margin-bottom: 1rem; line-height: 1.7; }
.video-warm-259c strong { color: var(--text-primary); }
.video-warm-259c ul { list-style: none; padding-left: 0; }
.video-warm-259c ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.video-warm-259c ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.old-d596 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.hover-down-4dcd { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.hover-down-4dcd:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.gradient_left_e9c1 { font-size: 3rem; margin-bottom: 1rem; }
.hover-down-4dcd h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.hover-down-4dcd p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.next-1312 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.next-1312 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.upper-969c { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.primary-9ee7 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.column-96d3 { text-align: center; }
.grid-clean-e6df { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.preview_up_e8cc { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.active_838e { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.element-stale-f1b1 { margin: 2rem 0; }
.aside-5c0d { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.aside-5c0d h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.aside-5c0d p, .aside-5c0d ul { line-height: 1.7; }
.aside-5c0d ul { list-style: none; padding-left: 0; }
.aside-5c0d ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.aside-5c0d ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.summary_8b90 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.fast_7f4d { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.hot-c5be { text-align: center; }
.wrapper-314d { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.smooth-9c0e { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.up-57f9 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.basic-0c84 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.hard-6564 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.hard-6564:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.hard-6564 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.hard-6564 p, .hard-6564 ul { line-height: 1.7; }
.hard-6564 ul { list-style: none; padding-left: 0; }
.hard-6564 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.hard-6564 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

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