/* ============================================
   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 */
.pink_d29b p,
.fresh-4642,
.preview-5b88,
.component-a612,
.feature-blue-5e42,
.shade_large_0685,
.hard-99b7,
.paper-d749 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.filter_d87a {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.filter_d87a > *,
.form-first-5b2c,
.pink_d29b,
.dropdown_bronze_6fdb {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .filter_d87a {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .filter_d87a {
    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 === */
.warm_f4f7 {
  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 */
.warm_f4f7.heading-clean-9e89 {
  box-shadow: var(--shadow-md);
}

.overlay-light-d2d2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo-dynamic-3ef9 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.middle-ce99 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.carousel_1d99 {
  display: none;
}

/* Hide mobile actions on desktop */
.popup-hovered-d357 {
  display: none;
}

.mask_ce86 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.mask_ce86 a:hover,
.mask_ce86 a.fn-active-b940 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.outline_a42d {
  margin-left: 1rem;
}

.soft_1e0d {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.tooltip-6139,
.small-d26f {
  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;
}

.tooltip-6139 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.tooltip-6139: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;
}

.small-d26f {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.small-d26f: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;
}

.tooltip-6139 svg,
.small-d26f svg {
  flex-shrink: 0;
}

.glass_0c01 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.tooltip_black_1127 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.tooltip_black_1127::before,
.tooltip_black_1127::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.tooltip_black_1127::before {
  top: -7px;
}

.tooltip_black_1127::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.cool_2bbe {
  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 === */
.picture-right-6c1e {
  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);
}

.form-right-688e {
  margin: 0 0 2rem;
  text-align: center;
}

.gradient-46fb {
  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;
}

.gradient-46fb:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.overlay-hard-e807 {
  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);
}

.overlay-hard-e807 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.north-260b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.mask_cd02 {
  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;
}

.mask_cd02:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.filter-wood-cf2b {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.shade-south-e174 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.stone-1d76 {
  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);
}

.stone-1d76 .box_9efd {
  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;
}

.stone-1d76 .box_9efd svg {
  flex-shrink: 0;
}

.stone-1d76 .hero_fbe9 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.stone-1d76 .hero_fbe9: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);
}

.stone-1d76 .first_a3c2 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.stone-1d76 .first_a3c2: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) {
  .picture-right-6c1e {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .gradient-46fb {
    max-width: 100%;
  }

  .north-260b {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .mask_cd02 {
    padding: 1rem;
  }

  .filter-wood-cf2b {
    font-size: 1.5rem;
  }

  .shade-south-e174 {
    font-size: 0.75rem;
  }

  .overlay-hard-e807 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .stone-1d76 {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .stone-1d76 .box_9efd {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .north-260b {
    grid-template-columns: 1fr;
  }
}

.steel-e6f5 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.photo_stale_5d66 {
  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 === */
.label-stale-0420 {
  margin-bottom: 2.5rem;
}

.box_short_a9f9 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.steel-e6f5 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.purple-0c70 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rough_5329 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.huge_31ef {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.steel-03ab {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.layout_2bc3 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.disabled_hot_addc {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.medium-0802 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.medium-0802 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.header-d299 {
  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);
}

.silver_f953 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.stone_4633 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.component_short_fdf1 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.surface_e62d {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.hot-48df {
  display: grid;
  gap: 1rem;
}

.sort-2258 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.accent_1f4d {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.label_selected_0b87 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.overlay_fixed_d951 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.stale_8d5f {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.chip_dadb {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.chip_dadb p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.fresh-4642 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.highlight_over_960a {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.slider-south-12f2 {
  display: grid;
  gap: 2rem;
}

.photo-a0e3 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.rough_5329 {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.purple-0c70 {
  flex: 1;
}

.steel-03ab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.steel-03ab a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.surface-first-84b3 {
  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;
}

.layout_2bc3 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.disabled_fixed_1349 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.disabled_fixed_1349 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.center-7c4f {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.center-7c4f a {
  font-size: 0.875rem;
  font-weight: 500;
}

.description-light-9239 {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.description-light-9239 strong {
  display: block;
  margin-bottom: 0.75rem;
}

.description-light-9239 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.description-light-9239 li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.list_tiny_ab49 {
  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 === */
.description-7b05 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.tertiary-0e39 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.steel_87e2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.next-15e6 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.next-15e6 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.next-15e6 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.next-15e6 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;
}

.next-15e6 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.next-15e6 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.pink_d29b {
  padding: 3rem 0 5rem;
}

.dropdown_bronze_6fdb {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.dropdown_bronze_6fdb.aside_a31d {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.preview-5b88 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.up_a89b {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.alert_37cf {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.alert_37cf h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.full_f20b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.highlight_d98d {
  text-align: center;
}

.photo_737a {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.block_7140 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.icon_small_69cf {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.shade_large_0685 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.component-a612 {
  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;
}

.component-a612 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.component-a612:hover {
  box-shadow: var(--shadow-lg);
}

.component-a612.description_bfa3 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.component-a612 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.component-a612 ul {
  margin: 1rem 0;
}

.component-a612 li {
  margin-bottom: 0.75rem;
}

.paper_4cdd {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.wide-d0d5 {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.wide-d0d5 a {
  font-weight: 600;
}

/* === Data Tables === */
.menu_128a {
  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;
}

.menu_128a table {
  width: 100%;
  min-width: 600px;
}

.menu_128a thead {
  background-color: var(--primary-color);
  color: white;
}

.menu_128a th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.menu_128a td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.menu_128a tbody tr:hover {
  background-color: var(--bg-secondary);
}

.menu_128a tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.caption_dark_43fc {
  list-style: none;
  margin: 1.5rem 0;
}

.caption_dark_43fc li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.caption_dark_43fc li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.motion-d6b6::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-b940::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 === */
.rough_658d {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.dropdown-11e5 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.dropdown-11e5 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.dropdown-11e5 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.dropdown-11e5 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.rough_658d blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.hard-99b7 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.hard-99b7::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.accordion_fresh_0dd5 {
  position: relative;
  margin-bottom: 3rem;
}

.section-d6a1 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.section-d6a1 .hard_c38b {
  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;
}

.plasma_7839 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.plasma_7839 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.plasma_7839 ul {
  margin: 1rem 0;
}

.plasma_7839 li {
  margin-bottom: 0.75rem;
}

.accent_3a11 {
  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 === */
.gradient-c4ea {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.gradient-c4ea h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.gas_8209 {
  list-style: none;
  margin: 1.5rem 0;
}

.gas_8209 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.gas_8209 a {
  font-weight: 600;
}

.pro_921f {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.paper-d749 {
  margin: 2.5rem 0;
}

.advanced-007f {
  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;
}

.advanced-007f:hover {
  box-shadow: var(--shadow-lg);
}

.advanced-007f.aside_center_bef3 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.shade_large_2491 {
  flex-shrink: 0;
}

.shade_large_2491 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);
}

.middle_7d5c h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.prev_010a,
.hover-dark-163d,
.preview-dfcb {
  width: 100%;
  margin: 1.5rem 0;
}

.wide-8212 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.wide-8212 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.title-black-52f2 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.title-black-52f2 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.header-f6e2 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.header-f6e2 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.gold-61cf {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.picture-67f8 {
  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;
}

.picture-67f8:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.picture-67f8.breadcrumb-copper-68b7 {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.picture-67f8 .alert-hard-72fd {
  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;
}

.picture-67f8 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.orange_ee24 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.narrow-54fc {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.narrow-54fc label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.accent_pink_0559 {
  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 === */
.box_9efd {
  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;
}

.hero_fbe9 {
  background-color: var(--primary-color);
  color: white;
}

.hero_fbe9:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.first_a3c2 {
  background-color: var(--text-secondary);
  color: white;
}

.first_a3c2:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.backdrop-current-da1e {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.backdrop-current-da1e:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.message_0618 {
  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;
}

.message_0618:hover {
  background-color: var(--primary-dark);
}

.outline_in_c74a {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.footer-copper-b818 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.background_03e5 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.content_e4dd {
  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 === */
.form-middle-d473 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.module_dynamic_bb31 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.module_dynamic_bb31 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.frame-hot-f2a7 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.search_light_f0ee {
  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;
}

.mini_962e {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.outline_539b {
  list-style: none;
  counter-reset: rank-counter;
}

.outline_539b li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.outline_539b 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;
}

.focused_e544 {
  list-style: none;
}

.focused_e544 li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.yellow_13e2 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.advanced_b7d0 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.advanced_b7d0 .cool_0c63 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.advanced_b7d0 .dropdown_7c95 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.item_dynamic_af45 {
  margin-top: 3rem;
}

.gradient-c5f5 {
  width: 100%;
}

.surface_left_c4a1 {
  background-color: #fef3c7;
}

.border_ab07 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.nav-hot-88f0 {
  margin: 3rem 0;
}

.input-3863 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.outline-pro-4855 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.outline-pro-4855:hover {
  box-shadow: var(--shadow-lg);
}

.outline-pro-4855.input-2122 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.element_2b1d {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.mask-left-0d4d strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.mask-left-0d4d span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.focus_out_b361 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.outline-pro-4855 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.large-e963 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.rough-dfe1 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.thumbnail_3545 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.highlight-5986 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.detail_static_8a67 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.large_480d {
  margin-top: 1rem;
}

/* === FAQ Section === */
.blue-c318 {
  max-width: 900px;
  margin: 0 auto;
}

.box_bronze_6910 {
  margin: 2rem 0;
}

.link-brown-5370 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.link-brown-5370 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.link-brown-5370 summary::-webkit-details-marker {
  display: none;
}

.link-brown-5370 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.detail_cold_1c83 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.link-brown-5370[open] .detail_cold_1c83 {
  transform: rotate(45deg);
}

.notice_5d6d {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.notice_5d6d p:last-child {
  margin-bottom: 0;
}

.tall-cef9 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.upper-fcde {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.pressed-0973 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.pressed-0973 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.pressed-0973 .box_9efd {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.plasma-b38b {
  max-width: 900px;
  margin: 0 auto;
}

.accent_dirty_0388 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.block_dirty_f936 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.block_dirty_f936.fn-success-b940 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.component-ffe8 {
  font-size: 3rem;
  line-height: 1;
}

.large_d582 h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.tooltip-small-29ee {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.steel-6e7f,
.text_01e9 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.steel-6e7f h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.text_01e9 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.menu_34d6,
.slider-red-0672 {
  margin: 1.5rem 0;
}

.menu_34d6 li,
.slider-red-0672 li {
  margin-bottom: 1rem;
}

.fast-f825 {
  margin: 3rem 0;
}

.banner-hovered-421a {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.banner-hovered-421a h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.banner-hovered-421a ol {
  margin: 1rem 0;
}

.banner-hovered-421a li {
  margin-bottom: 0.75rem;
}

.link-light-30e6 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.mask-motion-dffd {
  margin: 2rem 0;
}

.title_pink_6a5e {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.border_silver_6df7 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.hero_static_7f80 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.list-f8e7 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.table_e135 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.dropdown-4fc1 {
  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;
}

.dropdown-4fc1 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.huge_31ef {
  flex: 1;
}

.huge_31ef h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.card_040d {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.surface_c3b5 p {
  margin-bottom: 1rem;
}

.middle-fc7a {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.upper-0308 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.center-dfdd {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.center-dfdd a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.overlay_d1ea h3 {
  margin-bottom: 1.5rem;
}

.left-087e {
  display: grid;
  gap: 2rem;
}

.black_63a2 {
  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;
}

.black_63a2 img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.black_63a2 h4 {
  margin: 0 0 0.25rem;
}

.black_63a2 p {
  margin: 0;
  font-size: 0.9375rem;
}

.gallery_next_d8b4 {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.row_warm_9f04 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.row_warm_9f04 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.row_warm_9f04 ul {
  margin: 1.5rem 0;
}

.row_warm_9f04 li {
  margin-bottom: 0.75rem;
}

.stale_e324 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.under_35c5 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.search-6872 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.caption_a8c0 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.caption_a8c0 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.dropdown_a5d1 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.dropdown_a5d1 a {
  color: rgba(255, 255, 255, 0.8);
}

.surface_bright_7444 {
  list-style: none;
}

.surface_bright_7444 li {
  margin-bottom: 0.75rem;
}

.surface_bright_7444 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.surface_bright_7444 a:hover {
  color: white;
}

.backdrop-a7ab {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.lower_f315 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.steel_dbee {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.gallery-3afa {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.inner-709c {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .filter_d87a {
    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;
  }

  .highlight-5ede {
    font-size: 1.5rem !important;
  }

  .box_short_a9f9 {
    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 */
  .component-a612,
  .feature-blue-5e42,
  .plasma_7839,
  .middle_7d5c,
  .element_2b1d,
  .outline-pro-4855,
  .notice_5d6d,
  .overlay-hard-e807,
  .fresh-4642,
  .preview-5b88 {
    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 */
  .steel-e6f5 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .purple-0c70 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .rough_5329 {
    flex-shrink: 0;
  }

  .huge_31ef {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .steel-03ab,
  .layout_2bc3 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .layout_2bc3 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .middle-ce99 {
    display: none;
  }

  /* Show mobile actions */
  .popup-hovered-d357 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .stone_f34a {
    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;
  }

  .stone_f34a svg {
    flex-shrink: 0;
  }

  .stone_f34a .notification_9106 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .stone_f34a .dim_fcdd {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .advanced_e7b8 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .heading-0dc5 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .stone_f34a:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .carousel_1d99 {
    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;
  }

  .carousel_1d99.fn-active-b940 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .carousel_1d99 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .carousel_1d99 li:last-child {
    border-bottom: none;
  }

  .carousel_1d99 a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .mask_ce86 {
    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;
  }

  .mask_ce86 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .mask_ce86 li:last-child {
    border-bottom: none;
  }

  .mask_ce86 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .outline_a42d {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .soft_1e0d {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .tooltip-6139,
  .small-d26f {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .tooltip-6139 {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .small-d26f {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .mask_ce86.fn-active-b940 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .glass_0c01 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .warm_f4f7 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .overlay-light-d2d2 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .cool_2bbe {
    margin-top: 0;
  }

  /* Hero section */
  .cool_2bbe {
    padding: 2rem 0 1.5rem;
  }

  .box_short_a9f9 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .fresh-4642 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .picture-right-6c1e {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .gradient-46fb {
    max-width: 100%;
    border-radius: 8px;
  }

  .north-260b {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .mask_cd02 {
    padding: 1rem;
  }

  .filter-wood-cf2b {
    font-size: 1.5rem;
  }

  .shade-south-e174 {
    font-size: 0.75rem;
  }

  .overlay-hard-e807 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .stone-1d76 {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .stone-1d76 .box_9efd {
    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 */
  .steel_87e2 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .advanced-007f {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .shade_large_2491 {
    margin-bottom: 1rem;
  }

  /* Author */
  .photo-a0e3 {
    flex-direction: column;
  }

  .dropdown-4fc1 {
    flex-direction: column;
  }

  /* Quotes */
  .element_2b1d {
    flex-direction: column;
  }

  /* Pros/Cons */
  .tooltip-small-29ee {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .list-f8e7 {
    flex-direction: column;
  }

  .list-f8e7 .box_9efd {
    width: 100%;
  }

  /* Version comparison */
  .gold-61cf {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .form-middle-d473 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .search-6872 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .steel_dbee {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .menu_128a,
  .hover-dark-163d,
  .first_8acb,
  .gradient-c5f5,
  .prev_010a,
  .preview-dfcb {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .menu_128a table,
  .hover-dark-163d table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .accent_pink_0559 {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .filter_d87a {
    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;
  }

  .highlight-5ede {
    font-size: 1.25rem !important;
  }

  .box_short_a9f9 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .warm_f4f7 {
    position: fixed;
  }

  .overlay-light-d2d2 {
    padding: 0.625rem 0;
  }

  .logo-dynamic-3ef9 img {
    height: 26px;
  }

  .mask_ce86 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .carousel_1d99 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .stone_f34a {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .stone_f34a svg {
    width: 18px;
    height: 18px;
  }

  .stone_f34a .notification_9106 {
    font-size: 0.7rem;
  }

  .stone_f34a .dim_fcdd {
    font-size: 0.65rem;
  }

  .tooltip-6139,
  .small-d26f {
    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, .filter_d87a, .form-first-5b2c, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .picture-right-6c1e {
    padding: 1rem;
  }

  .north-260b {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .mask_cd02 {
    padding: 0.875rem;
  }

  .filter-wood-cf2b {
    font-size: 1.25rem;
  }

  .stone-1d76 .box_9efd {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .box_short_a9f9 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .box_9efd {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .outline_in_c74a {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .advanced-007f {
    padding: 1rem;
  }

  .shade_large_2491 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .component-a612,
  .tooltip-over-d0e0,
  .basic-0ec7,
  .banner_current_23a0 {
    padding: 1rem;
  }
}

@media print {
  .warm_f4f7,
  .description-7b05,
  .glass_0c01,
  .box_9efd,
  .under_35c5 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .filter_d87a {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.item-huge-7682 {
  margin-bottom: 3rem;
  text-align: center;
}

.highlight-5ede {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.narrow_1add {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.progress_green_a33a,
.slider-thick-2696 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.tall_3e84 {
  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;
}

.tall_3e84:hover {
  transform: translateY(-5px);
}

.tall_3e84 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.tall_3e84 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.current_066f {
  margin: 3rem 0;
}

.form-slow-4c71 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.red_f596 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.red_f596:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.tabs_cde6 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.surface-upper-be35 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.hot-4a95 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.green-ad7d {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.narrow_0fca {
  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;
}

.narrow_0fca:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.narrow_0fca.summary-3cc6 {
  border-left: 4px solid var(--primary-color);
}

.chip-cool-c096 {
  flex-shrink: 0;
}

.chip-cool-c096 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.purple-c410 {
  flex: 1;
}

.purple-c410 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.row-purple-de7f {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.out-981f,
.warm_ec5c,
.widget-4519 {
  margin-bottom: 1.5rem;
}

.out-981f h4,
.warm_ec5c h4,
.widget-4519 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.out-981f ul,
.warm_ec5c ul,
.widget-4519 ul {
  list-style: none;
  padding: 0;
}

.out-981f li,
.warm_ec5c li,
.widget-4519 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.out-981f li:before,
.warm_ec5c li:before,
.widget-4519 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.chip_036a {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.chip_036a 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;
}

.chip_036a a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.border-e9c0 { margin: 2rem 0; }
.feature_tiny_e98f { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.feature_tiny_e98f h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.surface_fe17 p { margin-bottom: 1rem; line-height: 1.7; }
.surface_fe17 strong { color: var(--text-primary); }
.surface_fe17 ul { list-style: none; padding-left: 0; }
.surface_fe17 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.surface_fe17 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.tabs-e75f { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.motion_9a6c { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.motion_9a6c:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.widget-dynamic-cde1 { font-size: 3rem; margin-bottom: 1rem; }
.motion_9a6c h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.motion_9a6c p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.frame-aabf { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.frame-aabf span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.info_first_63e2 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.white-2605 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.first-70c9 { text-align: center; }
.gas_59cb { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.paragraph_62fa { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.item_9e4a { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.border_a460 { margin: 2rem 0; }
.row-d8af { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.row-d8af h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.row-d8af p, .row-d8af ul { line-height: 1.7; }
.row-d8af ul { list-style: none; padding-left: 0; }
.row-d8af ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.row-d8af ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.status_bcd4 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.card-gas-49e7 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.photo-next-2e37 { text-align: center; }
.list_876c { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.image_huge_080c { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.title_soft_08b5 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.logo_dirty_1105 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.simple_0acc { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.simple_0acc:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.simple_0acc h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.simple_0acc p, .simple_0acc ul { line-height: 1.7; }
.simple_0acc ul { list-style: none; padding-left: 0; }
.simple_0acc ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.simple_0acc ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 7007 */
.shadow-element-e9 {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.3;
}
