/* ============================================
   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 */
.motion-3021 p,
.picture_7f2d,
.caption_4b75,
.selected_a409,
.black_592b,
.smooth_af37,
.summary-large-fac8,
.current-94ac {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.modal-55a0 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.modal-55a0 > *,
.secondary_fafc,
.motion-3021,
.slider_1b92 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .modal-55a0 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .modal-55a0 {
    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 === */
.module_8c2e {
  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 */
.module_8c2e.hero-cold-613a {
  box-shadow: var(--shadow-md);
}

.box_bde6 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.advanced-e428 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.carousel_copper_eedc {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.pattern_smooth_c53e {
  display: none;
}

/* Hide mobile actions on desktop */
.last_7ba3 {
  display: none;
}

.heading-copper-7d40 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.heading-copper-7d40 a:hover,
.heading-copper-7d40 a.fn-active-37c0 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.pattern-e835 {
  margin-left: 1rem;
}

.primary_8533 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.disabled_8e11,
.badge-1522 {
  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;
}

.disabled_8e11 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.disabled_8e11: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;
}

.badge-1522 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.badge-1522: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;
}

.disabled_8e11 svg,
.badge-1522 svg {
  flex-shrink: 0;
}

.layout-north-dede {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.action-ab72 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.action-ab72::before,
.action-ab72::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.action-ab72::before {
  top: -7px;
}

.action-ab72::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.pink_657d {
  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 === */
.status_left_4f60 {
  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);
}

.full_a40e {
  margin: 0 0 2rem;
  text-align: center;
}

.texture-c0c1 {
  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;
}

.texture-c0c1:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.active-dim-a5bb {
  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);
}

.active-dim-a5bb strong {
  color: var(--primary-color);
  font-weight: 700;
}

.tooltip_fluid_8753 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.image-30dd {
  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;
}

.image-30dd:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.sidebar-5fe1 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.dim_bb5c {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.inner-36f2 {
  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);
}

.inner-36f2 .highlight-ac60 {
  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;
}

.inner-36f2 .highlight-ac60 svg {
  flex-shrink: 0;
}

.inner-36f2 .caption-0c89 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.inner-36f2 .caption-0c89: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);
}

