/* ============================================
   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 */
.shade-light-160a p,
.media-3f8a,
.menu-d7d1,
.container-liquid-5879,
.modal_fe98,
.background-purple-f83a,
.input_6a3b,
.column-bronze-f890 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.paragraph-pro-901e {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.paragraph-pro-901e > *,
.article_purple_c207,
.shade-light-160a,
.mask_f841 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .paragraph-pro-901e {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .paragraph-pro-901e {
    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 === */
.orange-54b3 {
  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 */
.orange-54b3.description-upper-92e1 {
  box-shadow: var(--shadow-md);
}

.table_a8bd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.popup_44fb img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.backdrop-06ed {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.column-27e1 {
  display: none;
}

/* Hide mobile actions on desktop */
.image-slow-f6a9 {
  display: none;
}

.pro-5260 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.pro-5260 a:hover,
.pro-5260 a.fn-active-c9a3 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.nav_1cdb {
  margin-left: 1rem;
}

.avatar-action-6337 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.chip-77bd,
.thumbnail-5336 {
  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;
}

.chip-77bd {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.chip-77bd: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;
}

.thumbnail-5336 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.thumbnail-5336: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;
}

.chip-77bd svg,
.thumbnail-5336 svg {
  flex-shrink: 0;
}

.tabs-6214 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.dark_c8f1 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.dark_c8f1::before,
.dark_c8f1::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.dark_c8f1::before {
  top: -7px;
}

.dark_c8f1::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.dropdown_230c {
  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 === */
.paragraph_9229 {
  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);
}

.tooltip-copper-7d24 {
  margin: 0 0 2rem;
  text-align: center;
}

.main-d18c {
  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;
}

.main-d18c:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.cool-ff59 {
  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);
}

.cool-ff59 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.button_462e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.gallery_wood_5a3e {
  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;
}

.gallery_wood_5a3e:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.avatar_cool_79cd {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.component_brown_9635 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.fixed_814e {
  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);
}

.fixed_814e .sidebar_c405 {
  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;
}

.fixed_814e .sidebar_c405 svg {
  flex-shrink: 0;
}

.fixed_814e .table-9bc8 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.fixed_814e .table-9bc8: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);
}

.fixed_814e .accent_stale_b531 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.fixed_814e .accent_stale_b531: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) {
  .paragraph_9229 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .main-d18c {
    max-width: 100%;
  }

  .button_462e {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .gallery_wood_5a3e {
    padding: 1rem;
  }

  .avatar_cool_79cd {
    font-size: 1.5rem;
  }

  .component_brown_9635 {
    font-size: 0.75rem;
  }

  .cool-ff59 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .fixed_814e {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .fixed_814e .sidebar_c405 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .button_462e {
    grid-template-columns: 1fr;
  }
}

.tertiary_stone_156e {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.content_top_e9ff {
  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 === */
.out-22a6 {
  margin-bottom: 2.5rem;
}

.button-cdbf {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.tertiary_stone_156e {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.focused_e64d {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.active_old_1a63 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.action_ef01 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.center_f506 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.accordion_dark_3275 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.link-c1f1 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.progress-95ec {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.progress-95ec svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.aside-0355 {
  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);
}

.logo-804b {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.advanced-0fb8 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.huge-b7b6 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.simple_44ff {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.motion_5e88 {
  display: grid;
  gap: 1rem;
}

.label-541a {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.content_edaa {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.smooth_cbd3 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.primary_tiny_d580 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.slow-0e41 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.row_40ab {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.row_40ab p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.media-3f8a {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.slow_05b0 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.focused_842b {
  display: grid;
  gap: 2rem;
}

.preview-06af {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.active_old_1a63 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.focused_e64d {
  flex: 1;
}

.center_f506 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.center_f506 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.gold-f0ed {
  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;
}

.accordion_dark_3275 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.preview-1a35 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.preview-1a35 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.background_easy_6242 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.background_easy_6242 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.info_down_c16c {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.info_down_c16c strong {
  display: block;
  margin-bottom: 0.75rem;
}

.info_down_c16c ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.info_down_c16c li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.middle_c15c {
  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 === */
.pagination-under-4453 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.item_new_0715 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.block_east_8c1c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.plasma-cb56 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.plasma-cb56 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.plasma-cb56 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.plasma-cb56 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;
}

.plasma-cb56 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.plasma-cb56 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.shade-light-160a {
  padding: 3rem 0 5rem;
}

.mask_f841 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.mask_f841.lower-780c {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.menu-d7d1 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.link_855b {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.module-0231 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.module-0231 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.lower_21d7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.huge_1d8d {
  text-align: center;
}

.dark-6c07 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.old-a446 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.status-plasma-dc53 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.background-purple-f83a {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.container-liquid-5879 {
  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;
}

.container-liquid-5879 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.container-liquid-5879:hover {
  box-shadow: var(--shadow-lg);
}

.container-liquid-5879.aside-outer-e84f {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.container-liquid-5879 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.container-liquid-5879 ul {
  margin: 1rem 0;
}

.container-liquid-5879 li {
  margin-bottom: 0.75rem;
}

.popup-fc27 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.notice-copper-6aaf {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.notice-copper-6aaf a {
  font-weight: 600;
}

/* === Data Tables === */
.text-fluid-53ac {
  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;
}

.text-fluid-53ac table {
  width: 100%;
  min-width: 600px;
}

.text-fluid-53ac thead {
  background-color: var(--primary-color);
  color: white;
}

.text-fluid-53ac th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.text-fluid-53ac td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.text-fluid-53ac tbody tr:hover {
  background-color: var(--bg-secondary);
}

.text-fluid-53ac tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.shade-b59b {
  list-style: none;
  margin: 1.5rem 0;
}

.shade-b59b li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.shade-b59b li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.green_22ee::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-c9a3::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 === */
.photo_small_407b {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.info_dark_c8c0 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.info_dark_c8c0 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.info_dark_c8c0 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.info_dark_c8c0 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.photo_small_407b blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.input_6a3b {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.input_6a3b::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.tertiary-49db {
  position: relative;
  margin-bottom: 3rem;
}

.detail_46e4 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.detail_46e4 .element_1321 {
  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;
}

.layout-upper-3d71 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.layout-upper-3d71 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.layout-upper-3d71 ul {
  margin: 1rem 0;
}

.layout-upper-3d71 li {
  margin-bottom: 0.75rem;
}

.photo_4490 {
  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 === */
.box-left-f925 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.box-left-f925 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.wood_d2c1 {
  list-style: none;
  margin: 1.5rem 0;
}

.wood_d2c1 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.wood_d2c1 a {
  font-weight: 600;
}

.heading-7244 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.column-bronze-f890 {
  margin: 2.5rem 0;
}

.orange-691a {
  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;
}

.orange-691a:hover {
  box-shadow: var(--shadow-lg);
}

.orange-691a.image-2450 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.container-large-df7c {
  flex-shrink: 0;
}

.container-large-df7c 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);
}

.top-169e h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.hidden-dbd3,
.secondary-e6e8,
.gallery_4ac1 {
  width: 100%;
  margin: 1.5rem 0;
}

.focus_center_a17a {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.focus_center_a17a strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.breadcrumb_solid_962e {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.breadcrumb_solid_962e strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.form-warm-8b31 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.form-warm-8b31 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.accent-bronze-19ac {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.right-dd94 {
  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;
}

.right-dd94:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.right-dd94.component-a7f7 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.right-dd94 .new_7d8c {
  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;
}

.right-dd94 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.nav-f377 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.large-96a4 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.large-96a4 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.photo_pink_9fb8 {
  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 === */
.sidebar_c405 {
  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;
}

.table-9bc8 {
  background-color: var(--primary-color);
  color: white;
}

.table-9bc8:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.accent_stale_b531 {
  background-color: var(--text-secondary);
  color: white;
}

.accent_stale_b531:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.block-cc6c {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.block-cc6c:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.tertiary_a106 {
  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;
}

.tertiary_a106:hover {
  background-color: var(--primary-dark);
}

.tiny_bf80 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.gallery_9b6e {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.tabs-slow-d396 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.breadcrumb-green-f2e8 {
  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 === */
.icon_cool_fbef {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.next_65bb {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.next_65bb h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.rough_e903 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.silver_9ab6 {
  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;
}

.gold_3195 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.heading-3133 {
  list-style: none;
  counter-reset: rank-counter;
}

.heading-3133 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.heading-3133 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;
}

.summary-lite-5f15 {
  list-style: none;
}

.summary-lite-5f15 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.mask-afe0 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.wood_6801 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.wood_6801 .dark-1586 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.wood_6801 .hard_9124 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.texture-1086 {
  margin-top: 3rem;
}

.widget-c02f {
  width: 100%;
}

.disabled_north_cbb5 {
  background-color: #fef3c7;
}

.light_f8d4 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.active_7468 {
  margin: 3rem 0;
}

.popup_basic_5ce4 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.fluid-ca5d {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.fluid-ca5d:hover {
  box-shadow: var(--shadow-lg);
}

.fluid-ca5d.carousel-north-f209 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.prev_5e60 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.brown_acf5 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.brown_acf5 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.tiny_5f84 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.fluid-ca5d blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.sidebar_cf2e {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.right_bb31 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.notification-2ebf {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.under-8716 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.aside-82cd {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.orange-2adb {
  margin-top: 1rem;
}

/* === FAQ Section === */
.video_orange_cca4 {
  max-width: 900px;
  margin: 0 auto;
}

.module-fe3e {
  margin: 2rem 0;
}

.green-fcbd {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.green-fcbd summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.green-fcbd summary::-webkit-details-marker {
  display: none;
}

.green-fcbd summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.background-7200 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.green-fcbd[open] .background-7200 {
  transform: rotate(45deg);
}

.frame_6be3 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.frame_6be3 p:last-child {
  margin-bottom: 0;
}

.video-cdd5 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.nav_5056 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.right-26ee {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.right-26ee p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.right-26ee .sidebar_c405 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.hero-soft-653a {
  max-width: 900px;
  margin: 0 auto;
}

.content_a22a {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.tall-5152 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.tall-5152.fn-success-c9a3 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.border-active-9674 {
  font-size: 3rem;
  line-height: 1;
}

.container-gas-bdd6 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.tag_c4f8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.stale_e983,
.block-c1a2 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.stale_e983 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.block-c1a2 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.tag-full-7d2a,
.east-4e4c {
  margin: 1.5rem 0;
}

.tag-full-7d2a li,
.east-4e4c li {
  margin-bottom: 1rem;
}

.article-f400 {
  margin: 3rem 0;
}

.thumbnail_9915 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.thumbnail_9915 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.thumbnail_9915 ol {
  margin: 1rem 0;
}

.thumbnail_9915 li {
  margin-bottom: 0.75rem;
}

.heading_9d93 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.light-3088 {
  margin: 2rem 0;
}

.status_left_4acd {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.liquid-46e5 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.motion-5d69 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.mask-538f {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.summary-red-753a {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.cold-7165 {
  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;
}

.cold-7165 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.action_ef01 {
  flex: 1;
}

.action_ef01 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.table_motion_d2dd {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.block-basic-cd9b p {
  margin-bottom: 1rem;
}

.shade-short-a131 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.next-53d8 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.shadow_00b6 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.shadow_00b6 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.north_2b6d h3 {
  margin-bottom: 1.5rem;
}

.item_solid_65c2 {
  display: grid;
  gap: 2rem;
}

.yellow-fac3 {
  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;
}

.yellow-fac3 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.yellow-fac3 h4 {
  margin: 0 0 0.25rem;
}

.yellow-fac3 p {
  margin: 0;
  font-size: 0.9375rem;
}

.column-ae68 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.background-purple-2a3b {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.background-purple-2a3b h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.background-purple-2a3b ul {
  margin: 1.5rem 0;
}

.background-purple-2a3b li {
  margin-bottom: 0.75rem;
}

.over-fcd5 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.black-38c9 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.info-dynamic-57b9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.north-ed3b h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.north-ed3b p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.gradient_c97a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.gradient_c97a a {
  color: rgba(255, 255, 255, 0.8);
}

.feature-glass-ed3e {
  list-style: none;
}

.feature-glass-ed3e li {
  margin-bottom: 0.75rem;
}

.feature-glass-ed3e a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.feature-glass-ed3e a:hover {
  color: white;
}

.solid_eded {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.old-b078 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.over-d981 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.backdrop_29c1 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.smooth_eb56 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .paragraph-pro-901e {
    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;
  }

  .plasma_d469 {
    font-size: 1.5rem !important;
  }

  .button-cdbf {
    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 */
  .container-liquid-5879,
  .modal_fe98,
  .layout-upper-3d71,
  .top-169e,
  .prev_5e60,
  .fluid-ca5d,
  .frame_6be3,
  .cool-ff59,
  .media-3f8a,
  .menu-d7d1 {
    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_stone_156e {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .focused_e64d {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .active_old_1a63 {
    flex-shrink: 0;
  }

  .action_ef01 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .center_f506,
  .accordion_dark_3275 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .accordion_dark_3275 {
    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-06ed {
    display: none;
  }

  /* Show mobile actions */
  .image-slow-f6a9 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .popup-27b6 {
    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;
  }

  .popup-27b6 svg {
    flex-shrink: 0;
  }

  .popup-27b6 .lite-fa14 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .popup-27b6 .medium_fd1e {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .summary_0e38 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .section-ef0d {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .popup-27b6:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .column-27e1 {
    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;
  }

  .column-27e1.fn-active-c9a3 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .column-27e1 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .column-27e1 li:last-child {
    border-bottom: none;
  }

  .column-27e1 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .pro-5260 {
    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;
  }

  .pro-5260 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .pro-5260 li:last-child {
    border-bottom: none;
  }

  .pro-5260 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .nav_1cdb {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .avatar-action-6337 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .chip-77bd,
  .thumbnail-5336 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .chip-77bd {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .thumbnail-5336 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .pro-5260.fn-active-c9a3 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .tabs-6214 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .orange-54b3 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .table_a8bd {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .dropdown_230c {
    margin-top: 0;
  }

  /* Hero section */
  .dropdown_230c {
    padding: 2rem 0 1.5rem;
  }

  .button-cdbf {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .media-3f8a {
    font-size: 1rem;
  }

  /* Hero brand image */
  .paragraph_9229 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .main-d18c {
    max-width: 100%;
    border-radius: 8px;
  }

  .button_462e {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .gallery_wood_5a3e {
    padding: 1rem;
  }

  .avatar_cool_79cd {
    font-size: 1.5rem;
  }

  .component_brown_9635 {
    font-size: 0.75rem;
  }

  .cool-ff59 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .fixed_814e {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .fixed_814e .sidebar_c405 {
    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 */
  .block_east_8c1c {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .orange-691a {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .container-large-df7c {
    margin-bottom: 1rem;
  }

  /* Author */
  .preview-06af {
    flex-direction: column;
  }

  .cold-7165 {
    flex-direction: column;
  }

  /* Quotes */
  .prev_5e60 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .tag_c4f8 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .mask-538f {
    flex-direction: column;
  }

  .mask-538f .sidebar_c405 {
    width: 100%;
  }

  /* Version comparison */
  .accent-bronze-19ac {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .icon_cool_fbef {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .info-dynamic-57b9 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .over-d981 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .text-fluid-53ac,
  .secondary-e6e8,
  .video-dirty-ab5c,
  .widget-c02f,
  .hidden-dbd3,
  .gallery_4ac1 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .text-fluid-53ac table,
  .secondary-e6e8 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .photo_pink_9fb8 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .paragraph-pro-901e {
    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;
  }

  .plasma_d469 {
    font-size: 1.25rem !important;
  }

  .button-cdbf {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .orange-54b3 {
    position: fixed;
  }

  .table_a8bd {
    padding: 0.625rem 0;
  }

  .popup_44fb img {
    height: 26px;
  }

  .pro-5260 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .column-27e1 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .popup-27b6 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .popup-27b6 svg {
    width: 18px;
    height: 18px;
  }

  .popup-27b6 .lite-fa14 {
    font-size: 0.7rem;
  }

  .popup-27b6 .medium_fd1e {
    font-size: 0.65rem;
  }

  .chip-77bd,
  .thumbnail-5336 {
    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, .paragraph-pro-901e, .article_purple_c207, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .paragraph_9229 {
    padding: 1rem;
  }

  .button_462e {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .gallery_wood_5a3e {
    padding: 0.875rem;
  }

  .avatar_cool_79cd {
    font-size: 1.25rem;
  }

  .fixed_814e .sidebar_c405 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .button-cdbf {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .sidebar_c405 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .tiny_bf80 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .orange-691a {
    padding: 1rem;
  }

  .container-large-df7c span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .container-liquid-5879,
  .full-e855,
  .nav_81e2,
  .wrapper-light-0f2f {
    padding: 1rem;
  }
}

@media print {
  .orange-54b3,
  .pagination-under-4453,
  .tabs-6214,
  .sidebar_c405,
  .black-38c9 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .paragraph-pro-901e {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.inner_92fc {
  margin-bottom: 3rem;
  text-align: center;
}

.plasma_d469 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.primary-df72 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.tooltip_huge_a9f0,
.notification_fresh_020b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.frame-e957 {
  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;
}

.frame-e957:hover {
  transform: translateY(-5px);
}

.frame-e957 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.frame-e957 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.progress_43ad {
  margin: 3rem 0;
}

.aside_advanced_8213 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.background-orange-3b7c {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.background-orange-3b7c:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.active-8fec {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.highlight_37be {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.grid_dim_3112 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.dropdown_811e {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.new-5db5 {
  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;
}

.new-5db5:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.new-5db5.warm_cb86 {
  border-left: 4px solid var(--primary-color);
}

.menu-26e3 {
  flex-shrink: 0;
}

.menu-26e3 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.action-7f49 {
  flex: 1;
}

.action-7f49 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.avatar_bronze_c05a {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.outline_a2fc,
.tertiary-silver-aecb,
.lower_335f {
  margin-bottom: 1.5rem;
}

.outline_a2fc h4,
.tertiary-silver-aecb h4,
.lower_335f h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.outline_a2fc ul,
.tertiary-silver-aecb ul,
.lower_335f ul {
  list-style: none;
  padding: 0;
}

.outline_a2fc li,
.tertiary-silver-aecb li,
.lower_335f li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.outline_a2fc li:before,
.tertiary-silver-aecb li:before,
.lower_335f li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.image_selected_3480 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.image_selected_3480 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;
}

.image_selected_3480 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.tag-3853 { margin: 2rem 0; }
.detail_out_a4d8 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.detail_out_a4d8 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.tabs-584a p { margin-bottom: 1rem; line-height: 1.7; }
.tabs-584a strong { color: var(--text-primary); }
.tabs-584a ul { list-style: none; padding-left: 0; }
.tabs-584a ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.tabs-584a ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.caption-d9d8 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.component-e5fa { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.component-e5fa:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.frame_cb58 { font-size: 3rem; margin-bottom: 1rem; }
.component-e5fa h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.component-e5fa p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.texture_easy_7133 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.texture_easy_7133 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.pattern_ba72 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.border-west-7116 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.paper-2f87 { text-align: center; }
.link_short_4e3e { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.button-lower-97cf { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.grid_02ab { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.component-176c { margin: 2rem 0; }
.carousel_3866 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.carousel_3866 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.carousel_3866 p, .carousel_3866 ul { line-height: 1.7; }
.carousel_3866 ul { list-style: none; padding-left: 0; }
.carousel_3866 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.carousel_3866 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.primary_2680 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.orange_d491 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.grid_a7ed { text-align: center; }
.wrapper_warm_0302 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.active_85db { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.primary_fresh_c034 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.accent_pressed_3bab { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.surface-e81b { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.surface-e81b:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.surface-e81b h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.surface-e81b p, .surface-e81b ul { line-height: 1.7; }
.surface-e81b ul { list-style: none; padding-left: 0; }
.surface-e81b ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.surface-e81b ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 6495 */
.ghost-box-j1 {
  padding: 0.1rem;
  font-size: 14px;
  line-height: 1.3;
}
