/* ============================================
   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 */
.dropdown_3058 p,
.cool_6543,
.backdrop_wide_fb1a,
.white-5251,
.box-9351,
.current-c55c,
.basic_fd32,
.hover-d9b3 {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.bronze-ca4e {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.bronze-ca4e > *,
.mask-new-60c6,
.dropdown_3058,
.info-black-9ae7 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .bronze-ca4e {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .bronze-ca4e {
    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 === */
.hidden-3dc9 {
  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 */
.hidden-3dc9.carousel-dynamic-f505 {
  box-shadow: var(--shadow-md);
}

.easy-58e7 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.lite_01b1 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.card-in-e080 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.green_3eab {
  display: none;
}

/* Hide mobile actions on desktop */
.item-1221 {
  display: none;
}

.heading_d2f8 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.heading_d2f8 a:hover,
.heading_d2f8 a.fn-active-9f44 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.label-upper-ef08 {
  margin-left: 1rem;
}

.image-ada7 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.chip_bottom_6c1e,
.content_d0dc {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  color: white !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.chip_bottom_6c1e {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.chip_bottom_6c1e: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;
}

.content_d0dc {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.content_d0dc:hover {
  background: linear-gradient(135deg, #047857 0%, #065f46 100%);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  transform: translateY(-1px);
  text-decoration: none;
}

.chip_bottom_6c1e svg,
.content_d0dc svg {
  flex-shrink: 0;
}

.notification-right-88f5 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.popup-3df5 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.popup-3df5::before,
.popup-3df5::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.popup-3df5::before {
  top: -7px;
}

.popup-3df5::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.heading-bottom-9d91 {
  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 === */
.content_white_8cc5 {
  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);
}

.gallery-59ab {
  margin: 0 0 2rem;
  text-align: center;
}

.widget-static-4e33 {
  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;
}

.widget-static-4e33:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.photo-66ba {
  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);
}

.photo-66ba strong {
  color: var(--primary-color);
  font-weight: 700;
}

.avatar-a359 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.liquid_111d {
  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;
}

.liquid_111d:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.tag_6944 {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.component-cec6 {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.banner-5caf {
  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);
}

.banner-5caf .hovered_7ecb {
  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;
}

.banner-5caf .hovered_7ecb svg {
  flex-shrink: 0;
}

.banner-5caf .link_841b {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.banner-5caf .link_841b: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);
}

.banner-5caf .carousel-0328 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.banner-5caf .carousel-0328: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) {
  .content_white_8cc5 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .widget-static-4e33 {
    max-width: 100%;
  }

  .avatar-a359 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .liquid_111d {
    padding: 1rem;
  }

  .tag_6944 {
    font-size: 1.5rem;
  }

  .component-cec6 {
    font-size: 0.75rem;
  }

  .photo-66ba {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .banner-5caf {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .banner-5caf .hovered_7ecb {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .avatar-a359 {
    grid-template-columns: 1fr;
  }
}

.paper_949f {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.tall_73c3 {
  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 === */
.huge_7ec0 {
  margin-bottom: 2.5rem;
}

.iron_5824 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.paper_949f {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.message_0a8e {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.west_84dd {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.content-blue-5fb0 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.grid-dirty-6a1b {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.widget_upper_1842 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.first_a5af {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.aside_simple_c26a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.aside_simple_c26a svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.silver_108d {
  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);
}

.bottom-0000 {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.focused-e5b0 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hot_fba2 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.carousel_6bca {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.accordion_black_926a {
  display: grid;
  gap: 1rem;
}

.list_7441 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.link_black_755c {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.box-cfa8 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.wrapper-solid-1fd3 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.progress-66e4 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.first-176d {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.first-176d p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.cool_6543 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.link_up_7bc2 {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.overlay_51c5 {
  display: grid;
  gap: 2rem;
}

.photo-outer-d219 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.west_84dd {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.message_0a8e {
  flex: 1;
}

.grid-dirty-6a1b {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.grid-dirty-6a1b a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.link_simple_1411 {
  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;
}

.widget_upper_1842 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.preview_0fa7 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.preview_0fa7 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.preview-b574 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.preview-b574 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.aside_motion_436e {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.aside_motion_436e strong {
  display: block;
  margin-bottom: 0.75rem;
}

.aside_motion_436e ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.aside_motion_436e li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.article_6321 {
  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 === */
.full-422c {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.south_3fc6 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.tall_9612 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.modal-2720 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.modal-2720 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.modal-2720 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.modal-2720 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;
}

.modal-2720 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.modal-2720 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.dropdown_3058 {
  padding: 3rem 0 5rem;
}

.info-black-9ae7 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.info-black-9ae7.avatar_47ac {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.backdrop_wide_fb1a {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.icon_f66c {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.alert_1849 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.alert_1849 h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.action_792c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.heading_bottom_b759 {
  text-align: center;
}

.pagination-02ec {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.light-4b2b {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.texture-light-3391 {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.current-c55c {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.white-5251 {
  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;
}

.white-5251 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.white-5251:hover {
  box-shadow: var(--shadow-lg);
}

.white-5251.fixed-1ea6 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.white-5251 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.white-5251 ul {
  margin: 1rem 0;
}

.white-5251 li {
  margin-bottom: 0.75rem;
}

.down-56e8 {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.video_a05d {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.video_a05d a {
  font-weight: 600;
}

/* === Data Tables === */
.prev_68fd {
  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;
}

.prev_68fd table {
  width: 100%;
  min-width: 600px;
}

.prev_68fd thead {
  background-color: var(--primary-color);
  color: white;
}

.prev_68fd th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.prev_68fd td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.prev_68fd tbody tr:hover {
  background-color: var(--bg-secondary);
}

.prev_68fd tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.status_bottom_006d {
  list-style: none;
  margin: 1.5rem 0;
}

.status_bottom_006d li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.status_bottom_006d li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.bronze-6e09::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-9f44::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 === */
.accent_4b93 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.list-easy-8263 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.list-easy-8263 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.list-easy-8263 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.list-easy-8263 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.accent_4b93 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.basic_fd32 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.basic_fd32::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.motion_023b {
  position: relative;
  margin-bottom: 3rem;
}

.picture_6f0e {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.picture_6f0e .small_5712 {
  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;
}

.up_bb84 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.up_bb84 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.up_bb84 ul {
  margin: 1rem 0;
}

.up_bb84 li {
  margin-bottom: 0.75rem;
}

.overlay_slow_b96d {
  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 === */
.modal_clean_ec78 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.modal_clean_ec78 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.selected_682b {
  list-style: none;
  margin: 1.5rem 0;
}

.selected_682b li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.selected_682b a {
  font-weight: 600;
}

.slider_9d5a {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.hover-d9b3 {
  margin: 2.5rem 0;
}

.breadcrumb-inner-9959 {
  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;
}

.breadcrumb-inner-9959:hover {
  box-shadow: var(--shadow-lg);
}

.breadcrumb-inner-9959.focused-c18a {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.gallery-1a48 {
  flex-shrink: 0;
}

.gallery-1a48 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);
}

.red-73d0 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.dropdown_c25e,
.shadow-prev-3ac7,
.layout-e929 {
  width: 100%;
  margin: 1.5rem 0;
}

.backdrop_medium_d80b {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.backdrop_medium_d80b strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.lite-9a36 {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.lite-9a36 strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.gold_cba1 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.gold_cba1 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.hero_old_1703 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.feature-center-a0f6 {
  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;
}

.feature-center-a0f6:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.feature-center-a0f6.search_d24c {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.feature-center-a0f6 .thick-35d4 {
  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;
}

.feature-center-a0f6 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.accent_prev_e326 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.focus_bab1 {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.focus_bab1 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.next_89ae {
  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 === */
.hovered_7ecb {
  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;
}

.link_841b {
  background-color: var(--primary-color);
  color: white;
}

.link_841b:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.carousel-0328 {
  background-color: var(--text-secondary);
  color: white;
}

.carousel-0328:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.alert-over-cc5b {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.alert-over-cc5b:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.module-dim-0cff {
  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;
}

.module-dim-0cff:hover {
  background-color: var(--primary-dark);
}

.picture-2fba {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.next-9700 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.popup-e3c5 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.header-black-9488 {
  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 === */
.search-a1ec {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.aside_lite_47fc {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.aside_lite_47fc h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.shade_active_3cf6 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.notification-rough-848f {
  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;
}

.cold_6868 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.block_312c {
  list-style: none;
  counter-reset: rank-counter;
}

.block_312c li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.block_312c 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;
}

.disabled_cool_1ead {
  list-style: none;
}

.disabled_cool_1ead li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.accent-lower-d535 {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.nav_a8ec {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.nav_a8ec .picture-e282 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.nav_a8ec .hovered-d588 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.element_35e6 {
  margin-top: 3rem;
}

.alert_bdae {
  width: 100%;
}

.logo-cacc {
  background-color: #fef3c7;
}

.section_e49a {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.wrapper-east-5192 {
  margin: 3rem 0;
}

.prev-df9a {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.primary-7152 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.primary-7152:hover {
  box-shadow: var(--shadow-lg);
}

.primary-7152.info-down-66ac {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.simple_cce3 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.secondary-5ece strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.secondary-5ece span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.badge-pressed-d52b {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.primary-7152 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.blue_43a4 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.smooth_0026 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.overlay_a3ae {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.tabs_light_0c39 {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.slow_4bb8 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.summary_da87 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.sort-fluid-ef8f {
  max-width: 900px;
  margin: 0 auto;
}

.layout-8f7f {
  margin: 2rem 0;
}

.mini-6d67 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.mini-6d67 summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.mini-6d67 summary::-webkit-details-marker {
  display: none;
}

.mini-6d67 summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.avatar-6620 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.mini-6d67[open] .avatar-6620 {
  transform: rotate(45deg);
}

.highlight-2a19 {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.highlight-2a19 p:last-child {
  margin-bottom: 0;
}

.section-b75d {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.mask_fast_9fb5 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.input-a5cb {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.input-a5cb p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.input-a5cb .hovered_7ecb {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.hero_simple_4c3b {
  max-width: 900px;
  margin: 0 auto;
}

.photo_c203 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.dynamic_380f {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.dynamic_380f.fn-success-9f44 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.light-26c6 {
  font-size: 3rem;
  line-height: 1;
}

.brown-02fe h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.left_f750 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.layout-fac9,
.border_fixed_a48a {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.layout-fac9 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.border_fixed_a48a h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.caption-red-3d3e,
.shade-middle-291b {
  margin: 1.5rem 0;
}

.caption-red-3d3e li,
.shade-middle-291b li {
  margin-bottom: 1rem;
}

.motion_4f1d {
  margin: 3rem 0;
}

.disabled_ac50 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.disabled_ac50 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.disabled_ac50 ol {
  margin: 1rem 0;
}

.disabled_ac50 li {
  margin-bottom: 0.75rem;
}

.huge-8b79 {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.link_down_a6d7 {
  margin: 2rem 0;
}

.pro_c876 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.small-0a22 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.photo_0ba8 {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.blue_1dea {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.pagination_white_b72e {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.tabs-94e1 {
  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;
}

.tabs-94e1 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.content-blue-5fb0 {
  flex: 1;
}

.content-blue-5fb0 h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.smooth-0d8e {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.dynamic_7344 p {
  margin-bottom: 1rem;
}

.block-4a51 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.photo_gas_13e7 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.bright-8d0e {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.bright-8d0e a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.primary-a68a h3 {
  margin-bottom: 1.5rem;
}

.footer_3099 {
  display: grid;
  gap: 2rem;
}

.accent-66fe {
  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;
}

.accent-66fe img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.accent-66fe h4 {
  margin: 0 0 0.25rem;
}

.accent-66fe p {
  margin: 0;
  font-size: 0.9375rem;
}

.overlay_selected_66bd {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.column_top_1e59 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.column_top_1e59 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.column_top_1e59 ul {
  margin: 1.5rem 0;
}

.column_top_1e59 li {
  margin-bottom: 0.75rem;
}

.green-6a3d {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.right_0b08 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.light_11a3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.thumbnail-57b0 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.thumbnail-57b0 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.summary-50d2 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.summary-50d2 a {
  color: rgba(255, 255, 255, 0.8);
}

.video-green-f571 {
  list-style: none;
}

.video-green-f571 li {
  margin-bottom: 0.75rem;
}

.video-green-f571 a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.video-green-f571 a:hover {
  color: white;
}

.hero-a5e3 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.heading-mini-93d0 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.widget-6fff {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.hidden-wide-0ce8 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.simple-f237 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .bronze-ca4e {
    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;
  }

  .black-1bf3 {
    font-size: 1.5rem !important;
  }

  .iron_5824 {
    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 */
  .white-5251,
  .box-9351,
  .up_bb84,
  .red-73d0,
  .simple_cce3,
  .primary-7152,
  .highlight-2a19,
  .photo-66ba,
  .cool_6543,
  .backdrop_wide_fb1a {
    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 */
  .paper_949f {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .message_0a8e {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .west_84dd {
    flex-shrink: 0;
  }

  .content-blue-5fb0 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .grid-dirty-6a1b,
  .widget_upper_1842 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .widget_upper_1842 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .card-in-e080 {
    display: none;
  }

  /* Show mobile actions */
  .item-1221 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .focused-5ec3 {
    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;
  }

  .focused-5ec3 svg {
    flex-shrink: 0;
  }

  .focused-5ec3 .first-88b3 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .focused-5ec3 .active_d54c {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .tag-5cd3 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .aside_yellow_9426 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .focused-5ec3:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .green_3eab {
    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;
  }

  .green_3eab.fn-active-9f44 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .green_3eab li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .green_3eab li:last-child {
    border-bottom: none;
  }

  .green_3eab a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .heading_d2f8 {
    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_d2f8 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .heading_d2f8 li:last-child {
    border-bottom: none;
  }

  .heading_d2f8 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .label-upper-ef08 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .image-ada7 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .chip_bottom_6c1e,
  .content_d0dc {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .chip_bottom_6c1e {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .content_d0dc {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .heading_d2f8.fn-active-9f44 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .notification-right-88f5 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .hidden-3dc9 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .easy-58e7 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .heading-bottom-9d91 {
    margin-top: 0;
  }

  /* Hero section */
  .heading-bottom-9d91 {
    padding: 2rem 0 1.5rem;
  }

  .iron_5824 {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .cool_6543 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .content_white_8cc5 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .widget-static-4e33 {
    max-width: 100%;
    border-radius: 8px;
  }

  .avatar-a359 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .liquid_111d {
    padding: 1rem;
  }

  .tag_6944 {
    font-size: 1.5rem;
  }

  .component-cec6 {
    font-size: 0.75rem;
  }

  .photo-66ba {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .banner-5caf {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .banner-5caf .hovered_7ecb {
    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 */
  .tall_9612 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .breadcrumb-inner-9959 {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .gallery-1a48 {
    margin-bottom: 1rem;
  }

  /* Author */
  .photo-outer-d219 {
    flex-direction: column;
  }

  .tabs-94e1 {
    flex-direction: column;
  }

  /* Quotes */
  .simple_cce3 {
    flex-direction: column;
  }

  /* Pros/Cons */
  .left_f750 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .blue_1dea {
    flex-direction: column;
  }

  .blue_1dea .hovered_7ecb {
    width: 100%;
  }

  /* Version comparison */
  .hero_old_1703 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .search-a1ec {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .light_11a3 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .widget-6fff {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .prev_68fd,
  .shadow-prev-3ac7,
  .avatar-1568,
  .alert_bdae,
  .dropdown_c25e,
  .layout-e929 {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .prev_68fd table,
  .shadow-prev-3ac7 table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .next_89ae {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .bronze-ca4e {
    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;
  }

  .black-1bf3 {
    font-size: 1.25rem !important;
  }

  .iron_5824 {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .hidden-3dc9 {
    position: fixed;
  }

  .easy-58e7 {
    padding: 0.625rem 0;
  }

  .lite_01b1 img {
    height: 26px;
  }

  .heading_d2f8 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .green_3eab {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .focused-5ec3 {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .focused-5ec3 svg {
    width: 18px;
    height: 18px;
  }

  .focused-5ec3 .first-88b3 {
    font-size: 0.7rem;
  }

  .focused-5ec3 .active_d54c {
    font-size: 0.65rem;
  }

  .chip_bottom_6c1e,
  .content_d0dc {
    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, .bronze-ca4e, .mask-new-60c6, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .content_white_8cc5 {
    padding: 1rem;
  }

  .avatar-a359 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .liquid_111d {
    padding: 0.875rem;
  }

  .tag_6944 {
    font-size: 1.25rem;
  }

  .banner-5caf .hovered_7ecb {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .iron_5824 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .hovered_7ecb {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .picture-2fba {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .breadcrumb-inner-9959 {
    padding: 1rem;
  }

  .gallery-1a48 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .white-5251,
  .outer_6fc3,
  .article_short_61cb,
  .list_next_56d3 {
    padding: 1rem;
  }
}

@media print {
  .hidden-3dc9,
  .full-422c,
  .notification-right-88f5,
  .hovered_7ecb,
  .right_0b08 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .bronze-ca4e {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.thick-1371 {
  margin-bottom: 3rem;
  text-align: center;
}

.black-1bf3 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.disabled-f989 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.hovered_3830,
.modal-tall-1c18 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.orange_23d5 {
  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;
}

.orange_23d5:hover {
  transform: translateY(-5px);
}

.orange_23d5 strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.orange_23d5 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.action_01d8 {
  margin: 3rem 0;
}

.complex-44e1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery_last_4c00 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.gallery_last_4c00:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.right-2e29 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.sort-9e9c {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.focused_6844 {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.caption-fixed-e091 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.medium_f5bf {
  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;
}

.medium_f5bf:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.medium_f5bf.sort-orange-1dc0 {
  border-left: 4px solid var(--primary-color);
}

.secondary_tall_69ff {
  flex-shrink: 0;
}

.secondary_tall_69ff svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.tag_wood_4757 {
  flex: 1;
}

.tag_wood_4757 h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.tabs-solid-3c3e {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.block_soft_4c63,
.popup_e94a,
.up_5433 {
  margin-bottom: 1.5rem;
}

.block_soft_4c63 h4,
.popup_e94a h4,
.up_5433 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.block_soft_4c63 ul,
.popup_e94a ul,
.up_5433 ul {
  list-style: none;
  padding: 0;
}

.block_soft_4c63 li,
.popup_e94a li,
.up_5433 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.block_soft_4c63 li:before,
.popup_e94a li:before,
.up_5433 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.outline-0378 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.outline-0378 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;
}

.outline-0378 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.item_87d3 { margin: 2rem 0; }
.hard-bc32 { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.hard-bc32 h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.texture-1f1b p { margin-bottom: 1rem; line-height: 1.7; }
.texture-1f1b strong { color: var(--text-primary); }
.texture-1f1b ul { list-style: none; padding-left: 0; }
.texture-1f1b ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.texture-1f1b ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.link-bronze-b73a { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.icon_simple_c900 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.icon_simple_c900:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.notification-wide-ab8d { font-size: 3rem; margin-bottom: 1rem; }
.icon_simple_c900 h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.icon_simple_c900 p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.blue-1ce6 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.blue-1ce6 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.green-e378 { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.progress-ce6c { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.banner_pink_2eee { text-align: center; }
.heading-stale-447b { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.thumbnail-729d { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.hover_warm_348d { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.red_569c { margin: 2rem 0; }
.picture-down-f5ad { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.picture-down-f5ad h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.picture-down-f5ad p, .picture-down-f5ad ul { line-height: 1.7; }
.picture-down-f5ad ul { list-style: none; padding-left: 0; }
.picture-down-f5ad ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.picture-down-f5ad ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.mask-4933 { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.advanced-756a { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.feature-924c { text-align: center; }
.description-dark-b5ff { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.video_huge_04ce { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.tooltip_liquid_e300 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.hero_95f6 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.frame-6cbd { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.frame-6cbd:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.frame-6cbd h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.frame-6cbd p, .frame-6cbd ul { line-height: 1.7; }
.frame-6cbd ul { list-style: none; padding-left: 0; }
.frame-6cbd ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.frame-6cbd ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 4925 */
.phantom-card-k5 {
  padding: 0.4rem;
  font-size: 14px;
  line-height: 1.1;
}