.inner-36f2 .west-33eb {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.inner-36f2 .west-33eb: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) {
  .status_left_4f60 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .texture-c0c1 {
    max-width: 100%;
  }

  .tooltip_fluid_8753 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .image-30dd {
    padding: 1rem;
  }

  .sidebar-5fe1 {
    font-size: 1.5rem;
  }

  .dim_bb5c {
    font-size: 0.75rem;
  }

  .active-dim-a5bb {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .inner-36f2 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .inner-36f2 .highlight-ac60 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .tooltip_fluid_8753 {
    grid-template-columns: 1fr;
  }
}

.disabled-in-daa3 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.complex_f0a1 {
  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 === */
.basic-a66c {
  margin-bottom: 2.5rem;
}

.hidden_7007 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.disabled-in-daa3 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.modal-7233 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hard-5512 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.popup_fluid_ffa1 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.warm_6657 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.icon_0447 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.form_c042 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.summary_4cf6 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.summary_4cf6 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.accent-stale-56e5 {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-lg);
}

.panel_8219 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.preview_soft_fe98 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pro-1985 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.hover_solid_f268 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.menu-628c {
  display: grid;
  gap: 1rem;
}

.silver-7c44 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.shade_2680 {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.nav_1588 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.sidebar-inner-fab0 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.middle-e2fa {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.icon-92f9 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.icon-92f9 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.picture_7f2d {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.description-center-dc6e {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.button-f7a6 {
  display: grid;
  gap: 2rem;
}

.caption_rough_5a6a {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.hard-5512 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.modal-7233 {
  flex: 1;
}

.warm_6657 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.warm_6657 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.column_a539 {
  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;
}

.icon_0447 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.detail_3ed7 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.detail_3ed7 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.media_40b1 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.media_40b1 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.accordion_f35e {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.accordion_f35e strong {
  display: block;
  margin-bottom: 0.75rem;
}

.accordion_f35e ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.accordion_f35e li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.center_d14f {
  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 === */
.surface-b9fd {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.icon-light-4717 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.easy_8206 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.filter-1656 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.filter-1656 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.filter-1656 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.filter-1656 ol li a {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.2s ease, transform 0.2s ease;
}

.filter-1656 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.filter-1656 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.motion-3021 {
  padding: 3rem 0 5rem;
}

.slider_1b92 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.slider_1b92.texture-hard-5b49 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.caption_4b75 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.breadcrumb-north-eee7 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.image-0ed7 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.image-0ed7 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.gallery_cec5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.component_0c2a {
  text-align: center;
}

.steel-d059 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.badge_tiny_79ea {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.south_177c {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.smooth_af37 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.selected_a409 {
  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;
}

.selected_a409 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.selected_a409:hover {
  box-shadow: var(--shadow-lg);
}

.selected_a409.column-7062 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.selected_a409 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.selected_a409 ul {
  margin: 1rem 0;
}

.selected_a409 li {
  margin-bottom: 0.75rem;
}

.nav-6bfd {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.label_current_3b20 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.label_current_3b20 a {
  font-weight: 600;
}

/* === Data Tables === */
.heading_up_c18f {
  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;
}

.heading_up_c18f table {
  width: 100%;
  min-width: 600px;
}

.heading_up_c18f thead {
  background-color: var(--primary-color);
  color: white;
}

.heading_up_c18f th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.heading_up_c18f td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.heading_up_c18f tbody tr:hover {
  background-color: var(--bg-secondary);
}

.heading_up_c18f tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.detail_ec23 {
  list-style: none;
  margin: 1.5rem 0;
}

.detail_ec23 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.detail_ec23 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.mask-stone-85cc::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-37c0::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 === */
.shade_copper_9e00 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.tiny_9ce9 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.tiny_9ce9 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.tiny_9ce9 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.tiny_9ce9 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.shade_copper_9e00 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.summary-large-fac8 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.summary-large-fac8::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.hidden_da35 {
  position: relative;
  margin-bottom: 3rem;
}

.carousel-simple-625f {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.carousel-simple-625f .fluid_1c98 {
  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;
}

.content-bronze-b0f0 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.content-bronze-b0f0 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.content-bronze-b0f0 ul {
  margin: 1rem 0;
}

.content-bronze-b0f0 li {
  margin-bottom: 0.75rem;
}

.mini_f818 {
  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 === */
.easy-85ae {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.easy-85ae h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.status-red-4222 {
  list-style: none;
  margin: 1.5rem 0;
}

.status-red-4222 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.status-red-4222 a {
  font-weight: 600;
}

.media-05b6 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.current-94ac {
  margin: 2.5rem 0;
}

.primary_south_e9ef {
  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;
}

.primary_south_e9ef:hover {
  box-shadow: var(--shadow-lg);
}

.primary_south_e9ef.border-cf05 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.focus_b916 {
  flex-shrink: 0;
}

.focus_b916 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);
}

.widget-e614 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.hard-6cbd,
.element_selected_e23a,
.layout_5824 {
  width: 100%;
  margin: 1.5rem 0;
}

.surface_59e5 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.surface_59e5 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.plasma_a8c0 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.plasma_a8c0 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.grid-active-a01c {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.grid-active-a01c strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.thumbnail_warm_f77c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.popup_west_7827 {
  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;
}

.popup_west_7827:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.popup_west_7827.tiny_9833 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.popup_west_7827 .input-wide-e3b4 {
  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;
}

.popup_west_7827 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.tabs-first-12d7 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.next-19eb {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.next-19eb label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.message-east-5524 {
  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 === */
.highlight-ac60 {
  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;
}

.caption-0c89 {
  background-color: var(--primary-color);
  color: white;
}

.caption-0c89:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.west-33eb {
  background-color: var(--text-secondary);
  color: white;
}

.west-33eb:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.status_liquid_af14 {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.status_liquid_af14:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.dirty-a292 {
  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;
}

.dirty-a292:hover {
  background-color: var(--primary-dark);
}

.bright-bcf0 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.aside_lower_b13b {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.table_in_817e {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.list_solid_a5fd {
  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 === */
.popup-silver-02bb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.thick-c930 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.thick-c930 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.slow-8a9b {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.orange-ddf6 {
  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;
}

.popup-active-e717 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.content-1b1d {
  list-style: none;
  counter-reset: rank-counter;
}

.content-1b1d li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.content-1b1d 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;
}

.image-static-fcfb {
  list-style: none;
}

.image-static-fcfb li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.aside_a650 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.sidebar_bf0c {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.sidebar_bf0c .footer_cd10 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.sidebar_bf0c .heading_c797 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.frame-bronze-70c0 {
  margin-top: 3rem;
}

.short-d53f {
  width: 100%;
}

.carousel-bright-39b9 {
  background-color: #fef3c7;
}

.steel_b4d3 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.popup-aa9d {
  margin: 3rem 0;
}

.photo_63cf {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.rough_5fee {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.rough_5fee:hover {
  box-shadow: var(--shadow-lg);
}

.rough_5fee.fluid-441f {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.title_0a96 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.paper-e3b0 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.paper-e3b0 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.nav-b08b {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.rough_5fee blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.feature_center_46b3 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tag_bf92 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.tag-b364 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.container-complex-2063 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.caption-over-ddba {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.south_e5ec {
  margin-top: 1rem;
}

/* === FAQ Section === */
.logo-e2c4 {
  max-width: 900px;
  margin: 0 auto;
}

.dynamic_4714 {
  margin: 2rem 0;
}

.logo-top-4883 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.logo-top-4883 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.logo-top-4883 summary::-webkit-details-marker {
  display: none;
}

.logo-top-4883 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.slow_d65e {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.logo-top-4883[open] .slow_d65e {
  transform: rotate(45deg);
}

.paragraph_green_eaa7 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.paragraph_green_eaa7 p:last-child {
  margin-bottom: 0;
}

.mask_a647 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.bottom_1fb2 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.progress_7650 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.progress_7650 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.progress_7650 .highlight-ac60 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.label_static_697e {
  max-width: 900px;
  margin: 0 auto;
}

.steel-9c01 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.first-df8e {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.first-df8e.fn-success-37c0 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.background_slow_a850 {
  font-size: 3rem;
  line-height: 1;
}

.content_bd1b h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.plasma-a712 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.box-current-5ddd,
.surface_b97e {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.box-current-5ddd h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.surface_b97e h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.focus_copper_60ed,
.right_7030 {
  margin: 1.5rem 0;
}

.focus_copper_60ed li,
.right_7030 li {
  margin-bottom: 1rem;
}

.rough_0aa1 {
  margin: 3rem 0;
}

.info_white_47c6 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.info_white_47c6 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.info_white_47c6 ol {
  margin: 1rem 0;
}

.info_white_47c6 li {
  margin-bottom: 0.75rem;
}

.progress-f9d6 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.notice_187e {
  margin: 2rem 0;
}

.in-c3b8 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.paragraph-3647 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.element-4a8d {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.left-a9fb {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.row-eb87 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.media_009a {
  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;
}

.media_009a img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.popup_fluid_ffa1 {
  flex: 1;
}

.popup_fluid_ffa1 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.accent-b301 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.solid_b3ea p {
  margin-bottom: 1rem;
}

.media-action-6363 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.disabled_fast_da68 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.focus-dd24 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.focus-dd24 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.fresh-1477 h3 {
  margin-bottom: 1.5rem;
}

.frame_mini_9785 {
  display: grid;
  gap: 2rem;
}

.basic-c0de {
  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;
}

.basic-c0de img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.basic-c0de h4 {
  margin: 0 0 0.25rem;
}

.basic-c0de p {
  margin: 0;
  font-size: 0.9375rem;
}

.aside_small_56ca {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.pro-bbd6 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.pro-bbd6 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.pro-bbd6 ul {
  margin: 1.5rem 0;
}

.pro-bbd6 li {
  margin-bottom: 0.75rem;
}

.middle_1437 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.nav-small-1b6b {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.fluid-b910 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.mask-ebdc h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.mask-ebdc p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.popup_5fa9 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.popup_5fa9 a {
  color: rgba(255, 255, 255, 0.8);
}

.panel-dcba {
  list-style: none;
}

.panel-dcba li {
  margin-bottom: 0.75rem;
}

.panel-dcba a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.panel-dcba a:hover {
  color: white;
}

.orange-8f1d {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.dim-c58b {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.menu-rough-021f {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.paper_80ff {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.widget-5562 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .modal-55a0 {
    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;
  }

  .yellow-3deb {
    font-size: 1.5rem !important;
  }

  .hidden_7007 {
    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 */
  .selected_a409,
  .black_592b,
  .content-bronze-b0f0,
  .widget-e614,
  .title_0a96,
  .rough_5fee,
  .paragraph_green_eaa7,
  .active-dim-a5bb,
  .picture_7f2d,
  .caption_4b75 {
    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 */
  .disabled-in-daa3 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .modal-7233 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .hard-5512 {
    flex-shrink: 0;
  }

  .popup_fluid_ffa1 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .warm_6657,
  .icon_0447 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .icon_0447 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .carousel_copper_eedc {
    display: none;
  }

  /* Show mobile actions */
  .last_7ba3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .accent_out_99a8 {
    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;
  }

  .accent_out_99a8 svg {
    flex-shrink: 0;
  }

  .accent_out_99a8 .fresh-4fad {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .accent_out_99a8 .focused-9469 {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .overlay_4bcf {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .block_184e {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .accent_out_99a8:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .pattern_smooth_c53e {
    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;
  }

  .pattern_smooth_c53e.fn-active-37c0 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .pattern_smooth_c53e li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .pattern_smooth_c53e li:last-child {
    border-bottom: none;
  }

  .pattern_smooth_c53e a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .heading-copper-7d40 {
    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;
  }

  .heading-copper-7d40 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .heading-copper-7d40 li:last-child {
    border-bottom: none;
  }

  .heading-copper-7d40 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .pattern-e835 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .primary_8533 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .disabled_8e11,
  .badge-1522 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .disabled_8e11 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .badge-1522 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .heading-copper-7d40.fn-active-37c0 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .layout-north-dede {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .module_8c2e {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .box_bde6 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .pink_657d {
    margin-top: 0;
  }

  /* Hero section */
  .pink_657d {
    padding: 2rem 0 1.5rem;
  }

  .hidden_7007 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .picture_7f2d {
    font-size: 1rem;
  }

  /* Hero brand image */
  .status_left_4f60 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .texture-c0c1 {
    max-width: 100%;
    border-radius: 8px;
  }

  .tooltip_fluid_8753 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .image-30dd {
    padding: 1rem;
  }

  .sidebar-5fe1 {
    font-size: 1.5rem;
  }

  .dim_bb5c {
    font-size: 0.75rem;
  }

  .active-dim-a5bb {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .inner-36f2 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .inner-36f2 .highlight-ac60 {
    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 */
  .easy_8206 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .primary_south_e9ef {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .focus_b916 {
    margin-bottom: 1rem;
  }

  /* Author */
  .caption_rough_5a6a {
    flex-direction: column;
  }

  .media_009a {
    flex-direction: column;
  }

  /* Quotes */
  .title_0a96 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .plasma-a712 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .left-a9fb {
    flex-direction: column;
  }

  .left-a9fb .highlight-ac60 {
    width: 100%;
  }

  /* Version comparison */
  .thumbnail_warm_f77c {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .popup-silver-02bb {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .fluid-b910 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .menu-rough-021f {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .heading_up_c18f,
  .element_selected_e23a,
  .tooltip-first-ed5d,
  .short-d53f,
  .hard-6cbd,
  .layout_5824 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .heading_up_c18f table,
  .element_selected_e23a table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .message-east-5524 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .modal-55a0 {
    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;
  }

  .yellow-3deb {
    font-size: 1.25rem !important;
  }

  .hidden_7007 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .module_8c2e {
    position: fixed;
  }

  .box_bde6 {
    padding: 0.625rem 0;
  }

  .advanced-e428 img {
    height: 26px;
  }

  .heading-copper-7d40 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .pattern_smooth_c53e {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .accent_out_99a8 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .accent_out_99a8 svg {
    width: 18px;
    height: 18px;
  }

  .accent_out_99a8 .fresh-4fad {
    font-size: 0.7rem;
  }

  .accent_out_99a8 .focused-9469 {
    font-size: 0.65rem;
  }

  .disabled_8e11,
  .badge-1522 {
    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, .modal-55a0, .secondary_fafc, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .status_left_4f60 {
    padding: 1rem;
  }

  .tooltip_fluid_8753 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .image-30dd {
    padding: 0.875rem;
  }

  .sidebar-5fe1 {
    font-size: 1.25rem;
  }

  .inner-36f2 .highlight-ac60 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .hidden_7007 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .highlight-ac60 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .bright-bcf0 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .primary_south_e9ef {
    padding: 1rem;
  }

  .focus_b916 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .selected_a409,
  .preview_9413,
  .bronze_1f2a,
  .over_00d1 {
    padding: 1rem;
  }
}

@media print {
  .module_8c2e,
  .surface-b9fd,
  .layout-north-dede,
  .highlight-ac60,
  .nav-small-1b6b {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .modal-55a0 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.logo_hot_e08e {
  margin-bottom: 3rem;
  text-align: center;
}

.yellow-3deb {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.surface-tall-4561 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.popup_3468,
.tag-79ca {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.sort_a6f0 {
  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;
}

.sort_a6f0:hover {
  transform: translateY(-5px);
}

.sort_a6f0 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.sort_a6f0 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.status_db79 {
  margin: 3rem 0;
}

.slow_05d3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.bright-87e0 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.bright-87e0:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.pink_3b50 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.outline-3e46 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.wrapper_4489 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.stale_9f7e {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.icon_cf64 {
  display: flex;
  gap: 2rem;
  padding: 2.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.icon_cf64:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.icon_cf64.photo_4216 {
  border-left: 4px solid var(--primary-color);
}

.message_6114 {
  flex-shrink: 0;
}

.message_6114 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.heading-mini-33fb {
  flex: 1;
}

.heading-mini-33fb h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.action_4d22 {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.solid_9579,
.breadcrumb_wide_6ca7,
.large-f8cc {
  margin-bottom: 1.5rem;
}

.solid_9579 h4,
.breadcrumb_wide_6ca7 h4,
.large-f8cc h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.solid_9579 ul,
.breadcrumb_wide_6ca7 ul,
.large-f8cc ul {
  list-style: none;
  padding: 0;
}

.solid_9579 li,
.breadcrumb_wide_6ca7 li,
.large-f8cc li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.solid_9579 li:before,
.breadcrumb_wide_6ca7 li:before,
.large-f8cc li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.hard-5544 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.hard-5544 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;
}

.hard-5544 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.active-d1da { margin: 2rem 0; }
.breadcrumb-6fdd { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.breadcrumb-6fdd h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.wide-34b2 p { margin-bottom: 1rem; line-height: 1.7; }
.wide-34b2 strong { color: var(--text-primary); }
.wide-34b2 ul { list-style: none; padding-left: 0; }
.wide-34b2 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.wide-34b2 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.complex-1758 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.alert_5d4a { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.alert_5d4a:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.short_b478 { font-size: 3rem; margin-bottom: 1rem; }
.alert_5d4a h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.alert_5d4a p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.gold_77a4 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.gold_77a4 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.shadow_pressed_2f11 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.thumbnail_top_e4c4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.footer-daaf { text-align: center; }
.module-hard-234f { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.grid_4a4d { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.table_orange_4f0f { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.filter_b45f { margin: 2rem 0; }
.module-2c62 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.module-2c62 h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.module-2c62 p, .module-2c62 ul { line-height: 1.7; }
.module-2c62 ul { list-style: none; padding-left: 0; }
.module-2c62 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.module-2c62 ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.image-top-16e0 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.message-6dbb { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.block-f60e { text-align: center; }
.brown_39a3 { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.action-774c { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.fluid-5cce { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.layout-gas-b5ad { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.north-5b8d { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.north-5b8d:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.north-5b8d h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.north-5b8d p, .north-5b8d ul { line-height: 1.7; }
.north-5b8d ul { list-style: none; padding-left: 0; }
.north-5b8d ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.north-5b8d ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: f02e */
.phantom-card-h2 {
  padding: 0.4rem;
  font-size: 10px;
  line-height: 1.0;
}
