/* ============================================
   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 */
.tertiary_92da p,
.east_0f47,
.list_4662,
.sidebar-new-87e5,
.card-last-cde5,
.popup-a7cc,
.alert-1333,
.frame_focused_edab {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* === Container === */
.lite_13c1 {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* All content containers must not overflow */
.lite_13c1 > *,
.section-2d84,
.tertiary_92da,
.highlight_7ec9 {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .lite_13c1 {
    padding: 0 1.25rem;
  }
  
  /* Force all elements to fit within viewport */
  * {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .lite_13c1 {
    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 === */
.pattern-2f89 {
  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 */
.pattern-2f89.lower-34ed {
  box-shadow: var(--shadow-md);
}

.icon-solid-e947 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.icon_hard_2551 img {
  height: 32px;
  width: auto;
}

/* Desktop Menu */
.backdrop_bronze_ab40 {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Hide mobile menu on desktop */
.tertiary-da2e {
  display: none;
}

/* Hide mobile actions on desktop */
.status-9e1d {
  display: none;
}

.hovered-84a6 a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.hovered-84a6 a:hover,
.hovered-84a6 a.fn-active-17f2 {
  color: var(--primary-color);
  text-decoration: none;
}

/* Login button in navigation */
.copper_0cdb {
  margin-left: 1rem;
}

.module_hard_7406 {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.orange-3edb,
.background-4411 {
  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;
}

.orange-3edb {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.orange-3edb: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;
}

.background-4411 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.background-4411: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;
}

.orange-3edb svg,
.background-4411 svg {
  flex-shrink: 0;
}

.gallery_stale_1973 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.thick-f9d6 {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: relative;
  transition: background-color 0.3s ease;
}

.thick-f9d6::before,
.thick-f9d6::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: transform 0.3s ease;
}

.thick-f9d6::before {
  top: -7px;
}

.thick-f9d6::after {
  bottom: -7px;
}

/* === Hero Article Section === */
.under-47b8 {
  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 === */
.box-c741 {
  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);
}

.next_0093 {
  margin: 0 0 2rem;
  text-align: center;
}

.icon-hovered-8e83 {
  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;
}

.icon-hovered-8e83:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.orange_5121 {
  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);
}

.orange_5121 strong {
  color: var(--primary-color);
  font-weight: 700;
}

.smooth_9d46 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.aside_new_7ed2 {
  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;
}

.aside_new_7ed2:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.short_7c9e {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.media-7a8d {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* CTA Buttons for Login & Register */
.brown-8adb {
  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);
}

.brown-8adb .logo_thick_baa3 {
  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;
}

.brown-8adb .logo_thick_baa3 svg {
  flex-shrink: 0;
}

.brown-8adb .easy-002b {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.brown-8adb .easy-002b: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);
}

.brown-8adb .motion-9f3c {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.brown-8adb .motion-9f3c: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) {
  .box-c741 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .icon-hovered-8e83 {
    max-width: 100%;
  }

  .smooth_9d46 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .aside_new_7ed2 {
    padding: 1rem;
  }

  .short_7c9e {
    font-size: 1.5rem;
  }

  .media-7a8d {
    font-size: 0.75rem;
  }

  .orange_5121 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .brown-8adb {
    flex-direction: column;
    gap: 0.875rem;
    padding-top: 1.5rem;
  }

  .brown-8adb .logo_thick_baa3 {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .smooth_9d46 {
    grid-template-columns: 1fr;
  }
}

.red_9501 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.item_tall_9e88 {
  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 === */
.detail_bright_ae24 {
  margin-bottom: 2.5rem;
}

.icon-lite-3e8f {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.red_9501 {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.hover-hovered-4975 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.yellow-ce8e {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary-color);
}

.full-988d {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.message_a121 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.filter_dark_92e9 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.thumbnail-warm-92b9 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.left_0d28 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.left_0d28 svg {
  flex-shrink: 0;
}

/* === Review Score Banner === */
.wrapper_fluid_fa68 {
  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);
}

.gold_e53d {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-color);
}

.mask_6e1e {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.button-3164 {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.25rem;
}

.brown-9ced {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.panel-90cc {
  display: grid;
  gap: 1rem;
}

.fixed_42d6 {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 1rem;
  align-items: center;
}

.motion_529c {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.soft-bb47 {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.secondary-55e9 {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.tag-6355 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  text-align: right;
}

.box-3508 {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.box-3508 p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.east_0f47 {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 2rem;
}

/* === Author Byline === */
.fixed-ab1b {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}

.card-action-9ae6 {
  display: grid;
  gap: 2rem;
}

.out-94e6 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.yellow-ce8e {
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-color);
}

.hover-hovered-4975 {
  flex: 1;
}

.message_a121 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.message_a121 a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.info-7617 {
  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;
}

.filter_dark_92e9 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.nav-left-ea76 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.nav-left-ea76 span {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
}

.widget_blue_f346 {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.widget_blue_f346 a {
  font-size: 0.875rem;
  font-weight: 500;
}

.thick_a8ba {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.thick_a8ba strong {
  display: block;
  margin-bottom: 0.75rem;
}

.thick_a8ba ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.thick_a8ba li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.inner-a7d8 {
  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 === */
.module-ef72 {
  background-color: var(--bg-secondary);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.fast-f71c {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.container-d035 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.primary_3453 h3 {
  font-size: 1.125rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.primary_3453 ol {
  list-style: none;
  counter-reset: toc-counter;
}

.primary_3453 ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.75rem;
}

.primary_3453 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;
}

.primary_3453 ol li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(4px);
}

.primary_3453 ol li a::before {
  content: counter(toc-counter) ".";
  font-weight: 700;
  color: var(--primary-color);
  min-width: 1.5rem;
}

/* === Main Content === */
.tertiary_92da {
  padding: 3rem 0 5rem;
}

.highlight_7ec9 {
  margin-bottom: 4rem;
  scroll-margin-top: 80px; /* For sticky header */
}

.highlight_7ec9.filter-purple-acb3 {
  background-color: var(--bg-secondary);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 3rem calc(50vw - 50%);
}

.list_4662 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

.menu-dark-63c1 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === Summary Box === */
.block_f07c {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.block_f07c h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.preview-tall-74f5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.large-63ca {
  text-align: center;
}

.texture_medium_581b {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.chip-2101 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.banner_567d {
  margin-bottom: 0;
}

/* === Research Findings Cards === */
.popup-a7cc {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.sidebar-new-87e5 {
  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;
}

.sidebar-new-87e5 * {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.sidebar-new-87e5:hover {
  box-shadow: var(--shadow-lg);
}

.sidebar-new-87e5.purple_9d99 {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.sidebar-new-87e5 h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 0;
}

.sidebar-new-87e5 ul {
  margin: 1rem 0;
}

.sidebar-new-87e5 li {
  margin-bottom: 0.75rem;
}

.video_fd0d {
  background-color: #fef3c7;
  padding: 1rem;
  border-left: 4px solid var(--warning-color);
  margin: 1rem 0;
  border-radius: 4px;
}

.static_194c {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9375rem;
}

.static_194c a {
  font-weight: 600;
}

/* === Data Tables === */
.hero_7110 {
  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;
}

.hero_7110 table {
  width: 100%;
  min-width: 600px;
}

.hero_7110 thead {
  background-color: var(--primary-color);
  color: white;
}

.hero_7110 th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
}

.hero_7110 td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.hero_7110 tbody tr:hover {
  background-color: var(--bg-secondary);
}

.hero_7110 tbody tr:last-child td {
  border-bottom: none;
}

/* === Checklist === */
.highlight_dc97 {
  list-style: none;
  margin: 1.5rem 0;
}

.highlight_dc97 li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

.highlight_dc97 li:hover {
  background-color: var(--bg-secondary);
  border-radius: 4px;
}

.slider_steel_479e::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-17f2::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 === */
.notification-white-40d2 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.photo-wide-ad32 {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.photo-wide-ad32 img {
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.photo-wide-ad32 strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.photo-wide-ad32 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.notification-white-40d2 blockquote {
  font-style: italic;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* === Methodology Timeline === */
.alert-1333 {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.alert-1333::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.hover_ec15 {
  position: relative;
  margin-bottom: 3rem;
}

.avatar-gold-78f7 {
  position: absolute;
  left: -2.625rem;
  top: 0;
}

.avatar-gold-78f7 .filter-west-1848 {
  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;
}

.basic-0597 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-left: 2rem;
}

.basic-0597 h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.basic-0597 ul {
  margin: 1rem 0;
}

.basic-0597 li {
  margin-bottom: 0.75rem;
}

.feature_00af {
  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 === */
.hard-5154 {
  background-color: var(--bg-primary);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.hard-5154 h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.under-5f88 {
  list-style: none;
  margin: 1.5rem 0;
}

.under-5f88 li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.under-5f88 a {
  font-weight: 600;
}

.wide-8f8d {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* === Tutorial Steps === */
.frame_focused_edab {
  margin: 2.5rem 0;
}

.element_slow_332e {
  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;
}

.element_slow_332e:hover {
  box-shadow: var(--shadow-lg);
}

.element_slow_332e.message_8ec3 {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.form-4034 {
  flex-shrink: 0;
}

.form-4034 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);
}

.backdrop-bright-a106 h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.video-in-36d6,
.dropdown_mini_199a,
.green-e95e {
  width: 100%;
  margin: 1.5rem 0;
}

.module_82b8 {
  background-color: #dbeafe;
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.module_82b8 strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.prev-a5be {
  background-color: #fef3c7;
  border: 2px solid var(--warning-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.prev-a5be strong {
  color: var(--warning-color);
  display: block;
  margin-bottom: 0.5rem;
}

.border-red-77d1 {
  background-color: #fee2e2;
  border: 2px solid var(--danger-color);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.border-red-77d1 strong {
  color: var(--danger-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* === Version Comparison === */
.caption_tiny_1d52 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.next-ca6c {
  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;
}

.next-ca6c:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.next-ca6c.copper-a3da {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.next-ca6c .fast_97f5 {
  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;
}

.next-ca6c h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.label_6631 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.caption_bc1b {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.caption_bc1b label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.clean-048a {
  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 === */
.logo_thick_baa3 {
  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;
}

.easy-002b {
  background-color: var(--primary-color);
  color: white;
}

.easy-002b:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.motion-9f3c {
  background-color: var(--text-secondary);
  color: white;
}

.motion-9f3c:hover {
  background-color: var(--text-primary);
  text-decoration: none;
}

.photo_e14d {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.photo_e14d:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.component-plasma-85e0 {
  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;
}

.component-plasma-85e0:hover {
  background-color: var(--primary-dark);
}

.active-blue-29e7 {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.bright_a9cd {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Badges === */
.list_d5f7 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.info_south_7b13 {
  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 === */
.picture_5a13 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.selected-801d {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.selected-801d h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.video_fe1e {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  height: 200px;
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-radius: 6px;
}

.grid_3529 {
  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;
}

.texture_65f3 {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.slow-5246 {
  list-style: none;
  counter-reset: rank-counter;
}

.slow-5246 li {
  counter-increment: rank-counter;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.slow-5246 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;
}

.hidden-eede {
  list-style: none;
}

.hidden-eede li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Satisfaction Analysis === */
.dim-5dfc {
  text-align: center;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.blue_05d0 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.blue_05d0 .hot-3697 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.blue_05d0 .focus-4315 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.gradient-static-f083 {
  margin-top: 3rem;
}

.widget_9164 {
  width: 100%;
}

.outline-down-5053 {
  background-color: #fef3c7;
}

.texture-south-af7e {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

/* === User Quotes === */
.dynamic-ffd3 {
  margin: 3rem 0;
}

.slow_f759 {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.motion-9716 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.motion-9716:hover {
  box-shadow: var(--shadow-lg);
}

.motion-9716.menu-simple-de19 {
  border: 2px solid var(--warning-color);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.preview_right_298c {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.simple_4393 strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.simple_4393 span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.cold-cd1c {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.motion-9716 blockquote {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.surface-white-4351 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.huge_d7b0 {
  padding: 0.375rem 0.875rem;
  background-color: #d1fae5;
  color: #065f46;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.preview_e5c8 {
  padding: 0.375rem 0.875rem;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.article-44cd {
  padding: 0.375rem 0.875rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.hero_hard_a576 {
  text-align: center;
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.text_31d8 {
  margin-top: 1rem;
}

/* === FAQ Section === */
.silver-8bcb {
  max-width: 900px;
  margin: 0 auto;
}

.menu_complex_da83 {
  margin: 2rem 0;
}

.pressed-c95e {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.pressed-c95e summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.pressed-c95e summary::-webkit-details-marker {
  display: none;
}

.pressed-c95e summary h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.cold_bbb0 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.pressed-c95e[open] .cold_bbb0 {
  transform: rotate(45deg);
}

.shadow_f43d {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

.shadow_f43d p:last-child {
  margin-bottom: 0;
}

.pressed_9914 {
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.footer_motion_d6a7 {
  background-color: #d1fae5;
  border-left: 4px solid var(--secondary-color);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.texture-fa79 {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
}

.texture-fa79 p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.texture-fa79 .logo_thick_baa3 {
  margin: 0.5rem;
}

/* === Conclusion Section === */
.up_4477 {
  max-width: 900px;
  margin: 0 auto;
}

.breadcrumb-focused-3e15 {
  font-size: 1.1875rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.heading-a853 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.heading-a853.fn-success-17f2 {
  background-color: #d1fae5;
  border: 2px solid var(--secondary-color);
}

.current-2ae0 {
  font-size: 3rem;
  line-height: 1;
}

.under-256a h3 {
  margin-top: 0;
  color: var(--secondary-color);
}

.menu-2498 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.summary-c69a,
.progress-a825 {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.summary-c69a h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

.progress-a825 h3 {
  color: var(--warning-color);
  margin-top: 0;
}

.fixed_a2a0,
.green_3b71 {
  margin: 1.5rem 0;
}

.fixed_a2a0 li,
.green_3b71 li {
  margin-bottom: 1rem;
}

.tall_c4a0 {
  margin: 3rem 0;
}

.mask-simple-14f4 {
  background-color: var(--bg-secondary);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.mask-simple-14f4 h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.mask-simple-14f4 ol {
  margin: 1rem 0;
}

.mask-simple-14f4 li {
  margin-bottom: 0.75rem;
}

.box-65ae {
  text-align: center;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.wrapper_smooth_4f59 {
  margin: 2rem 0;
}

.focus_5db5 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.last-2489 {
  font-size: 2rem;
  color: var(--warning-color);
  margin-top: 0.5rem;
}

.outer-e5bb {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 2rem auto;
}

.easy-52f9 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === Author Bio Section === */
.article-66b1 {
  background-color: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.frame-soft-d5f8 {
  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;
}

.frame-soft-d5f8 img {
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  flex-shrink: 0;
}

.full-988d {
  flex: 1;
}

.full-988d h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.thick-e5f1 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-over-e5ac p {
  margin-bottom: 1rem;
}

.overlay_black_bd88 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.nav_9d88 {
  padding: 0.375rem 0.875rem;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.grid_white_8799 {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.grid_white_8799 a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.section_0d88 h3 {
  margin-bottom: 1.5rem;
}

.logo_soft_fa91 {
  display: grid;
  gap: 2rem;
}

.main-fast-0d7a {
  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;
}

.main-fast-0d7a img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.main-fast-0d7a h4 {
  margin: 0 0 0.25rem;
}

.main-fast-0d7a p {
  margin: 0;
  font-size: 0.9375rem;
}

.glass_f4bd {
  color: var(--text-secondary);
  font-size: 0.875rem !important;
  margin-top: 0.5rem !important;
}

.sidebar-lite-2985 {
  background-color: var(--bg-primary);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.sidebar-lite-2985 h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.sidebar-lite-2985 ul {
  margin: 1.5rem 0;
}

.sidebar-lite-2985 li {
  margin-bottom: 0.75rem;
}

.left-9f86 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
}

/* === Footer === */
.text_top_cf02 {
  background-color: var(--text-primary);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.simple_8cea {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.widget_db80 h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.widget_db80 p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.cold_0e97 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.cold_0e97 a {
  color: rgba(255, 255, 255, 0.8);
}

.panel_a99b {
  list-style: none;
}

.panel_a99b li {
  margin-bottom: 0.75rem;
}

.panel_a99b a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.panel_a99b a:hover {
  color: white;
}

.panel-liquid-71b8 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.stone-6fa4 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.hot_af74 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* === Utility Classes === */
.center_f08d {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.content-dim-0868 {
  text-align: center;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    font-size: 1rem;
  }

  .lite_13c1 {
    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;
  }

  .surface-a180 {
    font-size: 1.5rem !important;
  }

  .icon-lite-3e8f {
    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 */
  .sidebar-new-87e5,
  .card-last-cde5,
  .basic-0597,
  .backdrop-bright-a106,
  .preview_right_298c,
  .motion-9716,
  .shadow_f43d,
  .orange_5121,
  .east_0f47,
  .list_4662 {
    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 */
  .red_9501 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .hover-hovered-4975 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .yellow-ce8e {
    flex-shrink: 0;
  }

  .full-988d {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
  }

  .message_a121,
  .filter_dark_92e9 {
    display: block;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .filter_dark_92e9 {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  ul li, ol li {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Hide desktop menu on mobile */
  .backdrop_bronze_ab40 {
    display: none;
  }

  /* Show mobile actions */
  .status-9e1d {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons - Always visible */
  .wide-edce {
    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;
  }

  .wide-edce svg {
    flex-shrink: 0;
  }

  .wide-edce .background_a1f4 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .wide-edce .logo_566e {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .bronze-ba06 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  }

  .tiny_aefa {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #047857 100%);
  }

  .wide-edce:active {
    transform: scale(0.95);
  }

  /* Show mobile dropdown menu */
  .tertiary-da2e {
    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;
  }

  .tertiary-da2e.fn-active-17f2 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .tertiary-da2e li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .tertiary-da2e li:last-child {
    border-bottom: none;
  }

  .tertiary-da2e a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
  }

  /* Navigation */
  .hovered-84a6 {
    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;
  }

  .hovered-84a6 li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .hovered-84a6 li:last-child {
    border-bottom: none;
  }

  .hovered-84a6 a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Mobile login button */
  .copper_0cdb {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
  }

  .module_hard_7406 {
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    flex-direction: column;
    gap: 0.875rem;
  }

  .orange-3edb,
  .background-4411 {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .orange-3edb {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .background-4411 {
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  }

  .hovered-84a6.fn-active-17f2 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .gallery_stale_1973 {
    display: block;
  }

  /* Make sure header stays on top with increased height */
  .pattern-2f89 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .icon-solid-e947 {
    padding: 0.875rem 0;
  }

  /* Add padding to body to account for fixed header */
  body {
    padding-top: 75px;
  }

  .under-47b8 {
    margin-top: 0;
  }

  /* Hero section */
  .under-47b8 {
    padding: 2rem 0 1.5rem;
  }

  .icon-lite-3e8f {
    font-size: 1.75rem;
    word-wrap: break-word;
  }

  .east_0f47 {
    font-size: 1rem;
  }

  /* Hero brand image */
  .box-c741 {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .icon-hovered-8e83 {
    max-width: 100%;
    border-radius: 8px;
  }

  .smooth_9d46 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .aside_new_7ed2 {
    padding: 1rem;
  }

  .short_7c9e {
    font-size: 1.5rem;
  }

  .media-7a8d {
    font-size: 0.75rem;
  }

  .orange_5121 {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .brown-8adb {
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .brown-8adb .logo_thick_baa3 {
    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 */
  .container-d035 {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .element_slow_332e {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .form-4034 {
    margin-bottom: 1rem;
  }

  /* Author */
  .out-94e6 {
    flex-direction: column;
  }

  .frame-soft-d5f8 {
    flex-direction: column;
  }

  /* Quotes */
  .preview_right_298c {
    flex-direction: column;
  }

  /* Pros/Cons */
  .menu-2498 {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .easy-52f9 {
    flex-direction: column;
  }

  .easy-52f9 .logo_thick_baa3 {
    width: 100%;
  }

  /* Version comparison */
  .caption_tiny_1d52 {
    grid-template-columns: 1fr;
  }

  /* Demographics */
  .picture_5a13 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .simple_8cea {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hot_af74 {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Tables - horizontal scroll */
  .hero_7110,
  .dropdown_mini_199a,
  .carousel_359c,
  .widget_9164,
  .video-in-36d6,
  .green-e95e {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .hero_7110 table,
  .dropdown_mini_199a table {
    min-width: 600px;
  }

  /* Code blocks */
  pre {
    font-size: 0.875rem;
    padding: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-size: 0.875rem;
  }

  /* Hash code */
  .clean-048a {
    font-size: 0.6875rem;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .lite_13c1 {
    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;
  }

  .surface-a180 {
    font-size: 1.25rem !important;
  }

  .icon-lite-3e8f {
    font-size: 1.25rem !important;
  }

  /* Keep header fixed on very small screens too */
  body {
    padding-top: 70px;
  }

  .pattern-2f89 {
    position: fixed;
  }

  .icon-solid-e947 {
    padding: 0.625rem 0;
  }

  .icon_hard_2551 img {
    height: 26px;
  }

  .hovered-84a6 {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .tertiary-da2e {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .wide-edce {
    padding: 0.35rem 0.45rem;
    font-size: 0.6rem;
    min-width: 55px;
    max-width: 70px;
    gap: 0.1rem;
  }

  .wide-edce svg {
    width: 18px;
    height: 18px;
  }

  .wide-edce .background_a1f4 {
    font-size: 0.7rem;
  }

  .wide-edce .logo_566e {
    font-size: 0.65rem;
  }

  .orange-3edb,
  .background-4411 {
    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, .lite_13c1, .section-2d84, section, article, div {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .box-c741 {
    padding: 1rem;
  }

  .smooth_9d46 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .aside_new_7ed2 {
    padding: 0.875rem;
  }

  .short_7c9e {
    font-size: 1.25rem;
  }

  .brown-8adb .logo_thick_baa3 {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .icon-lite-3e8f {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Buttons */
  .logo_thick_baa3 {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .active-blue-29e7 {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Step cards */
  .element_slow_332e {
    padding: 1rem;
  }

  .form-4034 span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Extra small padding */
  .sidebar-new-87e5,
  .grid-9f6f,
  .center_12d1,
  .header-right-e862 {
    padding: 1rem;
  }
}

@media print {
  .pattern-2f89,
  .module-ef72,
  .gallery_stale_1973,
  .logo_thick_baa3,
  .text_top_cf02 {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .lite_13c1 {
    max-width: 100%;
    padding: 0;
  }
}
/* ============================================
   Profile Page Styles
   ============================================ */

/* Page Header */
.complex-24db {
  margin-bottom: 3rem;
  text-align: center;
}

.surface-a180 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.dim-68ac {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 2rem;
}

.pro-96ab,
.hover_deab {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.picture-in-a4bd {
  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;
}

.picture-in-a4bd:hover {
  transform: translateY(-5px);
}

.picture-in-a4bd strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.picture-in-a4bd span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team Composition */
.carousel-up-d05a {
  margin: 3rem 0;
}

.button-6834 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.aside_cdc1 {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.aside_cdc1:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.detail_clean_2e06 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.image-a693 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.soft-25ff {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0.5rem 0;
}

.mini-9e87 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Team Member Cards */
.row_0431 {
  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;
}

.row_0431:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.row_0431.banner-f294 {
  border-left: 4px solid var(--primary-color);
}

.banner-f542 {
  flex-shrink: 0;
}

.banner-f542 svg {
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.picture_red_632f {
  flex: 1;
}

.picture_red_632f h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.orange-e8ef {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.video-8d1c,
.next_58b9,
.article_outer_5753 {
  margin-bottom: 1.5rem;
}

.video-8d1c h4,
.next_58b9 h4,
.article_outer_5753 h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.video-8d1c ul,
.next_58b9 ul,
.article_outer_5753 ul {
  list-style: none;
  padding: 0;
}

.video-8d1c li,
.next_58b9 li,
.article_outer_5753 li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.video-8d1c li:before,
.next_58b9 li:before,
.article_outer_5753 li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.down_05f9 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.down_05f9 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;
}

.down_05f9 a:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Team Breakdown */
.image-purple-9cd8 { margin: 2rem 0; }
.short-85ea { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--primary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.short-85ea h4 { font-size: 1.375rem; color: var(--primary-color); margin-bottom: 1rem; }
.gallery-small-25fd p { margin-bottom: 1rem; line-height: 1.7; }
.gallery-small-25fd strong { color: var(--text-primary); }
.gallery-small-25fd ul { list-style: none; padding-left: 0; }
.gallery-small-25fd ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.gallery-small-25fd ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* Security Team Grid */
.warm-de39 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }
.fast-634d { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s ease; }
.fast-634d:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.east_90fd { font-size: 3rem; margin-bottom: 1rem; }
.fast-634d h4 { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.fast-634d p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.carousel-fixed-bb75 { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.carousel-fixed-bb75 span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.prev-72af { margin: 3rem 0; padding: 2rem; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-radius: 16px; border: 2px solid var(--success-color); }
.aside-da66 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.preview_basic_3228 { text-align: center; }
.box_551f { font-size: 3rem; font-weight: 800; color: var(--success-color); line-height: 1; }
.list-001c { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.fast_53b8 { font-size: 0.875rem; color: var(--text-muted); }

/* Support Structure */
.dirty-fa20 { margin: 2rem 0; }
.list_39fd { background: white; border: 2px solid var(--border-color); border-left: 4px solid var(--secondary-color); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.list_39fd h4 { font-size: 1.375rem; color: var(--secondary-color); margin-bottom: 1rem; }
.list_39fd p, .list_39fd ul { line-height: 1.7; }
.list_39fd ul { list-style: none; padding-left: 0; }
.list_39fd ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.list_39fd ul li:before { content: "?"; position: absolute; left: 0; color: var(--secondary-color); font-weight: bold; }
.paragraph-962e { margin: 3rem 0; padding: 2.5rem; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 16px; border: 2px solid var(--warning-color); }
.notice_fixed_bf07 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.layout-plasma-bdeb { text-align: center; }
.soft_4e4d { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.tertiary-warm-b334 { font-size: 1rem; color: var(--text-primary); font-weight: 600; margin: 0.5rem 0; }
.avatar_5453 { font-size: 0.875rem; color: var(--text-muted); }

/* Business Team Grid */
.preview-rough-14d1 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 2rem 0; }
.right-7f96 { background: white; border: 2px solid var(--border-color); border-radius: 16px; padding: 2rem; transition: all 0.3s ease; }
.right-7f96:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); }
.right-7f96 h4 { font-size: 1.25rem; color: var(--primary-color); margin-bottom: 1rem; }
.right-7f96 p, .right-7f96 ul { line-height: 1.7; }
.right-7f96 ul { list-style: none; padding-left: 0; }
.right-7f96 ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.right-7f96 ul li:before { content: "?"; position: absolute; left: 0; color: var(--success-color); font-weight: bold; }

/* css-noise: 98ff */
.promo-block-q9 {
  padding: 0.2rem;
  font-size: 11px;
  line-height: 1.1;
}
